mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-23 00:43:51 +01:00
1ce0c69e4f
The new local transport uses socketpair() and a switchboard based on client identities. The special local job type is gone, which is good since it does not fit into the 'Active/Passive side ' + 'mode' concept used to implement the duality of push/sink | pull/source.
27 lines
611 B
Go
27 lines
611 B
Go
package connecter
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/zrepl/zrepl/config"
|
|
"github.com/zrepl/zrepl/daemon/serve"
|
|
"net"
|
|
)
|
|
|
|
type LocalConnecter struct {
|
|
clientIdentity string
|
|
}
|
|
|
|
func LocalConnecterFromConfig(in *config.LocalConnect) (*LocalConnecter, error) {
|
|
if in.ClientIdentity == "" {
|
|
return nil, fmt.Errorf("ClientIdentity must not be empty")
|
|
}
|
|
return &LocalConnecter{in.ClientIdentity}, nil
|
|
}
|
|
|
|
func (c *LocalConnecter) Connect(dialCtx context.Context) (conn net.Conn, err error) {
|
|
switchboard := serve.GetLocalListenerSwitchboard()
|
|
return switchboard.DialContext(dialCtx, c.clientIdentity)
|
|
}
|
|
|