packer-cn/packer/rpc/build.go

137 lines
2.9 KiB
Go
Raw Normal View History

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 {
client *rpc.Client
2013-12-11 14:19:36 -05:00
mux *MuxConn
}
// BuildServer wraps a packer.Build implementation and makes it exportable
// as part of a Golang RPC server.
type BuildServer struct {
build packer.Build
2013-12-10 16:18:48 -05:00
mux *MuxConn
}
type BuildPrepareResponse struct {
Warnings []string
Error error
}
2013-05-22 01:38:41 -04:00
func (b *build) Name() (result string) {
2013-05-09 14:32:03 -04:00
b.client.Call("Build.Name", new(interface{}), &result)
return
}
func (b *build) Prepare(v map[string]string) ([]string, error) {
var resp BuildPrepareResponse
if cerr := b.client.Call("Build.Prepare", v, &resp); cerr != nil {
return nil, cerr
2013-05-22 19:20:40 -04:00
}
return resp.Warnings, resp.Error
}
func (b *build) Run(ui packer.Ui, cache packer.Cache) ([]packer.Artifact, error) {
2013-12-10 16:18:48 -05:00
nextId := b.mux.NextId()
server := NewServerWithMux(b.mux, nextId)
server.RegisterCache(cache)
server.RegisterUi(ui)
go server.Serve()
var result []uint32
if err := b.client.Call("Build.Run", nextId, &result); err != nil {
return nil, err
2013-05-22 01:38:41 -04:00
}
artifacts := make([]packer.Artifact, len(result))
2013-12-10 16:18:48 -05:00
for i, streamId := range result {
client, err := NewClientWithMux(b.mux, streamId)
if err != nil {
return nil, err
}
2013-12-10 16:18:48 -05:00
artifacts[i] = client.Artifact()
2013-05-22 01:38:41 -04:00
}
return artifacts, nil
}
2013-06-14 15:22:19 -04:00
func (b *build) SetDebug(val bool) {
if err := b.client.Call("Build.SetDebug", val, new(interface{})); err != nil {
panic(err)
}
}
func (b *build) SetForce(val bool) {
if err := b.client.Call("Build.SetForce", val, new(interface{})); err != nil {
panic(err)
}
}
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
}
func (b *BuildServer) Prepare(v map[string]string, resp *BuildPrepareResponse) error {
warnings, err := b.build.Prepare(v)
*resp = BuildPrepareResponse{
Warnings: warnings,
Error: err,
}
return nil
}
2013-12-10 16:18:48 -05:00
func (b *BuildServer) Run(streamId uint32, reply *[]uint32) error {
client, err := NewClientWithMux(b.mux, streamId)
if err != nil {
2013-12-10 16:18:48 -05:00
return NewBasicError(err)
}
2013-12-10 16:18:48 -05:00
defer client.Close()
2013-12-10 16:18:48 -05:00
artifacts, err := b.build.Run(client.Ui(), client.Cache())
if err != nil {
return NewBasicError(err)
}
2013-05-22 01:38:41 -04:00
2013-12-10 16:18:48 -05:00
*reply = make([]uint32, len(artifacts))
for i, artifact := range artifacts {
2013-12-10 16:18:48 -05:00
streamId := b.mux.NextId()
server := NewServerWithMux(b.mux, streamId)
server.RegisterArtifact(artifact)
go server.Serve()
(*reply)[i] = streamId
}
return nil
}
2013-06-03 19:03:08 -04:00
2013-06-14 15:22:19 -04:00
func (b *BuildServer) SetDebug(val *bool, reply *interface{}) error {
b.build.SetDebug(*val)
return nil
}
func (b *BuildServer) SetForce(val *bool, reply *interface{}) error {
b.build.SetForce(*val)
return nil
}
2013-06-03 19:03:08 -04:00
func (b *BuildServer) Cancel(args *interface{}, reply *interface{}) error {
b.build.Cancel()
return nil
}