| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 10:23:54 +02:00
										 |  |  | package codec | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net" | 
					
						
							|  |  |  | 	"strconv" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/rpc/shared" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Codec int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // (de)serialization support for rpc interface | 
					
						
							|  |  |  | type ApiCoder interface { | 
					
						
							|  |  |  | 	// Parse message to request from underlying stream | 
					
						
							| 
									
										
										
										
											2015-06-25 12:01:28 +02:00
										 |  |  | 	ReadRequest() ([]*shared.Request, bool, error) | 
					
						
							| 
									
										
										
										
											2015-06-08 10:23:54 +02:00
										 |  |  | 	// Parse response message from underlying stream | 
					
						
							|  |  |  | 	ReadResponse() (interface{}, error) | 
					
						
							| 
									
										
										
										
											2015-08-07 09:56:49 +02:00
										 |  |  | 	// Read raw message from underlying stream | 
					
						
							|  |  |  | 	Recv() (interface{}, error) | 
					
						
							| 
									
										
										
										
											2015-06-08 10:23:54 +02:00
										 |  |  | 	// Encode response to encoded form in underlying stream | 
					
						
							|  |  |  | 	WriteResponse(interface{}) error | 
					
						
							|  |  |  | 	// Decode single message from data | 
					
						
							|  |  |  | 	Decode([]byte, interface{}) error | 
					
						
							|  |  |  | 	// Encode msg to encoded form | 
					
						
							|  |  |  | 	Encode(msg interface{}) ([]byte, error) | 
					
						
							|  |  |  | 	// close the underlying stream | 
					
						
							|  |  |  | 	Close() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // supported codecs | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	JSON Codec = iota | 
					
						
							|  |  |  | 	nCodecs | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	// collection with supported coders | 
					
						
							|  |  |  | 	coders = make([]func(net.Conn) ApiCoder, nCodecs) | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // create a new coder instance | 
					
						
							|  |  |  | func (c Codec) New(conn net.Conn) ApiCoder { | 
					
						
							|  |  |  | 	switch c { | 
					
						
							|  |  |  | 	case JSON: | 
					
						
							|  |  |  | 		return NewJsonCoder(conn) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	panic("codec: request for codec #" + strconv.Itoa(int(c)) + " is unavailable") | 
					
						
							|  |  |  | } |