1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *****************************************************************************************
5 * Copyright (C) 2010-2012,2015-2016 International Business Machines
6 * Corporation and others. All Rights Reserved.
7 *****************************************************************************************
10 #ifndef UDATEINTERVALFORMAT_H
11 #define UDATEINTERVALFORMAT_H
13 #include "unicode/utypes.h"
15 #if !UCONFIG_NO_FORMATTING
17 #include "unicode/umisc.h"
18 #include "unicode/localpointer.h"
22 * \brief C API: Format a date interval.
24 * A UDateIntervalFormat is used to format the range between two UDate values
25 * in a locale-sensitive way, using a skeleton that specifies the precision and
26 * completeness of the information to show. If the range smaller than the resolution
27 * specified by the skeleton, a single date format will be produced. If the range
28 * is larger than the format specified by the skeleton, a locale-specific fallback
29 * will be used to format the items missing from the skeleton.
31 * For example, if the range is 2010-03-04 07:56 - 2010-03-04 19:56 (12 hours)
32 * - The skeleton jm will produce
33 * for en_US, "7:56 AM - 7:56 PM"
34 * for en_GB, "7:56 - 19:56"
35 * - The skeleton MMMd will produce
38 * If the range is 2010-03-04 07:56 - 2010-03-08 16:11 (4 days, 8 hours, 15 minutes)
39 * - The skeleton jm will produce
40 * for en_US, "3/4/2010 7:56 AM - 3/8/2010 4:11 PM"
41 * for en_GB, "4/3/2010 7:56 - 8/3/2010 16:11"
42 * - The skeleton MMMd will produce
43 * for en_US, "Mar 4-8"
44 * for en_GB, "4-8 Mar"
46 * Note: the "-" characters in the above sample output will actually be
47 * Unicode 2013, EN_DASH, in all but the last example.
49 * Note, in ICU 4.4 the standard skeletons for which date interval format data
50 * is usually available are as follows; best results will be obtained by using
51 * skeletons from this set, or those formed by combining these standard skeletons
52 * (note that for these skeletons, the length of digit field such as d, y, or
53 * M vs MM is irrelevant (but for non-digit fields such as MMM vs MMMM it is
54 * relevant). Note that a skeleton involving h or H generally explicitly requests
55 * that time style (12- or 24-hour time respectively). For a skeleton that
56 * requests the locale's default time style (h or H), use 'j' instead of h or H.
68 * Locales for which ICU 4.4 seems to have a reasonable amount of this data
70 * af, am, ar, be, bg, bn, ca, cs, da, de (_AT), el, en (_AU,_CA,_GB,_IE,_IN...),
71 * eo, es (_AR,_CL,_CO,...,_US) et, fa, fi, fo, fr (_BE,_CH,_CA), fur, gsw, he,
72 * hr, hu, hy, is, it (_CH), ja, kk, km, ko, lt, lv, mk, ml, mt, nb, nl )_BE),
73 * nn, pl, pt (_PT), rm, ro, ru (_UA), sk, sl, so, sq, sr, sr_Latn, sv, th, to,
74 * tr, uk, ur, vi, zh (_SG), zh_Hant (_HK,_MO)
78 * Opaque UDateIntervalFormat object for use in C programs.
81 struct UDateIntervalFormat
;
82 typedef struct UDateIntervalFormat UDateIntervalFormat
; /**< C typedef for struct UDateIntervalFormat. @stable ICU 4.8 */
85 * Open a new UDateIntervalFormat object using the predefined rules for a
86 * given locale plus a specified skeleton.
88 * The locale for whose rules should be used; may be NULL for
91 * A pattern containing only the fields desired for the interval
92 * format, for example "Hm", "yMMMd", or "yMMMEdHm".
93 * @param skeletonLength
94 * The length of skeleton; may be -1 if the skeleton is zero-terminated.
96 * A timezone ID specifying the timezone to use. If 0, use the default
99 * The length of tzID, or -1 if null-terminated. If 0, use the default
102 * A pointer to a UErrorCode to receive any errors.
104 * A pointer to a UDateIntervalFormat object for the specified locale,
105 * or NULL if an error occurred.
108 U_STABLE UDateIntervalFormat
* U_EXPORT2
109 udtitvfmt_open(const char* locale
,
110 const UChar
* skeleton
,
111 int32_t skeletonLength
,
117 * Close a UDateIntervalFormat object. Once closed it may no longer be used.
119 * The UDateIntervalFormat object to close.
122 U_STABLE
void U_EXPORT2
123 udtitvfmt_close(UDateIntervalFormat
*formatter
);
126 #if U_SHOW_CPLUSPLUS_API
131 * \class LocalUDateIntervalFormatPointer
132 * "Smart pointer" class, closes a UDateIntervalFormat via udtitvfmt_close().
133 * For most methods see the LocalPointerBase base class.
135 * @see LocalPointerBase
139 U_DEFINE_LOCAL_OPEN_POINTER(LocalUDateIntervalFormatPointer
, UDateIntervalFormat
, udtitvfmt_close
);
143 #endif // U_SHOW_CPLUSPLUS_API
147 * Formats a date/time range using the conventions established for the
148 * UDateIntervalFormat object.
150 * The UDateIntervalFormat object specifying the format conventions.
152 * The starting point of the range.
154 * The ending point of the range.
156 * A pointer to a buffer to receive the formatted range.
157 * @param resultCapacity
158 * The maximum size of result.
160 * A pointer to a UFieldPosition. On input, position->field is read.
161 * On output, position->beginIndex and position->endIndex indicate
162 * the beginning and ending indices of field number position->field,
163 * if such a field exists. This parameter may be NULL, in which case
164 * no field position data is returned.
165 * There may be multiple instances of a given field type in an
166 * interval format; in this case the position indices refer to the
169 * A pointer to a UErrorCode to receive any errors.
171 * The total buffer size needed; if greater than resultLength, the
172 * output was truncated.
175 U_STABLE
int32_t U_EXPORT2
176 udtitvfmt_format(const UDateIntervalFormat
* formatter
,
180 int32_t resultCapacity
,
181 UFieldPosition
* position
,
184 #ifndef U_HIDE_DRAFT_API
186 * Attributes and values to control the behavior of udtitvfmt_format.
189 typedef enum UDateIntervalFormatAttribute
{
193 UDTITVFMT_MINIMIZE_TYPE
194 } UDateIntervalFormatAttribute
;
196 typedef enum UDateIntervalFormatAttributeValue
{
198 * Standard behavior, no additional minimization.
201 UDTITVFMT_MINIMIZE_NONE
= 0,
203 * For intervals of less than 1 month that cross month boundaries,
204 * only show one month (use format for greatestDifference=d).
207 UDTITVFMT_MINIMIZE_ADJACENT_MONTHS
,
209 * For intervals of less than 12 hours that cross day boundaries,
210 * only show one day (use format for greatestDifference=h).
213 UDTITVFMT_MINIMIZE_ADJACENT_DAYS
214 } UDateIntervalFormatAttributeValue
;
217 * Change attributes for the UDateIntervalFormat object.
219 * The UDateIntervalFormat object whose attributes are to be changed.
221 * The attribute to change.
223 * The new value for the attribute.
225 * A pointer to a UErrorCode to receive any errors.
228 U_INTERNAL
void U_EXPORT2
229 udtitvfmt_setAttribute(UDateIntervalFormat
* formatter
,
230 UDateIntervalFormatAttribute attr
,
231 UDateIntervalFormatAttributeValue value
,
234 #endif /* U_HIDE_DRAFT_API */
235 #endif /* #if !UCONFIG_NO_FORMATTING */