plugeth/rpc/codec/json.go

150 lines
3.4 KiB
Go
Raw Normal View History

2015-07-07 00:54:22 +00:00
// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
2015-07-07 00:54:22 +00:00
//
// The go-ethereum library is free software: you can redistribute it and/or modify
2015-07-07 00:54:22 +00:00
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
2015-07-07 00:54:22 +00:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-07-07 00:54:22 +00:00
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
2015-07-07 00:54:22 +00:00
2015-06-08 08:23:54 +00:00
package codec
import (
"encoding/json"
2015-06-25 11:18:10 +00:00
"fmt"
2015-06-08 08:23:54 +00:00
"net"
2015-06-25 11:18:10 +00:00
"time"
2015-08-07 07:56:49 +00:00
"strings"
2015-06-08 08:23:54 +00:00
"github.com/ethereum/go-ethereum/rpc/shared"
)
const (
READ_TIMEOUT = 60 // in seconds
2015-06-25 11:18:10 +00:00
MAX_REQUEST_SIZE = 1024 * 1024
2015-06-25 10:01:28 +00:00
MAX_RESPONSE_SIZE = 1024 * 1024
2015-06-08 08:23:54 +00:00
)
// Json serialization support
type JsonCodec struct {
c net.Conn
d *json.Decoder
2015-06-08 08:23:54 +00:00
}
// Create new JSON coder instance
func NewJsonCoder(conn net.Conn) ApiCoder {
return &JsonCodec{
c: conn,
d: json.NewDecoder(conn),
2015-06-08 08:23:54 +00:00
}
}
// Read incoming request and parse it to RPC request
2015-06-25 10:01:28 +00:00
func (self *JsonCodec) ReadRequest() (requests []*shared.Request, isBatch bool, err error) {
2015-06-25 12:32:22 +00:00
deadline := time.Now().Add(READ_TIMEOUT * time.Second)
if err := self.c.SetDeadline(deadline); err != nil {
2015-06-25 10:01:28 +00:00
return nil, false, err
}
var incoming json.RawMessage
err = self.d.Decode(&incoming)
if err == nil {
isBatch = incoming[0] == '['
if isBatch {
requests = make([]*shared.Request, 0)
err = json.Unmarshal(incoming, &requests)
} else {
requests = make([]*shared.Request, 1)
var singleRequest shared.Request
if err = json.Unmarshal(incoming, &singleRequest); err == nil {
requests[0] = &singleRequest
}
2015-06-25 12:32:22 +00:00
}
return
2015-06-25 10:01:28 +00:00
}
self.c.Close()
return nil, false, err
2015-06-08 08:23:54 +00:00
}
2015-08-07 07:56:49 +00:00
func (self *JsonCodec) Recv() (interface{}, error) {
var msg json.RawMessage
err := self.d.Decode(&msg)
if err != nil {
self.c.Close()
return nil, err
}
2015-06-08 08:23:54 +00:00
2015-08-07 07:56:49 +00:00
return msg, err
}
func (self *JsonCodec) ReadResponse() (interface{}, error) {
in, err := self.Recv()
if err != nil {
2015-06-25 12:32:22 +00:00
return nil, err
}
2015-06-25 11:18:10 +00:00
2015-08-07 07:56:49 +00:00
if msg, ok := in.(json.RawMessage); ok {
var req *shared.Request
if err = json.Unmarshal(msg, &req); err == nil && strings.HasPrefix(req.Method, "agent_") {
return req, nil
2015-06-25 11:18:10 +00:00
}
2015-06-08 08:23:54 +00:00
2015-08-07 07:56:49 +00:00
var failure *shared.ErrorResponse
if err = json.Unmarshal(msg, &failure); err == nil && failure.Error != nil {
2015-07-03 10:22:20 +00:00
return failure, fmt.Errorf(failure.Error.Message)
}
2015-08-07 07:56:49 +00:00
var success *shared.SuccessResponse
if err = json.Unmarshal(msg, &success); err == nil {
2015-06-25 11:18:10 +00:00
return success, nil
}
2015-06-08 08:23:54 +00:00
}
2015-08-07 07:56:49 +00:00
return in, err
2015-06-08 08:23:54 +00:00
}
2015-06-25 11:18:10 +00:00
// Decode data
2015-06-08 08:23:54 +00:00
func (self *JsonCodec) Decode(data []byte, msg interface{}) error {
return json.Unmarshal(data, msg)
}
2015-06-25 11:18:10 +00:00
// Encode message
2015-06-08 08:23:54 +00:00
func (self *JsonCodec) Encode(msg interface{}) ([]byte, error) {
return json.Marshal(msg)
}
// Parse JSON data from conn to obj
func (self *JsonCodec) WriteResponse(res interface{}) error {
2015-06-25 10:01:28 +00:00
data, err := json.Marshal(res)
if err != nil {
self.c.Close()
return err
}
bytesWritten := 0
for bytesWritten < len(data) {
n, err := self.c.Write(data[bytesWritten:])
if err != nil {
self.c.Close()
return err
}
bytesWritten += n
}
return nil
2015-06-08 08:23:54 +00:00
}
// Close decoder and encoder
func (self *JsonCodec) Close() {
self.c.Close()
}