aboutsummaryrefslogtreecommitdiffstats
path: root/ethrpc/server.go
blob: 3960e641c3f61c5a0f05738e25b3d2941d722cdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package ethrpc

import (
    "fmt"
    "github.com/ethereum/eth-go/ethpub"
    "github.com/ethereum/eth-go/ethutil"
    "net"
    "net/rpc"
    "net/rpc/jsonrpc"
)

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
        }
    }

    ethutil.Config.Log.Infoln("[JSON] Shutdown JSON-RPC server")
}

func (s *JsonRpcServer) Stop() {
    close(s.quit)
}

func (s *JsonRpcServer) Start() {
    ethutil.Config.Log.Infoln("[JSON] Starting JSON-RPC server")
    go s.exitHandler()
    rpc.Register(&EthereumApi{ethp: s.ethp})
    rpc.HandleHTTP()

    for {
        conn, err := s.listener.Accept()
        if err != nil {
            ethutil.Config.Log.Infoln("[JSON] Error starting JSON-RPC:", err)
            break
        }
        ethutil.Config.Log.Debugln("[JSON] Incoming request.")
        go jsonrpc.ServeConn(conn)
    }
}

func NewJsonRpcServer(ethp *ethpub.PEthereum, 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),
        ethp:     ethp,
    }, nil
}