Class: Wareki::Date
- Inherits:
-
Object
- Object
- Wareki::Date
- Defined in:
- lib/wareki/date.rb
Instance Attribute Summary collapse
-
#day ⇒ Object
Returns the value of attribute day.
-
#era_name ⇒ Object
Returns the value of attribute era_name.
-
#era_year ⇒ Object
Returns the value of attribute era_year.
-
#jd ⇒ Object
readonly
Returns the value of attribute jd.
-
#month ⇒ Object
Returns the value of attribute month.
-
#year ⇒ Object
Returns the value of attribute year.
Class Method Summary collapse
- ._parse(str) ⇒ Object
- .date(date) ⇒ Object
- .imperial(year, month = 1, day = 1, is_leap_month = false) ⇒ Object
- .jd(d) ⇒ Object
- .parse(str) ⇒ Object
- .today ⇒ Object
Instance Method Summary collapse
- #+(other) ⇒ Object
- #-(other) ⇒ Object
- #===(other) ⇒ Object
- #__set_jd(v) ⇒ Object
- #eql?(other) ⇒ Boolean (also: #==)
- #format(key) ⇒ Object
- #imperial_year ⇒ Object
- #imperial_year=(v) ⇒ Object
-
#initialize(era_name, era_year, month = 1, day = 1, is_leap_month = false) ⇒ Date
constructor
A new instance of Date.
- #leap_month=(v) ⇒ Object
- #leap_month? ⇒ Boolean
- #month_index ⇒ Object
- #strftime(format_str = "%JF") ⇒ Object
- #to_date(start = ::Date::ITALY) ⇒ Object
- #to_time ⇒ Object
Constructor Details
#initialize(era_name, era_year, month = 1, day = 1, is_leap_month = false) ⇒ Date
Returns a new instance of Date.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/wareki/date.rb', line 78 def initialize(era_name, era_year, month = 1, day = 1, is_leap_month = false) if era_name.to_s != "" && era_name != "紀元前" && !ERA_BY_NAME[era_name] raise ArgumentError, "Undefined era '#{era_name}'" end @month = month @day = day @is_leap_month = is_leap_month @era_name = era_name @era_year = era_year if era_name.to_s == "" || era_name == "西暦" @year = @era_year elsif era_name == "皇紀" || era_name == "神武天皇即位紀元" @year = era_year + IMPERIAL_START_YEAR elsif era_name.to_s == "紀元前" @year = -@era_year else @year = ERA_BY_NAME[era_name].year + era_year - 1 end end |
Instance Attribute Details
#day ⇒ Object
Returns the value of attribute day.
8 9 10 |
# File 'lib/wareki/date.rb', line 8 def day @day end |
#era_name ⇒ Object
Returns the value of attribute era_name.
8 9 10 |
# File 'lib/wareki/date.rb', line 8 def era_name @era_name end |
#era_year ⇒ Object
Returns the value of attribute era_year.
8 9 10 |
# File 'lib/wareki/date.rb', line 8 def era_year @era_year end |
#jd ⇒ Object (readonly)
Returns the value of attribute jd.
7 8 9 |
# File 'lib/wareki/date.rb', line 7 def jd @jd end |
#month ⇒ Object
Returns the value of attribute month.
8 9 10 |
# File 'lib/wareki/date.rb', line 8 def month @month end |
#year ⇒ Object
Returns the value of attribute year.
8 9 10 |
# File 'lib/wareki/date.rb', line 8 def year @year end |
Class Method Details
._parse(str) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/wareki/date.rb', line 14 def self._parse(str) match = REGEX.match(str.to_s.gsub(/[[:space:]]/, '')) if !match || !match[:year] raise ArgumentError, "Invaild Date: #{str}" end era = match[:era_name] year = Utils.kan_to_i(match[:year]) month = 1 day = 1 if era.to_s != "" && era.to_s != "紀元前" && !ERA_BY_NAME[era] raise ArgumentError, "Date parse failed: Invalid era name '#{match[:era_name]}'" end if match[:month] month = Utils.kan_to_i(match[:month]) elsif match[:alt_month] month = Utils.alt_month_name_to_i(match[:alt_month]) end month > 12 || month < 0 and raise ArgumentError, "Invalid month: #{str}" if match[:day] if match[:day] == "晦" day = Utils.last_day_of_month(ERA_BY_NAME[era].year + year -1, month, match[:is_leap]) else day = Utils.kan_to_i(match[:day]) end end if (era == "明治" && year == 5 || era.to_s == "" && year == GREGORIAN_START_YEAR - 1 || (era == "皇紀" || era == "神武天皇即位紀元") && year == GREGORIAN_START_YEAR - IMPERIAL_START_YEAR - 1) && month == 12 && day > 2 raise ArgumentError, "Invaild Date: #{str}" end {era: era, year: year, month: month, day: day, is_leap: !!match[:is_leap]} end |
.date(date) ⇒ Object
70 71 72 |
# File 'lib/wareki/date.rb', line 70 def self.date(date) jd(date.jd) end |
.imperial(year, month = 1, day = 1, is_leap_month = false) ⇒ Object
74 75 76 |
# File 'lib/wareki/date.rb', line 74 def self.imperial(year, month = 1, day = 1, is_leap_month = false) new("皇紀", year, month, day, is_leap_month) end |
.jd(d) ⇒ Object
61 62 63 64 65 66 67 68 |
# File 'lib/wareki/date.rb', line 61 def self.jd(d) era = Utils.find_era(d) era or raise UnsupportedDateRange, "Cannot find era for date #{d.inspect}" year, month, day, is_leap = Utils.find_date_ary(d) obj = new(era.name, year - era.year + 1, month, day, is_leap) obj.__set_jd(d) obj end |
.parse(str) ⇒ Object
56 57 58 59 |
# File 'lib/wareki/date.rb', line 56 def self.parse(str) di = _parse(str) new(di[:era], di[:year], di[:month], di[:day], di[:is_leap]) end |
.today ⇒ Object
10 11 12 |
# File 'lib/wareki/date.rb', line 10 def self.today jd(::Date.today.jd) end |
Instance Method Details
#+(other) ⇒ Object
246 247 248 249 250 251 252 253 254 |
# File 'lib/wareki/date.rb', line 246 def +(other) if other.class.to_s == "ActiveSupport::Duration" raise NotImplementedError, "Date calcration with ActiveSupport::Duration currently is not supported. Please use numeric." else other.respond_to?(:to_date) and other = other.to_date other.respond_to?(:jd) and other = other.jd self.class.jd jd + other end end |
#-(other) ⇒ Object
236 237 238 239 240 241 242 243 244 |
# File 'lib/wareki/date.rb', line 236 def -(other) if other.class.to_s == "ActiveSupport::Duration" raise NotImplementedError, "Date calcration with ActiveSupport::Duration currently is not supported. Please use numeric." else other.respond_to?(:to_date) and other = other.to_date other.respond_to?(:jd) and other = other.jd self.class.jd jd - other end end |
#===(other) ⇒ Object
227 228 229 230 231 232 233 234 |
# File 'lib/wareki/date.rb', line 227 def ===(other) begin other.jd == jd or return false rescue => e return false end true end |
#__set_jd(v) ⇒ Object
114 115 116 |
# File 'lib/wareki/date.rb', line 114 def __set_jd(v) @jd = v end |
#eql?(other) ⇒ Boolean Also known as: ==
215 216 217 218 219 220 221 222 223 224 |
# File 'lib/wareki/date.rb', line 215 def eql?(other) begin [:year, :month, :day, :era_year, :era_name, :leap_month?].each do |attr| other.public_send(attr) == public_send(attr) or return false end rescue => e return false end true end |
#format(key) ⇒ Object
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/wareki/date.rb', line 161 def format(key) case key.to_sym when :e; era_name when :g; era_name.to_s == "" ? '' : era_year when :G; era_name.to_s == "" ? '' : Utils.i_to_zen(era_year) when :Gk; era_name.to_s == "" ? '' : Utils.i_to_kan(era_year) when :GK if era_name.to_s == "" '' elsif era_year == 1 "元" else Utils.i_to_kan(era_year) end when :o; year when :O; Utils.i_to_zen(year) when :Ok; Utils.i_to_kan(year) when :i; imperial_year when :I; Utils.i_to_zen(imperial_year) when :Ik; Utils.i_to_kan(imperial_year) when :s; month when :S; Utils.i_to_zen(month) when :Sk; Utils.i_to_kan(month) when :SK; Utils.alt_month_name(month) when :l; leap_month? ? "'" : "" when :L; leap_month? ? "’" : "" when :Lk; leap_month? ? "閏" : "" when :d; day when :D; Utils.i_to_zen(day) when :Dk; Utils.i_to_kan(day) when :DK if month == 1 && !leap_month? && day == 1 "元" elsif day == 1 "朔" elsif day == Utils.last_day_of_month(year, month, leap_month?) "晦" else Utils.i_to_kan(day) end when :m; "#{format(:s)}#{format(:l)}" when :M; "#{format(:Lk)}#{format(:S)}" when :Mk; "#{format(:Lk)}#{format(:Sk)}" when :y; "#{format(:e)}#{format(:g)}" when :Y; "#{format(:e)}#{format(:G)}" when :Yk; "#{format(:e)}#{format(:Gk)}" when :YK; "#{format(:e)}#{format(:GK)}" when :f; "#{format(:e)}#{format(:g)}年#{format(:s)}#{format(:l)}月#{format(:d)}日" when :F; "#{format(:e)}#{format(:GK)}年#{format(:Lk)}#{format(:Sk)}月#{format(:Dk)}日" else nil end end |
#imperial_year ⇒ Object
98 99 100 |
# File 'lib/wareki/date.rb', line 98 def imperial_year @year - IMPERIAL_START_YEAR end |
#imperial_year=(v) ⇒ Object
102 103 104 |
# File 'lib/wareki/date.rb', line 102 def imperial_year=(v) @year = v - IMPERIAL_START_YEAR end |
#leap_month=(v) ⇒ Object
110 111 112 |
# File 'lib/wareki/date.rb', line 110 def leap_month=(v) @is_leap_month = v end |
#leap_month? ⇒ Boolean
106 107 108 |
# File 'lib/wareki/date.rb', line 106 def leap_month? !!@is_leap_month end |
#month_index ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/wareki/date.rb', line 118 def month_index if @era_name == "" || @era_name == "西暦" || @era_name == "紀元前" || @year >= GREGORIAN_START_YEAR return month -1 end yobj = YEAR_BY_NUM[@year] or raise UnsupportedDateRange, "Cannot get year info of #{self.inspect}" idx = month - 1 if leap_month? || yobj.leap_month && month > yobj.leap_month idx += 1 end idx end |
#strftime(format_str = "%JF") ⇒ Object
154 155 156 157 158 159 |
# File 'lib/wareki/date.rb', line 154 def strftime(format_str = "%JF") ret = format_str.to_str.gsub(/%J([fFyYegGoOiImMsSlLdD][kK]?)/) { format($1) || $& } ret.index("%") or return ret d = to_date d.respond_to?(:_wareki_strftime_orig) ? d._wareki_strftime_orig(ret) : d.strftime(ret) end |
#to_date(start = ::Date::ITALY) ⇒ Object
146 147 148 |
# File 'lib/wareki/date.rb', line 146 def to_date(start = ::Date::ITALY) ::Date.jd(jd, start) end |
#to_time ⇒ Object
150 151 152 |
# File 'lib/wareki/date.rb', line 150 def to_time to_date.to_time end |