|
|
@ -18,23 +18,39 @@ def elapsed_text(elapsed)
|
|
|
|
"#{(millis * 1000).round(2)}µs"
|
|
|
|
"#{(millis * 1000).round(2)}µs"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def decode_length_seconds(string)
|
|
|
|
module TimeSpanConverter
|
|
|
|
length_seconds = string.gsub(/[^0-9:]/, "")
|
|
|
|
def self.to_yaml(value : Time::Span, yaml : YAML::Nodes::Builder)
|
|
|
|
return 0_i32 if length_seconds.empty?
|
|
|
|
return yaml.scalar recode_length_seconds(value.total_seconds.to_i32)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def self.from_yaml(ctx : YAML::ParseContext, node : YAML::Nodes::Node) : Time::Span
|
|
|
|
|
|
|
|
if node.is_a?(YAML::Nodes::Scalar)
|
|
|
|
|
|
|
|
return decode_time_span(node.value)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
node.raise "Expected scalar, not #{node.class}"
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
length_seconds = length_seconds.split(":").map { |x| x.to_i? || 0 }
|
|
|
|
def decode_time_span(string : String) : Time::Span
|
|
|
|
length_seconds = [0] * (3 - length_seconds.size) + length_seconds
|
|
|
|
time_span = string.gsub(/[^0-9:]/, "")
|
|
|
|
|
|
|
|
return Time::Span.new(seconds: 0) if time_span.empty?
|
|
|
|
|
|
|
|
|
|
|
|
length_seconds = Time::Span.new(
|
|
|
|
time_span = time_span.split(":").map { |x| x.to_i? || 0 }
|
|
|
|
hours: length_seconds[0],
|
|
|
|
time_span = [0] * (3 - time_span.size) + time_span
|
|
|
|
minutes: length_seconds[1],
|
|
|
|
|
|
|
|
seconds: length_seconds[2]
|
|
|
|
return Time::Span.new(
|
|
|
|
).total_seconds.to_i32
|
|
|
|
hours: time_span[0],
|
|
|
|
|
|
|
|
minutes: time_span[1],
|
|
|
|
|
|
|
|
seconds: time_span[2]
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
return length_seconds
|
|
|
|
def decode_length_seconds(string : String) : Int32
|
|
|
|
|
|
|
|
return decode_time_span(string).total_seconds.to_i32
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def recode_length_seconds(time)
|
|
|
|
def recode_length_seconds(time : Int32) : String
|
|
|
|
if time <= 0
|
|
|
|
if time <= 0
|
|
|
|
return ""
|
|
|
|
return ""
|
|
|
|
else
|
|
|
|
else
|
|
|
|