From 2c816cf8e74fd2ed7e88f13da1570ecb41c9ad8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomasz=20Boche=C5=84ski?= Date: Tue, 10 Apr 2018 19:13:26 +0200 Subject: [PATCH] [base-utils][ACR-1210][SimpleDateFormat] Module implementation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I3d31660debd528a419768dceb9fc08e65dba3e76 Signed-off-by: Tomasz Bocheński --- src/CMakeLists.txt | 2 + src/include/utils_i18n.h | 147 ++++- src/include/utils_i18n_simple_date_format.h | 965 ++++++++++++++++++++++++++++ src/include/utils_i18n_types.h | 16 + src/utils_i18n_simple_date_format.cpp | 357 ++++++++++ 5 files changed, 1461 insertions(+), 26 deletions(-) create mode 100644 src/include/utils_i18n_simple_date_format.h create mode 100644 src/utils_i18n_simple_date_format.cpp diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d6a2494..31832b6 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -45,6 +45,7 @@ SET(BASEUTILS_SRCS utils_i18n_immutable_idx.cpp utils_i18n_date_interval.cpp utils_i18n_date_interval_format.cpp + utils_i18n_simple_date_format.cpp ) ADD_LIBRARY(${target_name} SHARED ${BASEUTILS_SRCS} @@ -97,5 +98,6 @@ INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n_plural_format.h INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n_immutable_idx.h DESTINATION ${INCLUDE_INSTALL_DIR}/base) INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n_date_interval.h DESTINATION ${INCLUDE_INSTALL_DIR}/base) INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n_date_interval_format.h DESTINATION ${INCLUDE_INSTALL_DIR}/base) +INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n_simple_date_format.h DESTINATION ${INCLUDE_INSTALL_DIR}/base) INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${INC_DIR}/utils_i18n.h DESTINATION ${INCLUDE_INSTALL_DIR}/base) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${pc_name}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) diff --git a/src/include/utils_i18n.h b/src/include/utils_i18n.h index 048090d..aa4c458 100644 --- a/src/include/utils_i18n.h +++ b/src/include/utils_i18n.h @@ -50,6 +50,7 @@ #include #include #include +#include /** * @file utils_i18n.h @@ -93,6 +94,7 @@ extern "C" { * - immutable_idx * - date interval * - date interval format + * - simple date format * * This module provides flexible generation of number or date format patterns and helps you format and parse dates/number for any locale. * The i18n module provides various features based on data from ICU. The following table shows the version of ICU used in each Tizen platform. @@ -247,6 +249,10 @@ extern "C" { * @ref CAPI_BASE_UTILS_I18N_DATE_INTERVAL_FORMAT_MODULE * Date interval format module formats date intervals in a language-independent manner. * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * The Simple Date Format module provides API for formatting and parsing dates in language-independent manner. + * * * * @section CAPI_BASE_UTILS_I18N_MODULE_MAPPING_TABLE Mapping Table @@ -2364,11 +2370,21 @@ extern "C" { * * * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE + * #i18n_alpha_idx_create + * AlphabeticIndex + * + * + * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE * #i18n_alpha_idx_destroy * ~AlphabeticIndex * * * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE + * #i18n_alpha_idx_add_labels + * addLabels + * + * + * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE * #i18n_alpha_idx_add_record * addRecord * @@ -2483,16 +2499,6 @@ extern "C" { * resetRecordIterator * * - * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE - * #i18n_alpha_idx_create_from_locale_id - * AlphabeticIndex - * - * - * @ref CAPI_BASE_UTILS_I18N_ALPHA_IDX_MODULE - * #i18n_alpha_idx_add_labels_with_locale_id - * addLabels - * - * * @ref CAPI_BASE_UTILS_I18N_FORMATTABLE_MODULE * #i18n_formattable_create_default * Formattable() @@ -3314,11 +3320,16 @@ extern "C" { * * * @ref CAPI_BASE_UTILS_I18N_FORMAT_MODULE - * #i18n_format_get_locale_id + * #i18n_format_get_locale * getLocale * * * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE + * #i18n_measure_format_create + * MeasureFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE * #i18n_measure_format_destroy * ~MeasureFormat * @@ -3339,6 +3350,11 @@ extern "C" { * * * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE + * #i18n_measure_format_create_currency_format_from_locale + * createCurrencyFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE * #i18n_measure_format_create_currency_format * createCurrencyFormat * @@ -3363,16 +3379,6 @@ extern "C" { * getUnitDisplayName * * - * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE - * #i18n_measure_format_create_from_locale_id - * MeasureFormat - * - * - * @ref CAPI_BASE_UTILS_I18N_MEASURE_FORMAT_MODULE - * #i18n_measure_format_create_currency_format_from_locale_id - * createCurrencyFormat - * - * * @ref CAPI_BASE_UTILS_I18N_FIELD_POSITION_MODULE * #i18n_field_position_create * FieldPosition @@ -3790,6 +3796,11 @@ extern "C" { * * * @ref CAPI_BASE_UTILS_I18N_PLURAL_RULES_MODULE + * #i18n_plural_rules_for_locale + * forLocale + * + * + * @ref CAPI_BASE_UTILS_I18N_PLURAL_RULES_MODULE * #i18n_plural_rules_select_int32 * select * @@ -3819,11 +3830,6 @@ extern "C" { * getKeywordOther * * - * @ref CAPI_BASE_UTILS_I18N_PLURAL_RULES_MODULE - * #i18n_plural_rules_for_locale_id - * forLocale - * - * * @ref CAPI_BASE_UTILS_I18N_PLURAL_FORMAT_MODULE * #i18n_plural_format_create * PluralFormat @@ -4008,6 +4014,95 @@ extern "C" { * #i18n_date_interval_fmt_format_with_calendar * format * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_create + * SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_create_from_pattern + * SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_create_from_pattern_override + * SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_create_from_pattern_locale + * SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_create_from_pattern_override_locale + * SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_destroy + * ~SimpleDateFormat + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_clone + * clone + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_equals + * operator== + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_format_with_field_position + * format + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_parse + * parse + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_set_2digit_year_start + * set2DigitYearStart + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_get_2digit_year_start + * get2DigitYearStart + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_to_pattern + * toPattern + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_to_localized_pattern + * toLocalizedPattern + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_apply_pattern + * applyPattern + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_apply_localized_pattern + * applyLocalizedPattern + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_adopt_calendar + * adoptCalendar + * + * + * @ref CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * #i18n_simple_date_fmt_set_context + * setContext + * * */ diff --git a/src/include/utils_i18n_simple_date_format.h b/src/include/utils_i18n_simple_date_format.h new file mode 100644 index 0000000..cfaad25 --- /dev/null +++ b/src/include/utils_i18n_simple_date_format.h @@ -0,0 +1,965 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __UTILS_I18N_SIMPLE_DATE_FORMAT_H__ +#define __UTILS_I18N_SIMPLE_DATE_FORMAT_H__ + +#include + +/** + * @file utils_i18n_simple_date_format.h + * @version 0.1 + * @brief utils_i18n_simple_date_format + */ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @ingroup CAPI_BASE_UTILS_I18N_MODULE + * @defgroup CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE Simple Date Format + * @brief The Simple Date Format module provides API for formatting and parsing dates + * in language-independent manner. + * @section CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE_HEADER Required Header + * \#include + * + * @section CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE_OVERVIEW Overview + * @details The Simple Date Format module provides API for formatting and parsing dates + * in language-independent manner. + * + * It allows for formatting (millis -> text), parsing (text -> millis), and normalization. + * Formats/Parses a date or time, which is the standard milliseconds since 24:00 GMT, Jan 1, 1970. + * + * Date and Time Patterns: + * + * Date and time formats are specified by date and time pattern strings. Within date and time pattern + * strings, all unquoted ASCII letters [A-Za-z] are reserved as pattern letters representing calendar + * fields. Simple Date Format supports the date and time formatting algorithm and pattern letters + * defined by UTS#35 Unicode Locale Data Markup Language (LDML) and further documented for ICU in the + * ICU User Guide. The following pattern letters are currently available (note that the actual values + * depend on CLDR and may change from the examples shown here): + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
Field Sym. No. Example Description
era G 1..3 AD Era - Replaced with the Era string for the current date. One to three letters for the + * abbreviated form, four letters for the long (wide) form, five for the narrow form.
4 Anno Domini
5 A
year y 1..n 1996 + * Year. Normally the length specifies the padding, but for two letters it also specifies the maximum length. Example: + *
+ *
+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
Year y yy yyy yyyy yyyyy
AD 1 1 01 001 0001 00001
AD 12 12 12 012 0012 00012
AD 123 123 23 123 0123 00123
AD 1234 1234 34 1234 1234 01234
AD 12345 12345 45 12345 12345 12345
+ *
+ *
+ *
Y 1..n 1997 Year (in "Week of Year" based calendars). Normally the length specifies the padding, but for two letters it also + * specifies the maximum length. This year designation is used in ISO year-week calendar as defined by ISO 8601, but can + * be used in non-Gregorian based calendar systems where week date processing is desired. May not always be the same value + * as calendar year.
u 1..n 4601 Extended year. This is a single number designating the year of this calendar system, encompassing all supra-year fields. + * For example, for the Julian calendar system, year numbers are positive, with an era of BCE or CE. An extended year value + * for the Julian calendar system assigns positive values to CE years and negative values to BCE years, with 1 BCE being year 0.
U 1..3 甲子 Cyclic year name. Calendars such as the Chinese lunar calendar (and related calendars) and the Hindu calendars + * use 60-year cycles of year names. Use one through three letters for the abbreviated name, four for the full (wide) + * name, or five for the narrow name (currently the data only provides abbreviated names, which will be used for + * all requested name widths). If the calendar does not provide cyclic year name data, or if the year value to be + * formatted is out of the range of years for which cyclic name data is provided, then numeric formatting is used + * (behaves like 'y').
4 (currently also 甲子)
5 (currently also 甲子)
quarter Q 1..2 02 Quarter - Use one or two for the numerical quarter, three for the abbreviation, or four for the full (wide) + * name (five for the narrow name is not yet supported).
3 Q2
4 2nd quarter
q 1..2 02 Stand-Alone Quarter - Use one or two for the numerical quarter, three for the abbreviation, or four + * for the full name (five for the narrow name is not yet supported).
3 Q2
4 2nd quarter
month M 1..2 09 Month - Use one or two for the numerical month, three for the abbreviation, four for the full (wide) name, + * or five for the narrow name. With two ("MM"), the month number is zero-padded if necessary (e.g. "08")
3 Sep
4 September
5 S
L 1..2 09 Stand-Alone Month - Use one or two for the numerical month, three for the abbreviation, four for the + * full (wide) name, or 5 for the narrow name. With two ("LL"), the month number is zero-padded if + * necessary (e.g. "08")
3 Sep
4 September
5 S
week w 1..2 27 Week of Year. Use "w" to show the minimum number of digits, or "ww" to always show two digits (zero-padding + * if necessary, e.g. "08").
W 1 3 Week of Month
day d 1..2 1 Date - Day of the month. Use "d" to show the minimum number of digits, or "dd" to always show two digits (zero-padding + * if necessary, e.g. "08").
D 1..3 345 Day of year
F 1 2 Day of Week in Month. The example is for the 2nd Wed in July
g 1..n 2451334 Modified Julian day. This is different from the conventional Julian day number in two regards. First, it demarcates + * days at local zone midnight, rather than noon GMT. Second, it is a local number; that is, it depends on the local + * time zone. It can be thought of as a single number that encompasses all the date-related fields.
week
+ * day + *
E 1..3 Tue Day of week - Use one through three letters for the short day, four for the full (wide) name, five + * for the narrow name, or six for the short name.
4 Tuesday
5 T
6 Tu
e 1..2 2 Local day of week. Same as E except adds a numeric value that will depend on the local starting day + * of the week, using one or two letters. For this example, Monday is the first day of the week.
3 Tue
4 Tuesday
5 T
6 Tu
c 1 2 Stand-Alone local day of week - Use one letter for the local numeric value (same as 'e'), + * three for the short day, four for the full (wide) name, five for the narrow name, or six for the short name.
3 Tue
4 Tuesday
5 T
6 Tu
period a 1 AM AM or PM
hour h 1..2 11 Hour [1-12]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern generation, + * it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match a 24-hour-cycle + * format (H or k). Use hh for zero padding.
H 1..2 13 Hour [0-23]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern generation, it + * should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a 12-hour-cycle format + * (h or K). Use HH for zero padding.
K 1..2 0 Hour [0-11]. When used in a skeleton, only matches K or h, see above. Use KK for zero padding.
k 1..2 24 Hour [1-24]. When used in a skeleton, only matches k or H, see above. Use kk for zero padding.
minute m 1..2 59 Minute. Use "m" to show the minimum number of digits, or "mm" to always show two digits (zero-padding if necessary, + * e.g. "08").
second s 1..2 12 Second. Use "s" to show the minimum number of digits, or "ss" to always show two digits (zero-padding if necessary, + * e.g. "08").
S 1..n 3450 Fractional Second - truncates (like other time fields) to the count of letters when formatting. Appends zeros if more + * than 3 letters specified. Truncates at three significant digits when parsing. (example shows display using pattern + * SSSS for seconds value 12.34567)
A 1..n 69540000 Milliseconds in day. This field behaves exactly like a composite of all time-related fields, not including + * the zone fields. As such, it also reflects discontinuities of those fields on DST transition days. On a day of DST + * onset, it will jump forward. On a day of DST cessation, it will jump backward. This reflects the fact that is must + * be combined with the offset field to obtain a unique local time value.
zone z 1..3 PDT The short specific non-location format. Where that is unavailable, falls back to the short localized + * GMT format ("O").
4 Pacific Daylight Time The long specific non-location format. Where that is unavailable, falls back to the long localized + * GMT format ("OOOO").
Z 1..3 -0800 The ISO8601 basic format with hours, minutes and optional seconds fields. The format is equivalent to + * RFC 822 zone format (when optional seconds field is absent). This is equivalent to the "xxxx" specifier.
4 GMT-8:00 The long localized GMT format. This is equivalent to the "OOOO" specifier.
5 -08:00
+ * -07:52:58 + *
The ISO8601 extended format with hours, minutes and optional seconds fields. The ISO8601 UTC indicator "Z" + * is used when local time offset is 0. This is equivalent to the "XXXXX" specifier.
O 1 GMT-8 The short localized GMT format.
4 GMT-08:00 The long localized GMT format.
v 1 PT The short generic non-location format. Where that is unavailable, falls back to the generic location + * format ("VVVV"), then the short localized GMT format as the final fallback.
4 Pacific Time The long generic non-location format. Where that is unavailable, falls back to generic location + * format ("VVVV").
V 1 uslax The short time zone ID. Where that is unavailable, the special short time zone ID unk (Unknown Zone) is used.
+ * Note: This specifier was originally used for a variant of the short specific non-location format, but it was + * deprecated in the later version of the LDML specification. In CLDR 23/ICU 51, the definition of the + * specifier was changed to designate a short time zone ID. + *
2 America/Los_Angeles The long time zone ID.
3 Los Angeles The exemplar city (location) for the time zone. Where that is unavailable, the localized exemplar city name for the + * special zone Etc/Unknown is used as the fallback (for example, "Unknown City").
4 Los Angeles Time The generic location format. Where that is unavailable, falls back to the long localized GMT + * format ("OOOO"; Note: Fallback is only necessary with a GMT-style Time Zone ID, like Etc/GMT-830.)
+ * This is especially useful when presenting possible timezone choices for user selection, since the naming is more + * uniform than the "v" format. + *
X 1 -08
+ * +0530
+ * Z + *
The ISO8601 basic format with hours field and optional minutes field. The ISO8601 UTC indicator "Z" is used + * when local time offset is 0.
2 -0800
+ * Z + *
The ISO8601 basic format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when local + * time offset is 0.
3 -08:00
+ * Z + *
The ISO8601 extended format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when + * local time offset is 0.
4 -0800
+ * -075258
+ * Z + *
The ISO8601 basic format with hours, minutes and optional seconds fields. (Note: The seconds field is not + * supported by the ISO8601 specification.) The ISO8601 UTC indicator "Z" is used when local time offset is 0.
5 -08:00
+ * -07:52:58
+ * Z + *
The ISO8601 extended format with hours, minutes and optional seconds fields. (Note: The seconds field is + * not supported by the ISO8601 specification.) The ISO8601 UTC indicator "Z" is used when local time offset is 0.
x 1 -08
+ * +0530 + *
The ISO8601 basic format with hours field and optional minutes field.
2 -0800 The ISO8601 basic format with hours and minutes fields.
3 -08:00 The ISO8601 extended format with hours and minutes fields.
4 -0800
+ * -075258 + *
The ISO8601 basic format with hours, minutes and optional seconds fields. (Note: The seconds field is + * not supported by the ISO8601 specification.)
5 -08:00
+ * -07:52:58 + *
The ISO8601 extended format with hours, minutes and optional seconds fields. (Note: The seconds field + * is not supported by the ISO8601 specification.)
+ * + * Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. + * For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not embraced + * within single quotes. + * + * A pattern containing any invalid pattern letter will result in a failing UErrorCode result during formatting or parsing. + * + * When parsing a date string using the abbreviated year pattern ("y" or "yy"), Simple Date Format must interpret the abbreviated + * year relative to some century. It does this by adjusting dates to be within 80 years before and 20 years after the time the + * Simple Date Format instance is created. For example, using a pattern of "MM/dd/yy" and a Simple Date Format instance created + * on Jan 1, 1997, the string "01/11/12" would be interpreted as Jan 11, 2012 while the string "05/04/64" would be interpreted + * as May 4, 1964. During parsing, only strings consisting of exactly two digits will be parsed into the default century. + * Any other numeric string, such as a one digit string, a three or more digit string, or a two digit string that isn't all digits + * (for example, "-1"), is interpreted literally. So "01/02/3" or "01/02/003" are parsed (for the Gregorian calendar), using the + * same pattern, as Jan 2, 3 AD. Likewise (but only in lenient parse mode, the default) "01/02/-3" is parsed as Jan 2, 4 BC. + * + * If the year pattern has more than two 'y' characters, the year is interpreted literally, regardless of the number of digits. + * So using the pattern "MM/dd/yyyy", "01/11/12" parses to Jan 11, 12 A.D. + * + * When numeric fields abut one another directly, with no intervening delimiter characters, they constitute a run of abutting + * numeric fields. Such runs are parsed specially. For example, the format "HHmmss" parses the input text "123456" to 12:34:56, + * parses the input text "12345" to 1:23:45, and fails to parse "1234". In other words, the leftmost field of the run is flexible, + * while the others keep a fixed width. If the parse fails anywhere in the run, then the leftmost field is shortened by one + * character, and the entire run is parsed again. This is repeated until either the parse succeeds or the leftmost field is one + * character in length. If the parse still fails at that point, the parse of the run fails. + * + * For time zones that have no names, Simple Date Format uses strings GMT+hours:minutes or GMT-hours:minutes. + * + * The calendar defines what is the first day of the week, the first week of the year, whether hours are zero based or not + * (0 vs 12 or 24), and the timezone. There is one common number format to handle all the numbers; the digit count is handled + * programmatically according to the pattern. + */ + +/** + * @addtogroup CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * @{ + */ + +/** + * @brief Creates a simple date format object using the default pattern for the default locale. + * @since_tizen 5.0 + * @remarks The created object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[out] simple_date_fmt The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_create(i18n_simple_date_fmt_h *simple_date_fmt); + +/** + * @brief Creates a simple date format object using the given pattern and the default locale. + * @since_tizen 5.0 + * @remarks The created object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[in] pattern The pattern for the simple date format + * @param[out] simple_date_fmt The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_create_from_pattern(const char *pattern, + i18n_simple_date_fmt_h *simple_date_fmt); + +/** + * @brief Creates a simple date format object using the given pattern, numbering system override, + * and the default locale. + * @since_tizen 5.0 + * @remarks The created object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[in] pattern The pattern for the simple date format + * @param[in] override The override string + * @param[out] simple_date_fmt The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_create_from_pattern_override(const char *pattern, const char *override, + i18n_simple_date_fmt_h *simple_date_fmt); + +/** + * @brief Creates a simple date format object using the given pattern and locale. + * @since_tizen 5.0 + * @remarks The created object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[in] pattern The pattern for the simple date format + * @param[in] locale The given locale + * @param[out] simple_date_fmt The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_create_from_pattern_locale(const char *pattern, const char *locale, + i18n_simple_date_fmt_h *simple_date_fmt); + +/** + * @brief Creates a simple date format object using the given pattern, numbering system + * override and locale. + * @since_tizen 5.0 + * @remarks The created object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[in] pattern The pattern for the simple date format + * @param[in] override The numbering system override + * @param[in] locale The given locale + * @param[out] simple_date_fmt The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_create_from_pattern_override_locale(const char *pattern, const char *override, + const char *locale, + i18n_simple_date_fmt_h *simple_date_fmt); + +/** + * @brief Destroys the given simple date format object. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object to destroy + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_destroy(i18n_simple_date_fmt_h simple_date_fmt); + +/** + * @brief Creates a clone of the given @a simple_date_fmt object. + * @since_tizen 5.0 + * @remarks The @a clone object should be released by the caller with the + * i18n_simple_date_fmt_destroy() function. + * + * @param[in] simple_date_fmt The simple date format object to be cloned + * @param[out] clone The created simple date format object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_clone(i18n_simple_date_fmt_h simple_date_fmt, + i18n_simple_date_fmt_h *clone); + +/** + * @brief Checks whether two simple date format objects are equal. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt_1 The first simple date format object + * @param[in] simple_date_fmt_2 The second simple date format format object + * @param[out] equals @c true if @a simple_date_fmt_1 is equal + * to @a simple_date_fmt_2, @c false otherwise + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_equals(i18n_simple_date_fmt_h simple_date_fmt_1, + i18n_simple_date_fmt_h simple_date_fmt_2, + bool *equals); + +/** + * @brief Formats a date or time (which is the standard millis since 24:00 GMT, Jan 1, 1970) + * using field position. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The format object for which date or time will be formatted + * @param[in] calendar Calendar set to the date and time to be formatted into a + * date/time string + * @param[in,out] append_to Input/output parameter to receive the result. + * The result is appended to the existing contents. + * @param[in] field_position The #i18n_field_position_h object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_format_with_field_position(i18n_simple_date_fmt_h simple_date_fmt, + i18n_ucalendar_h calendar, char **append_to, + i18n_field_position_h field_position); + +/** + * @brief Parses a date/time string beginning at the given parse position. + * @details For example, a time text "07/10/96 4:5 pm, pdt" will be parsed into a date that is equivalent + * to date 837039928046. By default, parsing is lenient: if the input is not in the form used + * by this object's format method but can still be parsed as a date, then the parse succeeds. + * Clients may insist on strict adherence to the format by calling set_lenient(false). + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] source The date/time string to be parsed + * @param[in,out] parse_position On input, the position at which to start parsing; on output, the + * position at which parsing terminated, or the start position if the + * parse failed + * @param[in,out] result A #i18n_ucalendar_h object set on input to the date and time to be used + * for missing values in the date/time string being parsed, and set on output + * to the parsed date/time. When the calendar type is different from the internal + * calendar held by this #i18n_simple_date_fmt_h object instance, the internal + * calendar will be cloned to a work calendar set to the same milliseconds and + * time zone as the cal parameter, field values will be parsed based on the + * work calendar, then the result (milliseconds and time zone) will be set in + * this calendar. + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_parse(i18n_simple_date_fmt_h simple_date_fmt, const char *source, + i18n_parse_position_h parse_position, i18n_ucalendar_h *result); + +/** + * @brief Sets the start i18n_udate used to interpret two-digit year strings. + * @details When dates are parsed having 2-digit year strings, they are placed within a assumed + * range of 100 years starting on the two digit start date. For example, the string "24-jan-17" + * may be in the year 1817, 1917, 2017, or some other year. Simple date format chooses a year + * so that the resultant date is on or after the two digit start date and within 100 years of the + * two digit start date. by default, the two digit start date is set to 80 years before the current + * time at which a #i18n_simple_date_fmt_h object is created. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] udate The start date of the given #i18n_simple_date_fmt_h object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_set_2digit_year_start(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udate udate); + +/** + * @brief Gets the start i18n_udate used to interpret two-digit year strings. + * @details When dates are parsed having 2-digit year strings, they are placed within a assumed range + * of 100 years starting on the two digit start date. For example, the string "24-jan-17" may + * be in the year 1817, 1917, 2017, or some other year. Simple date format chooses a year so that + * the resultant date is on or after the two digit start date and within 100 years of the two digit + * start date. By default, the two digit start date is set to 80 years before the current time at + * which a #i18n_simple_date_fmt_h object is created. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[out] udate The start date of the given #i18n_simple_date_fmt_h object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_get_2digit_year_start(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udate *udate); + +/** + * @brief Returns a pattern string that describes given simple format date object. + * @since_tizen 5.0 + * @remarks The returned pattern should be freed by the caller with free() function. + * + * @param[in] simple_date_fmt The simple date format object + * @param[out] pattern The pattern from the given simple date object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + * @retval #I18N_ERROR_OUT_OF_MEMORY Out of memory + */ +int i18n_simple_date_fmt_to_pattern(i18n_simple_date_fmt_h simple_date_fmt, + char **pattern); + +/** + * @brief Returns a localized pattern string that describes given simple date format object. + * @details In most cases, this will return the same thing as i18n_simple_date_fmt_to_pattern(), + * but a locale can specify characters to use in pattern descriptions in place of the ones + * described in this class's class documentation. Presumably, letters that would be more + * mnemonic in that locale's language. This function would produce a pattern using those + * letters. + * @since_tizen 5.0 + * @remarks The returned localized pattern should be freed by the caller with free() function. + * + * @param[in] simple_date_fmt The simple date format object + * @param[out] localized_pattern The localized pattern from the given simple date object + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_to_localized_pattern(i18n_simple_date_fmt_h simple_date_fmt, + char **localized_pattern); + +/** + * @brief Applies the given unlocalized pattern string to this date format. + * @details After this call, this formatter will format dates according to the new pattern. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] pattern The pattern to be applied + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_apply_pattern(i18n_simple_date_fmt_h simple_date_fmt, + const char *pattern); + +/** + * @brief Applies the given localized pattern string to this date format. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] localized_pattern The localized pattern to be applied + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_apply_localized_pattern(i18n_simple_date_fmt_h simple_date_fmt, + const char *localized_pattern); + +/** + * @brief Sets the calendar to be used by this date format. + * @details Initially, the default calendar for the specified or default locale is used. The caller + * should not delete the #i18n_ucalendar_h object after it is adopted by this call. Adopting + * a new calendar will change to the default symbols. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] ucalendar The #i18n_ucalendar_h object to be adopted + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_adopt_calendar(i18n_simple_date_fmt_h simple_date_fmt, + i18n_ucalendar_h ucalendar); + +/** + * @brief Sets a particular #i18n_udisplay_context_e value in the formatter, such as + * #I18N_UDISPLAY_CONTEXT_CAPITALIZATION_FOR_STANDALONE. + * @since_tizen 5.0 + * + * @param[in] simple_date_fmt The simple date format object + * @param[in] value The i18n_udisplay_context_e value to set + * + * @return @c 0 on success, otherwise a negative error value + * @retval #I18N_ERROR_NONE Successful + * @retval #I18N_ERROR_INVALID_PARAMETER Invalid function parameter + */ +int i18n_simple_date_fmt_set_context(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udisplay_context_e value); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __UTILS_I18N_SIMPLE_DATE_FORMAT_H__*/ diff --git a/src/include/utils_i18n_types.h b/src/include/utils_i18n_types.h index 177aba6..bdaff04 100644 --- a/src/include/utils_i18n_types.h +++ b/src/include/utils_i18n_types.h @@ -4402,6 +4402,22 @@ typedef void *i18n_immutable_idx_h; */ /** + * @addtogroup CAPI_BASE_UTILS_I18N_SIMPLE_DATE_FORMAT_MODULE + * @{ + */ + +/** + * @brief A simple date format handle. + * @details Use i18n_simple_date_fmt_* functions to operate on #i18n_simple_date_fmt_h objects. + * @since_tizen 5.0 + */ +typedef void *i18n_simple_date_fmt_h; + +/** + * @} + */ + +/** * @addtogroup CAPI_BASE_UTILS_I18N_DATE_INTERVAL_MODULE * @{ */ diff --git a/src/utils_i18n_simple_date_format.cpp b/src/utils_i18n_simple_date_format.cpp new file mode 100644 index 0000000..372a6d4 --- /dev/null +++ b/src/utils_i18n_simple_date_format.cpp @@ -0,0 +1,357 @@ +/* + * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include + +#include + + +int i18n_simple_date_fmt_create(i18n_simple_date_fmt_h *simple_date_fmt) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + *simple_date_fmt = new SimpleDateFormat(status); + + retv_if(*simple_date_fmt == NULL, I18N_ERROR_OUT_OF_MEMORY); + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_create_from_pattern(const char *pattern, + i18n_simple_date_fmt_h *simple_date_fmt) +{ + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_pattern(pattern); + + *simple_date_fmt = new SimpleDateFormat(unicode_pattern, status); + + retv_if(*simple_date_fmt == NULL, I18N_ERROR_OUT_OF_MEMORY); + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_create_from_pattern_override(const char *pattern, const char *override, + i18n_simple_date_fmt_h *simple_date_fmt) +{ + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(override == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_pattern(pattern); + UnicodeString unicode_override(override); + + *simple_date_fmt = new SimpleDateFormat(unicode_pattern, unicode_override, status); + + retv_if(*simple_date_fmt == NULL, I18N_ERROR_OUT_OF_MEMORY); + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_create_from_pattern_locale(const char *pattern, const char *locale, + i18n_simple_date_fmt_h *simple_date_fmt) +{ + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(locale == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_pattern(pattern); + Locale _locale(locale, 0, 0, 0); + + *simple_date_fmt = new SimpleDateFormat(unicode_pattern, _locale, status); + + retv_if(*simple_date_fmt == NULL, I18N_ERROR_OUT_OF_MEMORY); + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_create_from_pattern_override_locale(const char *pattern, const char *override, + const char *locale, + i18n_simple_date_fmt_h *simple_date_fmt) +{ + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(override == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(locale == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_pattern(pattern); + UnicodeString unicode_override(override); + Locale _locale(locale, 0, 0, 0); + + *simple_date_fmt = new SimpleDateFormat(unicode_pattern, unicode_override, _locale, status); + + retv_if(*simple_date_fmt == NULL, I18N_ERROR_OUT_OF_MEMORY); + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_destroy(i18n_simple_date_fmt_h simple_date_fmt) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + delete((SimpleDateFormat *) simple_date_fmt); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_clone(i18n_simple_date_fmt_h simple_date_fmt, + i18n_simple_date_fmt_h *clone) +{ + retv_if(simple_date_fmt == NULL || clone == NULL, I18N_ERROR_INVALID_PARAMETER); + + *clone = ((SimpleDateFormat *) simple_date_fmt)->clone(); + retv_if(*clone == NULL, I18N_ERROR_OUT_OF_MEMORY); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_equals(i18n_simple_date_fmt_h simple_date_fmt_1, + i18n_simple_date_fmt_h simple_date_fmt_2, + bool *equals) +{ + retv_if(simple_date_fmt_1 == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(simple_date_fmt_2 == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(equals == NULL, I18N_ERROR_INVALID_PARAMETER); + + *equals = *((SimpleDateFormat *) simple_date_fmt_1) == *((SimpleDateFormat *) simple_date_fmt_2); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_format_with_field_position(i18n_simple_date_fmt_h simple_date_fmt, + i18n_ucalendar_h calendar, char **append_to, + i18n_field_position_h field_position) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(calendar == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(append_to == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(field_position == NULL, I18N_ERROR_INVALID_PARAMETER); + + UnicodeString unicode_append_to(*append_to); + + UnicodeString &result = ((SimpleDateFormat *) simple_date_fmt)->format( + *((Calendar *) calendar), unicode_append_to, + *((FieldPosition *) field_position)); + + const i18n_uchar *uchar_result = (i18n_uchar *)result.getTerminatedBuffer(); + + retv_if(uchar_result == NULL, I18N_ERROR_INVALID_PARAMETER); + int32_t ulen = i18n_ustring_get_length(uchar_result); + + retv_if(ulen <= 0, I18N_ERROR_INVALID_PARAMETER); + + /* + * UTF-16 uses at least two bytes, growing up to four bytes as necessary, + * this is why we multiply UChar by 4. + */ + int32_t char_len = 4*ulen+4; + char _append_to[char_len]; + memset(_append_to, 0x0, char_len); + i18n_ustring_copy_au(_append_to, uchar_result); + + int32_t len = strlen(_append_to); + free(*append_to); + *append_to = (char *) malloc(len+1); + + retv_if(*append_to == NULL, I18N_ERROR_OUT_OF_MEMORY); + + memset(*append_to, 0x0, len+1); + + COPY_STR(*append_to, _append_to, len+1); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_parse(i18n_simple_date_fmt_h simple_date_fmt, const char *source, + i18n_parse_position_h parse_position, i18n_ucalendar_h *result) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(source == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(parse_position == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(result == NULL, I18N_ERROR_INVALID_PARAMETER); + + const UnicodeString unicode_source(source); + + UErrorCode status = U_ZERO_ERROR; + + Calendar *c = Calendar::createInstance(status); + + retv_if(c == NULL, I18N_ERROR_OUT_OF_MEMORY); + + ((SimpleDateFormat *) simple_date_fmt)->parse( + unicode_source, *c, *((ParsePosition *) parse_position)); + + *result = (i18n_ucalendar_h) c; + + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_set_2digit_year_start(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udate udate) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + ((SimpleDateFormat *) simple_date_fmt)->set2DigitYearStart(udate, status); + + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_get_2digit_year_start(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udate *udate) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(udate == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + *udate = ((SimpleDateFormat *) simple_date_fmt)->get2DigitYearStart(status); + + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_to_pattern(i18n_simple_date_fmt_h simple_date_fmt, + char **pattern) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + + UnicodeString unicode_date; + + UnicodeString &result = ((SimpleDateFormat *) + simple_date_fmt)->toPattern(unicode_date); + + const i18n_uchar *uchar_result = (i18n_uchar *)result.getTerminatedBuffer(); + + retv_if(uchar_result == NULL, I18N_ERROR_INVALID_PARAMETER); + int32_t ulen = i18n_ustring_get_length(uchar_result); + + retv_if(ulen <= 0, I18N_ERROR_INVALID_PARAMETER); + + /* + * UTF-16 uses at least two bytes, growing up to four bytes as necessary, + * this is why we multiply UChar by 4. + */ + int32_t char_len = 4*ulen+4; + char _pattern[char_len]; + memset(_pattern, 0x0, char_len); + i18n_ustring_copy_au(_pattern, uchar_result); + + int32_t len = strlen(_pattern); + *pattern = (char *) malloc(len+1); + + retv_if(*pattern == NULL, I18N_ERROR_OUT_OF_MEMORY); + + memset(*pattern, 0x0, len+1); + + COPY_STR(*pattern, _pattern, len+1); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_to_localized_pattern(i18n_simple_date_fmt_h simple_date_fmt, + char **localized_pattern) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(localized_pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_date; + + UnicodeString &result = ((SimpleDateFormat *) + simple_date_fmt)->toLocalizedPattern(unicode_date, status); + + const i18n_uchar *uchar_result = (i18n_uchar *)result.getTerminatedBuffer(); + + retv_if(uchar_result == NULL, I18N_ERROR_INVALID_PARAMETER); + int32_t ulen = i18n_ustring_get_length(uchar_result); + + retv_if(ulen <= 0, I18N_ERROR_INVALID_PARAMETER); + + /* + * UTF-16 uses at least two bytes, growing up to four bytes as necessary, + * this is why we multiply UChar by 4. + */ + int32_t char_len = 4*ulen+4; + char _localized_pattern[char_len]; + memset(_localized_pattern, 0x0, char_len); + i18n_ustring_copy_au(_localized_pattern, uchar_result); + + int32_t len = strlen(_localized_pattern); + *localized_pattern = (char *) malloc(len+1); + + retv_if(*localized_pattern == NULL, I18N_ERROR_OUT_OF_MEMORY); + + memset(*localized_pattern, 0x0, len+1); + + COPY_STR(*localized_pattern, _localized_pattern, len+1); + + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_apply_pattern(i18n_simple_date_fmt_h simple_date_fmt, + const char *pattern) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + + UnicodeString unicode_pattern(pattern); + + ((SimpleDateFormat *) simple_date_fmt)->applyPattern(unicode_pattern); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_apply_localized_pattern(i18n_simple_date_fmt_h simple_date_fmt, + const char *localized_pattern) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(localized_pattern == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + UnicodeString unicode_localized_pattern(localized_pattern); + + ((SimpleDateFormat *) simple_date_fmt)->applyLocalizedPattern( + unicode_localized_pattern, status); + + return _i18n_error_mapping(status); +} + +int i18n_simple_date_fmt_adopt_calendar(i18n_simple_date_fmt_h simple_date_fmt, + i18n_ucalendar_h ucalendar) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + retv_if(ucalendar == NULL, I18N_ERROR_INVALID_PARAMETER); + + ((SimpleDateFormat *) simple_date_fmt)->adoptCalendar((Calendar *) ucalendar); + + return I18N_ERROR_NONE; +} + +int i18n_simple_date_fmt_set_context(i18n_simple_date_fmt_h simple_date_fmt, + i18n_udisplay_context_e value) +{ + retv_if(simple_date_fmt == NULL, I18N_ERROR_INVALID_PARAMETER); + + UErrorCode status = U_ZERO_ERROR; + + ((SimpleDateFormat *) simple_date_fmt)->setContext((UDisplayContext) value, status); + + return _i18n_error_mapping(status); +} + -- 2.7.4