From 0279da4dad3f197d62e0d198c8ce08ef0cd8a5ed Mon Sep 17 00:00:00 2001 From: Benjamin Kellermann Date: Thu, 21 Jan 2010 08:28:38 +0100 Subject: bugfix: could add 2 columns of same name --- timestring.rb | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 timestring.rb (limited to 'timestring.rb') diff --git a/timestring.rb b/timestring.rb new file mode 100644 index 0000000..436f1f0 --- /dev/null +++ b/timestring.rb @@ -0,0 +1,108 @@ +############################################################################ +# Copyright 2009,2010 Benjamin Kellermann # +# # +# This file is part of dudle. # +# # +# Dudle is free software: you can redistribute it and/or modify it under # +# the terms of the GNU Affero General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# Dudle is distributed in the hope that it will be useful, but WITHOUT ANY # +# WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public # +# License for more details. # +# # +# You should have received a copy of the GNU Affero General Public License # +# along with dudle. If not, see . # +############################################################################ + +require "date" +require "time" + +class TimeString + attr_reader :date, :time + def initialize(date,time) + @date = date.class == Date ? date : Date.parse(date) + if time =~ /^\d[\d]?:\d[\d]?$/ + begin +#TODO: what to do with 24:00 ??? +# if time == "24:00" +# @date += 1 +# time = "00:00" +# end + @time = Time.parse("#{@date} #{time}") + rescue ArgumentError + @time = time + end + else + @time = time + end + end + def TimeString.from_s(string) + date = string.scan(/^(\d\d\d\d-\d\d-\d\d).*$/).flatten[0] + time = string.scan(/^\d\d\d\d-\d\d-\d\d (.*)$/).flatten[0] + TimeString.new(date,time) + end + def TimeString.now + TimeString.new(Date.today,Time.now) + end + include Comparable + def equal?(other) + self <=> other + end + def eql?(other) + self <=> other + end + def <=>(other) + if self.date == other.date + if self.time.class == String && other.time.class == String || self.time.class == Time && other.time.class == Time + self.time <=> other.time + elsif self.time.class == NilClass && other.time.class == NilClass + 0 + else + self.time.class == String ? 1 : -1 + end + else + self.date <=> other.date + end + end + def to_s + if @time + "#{@date} #{time_to_s}" + else + @date.to_s + end + end + def inspect + "TS: date: #{@date} time: #{@time ? time_to_s : "nil"}" + end + def time_to_s + if @time.class == Time + return time.strftime("%H:%M") + else + return @time + end + end +end + + +if __FILE__ == $0 +require 'test/unit' +require 'pp' + + +class TimeStringTest < Test::Unit::TestCase + def test_uniq + a = TimeString.new("2010-01-22","1:00") + b = TimeString.new("2010-01-22","1:00") + assert(a == b) + assert(a === b) + assert(a.equal? b) + assert(a.eql? b) + assert([a].include? b) + assert_equal([a],[a,b].uniq) + end +end + +end -- cgit v1.2.3