|
|
@@ -14,7 +14,7 @@
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/
|
|
|
-package rpc
|
|
|
+package rpchttp
|
|
|
|
|
|
import (
|
|
|
"fmt"
|
|
|
@@ -22,18 +22,36 @@ import (
|
|
|
"net/http"
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
|
|
+ "github.com/ethereum/go-ethereum/rpc"
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
|
|
)
|
|
|
|
|
|
-var jsonlogger = logger.NewLogger("JSON")
|
|
|
+var rpchttplogger = logger.NewLogger("RPC-HTTP")
|
|
|
+var JSON rpc.JsonWrapper
|
|
|
|
|
|
-type JsonRpcServer struct {
|
|
|
+func NewRpcHttpServer(pipe *xeth.JSXEth, port int) (*RpcHttpServer, error) {
|
|
|
+ sport := fmt.Sprintf(":%d", port)
|
|
|
+ l, err := net.Listen("tcp", sport)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
+ return &RpcHttpServer{
|
|
|
+ listener: l,
|
|
|
+ quit: make(chan bool),
|
|
|
+ pipe: pipe,
|
|
|
+ port: port,
|
|
|
+ }, nil
|
|
|
+}
|
|
|
+
|
|
|
+type RpcHttpServer struct {
|
|
|
quit chan bool
|
|
|
listener net.Listener
|
|
|
pipe *xeth.JSXEth
|
|
|
+ port int
|
|
|
}
|
|
|
|
|
|
-func (s *JsonRpcServer) exitHandler() {
|
|
|
+func (s *RpcHttpServer) exitHandler() {
|
|
|
out:
|
|
|
for {
|
|
|
select {
|
|
|
@@ -43,61 +61,48 @@ out:
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- jsonlogger.Infoln("Shutdown JSON-RPC server")
|
|
|
+ rpchttplogger.Infoln("Shutdown RPC-HTTP server")
|
|
|
}
|
|
|
|
|
|
-func (s *JsonRpcServer) Stop() {
|
|
|
+func (s *RpcHttpServer) Stop() {
|
|
|
close(s.quit)
|
|
|
}
|
|
|
|
|
|
-func (s *JsonRpcServer) Start() {
|
|
|
- jsonlogger.Infoln("Starting JSON-RPC server")
|
|
|
+func (s *RpcHttpServer) Start() {
|
|
|
+ rpchttplogger.Infof("Starting RPC-HTTP server on port %d", s.port)
|
|
|
go s.exitHandler()
|
|
|
|
|
|
- h := apiHandler(&EthereumApi{pipe: s.pipe})
|
|
|
+ api := rpc.NewEthereumApi(s.pipe)
|
|
|
+ h := s.apiHandler(api)
|
|
|
http.Handle("/", h)
|
|
|
|
|
|
err := http.Serve(s.listener, nil)
|
|
|
// FIX Complains on shutdown due to listner already being closed
|
|
|
if err != nil {
|
|
|
- jsonlogger.Errorln("Error on JSON-RPC interface:", err)
|
|
|
+ rpchttplogger.Errorln("Error on RPC-HTTP interface:", err)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-func NewJsonRpcServer(pipe *xeth.JSXEth, port int) (*JsonRpcServer, error) {
|
|
|
- sport := fmt.Sprintf(":%d", port)
|
|
|
- l, err := net.Listen("tcp", sport)
|
|
|
- if err != nil {
|
|
|
- return nil, err
|
|
|
- }
|
|
|
-
|
|
|
- return &JsonRpcServer{
|
|
|
- listener: l,
|
|
|
- quit: make(chan bool),
|
|
|
- pipe: pipe,
|
|
|
- }, nil
|
|
|
-}
|
|
|
-
|
|
|
-func apiHandler(xeth *EthereumApi) http.Handler {
|
|
|
+func (s *RpcHttpServer) apiHandler(api *rpc.EthereumApi) http.Handler {
|
|
|
fn := func(w http.ResponseWriter, req *http.Request) {
|
|
|
- jsonlogger.Debugln("Handling request")
|
|
|
+ rpchttplogger.Debugln("Handling request")
|
|
|
|
|
|
reqParsed, reqerr := JSON.ParseRequestBody(req)
|
|
|
if reqerr != nil {
|
|
|
- JSON.Send(w, &RpcErrorResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: true, ErrorText: ErrorParseRequest})
|
|
|
+ JSON.Send(w, &rpc.RpcErrorResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: true, ErrorText: rpc.ErrorParseRequest})
|
|
|
return
|
|
|
}
|
|
|
|
|
|
var response interface{}
|
|
|
- reserr := xeth.GetRequestReply(&reqParsed, &response)
|
|
|
+ reserr := api.GetRequestReply(&reqParsed, &response)
|
|
|
if reserr != nil {
|
|
|
- jsonlogger.Errorln(reserr)
|
|
|
- JSON.Send(w, &RpcErrorResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: true, ErrorText: reserr.Error()})
|
|
|
+ rpchttplogger.Errorln(reserr)
|
|
|
+ JSON.Send(w, &rpc.RpcErrorResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: true, ErrorText: reserr.Error()})
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- jsonlogger.Debugf("Generated response: %T %s", response, response)
|
|
|
- JSON.Send(w, &RpcSuccessResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: false, Result: response})
|
|
|
+ rpchttplogger.Debugf("Generated response: %T %s", response, response)
|
|
|
+ JSON.Send(w, &rpc.RpcSuccessResponse{JsonRpc: reqParsed.JsonRpc, ID: reqParsed.ID, Error: false, Result: response})
|
|
|
}
|
|
|
|
|
|
return http.HandlerFunc(fn)
|