packer-cn/packer/rpc/client.go

67 lines
1.2 KiB
Go
Raw Normal View History

package rpc
import (
"github.com/mitchellh/packer/packer"
"io"
"net/rpc"
)
// Client is the client end that communicates with a Packer RPC server.
// Establishing a connection is up to the user, the Client can just
// communicate over any ReadWriteCloser.
type Client struct {
mux *MuxConn
client *rpc.Client
}
func NewClient(rwc io.ReadWriteCloser) (*Client, error) {
2013-12-09 22:07:36 -05:00
return NewClientWithMux(NewMuxConn(rwc), 0)
}
func NewClientWithMux(mux *MuxConn, streamId uint32) (*Client, error) {
clientConn, err := mux.Dial(streamId)
if err != nil {
return nil, err
}
return &Client{
mux: mux,
client: rpc.NewClient(clientConn),
}, nil
}
2013-12-09 17:51:13 -05:00
func (c *Client) Close() error {
if err := c.client.Close(); err != nil {
return err
}
2013-12-09 22:07:36 -05:00
return nil
2013-12-09 17:51:13 -05:00
}
func (c *Client) Artifact() packer.Artifact {
return &artifact{
client: c.client,
endpoint: DefaultArtifactEndpoint,
}
}
2013-12-09 17:51:13 -05:00
func (c *Client) Cache() packer.Cache {
return &cache{
client: c.client,
}
}
2013-12-09 17:57:18 -05:00
func (c *Client) PostProcessor() packer.PostProcessor {
return &postProcessor{
client: c.client,
2013-12-09 22:07:36 -05:00
mux: c.mux,
2013-12-09 19:22:11 -05:00
}
}
func (c *Client) Ui() packer.Ui {
return &Ui{
2013-12-09 22:07:36 -05:00
client: c.client,
2013-12-09 19:22:11 -05:00
endpoint: DefaultUiEndpoint,
2013-12-09 17:57:18 -05:00
}
}