|
1 | 1 | package timefmt
|
2 | 2 |
|
3 |
| -import "time" |
| 3 | +import ( |
| 4 | + "errors" |
| 5 | + "strconv" |
| 6 | + "time" |
| 7 | +) |
4 | 8 |
|
5 | 9 | const digits = "0123456789"
|
6 | 10 |
|
@@ -120,3 +124,166 @@ func Format(t time.Time) []byte {
|
120 | 124 |
|
121 | 125 | return b
|
122 | 126 | }
|
| 127 | + |
| 128 | +func isLeap(year int) bool { |
| 129 | + return year%4 == 0 && (year%100 != 0 || year%400 == 0) |
| 130 | +} |
| 131 | + |
| 132 | +// daysBefore[m] counts the number of days in a non-leap year |
| 133 | +// before month m begins. There is an entry for m=12, counting |
| 134 | +// the number of days before January of next year (365). |
| 135 | +var daysBefore = [...]int32{ |
| 136 | + 0, |
| 137 | + 31, |
| 138 | + 31 + 28, |
| 139 | + 31 + 28 + 31, |
| 140 | + 31 + 28 + 31 + 30, |
| 141 | + 31 + 28 + 31 + 30 + 31, |
| 142 | + 31 + 28 + 31 + 30 + 31 + 30, |
| 143 | + 31 + 28 + 31 + 30 + 31 + 30 + 31, |
| 144 | + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31, |
| 145 | + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30, |
| 146 | + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31, |
| 147 | + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30, |
| 148 | + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31, |
| 149 | +} |
| 150 | + |
| 151 | +func daysIn(m time.Month, year int) int { |
| 152 | + if m == time.February && isLeap(year) { |
| 153 | + return 29 |
| 154 | + } |
| 155 | + return int(daysBefore[m] - daysBefore[m-1]) |
| 156 | +} |
| 157 | + |
| 158 | +// isDigit reports whether s[i] is in range and is a decimal digit. |
| 159 | +func isDigit(s string, i int) bool { |
| 160 | + if len(s) <= i { |
| 161 | + return false |
| 162 | + } |
| 163 | + c := s[i] |
| 164 | + return '0' <= c && c <= '9' |
| 165 | +} |
| 166 | + |
| 167 | +func commaOrPeriod(b byte) bool { |
| 168 | + return b == '.' || b == ',' |
| 169 | +} |
| 170 | + |
| 171 | +var errBad = errors.New("bad value for field") // placeholder not passed to user |
| 172 | + |
| 173 | +func parseNanoseconds(value string, nbytes int) (ns int, rangeErrString string, err error) { |
| 174 | + if !commaOrPeriod(value[0]) { |
| 175 | + err = errBad |
| 176 | + return |
| 177 | + } |
| 178 | + if nbytes > 10 { |
| 179 | + value = value[:10] |
| 180 | + nbytes = 10 |
| 181 | + } |
| 182 | + if ns, err = strconv.Atoi(value[1:nbytes]); err != nil { |
| 183 | + return |
| 184 | + } |
| 185 | + if ns < 0 { |
| 186 | + rangeErrString = "fractional second" |
| 187 | + return |
| 188 | + } |
| 189 | + // We need nanoseconds, which means scaling by the number |
| 190 | + // of missing digits in the format, maximum length 10. |
| 191 | + scaleDigits := 10 - nbytes |
| 192 | + for i := 0; i < scaleDigits; i++ { |
| 193 | + ns *= 10 |
| 194 | + } |
| 195 | + return |
| 196 | +} |
| 197 | + |
| 198 | +func parse(s string, local *time.Location) (time.Time, bool) { |
| 199 | + // parseUint parses s as an unsigned decimal integer and |
| 200 | + // verifies that it is within some range. |
| 201 | + // If it is invalid or out-of-range, |
| 202 | + // it sets ok to false and returns the min value. |
| 203 | + ok := true |
| 204 | + parseUint := func(s string, min, max int) (x int) { |
| 205 | + for _, c := range []byte(s) { |
| 206 | + if c < '0' || '9' < c { |
| 207 | + ok = false |
| 208 | + return min |
| 209 | + } |
| 210 | + x = x*10 + int(c) - '0' |
| 211 | + } |
| 212 | + if x < min || max < x { |
| 213 | + ok = false |
| 214 | + return min |
| 215 | + } |
| 216 | + return x |
| 217 | + } |
| 218 | + |
| 219 | + // Parse the date and time. |
| 220 | + // "2006-01-02 15:04:05.999999999-07:00" |
| 221 | + if len(s) < len("2006-01-02 15:04:05") { |
| 222 | + return time.Time{}, false |
| 223 | + } |
| 224 | + year := parseUint(s[0:4], 0, 9999) // e.g., 2006 |
| 225 | + month := parseUint(s[5:7], 1, 12) // e.g., 01 |
| 226 | + day := parseUint(s[8:10], 1, daysIn(time.Month(month), year)) // e.g., 02 |
| 227 | + hour := parseUint(s[11:13], 0, 23) // e.g., 15 |
| 228 | + min := parseUint(s[14:16], 0, 59) // e.g., 04 |
| 229 | + sec := parseUint(s[17:19], 0, 59) // e.g., 05 |
| 230 | + |
| 231 | + if !ok || !(s[4] == '-' && s[7] == '-' && (s[10] == ' ' || s[10] == 'T') && s[13] == ':' && s[16] == ':') { |
| 232 | + return time.Time{}, false |
| 233 | + } |
| 234 | + s = s[19:] |
| 235 | + |
| 236 | + // Parse the fractional second. |
| 237 | + var nsec int |
| 238 | + if len(s) >= 2 && s[0] == '.' && isDigit(s, 1) { |
| 239 | + n := 2 |
| 240 | + for ; n < len(s) && isDigit(s, n); n++ { |
| 241 | + } |
| 242 | + nsec, _, _ = parseNanoseconds(s, n) |
| 243 | + s = s[n:] |
| 244 | + } |
| 245 | + |
| 246 | + // Parse the time zone. |
| 247 | + t := time.Date(year, time.Month(month), day, hour, min, sec, nsec, time.UTC) |
| 248 | + if len(s) != 1 || s[0] != 'Z' { |
| 249 | + if len(s) != len("-07:00") { |
| 250 | + return time.Time{}, false |
| 251 | + } |
| 252 | + hr := parseUint(s[1:3], 0, 23) // e.g., 07 |
| 253 | + mm := parseUint(s[4:6], 0, 59) // e.g., 00 |
| 254 | + if !ok || !((s[0] == '-' || s[0] == '+') && s[3] == ':') { |
| 255 | + return time.Time{}, false |
| 256 | + } |
| 257 | + zoneOffset := (hr*60 + mm) * 60 |
| 258 | + if s[0] == '-' { |
| 259 | + zoneOffset *= -1 |
| 260 | + } |
| 261 | + t = t.Add(-(time.Duration(zoneOffset) * time.Second)) |
| 262 | + |
| 263 | + // Use local zone with the given offset if possible. |
| 264 | + t2 := t.In(local) |
| 265 | + _, offset := t2.Zone() |
| 266 | + if offset == zoneOffset { |
| 267 | + t = t2 |
| 268 | + } else { |
| 269 | + t = t.In(time.FixedZone("", zoneOffset)) |
| 270 | + } |
| 271 | + } |
| 272 | + |
| 273 | + return t, true |
| 274 | +} |
| 275 | + |
| 276 | +// Parse is an specialized version of time.Parse that is optimized for |
| 277 | +// the below two timestamps: |
| 278 | +// |
| 279 | +// - "2006-01-02 15:04:05.999999999-07:00" |
| 280 | +// - "2006-01-02T15:04:05.999999999-07:00" |
| 281 | +func Parse(s string, local *time.Location) (time.Time, error) { |
| 282 | + if t, ok := parse(s, local); ok { |
| 283 | + return t, nil |
| 284 | + } |
| 285 | + if len(s) > 10 && s[10] == 'T' { |
| 286 | + return time.Parse("2006-01-02T15:04:05.999999999-07:00", s) |
| 287 | + } |
| 288 | + return time.Parse("2006-01-02 15:04:05.999999999-07:00", s) |
| 289 | +} |
0 commit comments