ICU 68.2  68.2
listformatter.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 *******************************************************************************
5 *
6 * Copyright (C) 2012-2016, International Business Machines
7 * Corporation and others. All Rights Reserved.
8 *
9 *******************************************************************************
10 * file name: listformatter.h
11 * encoding: UTF-8
12 * tab size: 8 (not used)
13 * indentation:4
14 *
15 * created on: 20120426
16 * created by: Umesh P. Nair
17 */
18 
19 #ifndef __LISTFORMATTER_H__
20 #define __LISTFORMATTER_H__
21 
22 #include "unicode/utypes.h"
23 
24 #if U_SHOW_CPLUSPLUS_API
25 
26 #if !UCONFIG_NO_FORMATTING
27 
28 #include "unicode/unistr.h"
29 #include "unicode/locid.h"
30 #include "unicode/formattedvalue.h"
31 #include "unicode/ulistformatter.h"
32 
33 U_NAMESPACE_BEGIN
34 
35 class FieldPositionHandler;
36 class FormattedListData;
37 class ListFormatter;
38 
40 class Hashtable;
41 
43 struct ListFormatInternal;
44 
45 /* The following can't be #ifndef U_HIDE_INTERNAL_API, needed for other .h file declarations */
50 struct ListFormatData : public UMemory {
51  UnicodeString twoPattern;
52  UnicodeString startPattern;
53  UnicodeString middlePattern;
54  UnicodeString endPattern;
55  Locale locale;
56 
57  ListFormatData(const UnicodeString& two, const UnicodeString& start, const UnicodeString& middle, const UnicodeString& end,
58  const Locale& loc) :
59  twoPattern(two), startPattern(start), middlePattern(middle), endPattern(end), locale(loc) {}
60 };
87  public:
92  FormattedList() : fData(nullptr), fErrorCode(U_INVALID_STATE_ERROR) {}
93 
99 
105 
107  FormattedList(const FormattedList&) = delete;
108 
110  FormattedList& operator=(const FormattedList&) = delete;
111 
117 
119  UnicodeString toString(UErrorCode& status) const U_OVERRIDE;
120 
122  UnicodeString toTempString(UErrorCode& status) const U_OVERRIDE;
123 
125  Appendable &appendTo(Appendable& appendable, UErrorCode& status) const U_OVERRIDE;
126 
128  UBool nextPosition(ConstrainedFieldPosition& cfpos, UErrorCode& status) const U_OVERRIDE;
129 
130  private:
131  FormattedListData *fData;
132  UErrorCode fErrorCode;
133  explicit FormattedList(FormattedListData *results)
134  : fData(results), fErrorCode(U_ZERO_ERROR) {}
135  explicit FormattedList(UErrorCode errorCode)
136  : fData(nullptr), fErrorCode(errorCode) {}
137  friend class ListFormatter;
138 };
139 
140 
152 
153  public:
154 
160 
166 
176 
186  static ListFormatter* createInstance(const Locale& locale, UErrorCode& errorCode);
187 
199  const Locale& locale, UListFormatterType type, UListFormatterWidth width, UErrorCode& errorCode);
200 
201 #ifndef U_HIDE_INTERNAL_API
202 
214  static ListFormatter* createInstance(const Locale& locale, const char* style, UErrorCode& errorCode);
215 #endif /* U_HIDE_INTERNAL_API */
216 
222  virtual ~ListFormatter();
223 
224 
235  UnicodeString& format(const UnicodeString items[], int32_t n_items,
236  UnicodeString& appendTo, UErrorCode& errorCode) const;
237 
250  const UnicodeString items[],
251  int32_t n_items,
252  UErrorCode& errorCode) const;
253 
254 #ifndef U_HIDE_INTERNAL_API
255 
259  const UnicodeString items[],
260  int32_t n_items,
261  UnicodeString& appendTo,
262  int32_t index,
263  int32_t &offset,
264  UErrorCode& errorCode) const;
268  ListFormatter(const ListFormatData &data, UErrorCode &errorCode);
272  ListFormatter(const ListFormatInternal* listFormatterInternal);
273 #endif /* U_HIDE_INTERNAL_API */
274 
275  private:
276  static void initializeHash(UErrorCode& errorCode);
277  static const ListFormatInternal* getListFormatInternal(const Locale& locale, const char *style, UErrorCode& errorCode);
278  struct ListPatternsSink;
279  static ListFormatInternal* loadListFormatInternal(const Locale& locale, const char* style, UErrorCode& errorCode);
280 
281  UnicodeString& format_(
282  const UnicodeString items[], int32_t n_items, UnicodeString& appendTo,
283  int32_t index, int32_t &offset, FieldPositionHandler* handler, UErrorCode& errorCode) const;
284 
285  ListFormatter();
286 
287  ListFormatInternal* owned;
288  const ListFormatInternal* data;
289 };
290 
291 U_NAMESPACE_END
292 
293 #endif /* #if !UCONFIG_NO_FORMATTING */
294 
295 #endif /* U_SHOW_CPLUSPLUS_API */
296 
297 #endif // __LISTFORMATTER_H__
icu::ListFormatter::format
UnicodeString & format(const UnicodeString items[], int32_t n_items, UnicodeString &appendTo, int32_t index, int32_t &offset, UErrorCode &errorCode) const
utypes.h
Basic definitions for ICU, for both C and C++ APIs.
U_I18N_API
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside.
Definition: utypes.h:301
icu::ListFormatter::ListFormatter
ListFormatter(const ListFormatInternal *listFormatterInternal)
UBool
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition: umachine.h:269
U_NOEXCEPT
#define U_NOEXCEPT
"noexcept" if supported, otherwise empty.
Definition: platform.h:529
icu::FormattedValue
An abstract formatted value: a string with associated field attributes.
Definition: formattedvalue.h:241
icu::ListFormatter::formatStringsToValue
FormattedList formatStringsToValue(const UnicodeString items[], int32_t n_items, UErrorCode &errorCode) const
Formats a list of strings to a FormattedList, which exposes field position information.
U_OVERRIDE
#define U_OVERRIDE
Defined to the C++11 "override" keyword if available.
Definition: umachine.h:130
icu::ListFormatter::ListFormatter
ListFormatter(const ListFormatData &data, UErrorCode &errorCode)
icu::FormattedList
An immutable class containing the result of a list formatting operation.
Definition: listformatter.h:86
UListFormatterType
UListFormatterType
Type of meaning expressed by the list.
Definition: ulistformatter.h:70
icu::UnicodeString
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition: unistr.h:295
UListFormatterWidth
UListFormatterWidth
Verbosity level of the list patterns.
Definition: ulistformatter.h:99
icu::FormattedList::FormattedList
FormattedList()
Default constructor; makes an empty FormattedList.
Definition: listformatter.h:92
icu::UObject
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
UErrorCode
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:415
icu::UMemory
UMemory is the common ICU base class.
Definition: uobject.h:115
icu::ListFormatter::ListFormatter
ListFormatter(const ListFormatter &)
Copy constructor.
ulistformatter.h
C API: Format a list in a locale-appropriate way.
U_ZERO_ERROR
@ U_ZERO_ERROR
No error, no warning.
Definition: utypes.h:449
formattedvalue.h
C++ API: Abstract operations for localized strings.
icu::ListFormatter::createInstance
static ListFormatter * createInstance(UErrorCode &errorCode)
Creates a ListFormatter appropriate for the default locale.
icu::Appendable
Base class for objects to which Unicode characters and strings can be appended.
Definition: appendable.h:54
icu::ListFormatter::createInstance
static ListFormatter * createInstance(const Locale &locale, const char *style, UErrorCode &errorCode)
Creates a ListFormatter appropriate for a locale and style.
icu::ListFormatter::~ListFormatter
virtual ~ListFormatter()
Destructor.
icu::ListFormatter::format
UnicodeString & format(const UnicodeString items[], int32_t n_items, UnicodeString &appendTo, UErrorCode &errorCode) const
Formats a list of strings.
icu::ListFormatter::createInstance
static ListFormatter * createInstance(const Locale &locale, UListFormatterType type, UListFormatterWidth width, UErrorCode &errorCode)
Creates a ListFormatter for the given locale, list type, and style.
icu::ListFormatter::operator=
ListFormatter & operator=(const ListFormatter &other)
Assignment operator.
icu::ListFormatter
An immutable class for formatting a list, using data from CLDR (or supplied separately).
Definition: listformatter.h:151
locid.h
C++ API: Locale ID object.
icu::FormattedList::~FormattedList
virtual ~FormattedList() U_OVERRIDE
Destruct an instance of FormattedList.
U_INVALID_STATE_ERROR
@ U_INVALID_STATE_ERROR
Requested operation can not be completed with ICU in its current state.
Definition: utypes.h:478
icu::FormattedList::FormattedList
FormattedList(FormattedList &&src) U_NOEXCEPT
Move constructor: Leaves the source FormattedList in an undefined state.
icu::Locale
A Locale object represents a specific geographical, political, or cultural region.
Definition: locid.h:195
unistr.h
C++ API: Unicode String.
icu::ListFormatter::createInstance
static ListFormatter * createInstance(const Locale &locale, UErrorCode &errorCode)
Creates a ListFormatter appropriate for a locale.
icu::ConstrainedFieldPosition
Represents a span of a string containing a given field.
Definition: formattedvalue.h:41