packer-cn/packer/rpc/client.go

130 lines
2.1 KiB
Go
Raw Normal View History

package rpc
import (
"github.com/mitchellh/packer/packer"
"io"
2013-12-11 19:33:43 -05:00
"log"
"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 {
2013-12-11 19:33:43 -05:00
mux *MuxConn
client *rpc.Client
closeMux bool
}
func NewClient(rwc io.ReadWriteCloser) (*Client, error) {
result, err := newClientWithMux(NewMuxConn(rwc), 0)
2013-12-11 19:33:43 -05:00
if err != nil {
return nil, err
}
result.closeMux = true
return result, err
2013-12-09 22:07:36 -05:00
}
func newClientWithMux(mux *MuxConn, streamId uint32) (*Client, error) {
2013-12-09 22:07:36 -05:00
clientConn, err := mux.Dial(streamId)
if err != nil {
return nil, err
}
return &Client{
2013-12-11 19:33:43 -05:00
mux: mux,
client: rpc.NewClient(clientConn),
closeMux: false,
}, 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-11 19:33:43 -05:00
if c.closeMux {
log.Printf("[WARN] Client is closing mux")
return c.mux.Close()
}
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
2013-12-10 16:18:48 -05:00
func (c *Client) Build() packer.Build {
return &build{
client: c.client,
mux: c.mux,
}
}
2013-12-10 15:14:08 -05:00
func (c *Client) Builder() packer.Builder {
return &builder{
client: c.client,
mux: c.mux,
}
}
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
2013-12-10 15:02:01 -05:00
func (c *Client) Command() packer.Command {
return &command{
client: c.client,
mux: c.mux,
}
}
2013-12-10 14:43:02 -05:00
func (c *Client) Communicator() packer.Communicator {
return &communicator{
client: c.client,
mux: c.mux,
}
}
2013-12-10 15:23:42 -05:00
func (c *Client) Environment() packer.Environment {
return &Environment{
client: c.client,
mux: c.mux,
}
}
2013-12-10 14:50:30 -05:00
func (c *Client) Hook() packer.Hook {
return &hook{
client: c.client,
mux: c.mux,
}
}
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
}
}
2013-12-10 14:56:15 -05:00
func (c *Client) Provisioner() packer.Provisioner {
return &provisioner{
client: c.client,
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
}
}