mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 07:33:32 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"context"
|
|
"net/rpc"
|
|
|
|
"github.com/hashicorp/go-plugin"
|
|
"github.com/opentofu/opentofu/internal/tofu"
|
|
)
|
|
|
|
// UIInput is an implementation of tofu.UIInput that communicates
|
|
// over RPC.
|
|
type UIInput struct {
|
|
Client *rpc.Client
|
|
}
|
|
|
|
func (i *UIInput) Input(ctx context.Context, opts *tofu.InputOpts) (string, error) {
|
|
var resp UIInputInputResponse
|
|
err := i.Client.Call("Plugin.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 *plugin.BasicError
|
|
}
|
|
|
|
// UIInputServer is a net/rpc compatible structure for serving
|
|
// a UIInputServer. This should not be used directly.
|
|
type UIInputServer struct {
|
|
UIInput tofu.UIInput
|
|
}
|
|
|
|
func (s *UIInputServer) Input(
|
|
opts *tofu.InputOpts,
|
|
reply *UIInputInputResponse) error {
|
|
value, err := s.UIInput.Input(context.Background(), opts)
|
|
*reply = UIInputInputResponse{
|
|
Value: value,
|
|
Error: plugin.NewBasicError(err),
|
|
}
|
|
|
|
return nil
|
|
}
|