mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
84214437b3
This replaces this plugin system with the extracted hashicorp/go-plugin library. This doesn't introduce any new features such as binary flattening but opens us up to that a lot more easily and removes a lot of code from TF in favor of the upstream lib. This will introduce a protocol change that will cause all existing plugins to have to be recompiled to work properly. There is no actual API changes so they just have to recompile, but it is technically backwards incompatible.
30 lines
537 B
Go
30 lines
537 B
Go
package plugin
|
|
|
|
import (
|
|
"net/rpc"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
// UIOutput is an implementatin of terraform.UIOutput that communicates
|
|
// over RPC.
|
|
type UIOutput struct {
|
|
Client *rpc.Client
|
|
}
|
|
|
|
func (o *UIOutput) Output(v string) {
|
|
o.Client.Call("Plugin.Output", v, new(interface{}))
|
|
}
|
|
|
|
// UIOutputServer is the RPC server for serving UIOutput.
|
|
type UIOutputServer struct {
|
|
UIOutput terraform.UIOutput
|
|
}
|
|
|
|
func (s *UIOutputServer) Output(
|
|
v string,
|
|
reply *interface{}) error {
|
|
s.UIOutput.Output(v)
|
|
return nil
|
|
}
|