41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
module VagrantPlugins
|
|
module CommandServe
|
|
class Mappers
|
|
# Build a communicator command arguments from a FuncSpec value
|
|
class CommunicatorCommandArgumentsFromSpec < Mapper
|
|
def initialize
|
|
inputs = [].tap do |i|
|
|
i << Input.new(type: SDK::FuncSpec::Value) { |arg|
|
|
arg.type == "hashicorp.vagrant.sdk.Communicator.Command" &&
|
|
!arg&.value&.value.nil?
|
|
}
|
|
end
|
|
super(inputs: inputs, output: SDK::Communicator::Command, func: method(:converter))
|
|
end
|
|
|
|
def converter(proto)
|
|
SDK::Communicator::Command.decode(proto.value.value)
|
|
end
|
|
end
|
|
|
|
class TimeDurationFromSpec < Mapper
|
|
def initialize
|
|
super(
|
|
inputs: [Input.new(type: SDK::FuncSpec::Value) { |arg|
|
|
arg.type == "hashicorp.vagrant.sdk.Args.TimeDuration" &&
|
|
!arg&.value&.value.nil?
|
|
}
|
|
],
|
|
output: SDK::Args::TimeDuration,
|
|
func: method(:converter),
|
|
)
|
|
end
|
|
|
|
def converter(fv)
|
|
SDK::Args::TimeDuration.decode(fv.value.value)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|