AceTime
3.0.0
Date and time classes for Arduino that support timezones from the TZ Database.
|
An implementation of ZoneProcessor that supports for all zones defined by the TZ Database. More...
#include <ExtendedZoneProcessor.h>
Public Types | |
typedef extended::TransitionTemplate< D > | Transition |
Exposed only for testing purposes. | |
typedef extended::TransitionForSecondsTemplate< D > | TransitionForSeconds |
Exposed only for testing purposes. | |
typedef extended::TransitionForDateTimeTemplate< D > | TransitionForDateTime |
Exposed only for testing purposes. | |
typedef extended::MatchingEraTemplate< D > | MatchingEra |
Exposed only for testing purposes. | |
typedef extended::TransitionStorageTemplate< kMaxTransitions, D > | TransitionStorage |
Exposed only for testing purposes. | |
Public Member Functions | |
bool | isLink () const override |
Return true if timezone is a Link entry pointing to a Zone entry. | |
uint32_t | getZoneId () const override |
Return the unique stable zoneId. | |
FindResult | findByLocalDateTime (const LocalDateTime &ldt) const override |
Return the search results at given LocalDateTime. | |
FindResult | findByEpochSeconds (acetime_t epochSeconds) const override |
void | printNameTo (Print &printer) const override |
Print a human-readable identifier (e.g. More... | |
void | printShortNameTo (Print &printer) const override |
Print a short human-readable identifier (e.g. More... | |
void | printTargetNameTo (Print &printer) const override |
Print the full identifier (e.g. More... | |
void | log () const |
Used only for debugging. | |
void | resetTransitionAllocSize () |
Reset the TransitionStorage high water mark. More... | |
uint8_t | getTransitionAllocSize () const |
Get the largest allocation size of TransitionStorage. More... | |
void | setZoneKey (uintptr_t zoneKey) override |
Set the opaque zoneKey of this object to a new value, reseting any internally cached information. More... | |
bool | equalsZoneKey (uintptr_t zoneKey) const override |
Return true if ZoneProcessor is associated with the given opaque zoneKey. More... | |
void | setZoneInfoStore (const typename D::ZoneInfoStore *zoneInfoStore) |
Set the zone info store at runtime. More... | |
bool | initForEpochSeconds (acetime_t epochSeconds) const |
Initialize using the epochSeconds. More... | |
bool | initForYear (int16_t year) const |
Initialize the zone rules cache, keyed by the "current" year. More... | |
![]() | |
uint8_t | getType () const |
Return the kTypeXxx of the current instance. | |
Static Public Attributes | |
static const uint8_t | kMaxTransitions = 8 |
Max number of Transitions required for all Zones supported by this class. More... | |
Protected Member Functions | |
ExtendedZoneProcessorTemplate (uint8_t type, const typename D::ZoneInfoStore *zoneInfoStore, uintptr_t zoneKey) | |
Constructor. More... | |
![]() | |
ZoneProcessor (const ZoneProcessor &)=delete | |
ZoneProcessor & | operator= (const ZoneProcessor &)=delete |
ZoneProcessor (uint8_t type) | |
Constructor. | |
bool | isFilled (int16_t year) const |
Check if the Transition cache is filled for the given year and current epochYear. More... | |
Additional Inherited Members | |
![]() | |
uint8_t const | mType |
User-visible indicator of the subclass of ZoneProcessor, which implments a specific time-zone algorithm. More... | |
int16_t | mYear = LocalDate::kInvalidYear |
Year that was used to calculate the transitions in the current cache. More... | |
int16_t | mEpochYear = LocalDate::kInvalidYear |
Epoch year that was used to calculate the transitions in the current cache. More... | |
An implementation of ZoneProcessor that supports for all zones defined by the TZ Database.
The supported zones are defined in the zonedbx/zone_infos.h header file. The constructor expects a pointer to one of the ZoneInfo structures declared in the zonedbx/zone_infos.h file. The zone_processor.py file is the initial Python implementation of this class, which got translated into C++.
The underlying zoneinfo files (extended::Info::ZoneInfo) store the UTC and DST offsets of a timezone as a single signed byte in 15-minute increments. This is sufficient to accurate describe all time zones from the year 2000 until 2100. The AT and UNTIL transition times are stored using a 1-minute resolution, which correctly handles the 5 timezones whose DST transition times occur at 00:01. Those zones are:
Not thread-safe.
B | broker type |
Definition at line 81 of file ExtendedZoneProcessor.h.
|
inlineexplicitprotected |
Constructor.
When first initialized inside a cache, the zoneInfoStore may be set to nullptr, and the zoneKey should be ignored.
type | indentifier for the specific subclass of ZoneProcessor (e.g. Basic versus Extended) mostly used for debugging |
zoneInfoStore | pointer to a ZoneInfoStore that creates a ZoneInfoBroker |
zoneKey | an opaque Zone primary key (e.g. const ZoneInfo*, or a uint16_t index into a database table of ZoneInfo records) |
Definition at line 385 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
Return true if ZoneProcessor is associated with the given opaque zoneKey.
This method should be considered to be private.
zoneKey | an opaque Zone primary key (e.g. const ZoneInfo*, or a uint16_t index into a database table of ZoneInfo records) |
Implements ace_time::ZoneProcessor.
Definition at line 277 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
This implementation calculates the OffsetDateTime.fold()
parameter correctly, and indicates whether the localized datetime is before the overlap (fold==0) or after the overlap (fold==1). During a gap, there is no ambiguity when searching on epochSeconds so fold will always be 0.
Implements ace_time::ZoneProcessor.
Definition at line 203 of file ExtendedZoneProcessor.h.
|
inline |
Get the largest allocation size of TransitionStorage.
For debugging.
Definition at line 263 of file ExtendedZoneProcessor.h.
|
inline |
Initialize using the epochSeconds.
The epochSeconds is converted to the LocalDate for UTC time, and the year is used to call initForYear(). Exposed for debugging.
Definition at line 296 of file ExtendedZoneProcessor.h.
|
inline |
Initialize the zone rules cache, keyed by the "current" year.
Returns success status: true if successful, false if an error occurred. Exposed for debugging.
Definition at line 306 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
Print a human-readable identifier (e.g.
"America/Los_Angeles").
printer | an instance of the Print class, usually Serial |
Implements ace_time::ZoneProcessor.
Definition at line 227 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
Print a short human-readable identifier (e.g.
"Los Angeles"). Any underscore in the short name is replaced with a space.
printer | an instance of the Print class, usually Serial |
Implements ace_time::ZoneProcessor.
Definition at line 231 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
Print the full identifier (e.g.
"America/Los_Angeles") of the target zone if the current zone is a Link entry. Otherwise, print nothing.
printer | an instance of the Print class, usually Serial |
Implements ace_time::ZoneProcessor.
Definition at line 235 of file ExtendedZoneProcessor.h.
|
inline |
Reset the TransitionStorage high water mark.
For debugging.
Definition at line 258 of file ExtendedZoneProcessor.h.
|
inline |
Set the zone info store at runtime.
This is an advanced usage where the custom subclass of ExtendedZoneProcessorTemplate does not know its zone info store at compile time, so it must be set at runtime through this method.
Definition at line 287 of file ExtendedZoneProcessor.h.
|
inlineoverridevirtual |
Set the opaque zoneKey of this object to a new value, reseting any internally cached information.
If the new zoneKey is the same as the old zoneKey, the cache remains valid.
Normally a ZoneProcessor object is associated with a single TimeZone. However, the ZoneProcessorCache will sometimes "take over" a ZoneProcessor from another TimeZone using this method. The other TimeZone will take back control of the ZoneProcessor if needed. To avoid bouncing the ownership of this object repeatedly, the application should configure the ZoneProcessorCache with enough ZoneProcessors to handle the usage pattern of the given application.
This method should be considered to be private, to be used only by the TimeZone and ZoneProcessorCache classes. I had to make it public because it got too ugly to maintain the friend
list in C++.
zoneKey | an opaque Zone primary key (e.g. const ZoneInfo*, or a uint16_t index into a database table of ZoneInfo records) |
Implements ace_time::ZoneProcessor.
Definition at line 267 of file ExtendedZoneProcessor.h.
|
static |
Max number of Transitions required for all Zones supported by this class.
This includes the most recent prior Transition. The max transitions for each Zone is given by the kZoneBufSize{zoneName} constant in the generated zonedb[x]/zone_infos.h
file. The maximum over all zones is given in the 'MaxBufSize' comment in the zone_infos.h
file. Currently that overall maximum is 7, which has been verified by various tests (e.g. HinnantExtendedTest, DateUtilExtendedTest, JavaExtendedTest, and AcetzExtendedTest) in the AceTimeValidation project. We set this to one more than 7 for safety.
Definition at line 94 of file ExtendedZoneProcessor.h.