52 lines
979 B
Go
52 lines
979 B
Go
|
package rpc
|
||
|
|
||
|
import (
|
||
|
"net/rpc"
|
||
|
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
// UIInput is an implementatin of terraform.UIInput that communicates
|
||
|
// over RPC.
|
||
|
type UIInput struct {
|
||
|
Client *rpc.Client
|
||
|
Name string
|
||
|
}
|
||
|
|
||
|
func (i *UIInput) Input(opts *terraform.InputOpts) (string, error) {
|
||
|
var resp UIInputInputResponse
|
||
|
err := i.Client.Call(i.Name+".Input", opts, &resp)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
if resp.Error != nil {
|
||
|
err = resp.Error
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
return resp.Value, nil
|
||
|
}
|
||
|
|
||
|
type UIInputInputResponse struct {
|
||
|
Value string
|
||
|
Error *BasicError
|
||
|
}
|
||
|
|
||
|
// UIInputServer is a net/rpc compatible structure for serving
|
||
|
// a UIInputServer. This should not be used directly.
|
||
|
type UIInputServer struct {
|
||
|
UIInput terraform.UIInput
|
||
|
}
|
||
|
|
||
|
func (s *UIInputServer) Input(
|
||
|
opts *terraform.InputOpts,
|
||
|
reply *UIInputInputResponse) error {
|
||
|
value, err := s.UIInput.Input(opts)
|
||
|
*reply = UIInputInputResponse{
|
||
|
Value: value,
|
||
|
Error: NewBasicError(err),
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|