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/ethrpc/server.go

67 lines
1.1 KiB

11 years ago
package ethrpc
import (
"fmt"
"github.com/ethereum/eth-go/ethlog"
10 years ago
"github.com/ethereum/eth-go/ethpub"
11 years ago
"net"
"net/rpc"
"net/rpc/jsonrpc"
)
var logger = ethlog.NewLogger("JSON")
11 years ago
type JsonRpcServer struct {
quit chan bool
listener net.Listener
ethp *ethpub.PEthereum
}
func (s *JsonRpcServer) exitHandler() {
out:
for {
select {
case <-s.quit:
s.listener.Close()
break out
}
}
logger.Infoln("Shutdown JSON-RPC server")
11 years ago
}
func (s *JsonRpcServer) Stop() {
close(s.quit)
}
func (s *JsonRpcServer) Start() {
logger.Infoln("Starting JSON-RPC server")
11 years ago
go s.exitHandler()
rpc.Register(&EthereumApi{ethp: s.ethp})
rpc.HandleHTTP()
for {
conn, err := s.listener.Accept()
if err != nil {
logger.Infoln("Error starting JSON-RPC:", err)
11 years ago
break
}
logger.Debugln("Incoming request.")
11 years ago
go jsonrpc.ServeConn(conn)
}
}
func NewJsonRpcServer(ethp *ethpub.PEthereum, port int) (*JsonRpcServer, error) {
sport := fmt.Sprintf(":%d", port)
l, err := net.Listen("tcp", sport)
11 years ago
if err != nil {
return nil, err
11 years ago
}
return &JsonRpcServer{
listener: l,
quit: make(chan bool),
ethp: ethp,
}, nil
11 years ago
}