Next: Introduction, Up: (dir) [Contents][Index]
local-time
Copyright © 2012 Daniel Lowe <dlowe dlowe.net>
Copyright © 2012 Attila Lendvai <attila.lendvai gmail.com>
This manual describes the
local-time
Common Lisp library which is based on Erik Naggum’s The Long, Painful History of Time [NaggumPaper] paper.
• Introduction: | ||
• Public API: | ||
• Other Features: | ||
• References: | ||
• Comprehensive Index: |
Next: Public API, Previous: Top, Up: Top [Contents][Index]
• Portability: |
The local-time
library is a Common Lisp library for the manipulation of
dates, times and intervals. It was originally based almost entirely
upon Erik Naggum’s paper The Long Painful History of Time
[NaggumPaper]. Many of the core concepts originated from this paper,
such as the seperation of days and seconds, the choice of 2000-03-01
as the standard epoch, and the timestring format.
Up: Introduction [Contents][Index]
This implementation assumes that time zone information is stored in the tzfile format. The default timezone is loaded from /etc/localtime. On non-POSIX systems, this will certainly give different results than the system time handling.
local-time currently supports subsecond precision clocks with allegro,
cmucl, sbcl, abcl, and non-Windows ccl. All others will be able to
retrieve the time with second precision using
get-universal-time
. You may add support for your own
implementation by implementing the clock generic protocol documented
here.
Next: Other Features, Previous: Introduction, Up: Top [Contents][Index]
• Types: | ||
• Timezones: | ||
• Creating timestamp Objects: | ||
• Querying timestamp Objects: | ||
• Manipulating Date and Time Values: | ||
• Parsing and Formatting: | ||
• Clocks: |
Next: Timezones, Up: Public API [Contents][Index]
It’s a good idea to treat all values as immutable objects. local-time
will not modify any object it was given unless explicitly asked to by
the :into
keyword argument.
timestamp
values can represent either a date,
a daytime or a time value. It has the following slots:
(defclass timestamp () ((day :type integer) (sec :type integer) (nsec :type (integer 0 999999999))))
The following constraints apply to the specific types:
timestamp
value must have their least possible
values.
timezone
objects represent timezones - local and political
modifications to the time representation. Timezones are responsible
for storing offsets from GMT, abbreviations for different
sub-timezones, and the times each sub-timezone is to be in effect.
Next: Creating timestamp Objects, Previous: Types, Up: Public API [Contents][Index]
The variable *default-timezone* contains the timezone that will be used by default if none is specified. It is loaded from /etc/localtime when the library is loaded. If /etc/localtime is not present, it will default to UTC.
The variable +utc-zone+ contains a timezone corresponding to UTC.
Define zone-name (a symbol or a string) as a new timezone, lazy-loaded from zone-file (a pathname designator relative to the zoneinfo directory on this system. If load is true, load immediately.
Returns the timezone found at the location name (such as
US/Eastern
). reread-timezone-repository
must be called
before this function is used.
Walks the current repository, reading all tzinfo files updating indexes. The default timezone repository is set to the zoneinfo/ directory of the local-time system.
Next: Querying timestamp Objects, Previous: Timezones, Up: Public API [Contents][Index]
timestamp
ObjectsProduces a timestamp
instance from the provided universal time
universal. Universal time is defined in the Common Lisp
Specification as the number of seconds since 1900-01-01T00:00:00Z.
Produces a timestamp
instance from the provided unix time
unix. Unix time is defined by POSIX as the number of seconds
since 1970-01-01T00:00:00Z.
Produces a timestamp
instance with the current time. Under
sbcl, the new timestamp will be precise to the microsecond.
Otherwise, the precision is limited to the second.
Produces a timestamp
instance that corresponds to today’s
date, which is the midnight of the current day in the UTC zone.
Returns a new timestamp
instance corresponding to the specified
time elements. The offset is the number of seconds offset from
UTC of the locale. If offset is not specified, the offset will
be guessed from the timezone. If a timestamp
is passed
as the into argument, its value will be set and that
timestamp
will be returned. Otherwise, a new timestamp
is created.
Expands to an expression that creates an instance of a
timestamp
exactly as specified.
Expands to an expression that creates another copy of timestamp
that is timestamp=
to it.
Next: Manipulating Date and Time Values, Previous: Creating timestamp Objects, Up: Public API [Contents][Index]
timestamp
ObjectsReturns the day component of timestamp. Although Naggum’s paper specifies that the day should be a signed fixnum, it is left unbounded for flexibility reasons.
Returns the ’seconds’ component of the time. Valid values for the seconds range from 0 to 86399.
Returns the ’microseconds’ component of the time. Valid values for the nanoseconds range from 0 to 999999999.
This returns the date/time specified in timestamp encoded as the number of seconds since January 1st, 1900 12:00am UTC.
This returns the date/time specified in timestamp encoded as
the number of seconds since January 1st, 1970 12:00am UTC. It
corresponds with the time received from the POSIX call time()
.
Returns as multiple values the time zone applicable at the given time as the number of seconds east of UTC, a boolean daylight-saving-p, and the customary abbreviation of the timezone.
This macro binds variables to the decoded elements of timestamp. The timezone argument is used for decoding the timestamp, and is not bound by the macro. The value of day-of-week starts from 0 which means Sunday.
Returns the decoded time as (values ns ss mm hh day month
year day-of-week daylight-saving-time-p timezone-offset timezone-abbreviation)
.
These comparison functions act like their string and char counterparts.
Returns the earliest timestamp passed to it.
Returns the latest timestamp passed to it.
This returns the index of the day of the week, starting at 0 which means Sunday.
Note: ”Day of the week” is ambigous and locale dependent.
Returns the UNIVERSAL-TIME corresponding to timestamp.
Note: Subsecond precision is not preserved.
Returns the ordinal millennium, century or decade upon which the timestamp falls. Ordinal time values start at 1, so the (timestamp-century (now)) will return 21.
Returns the decoded part of the timestamp.
Next: Parsing and Formatting, Previous: Querying timestamp Objects, Up: Public API [Contents][Index]
Add or subtract the amount to the time using the specified
unit. unit may be one of ( :nsec
:sec
:minute
:hour
:day
:month
:year
).
The value of the parts of the timestamp of higher resolution than the
UNIT will never be touched. If you want a precise number of seconds
from a time, you should specify the offset in seconds.
Returns a timestamp with its parts maximized up to part. part can be any of (:nsec :sec :min :hour :day :month). If into is specified, it will be modified and returned, otherwise a new timestamp will be created.
Returns a timestamp with its parts minimized up to part. part can be any of (:nsec :sec :min :hour :day :month). If into is specified, it will be modified and returned, otherwise a new timestamp will be created.
Alters various parts of timestamp, given a list of changes. The
changes are in the format (offset part value)
and (set
part value)
.
;; Return a newtimestamp
value that points to the previous Monday (adjust-timestamp (today) (offset :day-of-week :monday)) ;; Return a newtimestamp
value that points three days ahead from now (adjust-timestamp (today) (offset :day 3))
Keep in mind that adjust-timestamp
is not a mere setter for
fields but instead it handles overflows and timezone conversions as
expected. Also note that it’s possible to specify multiple commands.
The list of possible places to manipulate are: :nsec
:sec
:sec-of-day
:minute
:hour
:day
:day-of-month
:month
:year
.
Just like adjust-timestamp
, but instead of returning a freshly
constructed value, it alters the provided timestamp value (and
returns it).
Returns the number of whole years elapsed between time-a and time-b.
Note: This is useful for calculating anniversaries and birthdays.
Returns the number of days in a given month of the specified year.
Next: Clocks, Previous: Manipulating Date and Time Values, Up: Public API [Contents][Index]
The constant +iso-8601-format+ is bound to a description of the ISO 8601 format. An output with this format will look like this: ‘2008-03-01T19:42:34.608506+01:00’. This is the default format for the format-timestring
function.
The constant +asctime-format+ is bound to a format mirroring the output of the POSIX asctime() function. An output with this format will look like this: ‘Sat Mar 1 19:42:34 2008’.
The constant +rfc-1123-format+ is bound to a description of the format defined in RFC 1123 for Internet timestamps. An output with this format will look like this: ‘Sat, 01 Mar 2008 19:42:34 -0500’.
The constant +iso-week-date-format+ is bound to a description of the ISO 8601 Week Date format. An output with this format will look like this: ‘2009-W53-5’.
Parses a timestring and returns the corresponding timestamp
.
Parsing begins at start and stops at the end
position. If there are invalid characters within timestring
and fail-on-error is T
, then an invalid-timestring
error is signaled, otherwise NIL
is returned.
If there is no timezone specified in timestring
then
offset is used as the default timezone offset (in seconds).
Constructs a string representation of TIMESTAMP according to FORMAT and returns it. If destination is T
, the string is written to *standard-output*
. If destination is a stream, the string is written to the stream.
FORMAT is a list containing one or more of strings, characters, and keywords. Strings and characters are output literally, while keywords are replaced by the values here:
:year
*year
:month
*numeric month
:day
*day of month
:weekday
*numeric day of week, starting from 0 which means Sunday
:hour
*hour
:min
*minutes
:sec
*seconds
:msec
*milliseconds
:usec
*microseconds
:nsec
*nanoseconds
:iso-week-year
*year for ISO week date (can be different from regular calendar year)
:iso-week-number
*ISO week number (i.e. 1 through 53)
:iso-week-day
*ISO compatible weekday number (i.e. monday=1, sunday=7)
:ordinal-day
day of month as an ordinal (e.g. 1st, 23rd)
:long-weekday
long form of weekday (e.g. Sunday, Monday)
:short-weekday
short form of weekday (e.g. Sun, Mon)
:minimal-weekday
minimal form of weekday (e.g. Su, Mo)
:long-month
long form of month (e.g. January, February)
:short-month
short form of month (e.g. Jan, Feb)
:hour12
hour on a 12-hour clock
:ampm
am/pm marker in lowercase
:gmt-offset
the gmt-offset of the time, in +00:00 form
:gmt-offset-or-z
like :gmt-offset, but is Z when UTC
:gmt-offset-hhmm
like :gmt-offset, but in +0000 form
:timezone
timezone abbrevation for the time
Elements marked by * can be placed in a list in the form:
(:keyword padding &optional (padchar #\0))
The string representation of the value will be padded with the padchar.
You can see examples by examining the values in +iso-8601-format+, +asctime-format+, and +rfc-1123-format+.
Produces on stream the timestring corresponding to the timestamp with
the given options. If stream is nil
, only returns a string containing what
would have been the output. If stream is t
, prints the string to
*standard-output*.
Example output:
LOCAL-TIME> (format-timestring nil (now)) "2008-03-01T19:42:34.608506+01:00"
Formats the time like format-timestring, but in RFC 3339 format. The options control valid options in the RFC.
Previous: Parsing and Formatting, Up: Public API [Contents][Index]
The *clock* special variable and the following generic functions are exposed so that applications may re-define the current time or date as required. This can be used for testing or to support alternate clocks.
The currently supported values are:
t
- Use the standard system clock with no adjustments
leap-second-adjusted
- The system clock, adjusted for leap seconds using the information in *default-timezone*.
Specialize this generic function to re-define the present moment
Specialize this generic function to re-define the present day
Next: References, Previous: Public API, Up: Top [Contents][Index]
Adds @TIMESTRING and #@UNIVERSAL-TIME as reader macros.
Returns the julian date of the date portion of timestamp.
Returns the modified julian date of the date portion of timestamp.
Next: Comprehensive Index, Previous: Other Features, Up: Top [Contents][Index]
Previous: References, Up: Top [Contents][Index]
Jump to: | *
+
A C D E F M N P R S T U W |
---|
Jump to: | *
+
A C D E F M N P R S T U W |
---|