json.go 3.37 KB
Newer Older
1
// Copyright 2015 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
5 6 7 8
// 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.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16

17 18 19 20
package codec

import (
	"encoding/json"
21
	"fmt"
22
	"net"
23
	"time"
24 25 26 27 28

	"github.com/ethereum/go-ethereum/rpc/shared"
)

const (
29
	READ_TIMEOUT      = 60 // in seconds
30
	MAX_REQUEST_SIZE  = 1024 * 1024
31
	MAX_RESPONSE_SIZE = 1024 * 1024
32 33 34 35
)

// Json serialization support
type JsonCodec struct {
36 37
	c net.Conn
	d *json.Decoder
38 39 40 41 42
}

// Create new JSON coder instance
func NewJsonCoder(conn net.Conn) ApiCoder {
	return &JsonCodec{
43 44
		c: conn,
		d: json.NewDecoder(conn),
45 46 47
	}
}

48
// Read incoming request and parse it to RPC request
49
func (self *JsonCodec) ReadRequest() (requests []*shared.Request, isBatch bool, err error) {
50 51
	deadline := time.Now().Add(READ_TIMEOUT * time.Second)
	if err := self.c.SetDeadline(deadline); err != nil {
52 53 54
		return nil, false, err
	}

55 56 57 58 59 60 61 62 63 64 65 66 67
	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
			}
68
		}
69
		return
70 71
	}

72
	self.c.Close()
73
	return nil, false, err
74 75 76
}

func (self *JsonCodec) ReadResponse() (interface{}, error) {
77
	bytesInBuffer := 0
78 79
	buf := make([]byte, MAX_RESPONSE_SIZE)

80 81 82 83
	deadline := time.Now().Add(READ_TIMEOUT * time.Second)
	if err := self.c.SetDeadline(deadline); err != nil {
		return nil, err
	}
84 85 86 87 88 89 90

	for {
		n, err := self.c.Read(buf[bytesInBuffer:])
		if err != nil {
			return nil, err
		}
		bytesInBuffer += n
91

92 93 94 95 96
		var failure shared.ErrorResponse
		if err = json.Unmarshal(buf[:bytesInBuffer], &failure); err == nil && failure.Error != nil {
			return failure, fmt.Errorf(failure.Error.Message)
		}

97 98 99 100
		var success shared.SuccessResponse
		if err = json.Unmarshal(buf[:bytesInBuffer], &success); err == nil {
			return success, nil
		}
101 102
	}

103 104
	self.c.Close()
	return nil, fmt.Errorf("Unable to read response")
105 106
}

107
// Decode data
108 109 110 111
func (self *JsonCodec) Decode(data []byte, msg interface{}) error {
	return json.Unmarshal(data, msg)
}

112
// Encode message
113 114 115 116 117 118
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 {
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
	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
137 138 139 140 141 142
}

// Close decoder and encoder
func (self *JsonCodec) Close() {
	self.c.Close()
}