#include <locale_facets.h>
Inheritance diagram for std::time_get< CharT, InIter >:
Public Types | |
typedef CharT | char_type |
Public typedefs. | |
Public Member Functions | |
time_get (size_t __refs=0) | |
Constructor performs initialization. | |
dateorder | date_order () const |
Return preferred order of month, day, and year. | |
iter_type | get_time (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input time string. | |
iter_type | get_date (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input date string. | |
iter_type | get_weekday (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input weekday string. | |
iter_type | get_monthname (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input month string. | |
iter_type | get_year (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input year string. | |
Static Public Attributes | |
static locale::id | id |
Numpunct facet id. | |
Protected Member Functions | |
virtual | ~time_get () |
Destructor. | |
virtual dateorder | do_date_order () const |
Return preferred order of month, day, and year. | |
virtual iter_type | do_get_time (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input time string. | |
virtual iter_type | do_get_date (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input date string. | |
virtual iter_type | do_get_weekday (iter_type __beg, iter_type __end, ios_base &, ios_base::iostate &__err, tm *__tm) const |
Parse input weekday string. | |
virtual iter_type | do_get_monthname (iter_type __beg, iter_type __end, ios_base &, ios_base::iostate &__err, tm *__tm) const |
Parse input month string. | |
virtual iter_type | do_get_year (iter_type __beg, iter_type __end, ios_base &__io, ios_base::iostate &__err, tm *__tm) const |
Parse input year string. |
This facet encapsulates the code to parse and return a date or time from a string. It is used by the istream numeric extraction operators.
The time_get template uses protected virtual functions to provide the actual results. The public accessors forward the call to the virtual functions. These virtual functions are hooks for developers to implement the behavior they require from the time_get facet.
Definition at line 2978 of file locale_facets.h.
|
Public typedefs.
Definition at line 2984 of file locale_facets.h. |
|
Constructor performs initialization. This is the constructor provided by the standard.
Definition at line 3000 of file locale_facets.h. |
|
Destructor.
Definition at line 3156 of file locale_facets.h. |
|
Return preferred order of month, day, and year. This function returns an enum from timebase::dateorder giving the preferred ordering if the format "x" given to time_put::put() only uses month, day, and year. If the format "x" for the associated locale uses other fields, this function returns timebase::dateorder::noorder. NOTE: The library always returns noorder at the moment.
Definition at line 3017 of file locale_facets.h. References std::time_get< CharT, InIter >::do_date_order(). |
|
Return preferred order of month, day, and year. This function returns an enum from timebase::dateorder giving the preferred ordering if the format "x" given to time_put::put() only uses month, day, and year. This function is a hook for derived classes to change the value returned.
Definition at line 1715 of file locale_facets.tcc. Referenced by std::time_get< CharT, InIter >::date_order(). |
|
Parse input date string. This function parses a date according to the format "X" and puts the results into a user-supplied struct tm. This function is a hook for derived classes to change the value returned.
Definition at line 2060 of file locale_facets.tcc. References std::ios_base::eofbit. Referenced by std::time_get< CharT, InIter >::get_date(). |
|
Parse input month string. This function parses a month name and puts the results into a user-supplied struct tm. This function is a hook for derived classes to change the value returned.
Definition at line 2122 of file locale_facets.tcc. References std::ios_base::eofbit. Referenced by std::time_get< CharT, InIter >::get_monthname(). |
|
Parse input time string. This function parses a time according to the format "x" and puts the results into a user-supplied struct tm. This function is a hook for derived classes to change the value returned.
Definition at line 2043 of file locale_facets.tcc. References std::ios_base::eofbit. Referenced by std::time_get< CharT, InIter >::get_time(). |
|
Parse input weekday string. This function parses a weekday name and puts the results into a user-supplied struct tm. This function is a hook for derived classes to change the value returned.
Definition at line 2077 of file locale_facets.tcc. References std::ios_base::eofbit. Referenced by std::time_get< CharT, InIter >::get_weekday(). |
|
Parse input year string. This function reads up to 4 characters to parse a year string and puts the results into a user-supplied struct tm. This function is a hook for derived classes to change the value returned.
Definition at line 2168 of file locale_facets.tcc. References std::ios_base::eofbit, and std::ctype_abstract_base< CharT >::narrow(). Referenced by std::time_get< CharT, InIter >::get_year(). |
|
Parse input date string. This function parses a date according to the format "X" and puts the results into a user-supplied struct tm. The result is returned by calling time_get::do_get_date(). If there is a valid date string according to format "X", tm will be filled in accordingly and the returned iterator will point to the first character beyond the date string. If an error occurs before the end, err |= ios_base::failbit. If parsing reads all the characters, err |= ios_base::eofbit.
Definition at line 3066 of file locale_facets.h. References std::time_get< CharT, InIter >::do_get_date(). |
|
Parse input month string. This function parses a month name and puts the results into a user-supplied struct tm. The result is returned by calling time_get::do_get_monthname(). Parsing starts by parsing an abbreviated month name. If a valid abbreviation is followed by a character that would lead to the full month name, parsing continues until the full name is found or an error occurs. Otherwise parsing finishes at the end of the abbreviated name. If an error occurs before the end, err |= ios_base::failbit. If parsing reads all the characters, err |= ios_base::eofbit.
Definition at line 3123 of file locale_facets.h. References std::time_get< CharT, InIter >::do_get_monthname(). |
|
Parse input time string. This function parses a time according to the format "x" and puts the results into a user-supplied struct tm. The result is returned by calling time_get::do_get_time(). If there is a valid time string according to format "x", tm will be filled in accordingly and the returned iterator will point to the first character beyond the time string. If an error occurs before the end, err |= ios_base::failbit. If parsing reads all the characters, err |= ios_base::eofbit.
Definition at line 3041 of file locale_facets.h. References std::time_get< CharT, InIter >::do_get_time(). |
|
Parse input weekday string. This function parses a weekday name and puts the results into a user-supplied struct tm. The result is returned by calling time_get::do_get_weekday(). Parsing starts by parsing an abbreviated weekday name. If a valid abbreviation is followed by a character that would lead to the full weekday name, parsing continues until the full name is found or an error occurs. Otherwise parsing finishes at the end of the abbreviated name. If an error occurs before the end, err |= ios_base::failbit. If parsing reads all the characters, err |= ios_base::eofbit.
Definition at line 3094 of file locale_facets.h. References std::time_get< CharT, InIter >::do_get_weekday(). |
|
Parse input year string. This function reads up to 4 characters to parse a year string and puts the results into a user-supplied struct tm. The result is returned by calling time_get::do_get_year(). 4 consecutive digits are interpreted as a full year. If there are exactly 2 consecutive digits, the library interprets this as the number of years since 1900. If an error occurs before the end, err |= ios_base::failbit. If parsing reads all the characters, err |= ios_base::eofbit.
Definition at line 3149 of file locale_facets.h. References std::time_get< CharT, InIter >::do_get_year(). |
|
Numpunct facet id.
Definition at line 3287 of file locale_facets.h. |