Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
a9308cbaf3 | |||
f4e392f910 | |||
600747e1ac | |||
08c0962b40 | |||
a537b980e6 | |||
|
dfee8aae33 |
@ -14,56 +14,40 @@ suite "timeutils":
|
||||
test "DateTime difference":
|
||||
var t1 = getTime().local
|
||||
var t2 = t1 + 30.seconds
|
||||
check (t2 - t1) == 30.seconds
|
||||
check t2 - t1 == initDuration(seconds = 30)
|
||||
|
||||
t1 = parse("2016-10-10 09:45:00", "yyyy-MM-dd HH:mm:ss")
|
||||
t2 = parse("2016-10-11 09:45:00", "yyyy-MM-dd HH:mm:ss")
|
||||
check t2 - t1 == seconds(24 * 60 * 60)
|
||||
check t2 - t1 == initDuration(seconds = 24 * 60 * 60)
|
||||
|
||||
t2 = parse("2016-10-11 10:00:00", "yyyy-MM-dd HH:mm:ss")
|
||||
check t2 - t1 == seconds((24 * 60 + 15) * 60)
|
||||
check t2 - t1 == initDuration(seconds = (24 * 60 + 15) * 60)
|
||||
|
||||
test "DateTime comparisons":
|
||||
let t1 = getTime().local
|
||||
|
||||
check:
|
||||
not (t1 < t1)
|
||||
t1 < t1 + 10.seconds
|
||||
not (t1 + 10.seconds < t1)
|
||||
not (t1 > t1)
|
||||
|
||||
t1 + 10.seconds > t1
|
||||
not (t1 > t1 + 10.seconds)
|
||||
not (t1 < t1)
|
||||
|
||||
t1 + 10.seconds >= t1
|
||||
t1 >= t1
|
||||
not (t1 >= t1 + 10.seconds)
|
||||
|
||||
t1 <= t1 + 10.seconds
|
||||
t1 <= t1
|
||||
t1 <= t1 + 10.seconds
|
||||
not (t1 + 10.seconds <= t1)
|
||||
|
||||
|
||||
t1.between(t1 - 10.seconds, t1 + 10.seconds)
|
||||
t1.between(t1, t1 + 10.seconds) # start is inclusive
|
||||
not t1.between(t1 - 10.seconds, t1) # end is exclusive
|
||||
|
||||
test "TimeInterval comparisons":
|
||||
check:
|
||||
30.seconds > 10.seconds
|
||||
not (10.seconds > 30.seconds)
|
||||
not (10.seconds > 10.seconds)
|
||||
timeutils.`<`(10.minutes, 1.hours)
|
||||
not timeutils.`<`(1.hours, 10.minutes)
|
||||
not timeutils.`<`(1.hours, 1.hours)
|
||||
|
||||
10.minutes < 1.hours
|
||||
not (1.hours < 10.minutes)
|
||||
not (1.hours < 1.hours)
|
||||
|
||||
60.seconds >= 1.minutes
|
||||
60.seconds >= 1.minutes
|
||||
not (60.seconds >= 2.minutes)
|
||||
|
||||
60.seconds <= 1.minutes
|
||||
60.seconds <= 2.minutes
|
||||
not (2.minutes <= 60.seconds)
|
||||
timeutils.`<=`(60.seconds, 1.minutes)
|
||||
timeutils.`<=`(60.seconds, 2.minutes)
|
||||
not timeutils.`<=`(2.minutes, 60.seconds)
|
||||
|
||||
test "DateTime cmp":
|
||||
let t1 = getTime().local
|
||||
|
@ -1,53 +1,57 @@
|
||||
import times
|
||||
|
||||
const zeroTime = fromUnix(0)
|
||||
const ISO_8601_FULL_FORMAT = "yyyy:MM:dd'T'HH:mm:sszzz"
|
||||
const ISO_8601_FORMATS = @[
|
||||
"yyyy-MM-dd",
|
||||
"yyyy-MM-dd'T'HH:mm:ssz",
|
||||
"yyyy-MM-dd'T'HH:mm:sszzz",
|
||||
"yyyy-MM-dd'T'HH:mm:ss'.'fffzzz",
|
||||
"yyyy-MM-dd HH:mm:ssz",
|
||||
"yyyy-MM-dd HH:mm:sszzz",
|
||||
"yyyy-MM-dd HH:mm:ss'.'fffzzz"
|
||||
]
|
||||
|
||||
proc format*(ti: TimeInterval, fmt: string): string =
|
||||
let info = (fromUnix(0) + ti).utc
|
||||
let info = (zeroTime + ti).utc
|
||||
return info.format(fmt)
|
||||
|
||||
# Will be deprecated in Nim 0.18.1 as it will exist in the standard times module.
|
||||
proc `-`*(a, b: DateTime): TimeInterval =
|
||||
return seconds(cast[int](a.toTime - b.toTime))
|
||||
|
||||
proc `>`*(a, b: DateTime): bool =
|
||||
return a.toTime > b.toTime
|
||||
|
||||
proc `<`*(a, b: DateTime): bool =
|
||||
return a.toTime < b.toTime
|
||||
|
||||
proc `>=`*(a, b: DateTime): bool =
|
||||
return a.toTime >= b.toTime
|
||||
|
||||
proc `<=`*(a, b: DateTime): bool =
|
||||
return a.toTime <= b.toTime
|
||||
|
||||
proc `>`*(a, b: TimeInterval): bool =
|
||||
return (zeroTime + a) > (zeroTime + b)
|
||||
proc format*(d: Duration, fmt: string): string =
|
||||
let info = (fromUnix(0) + d).utc
|
||||
return info.format(fmt)
|
||||
|
||||
proc `<`*(a, b: TimeInterval): bool =
|
||||
return (zeroTime + a) < (zeroTime + b)
|
||||
|
||||
proc `>=`*(a, b: TimeInterval): bool =
|
||||
return (zeroTime + a) >= (zeroTime + b)
|
||||
|
||||
proc `<=`*(a, b: TimeInterval): bool =
|
||||
return (zeroTime + a) <= (zeroTime + b)
|
||||
|
||||
proc between*(a, s, e: DateTime): bool =
|
||||
return a >= s and a < e
|
||||
return times.`<=`(s, a) and times.`<`(a, e)
|
||||
|
||||
proc cmp*(a, b: DateTime): int =
|
||||
if b == a: return 0
|
||||
elif a > b: return 1
|
||||
else: return -1
|
||||
elif times.`<`(a, b): return -1
|
||||
else: return 1
|
||||
|
||||
proc startOfDay*(ti: DateTime): DateTime =
|
||||
result = ti
|
||||
result.hour = 0
|
||||
result.minute = 0
|
||||
result.second = 0
|
||||
proc startOfDay*(dt: DateTime): DateTime =
|
||||
result = initDateTime(
|
||||
dt.monthday,
|
||||
dt.month,
|
||||
dt.year,
|
||||
0, 0, 0, 0, # hour, minute, second, nanosecond
|
||||
dt.timezone)
|
||||
|
||||
proc trimNanoSec*(dt: DateTime): DateTime =
|
||||
result = dt
|
||||
result = initDateTime(
|
||||
dt.monthday,
|
||||
dt.month,
|
||||
dt.year,
|
||||
dt.hour,
|
||||
dt.minute,
|
||||
dt.second,
|
||||
0,
|
||||
dt.timezone)
|
||||
|
||||
proc startOfWeek*(ti: DateTime, startDay = dMon): DateTime =
|
||||
var diff = (ti.weekday.ord - startDay.ord)
|
||||
@ -55,10 +59,14 @@ proc startOfWeek*(ti: DateTime, startDay = dMon): DateTime =
|
||||
return (ti - diff.days).startOfDay
|
||||
|
||||
proc parseIso8601*(val: string): DateTime =
|
||||
return val.parse(ISO_8601_FULL_FORMAT)
|
||||
var errString = ""
|
||||
for df in ISO_8601_FORMATS:
|
||||
try: return val.parse(df)
|
||||
except: errString &= "\n" & getCurrentExceptionMsg()
|
||||
raise newException(Exception, "Could not parse date. Tried:" & errString)
|
||||
|
||||
proc formatIso8601*(d: DateTime): string =
|
||||
return d.format(ISO_8601_FULL_FORMAT)
|
||||
return d.format(ISO_8601_FORMATS[2])
|
||||
|
||||
# This is a workaround needed due a bug in Nim's times.parse procedure.
|
||||
# see: https://github.com/nim-lang/Nim/issues/4922
|
||||
|
@ -1,11 +1,10 @@
|
||||
# Package
|
||||
|
||||
version = "0.3.0"
|
||||
version = "0.5.4"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Utility methods to fill in the lacking time support in Nim\'s stdlib. This is holding me over until I can write a proper time module for the stdlib and submit it."
|
||||
description = "Utility methods to fill in the lacking time support in Nim\'s stdlib."
|
||||
license = "BSD3"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.18.0"
|
||||
|
||||
requires "nim >= 1.3.1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user