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-06-08 08:23:54 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/rpc/shared"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-06-25 12:32:22 +00:00
|
|
|
READ_TIMEOUT = 15 // read timeout 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 {
|
2015-06-25 12:32:22 +00:00
|
|
|
c net.Conn
|
2015-07-01 06:23:17 +00:00
|
|
|
d *json.Decoder
|
2015-06-08 08:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create new JSON coder instance
|
|
|
|
func NewJsonCoder(conn net.Conn) ApiCoder {
|
|
|
|
return &JsonCodec{
|
2015-06-25 12:32:22 +00:00
|
|
|
c: conn,
|
2015-07-01 06:23:17 +00:00
|
|
|
d: json.NewDecoder(conn),
|
2015-06-08 08:23:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize obj to JSON and write it to conn
|
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
|
|
|
|
}
|
|
|
|
|
2015-06-25 12:32:22 +00:00
|
|
|
for {
|
2015-07-01 06:23:17 +00:00
|
|
|
var err error
|
2015-06-25 12:32:22 +00:00
|
|
|
singleRequest := shared.Request{}
|
2015-07-01 06:23:17 +00:00
|
|
|
if err = self.d.Decode(&singleRequest); err == nil {
|
2015-06-25 12:32:22 +00:00
|
|
|
requests := make([]*shared.Request, 1)
|
|
|
|
requests[0] = &singleRequest
|
|
|
|
return requests, false, nil
|
|
|
|
}
|
2015-06-25 10:01:28 +00:00
|
|
|
|
2015-07-01 06:23:17 +00:00
|
|
|
fmt.Printf("err %T %v\n", err)
|
|
|
|
|
|
|
|
if opErr, ok := err.(*net.OpError); ok {
|
|
|
|
if opErr.Timeout() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-25 12:32:22 +00:00
|
|
|
requests = make([]*shared.Request, 0)
|
2015-07-01 06:23:17 +00:00
|
|
|
if err = self.d.Decode(&requests); err == nil {
|
2015-06-25 12:32:22 +00:00
|
|
|
return requests, true, nil
|
|
|
|
}
|
2015-07-01 06:23:17 +00:00
|
|
|
|
|
|
|
if opErr, ok := err.(*net.OpError); ok {
|
|
|
|
if opErr.Timeout() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2015-06-25 10:01:28 +00:00
|
|
|
}
|
|
|
|
|
2015-06-25 12:32:22 +00:00
|
|
|
self.c.Close() // timeout
|
2015-07-01 06:23:17 +00:00
|
|
|
return nil, false, fmt.Errorf("Timeout reading request")
|
2015-06-08 08:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JsonCodec) ReadResponse() (interface{}, error) {
|
2015-06-25 11:18:10 +00:00
|
|
|
bytesInBuffer := 0
|
2015-06-08 08:23:54 +00:00
|
|
|
buf := make([]byte, MAX_RESPONSE_SIZE)
|
|
|
|
|
2015-06-25 12:32:22 +00:00
|
|
|
deadline := time.Now().Add(READ_TIMEOUT * time.Second)
|
|
|
|
if err := self.c.SetDeadline(deadline); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-06-25 11:18:10 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
n, err := self.c.Read(buf[bytesInBuffer:])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
bytesInBuffer += n
|
2015-06-08 08:23:54 +00:00
|
|
|
|
2015-06-25 11:18:10 +00:00
|
|
|
var success shared.SuccessResponse
|
|
|
|
if err = json.Unmarshal(buf[:bytesInBuffer], &success); err == nil {
|
|
|
|
return success, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var failure shared.ErrorResponse
|
|
|
|
if err = json.Unmarshal(buf[:bytesInBuffer], &failure); err == nil && failure.Error != nil {
|
|
|
|
return failure, nil
|
|
|
|
}
|
2015-06-08 08:23:54 +00:00
|
|
|
}
|
|
|
|
|
2015-06-25 11:18:10 +00:00
|
|
|
self.c.Close()
|
|
|
|
return nil, fmt.Errorf("Unable to read response")
|
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()
|
|
|
|
}
|