|
|
|
@ -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,34 @@ 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, |
|
|
|
|
}, nil |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type RpcHttpServer struct { |
|
|
|
|
quit chan bool |
|
|
|
|
listener net.Listener |
|
|
|
|
pipe *xeth.JSXEth |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (s *JsonRpcServer) exitHandler() { |
|
|
|
|
func (s *RpcHttpServer) exitHandler() { |
|
|
|
|
out: |
|
|
|
|
for { |
|
|
|
|
select { |
|
|
|
@ -43,61 +59,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.Infoln("Starting RPC-HTTP server") |
|
|
|
|
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(xeth *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) |
|
|
|
|
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) |