2013-05-04 02:55:08 -04:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"net/rpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// An implementation of packer.Build where the build is actually executed
|
|
|
|
// over an RPC connection.
|
2013-05-22 01:38:41 -04:00
|
|
|
type build struct {
|
2013-05-04 02:55:08 -04:00
|
|
|
client *rpc.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// BuildServer wraps a packer.Build implementation and makes it exportable
|
|
|
|
// as part of a Golang RPC server.
|
|
|
|
type BuildServer struct {
|
|
|
|
build packer.Build
|
|
|
|
}
|
|
|
|
|
|
|
|
type BuildRunArgs struct {
|
|
|
|
UiRPCAddress string
|
|
|
|
}
|
|
|
|
|
2013-05-22 01:38:41 -04:00
|
|
|
func Build(client *rpc.Client) *build {
|
|
|
|
return &build{client}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *build) Name() (result string) {
|
2013-05-09 14:32:03 -04:00
|
|
|
b.client.Call("Build.Name", new(interface{}), &result)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-13 13:08:31 -04:00
|
|
|
func (b *build) Prepare() (err error) {
|
|
|
|
if cerr := b.client.Call("Build.Prepare", new(interface{}), &err); cerr != nil {
|
2013-06-12 19:02:07 -04:00
|
|
|
return cerr
|
2013-05-22 19:20:40 -04:00
|
|
|
}
|
|
|
|
|
2013-05-09 13:54:42 -04:00
|
|
|
return
|
2013-05-04 02:55:08 -04:00
|
|
|
}
|
|
|
|
|
2013-06-12 18:58:02 -04:00
|
|
|
func (b *build) Run(ui packer.Ui, cache packer.Cache) (packer.Artifact, error) {
|
2013-05-04 02:55:08 -04:00
|
|
|
// Create and start the server for the UI
|
2013-05-05 20:38:50 -04:00
|
|
|
server := rpc.NewServer()
|
2013-06-10 01:00:47 -04:00
|
|
|
RegisterCache(server, cache)
|
2013-05-05 20:38:50 -04:00
|
|
|
RegisterUi(server, ui)
|
|
|
|
args := &BuildRunArgs{serveSingleConn(server)}
|
2013-05-22 01:38:41 -04:00
|
|
|
|
|
|
|
var reply string
|
|
|
|
if err := b.client.Call("Build.Run", args, &reply); err != nil {
|
2013-06-12 19:01:42 -04:00
|
|
|
return nil, err
|
2013-05-22 01:38:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
client, err := rpc.Dial("tcp", reply)
|
|
|
|
if err != nil {
|
2013-06-12 19:01:42 -04:00
|
|
|
return nil, err
|
2013-05-22 01:38:41 -04:00
|
|
|
}
|
|
|
|
|
2013-06-12 18:58:02 -04:00
|
|
|
return Artifact(client), nil
|
2013-05-04 02:55:08 -04:00
|
|
|
}
|
|
|
|
|
2013-06-03 19:03:08 -04:00
|
|
|
func (b *build) Cancel() {
|
|
|
|
if err := b.client.Call("Build.Cancel", new(interface{}), new(interface{})); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-10 20:01:24 -04:00
|
|
|
func (b *BuildServer) Name(args *interface{}, reply *string) error {
|
2013-05-09 14:32:03 -04:00
|
|
|
*reply = b.build.Name()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-06-13 13:08:31 -04:00
|
|
|
func (b *BuildServer) Prepare(args interface{}, reply *error) error {
|
|
|
|
*reply = b.build.Prepare()
|
2013-05-04 02:55:08 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-05-22 01:38:41 -04:00
|
|
|
func (b *BuildServer) Run(args *BuildRunArgs, reply *string) error {
|
2013-05-04 02:55:08 -04:00
|
|
|
client, err := rpc.Dial("tcp", args.UiRPCAddress)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-06-12 18:58:02 -04:00
|
|
|
artifact, err := b.build.Run(&Ui{client}, Cache(client))
|
|
|
|
if err != nil {
|
2013-06-12 19:01:42 -04:00
|
|
|
return NewBasicError(err)
|
2013-06-12 18:58:02 -04:00
|
|
|
}
|
2013-05-22 01:38:41 -04:00
|
|
|
|
|
|
|
// Wrap the artifact
|
|
|
|
server := rpc.NewServer()
|
|
|
|
RegisterArtifact(server, artifact)
|
2013-05-04 02:55:08 -04:00
|
|
|
|
2013-05-22 01:38:41 -04:00
|
|
|
*reply = serveSingleConn(server)
|
2013-05-04 02:55:08 -04:00
|
|
|
return nil
|
|
|
|
}
|
2013-06-03 19:03:08 -04:00
|
|
|
|
|
|
|
func (b *BuildServer) Cancel(args *interface{}, reply *interface{}) error {
|
|
|
|
b.build.Cancel()
|
|
|
|
return nil
|
|
|
|
}
|