plugeth/rpc/comms/ipc_unix.go

61 lines
1.3 KiB
Go
Raw Normal View History

2015-06-08 08:41:04 +00:00
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
package comms
import (
"net"
2015-06-09 07:48:18 +00:00
"os"
2015-06-08 08:41:04 +00:00
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/rpc/codec"
2015-06-22 10:47:32 +00:00
"github.com/ethereum/go-ethereum/rpc/shared"
2015-06-08 08:41:04 +00:00
)
func newIpcClient(cfg IpcConfig, codec codec.Codec) (*ipcClient, error) {
c, err := net.DialUnix("unix", nil, &net.UnixAddr{cfg.Endpoint, "unix"})
if err != nil {
return nil, err
}
2015-06-18 16:23:13 +00:00
return &ipcClient{cfg.Endpoint, codec, codec.New(c)}, nil
}
func (self *ipcClient) reconnect() error {
self.coder.Close()
c, err := net.DialUnix("unix", nil, &net.UnixAddr{self.endpoint, "unix"})
if err == nil {
self.coder = self.codec.New(c)
}
return err
2015-06-08 08:41:04 +00:00
}
2015-06-22 10:47:32 +00:00
func startIpc(cfg IpcConfig, codec codec.Codec, api shared.EthereumApi) error {
2015-06-08 08:41:04 +00:00
os.Remove(cfg.Endpoint) // in case it still exists from a previous run
l, err := net.ListenUnix("unix", &net.UnixAddr{Name: cfg.Endpoint, Net: "unix"})
if err != nil {
return err
}
os.Chmod(cfg.Endpoint, 0600)
go func() {
for {
conn, err := l.AcceptUnix()
if err != nil {
glog.V(logger.Error).Infof("Error accepting ipc connection - %v\n", err)
continue
}
2015-06-16 09:16:50 +00:00
go handle(conn, api, codec)
2015-06-08 08:41:04 +00:00
}
os.Remove(cfg.Endpoint)
}()
2015-06-09 07:48:18 +00:00
glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint)
2015-06-08 08:41:04 +00:00
return nil
}