package connection import ( "errors" "net/rpc" "sync" ) // TODO(helin): add TCP re-connect logic // Conn is a connection to a parameter server type Conn struct { mu sync.Mutex client *rpc.Client waitConn chan struct{} } // New creates a new connection. func New() *Conn { c := &Conn{} return c } // Connect connects the connection to a address. func (c *Conn) Connect(addr string) error { c.mu.Lock() if c.client != nil { err := c.client.Close() if err != nil { c.mu.Unlock() return err } c.client = nil } c.mu.Unlock() client, err := rpc.DialHTTP("tcp", addr) if err != nil { return err } c.mu.Lock() defer c.mu.Unlock() if c.client == nil { c.client = client if c.waitConn != nil { close(c.waitConn) c.waitConn = nil } } else { return errors.New("client already set from a concurrent goroutine") } return nil } // Call make a RPC call. // // Call will be blocked until the connection to remote RPC service // being established. func (c *Conn) Call(serviceMethod string, args interface{}, reply interface{}) error { c.mu.Lock() client := c.client var waitCh chan struct{} if client == nil { if c.waitConn != nil { waitCh = c.waitConn } else { waitCh = make(chan struct{}) c.waitConn = waitCh } } c.mu.Unlock() if waitCh != nil { // wait until new connection being established <-waitCh return c.Call(serviceMethod, args, reply) } return client.Call(serviceMethod, args, reply) }