Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/rpc/server.go

68 lines
1.1 KiB

10 years ago
package rpc
import (
"fmt"
"net"
"net/rpc"
"net/rpc/jsonrpc"
10 years ago
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/xeth"
10 years ago
)
10 years ago
var jsonlogger = logger.NewLogger("JSON")
10 years ago
type JsonRpcServer struct {
quit chan bool
listener net.Listener
pipe *xeth.JSXEth
10 years ago
}
func (s *JsonRpcServer) exitHandler() {
out:
for {
select {
case <-s.quit:
s.listener.Close()
break out
}
}
10 years ago
jsonlogger.Infoln("Shutdown JSON-RPC server")
10 years ago
}
func (s *JsonRpcServer) Stop() {
close(s.quit)
}
func (s *JsonRpcServer) Start() {
10 years ago
jsonlogger.Infoln("Starting JSON-RPC server")
10 years ago
go s.exitHandler()
rpc.Register(&EthereumApi{pipe: s.pipe})
rpc.HandleHTTP()
for {
conn, err := s.listener.Accept()
if err != nil {
10 years ago
jsonlogger.Infoln("Error starting JSON-RPC:", err)
10 years ago
break
}
10 years ago
jsonlogger.Debugln("Incoming request.")
10 years ago
go jsonrpc.ServeConn(conn)
}
}
func NewJsonRpcServer(pipe *xeth.JSXEth, port int) (*JsonRpcServer, error) {
10 years ago
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
}