我正在尝试将持续时间对象(从ruby-duration gem)转储到具有自定义类型的 yaml 中,因此它们以hh:mm:ss
. 我试图修改这个问题的答案,但是当使用 YAML.load 解析 yaml 时,会返回一个 Fixnum 而不是 Duration。有趣的是,Fixnum 是持续时间的总秒数,因此解析似乎有效,但之后转换为 Fixnum。
到目前为止我的代码:
class Duration
def to_yaml_type
"!example.com,2012-06-28/duration"
end
def to_yaml(opts = {})
YAML.quick_emit( nil, opts ) { |out|
out.scalar( to_yaml_type, to_string_representation, :plain )
}
end
def to_string_representation
format("%h:%m:%s")
end
def Duration.from_string_representation(string_representation)
split = string_representation.split(":")
Duration.new(:hours => split[0], :minutes => split[1], :seconds => split[2])
end
end
YAML::add_domain_type("example.com,2012-06-28", "duration") do |type, val|
Duration.from_string_representation(val)
end
为了澄清,我得到了什么结果:
irb> Duration.new(27500).to_yaml
=> "--- !example.com,2012-06-28/duration 7:38:20\n...\n"
irb> YAML.load(Duration.new(27500).to_yaml)
=> 27500
# should be <Duration:0xxxxxxx @seconds=20, @total=27500, @weeks=0, @days=0, @hours=7, @minutes=38>