1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
package rpc
import (
"io"
"log"
"net/rpc"
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
"github.com/ugorji/go/codec"
)
// Client is the client end that communicates with a Packer RPC server.
// Establishing a connection is up to the user. The Client can communicate over
// any ReadWriteCloser. In Packer, each "plugin" (builder, provisioner,
// and post-processor) creates and launches a server. The the packer "core"
// creates and uses the client.
type Client struct {
mux *muxBroker
client *rpc.Client
closeMux bool
}
func NewClient(rwc io.ReadWriteCloser) (*Client, error) {
mux, err := newMuxBrokerClient(rwc)
if err != nil {
return nil, err
}
go mux.Run()
result, err := newClientWithMux(mux, 0)
if err != nil {
mux.Close()
return nil, err
}
result.closeMux = true
return result, err
}
func newClientWithMux(mux *muxBroker, streamId uint32) (*Client, error) {
clientConn, err := mux.Dial(streamId)
if err != nil {
return nil, err
}
h := &codec.MsgpackHandle{
WriteExt: true,
}
clientCodec := codec.GoRpc.ClientCodec(clientConn, h)
return &Client{
mux: mux,
client: rpc.NewClientWithCodec(clientCodec),
closeMux: false,
}, nil
}
func (c *Client) Close() error {
if err := c.client.Close(); err != nil {
return err
}
if c.closeMux {
log.Printf("[WARN] Client is closing mux")
return c.mux.Close()
}
return nil
}
func (c *Client) Artifact() packersdk.Artifact {
return &artifact{
commonClient: commonClient{
endpoint: DefaultArtifactEndpoint,
client: c.client,
},
}
}
func (c *Client) Build() packersdk.Build {
return &build{
commonClient: commonClient{
endpoint: DefaultBuildEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) Builder() packersdk.Builder {
return &builder{
commonClient: commonClient{
endpoint: DefaultBuilderEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) Communicator() packersdk.Communicator {
return &communicator{
commonClient: commonClient{
endpoint: DefaultCommunicatorEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) Hook() packersdk.Hook {
return &hook{
commonClient: commonClient{
endpoint: DefaultHookEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) PostProcessor() packersdk.PostProcessor {
return &postProcessor{
commonClient: commonClient{
endpoint: DefaultPostProcessorEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) Provisioner() packersdk.Provisioner {
return &provisioner{
commonClient: commonClient{
endpoint: DefaultProvisionerEndpoint,
client: c.client,
mux: c.mux,
},
}
}
func (c *Client) Ui() packersdk.Ui {
return &Ui{
commonClient: commonClient{
endpoint: DefaultUiEndpoint,
client: c.client,
},
endpoint: DefaultUiEndpoint,
}
}
|