Files
Packer-Cn/packer/rpc/post_processor.go
T

133 lines
3.2 KiB
Go
Raw Normal View History

2013-06-18 13:44:57 -07:00
package rpc
import (
2019-03-22 14:56:02 +01:00
"context"
"log"
2017-03-28 18:02:51 -07:00
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/packer"
2013-06-18 13:44:57 -07:00
)
// An implementation of packer.PostProcessor where the PostProcessor is actually
// executed over an RPC connection.
type postProcessor struct {
2019-12-17 11:25:56 +01:00
commonClient
2013-06-18 13:44:57 -07:00
}
// PostProcessorServer wraps a packer.PostProcessor implementation and makes it
// exportable as part of a Golang RPC server.
type PostProcessorServer struct {
context context.Context
contextCancel func()
2019-12-17 11:25:56 +01:00
commonServer
p packer.PostProcessor
2013-06-18 13:44:57 -07:00
}
type PostProcessorConfigureArgs struct {
Configs []interface{}
}
2013-06-18 13:44:57 -07:00
type PostProcessorProcessResponse struct {
2019-04-02 16:51:58 -07:00
Err *BasicError
Keep bool
ForceOverride bool
StreamId uint32
2013-06-18 13:44:57 -07:00
}
2019-12-17 11:25:56 +01:00
func (p *postProcessor) Configure(raw ...interface{}) error {
raw, err := encodeCTYValues(raw)
if err != nil {
return err
2013-06-18 13:44:57 -07:00
}
2019-12-17 11:25:56 +01:00
args := &PostProcessorConfigureArgs{Configs: raw}
return p.client.Call(p.endpoint+".Configure", args, new(interface{}))
2013-06-18 13:44:57 -07:00
}
func (p *postProcessor) PostProcess(ctx context.Context, ui packer.Ui, a packer.Artifact) (packer.Artifact, bool, bool, error) {
2013-12-09 19:07:36 -08:00
nextId := p.mux.NextId()
2013-12-19 17:35:32 -08:00
server := newServerWithMux(p.mux, nextId)
2013-12-09 19:07:36 -08:00
server.RegisterArtifact(a)
server.RegisterUi(ui)
go server.Serve()
2013-06-18 13:44:57 -07:00
done := make(chan interface{})
defer close(done)
go func() {
select {
case <-ctx.Done():
log.Printf("Cancelling post-processor after context cancellation %v", ctx.Err())
2019-12-17 11:25:56 +01:00
if err := p.client.Call(p.endpoint+".Cancel", new(interface{}), new(interface{})); err != nil {
log.Printf("Error cancelling post-processor: %s", err)
}
case <-done:
}
}()
2013-06-18 13:44:57 -07:00
var response PostProcessorProcessResponse
2019-12-17 11:25:56 +01:00
if err := p.client.Call(p.endpoint+".PostProcess", nextId, &response); err != nil {
2019-04-02 16:51:58 -07:00
return nil, false, false, err
2013-06-18 13:44:57 -07:00
}
if response.Err != nil {
2019-04-02 16:51:58 -07:00
return nil, false, false, response.Err
2013-06-18 13:44:57 -07:00
}
2013-12-09 19:07:36 -08:00
if response.StreamId == 0 {
2019-04-02 16:51:58 -07:00
return nil, false, false, nil
2013-06-18 13:44:57 -07:00
}
2013-12-19 17:35:32 -08:00
client, err := newClientWithMux(p.mux, response.StreamId)
2013-12-09 19:07:36 -08:00
if err != nil {
2019-04-02 16:51:58 -07:00
return nil, false, false, err
2013-12-09 19:07:36 -08:00
}
2019-04-02 16:51:58 -07:00
return client.Artifact(), response.Keep, response.ForceOverride, nil
2013-06-18 13:44:57 -07:00
}
2019-12-17 11:25:56 +01:00
func (p *PostProcessorServer) Configure(args *PostProcessorConfigureArgs, reply *interface{}) (err error) {
config, err := decodeCTYValues(args.Configs)
if err != nil {
return err
}
err = p.p.Configure(config...)
return err
2013-06-18 13:44:57 -07:00
}
func (p *PostProcessorServer) PostProcess(streamId uint32, reply *PostProcessorProcessResponse) error {
2013-12-19 17:35:32 -08:00
client, err := newClientWithMux(p.mux, streamId)
2013-12-09 19:07:36 -08:00
if err != nil {
return NewBasicError(err)
2013-06-18 13:44:57 -07:00
}
2013-12-09 19:07:36 -08:00
defer client.Close()
2013-06-18 13:44:57 -07:00
if p.context == nil {
p.context, p.contextCancel = context.WithCancel(context.Background())
}
2013-12-09 19:07:36 -08:00
streamId = 0
artifactResult, keep, forceOverride, err := p.p.PostProcess(p.context, client.Ui(), client.Artifact())
if err == nil && artifactResult != nil {
2013-12-09 19:07:36 -08:00
streamId = p.mux.NextId()
2013-12-19 17:35:32 -08:00
server := newServerWithMux(p.mux, streamId)
2013-12-09 19:07:36 -08:00
server.RegisterArtifact(artifactResult)
go server.Serve()
2013-06-18 13:44:57 -07:00
}
*reply = PostProcessorProcessResponse{
2019-04-02 16:51:58 -07:00
Err: NewBasicError(err),
Keep: keep,
ForceOverride: forceOverride,
StreamId: streamId,
2013-06-18 13:44:57 -07:00
}
return nil
}
func (b *PostProcessorServer) Cancel(args *interface{}, reply *interface{}) error {
if b.contextCancel != nil {
b.contextCancel()
}
return nil
}