opentofu/internal/plugin/ui_input.go
namgyalangmo cb2e9119aa
Update copyright notice (#1232)
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
2024-02-08 09:48:59 +00:00

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
}