55 lines
1.3 KiB
Ruby
55 lines
1.3 KiB
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module CommandServe
|
|
class Mappers
|
|
class DurationProtoFromSpec < 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
|
|
|
|
class DurationFromProto < Mapper
|
|
def initialize
|
|
super(
|
|
inputs: [Input.new(type: SDK::Args::TimeDuration)],
|
|
output: Type::Duration,
|
|
func: method(:converter),
|
|
)
|
|
end
|
|
|
|
def converter(proto)
|
|
Type::Duration.new(value: proto.duration)
|
|
end
|
|
end
|
|
|
|
class DurationToProto < Mapper
|
|
def initialize
|
|
super(
|
|
inputs: [Input.new(type: Type::Duration)],
|
|
output: SDK::Args::TimeDuration,
|
|
func: method(:converter),
|
|
)
|
|
end
|
|
|
|
def converter(duration)
|
|
SDK::Args::TimeDuration.new(duration: duration.value)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|