packer-cn/packer/rpc/post_processor.go

99 lines
2.3 KiB
Go
Raw Normal View History

2013-06-18 16:44:57 -04:00
package rpc
import (
"github.com/mitchellh/packer/packer"
"net/rpc"
)
// An implementation of packer.PostProcessor where the PostProcessor is actually
// executed over an RPC connection.
type postProcessor struct {
client *rpc.Client
2014-09-02 17:23:06 -04:00
mux *muxBroker
2013-06-18 16:44:57 -04:00
}
// PostProcessorServer wraps a packer.PostProcessor implementation and makes it
// exportable as part of a Golang RPC server.
type PostProcessorServer struct {
client *rpc.Client
2014-09-02 17:23:06 -04:00
mux *muxBroker
p packer.PostProcessor
2013-06-18 16:44:57 -04:00
}
type PostProcessorConfigureArgs struct {
Configs []interface{}
}
2013-06-18 16:44:57 -04:00
type PostProcessorProcessResponse struct {
Err *BasicError
2013-12-09 22:07:36 -05:00
Keep bool
StreamId uint32
2013-06-18 16:44:57 -04:00
}
func (p *postProcessor) Configure(raw ...interface{}) (err error) {
args := &PostProcessorConfigureArgs{Configs: raw}
if cerr := p.client.Call("PostProcessor.Configure", args, new(interface{})); cerr != nil {
2013-06-18 16:44:57 -04:00
err = cerr
}
return
}
func (p *postProcessor) PostProcess(ui packer.Ui, a packer.Artifact) (packer.Artifact, bool, error) {
2013-12-09 22:07:36 -05:00
nextId := p.mux.NextId()
server := newServerWithMux(p.mux, nextId)
2013-12-09 22:07:36 -05:00
server.RegisterArtifact(a)
server.RegisterUi(ui)
go server.Serve()
2013-06-18 16:44:57 -04:00
var response PostProcessorProcessResponse
2013-12-09 22:07:36 -05:00
if err := p.client.Call("PostProcessor.PostProcess", nextId, &response); err != nil {
return nil, false, err
2013-06-18 16:44:57 -04:00
}
if response.Err != nil {
return nil, false, response.Err
2013-06-18 16:44:57 -04:00
}
2013-12-09 22:07:36 -05:00
if response.StreamId == 0 {
return nil, false, nil
2013-06-18 16:44:57 -04:00
}
client, err := newClientWithMux(p.mux, response.StreamId)
2013-12-09 22:07:36 -05:00
if err != nil {
return nil, false, err
}
return client.Artifact(), response.Keep, nil
2013-06-18 16:44:57 -04:00
}
func (p *PostProcessorServer) Configure(args *PostProcessorConfigureArgs, reply *interface{}) error {
err := p.p.Configure(args.Configs...)
return err
2013-06-18 16:44:57 -04:00
}
2013-12-09 22:07:36 -05:00
func (p *PostProcessorServer) PostProcess(streamId uint32, reply *PostProcessorProcessResponse) error {
client, err := newClientWithMux(p.mux, streamId)
2013-12-09 22:07:36 -05:00
if err != nil {
return NewBasicError(err)
}
2013-12-09 22:07:36 -05:00
defer client.Close()
2013-06-18 16:44:57 -04:00
2013-12-09 22:07:36 -05:00
streamId = 0
artifactResult, keep, err := p.p.PostProcess(client.Ui(), client.Artifact())
if err == nil && artifactResult != nil {
2013-12-09 22:07:36 -05:00
streamId = p.mux.NextId()
server := newServerWithMux(p.mux, streamId)
2013-12-09 22:07:36 -05:00
server.RegisterArtifact(artifactResult)
go server.Serve()
2013-06-18 16:44:57 -04:00
}
*reply = PostProcessorProcessResponse{
Err: NewBasicError(err),
2013-12-09 22:07:36 -05:00
Keep: keep,
StreamId: streamId,
2013-06-18 16:44:57 -04:00
}
return nil
}