compactdecimalformat.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. /*
  2. ********************************************************************************
  3. * Copyright (C) 2012-2016, International Business Machines
  4. * Corporation and others. All Rights Reserved.
  5. ********************************************************************************
  6. *
  7. * File COMPACTDECIMALFORMAT.H
  8. ********************************************************************************
  9. */
  10. #ifndef __COMPACT_DECIMAL_FORMAT_H__
  11. #define __COMPACT_DECIMAL_FORMAT_H__
  12. #include "unicode/utypes.h"
  13. /**
  14. * \file
  15. * \brief C++ API: Formats decimal numbers in compact form.
  16. */
  17. #if !UCONFIG_NO_FORMATTING
  18. #include "unicode/decimfmt.h"
  19. struct UHashtable;
  20. U_NAMESPACE_BEGIN
  21. class PluralRules;
  22. /**
  23. * The CompactDecimalFormat produces abbreviated numbers, suitable for display in
  24. * environments will limited real estate. For example, 'Hits: 1.2B' instead of
  25. * 'Hits: 1,200,000,000'. The format will be appropriate for the given language,
  26. * such as "1,2 Mrd." for German.
  27. * <p>
  28. * For numbers under 1000 trillion (under 10^15, such as 123,456,789,012,345),
  29. * the result will be short for supported languages. However, the result may
  30. * sometimes exceed 7 characters, such as when there are combining marks or thin
  31. * characters. In such cases, the visual width in fonts should still be short.
  32. * <p>
  33. * By default, there are 3 significant digits. After creation, if more than
  34. * three significant digits are set (with setMaximumSignificantDigits), or if a
  35. * fixed number of digits are set (with setMaximumIntegerDigits or
  36. * setMaximumFractionDigits), then result may be wider.
  37. * <p>
  38. * At this time, parsing is not supported, and will produce a U_UNSUPPORTED_ERROR.
  39. * Resetting the pattern prefixes or suffixes is not supported; the method calls
  40. * are ignored.
  41. * <p>
  42. * @stable ICU 51
  43. */
  44. class U_I18N_API CompactDecimalFormat : public DecimalFormat {
  45. public:
  46. /**
  47. * Returns a compact decimal instance for specified locale.
  48. * @param inLocale the given locale.
  49. * @param style whether to use short or long style.
  50. * @param status error code returned here.
  51. * @stable ICU 51
  52. */
  53. static CompactDecimalFormat* U_EXPORT2 createInstance(
  54. const Locale& inLocale, UNumberCompactStyle style, UErrorCode& status);
  55. /**
  56. * Copy constructor.
  57. *
  58. * @param source the DecimalFormat object to be copied from.
  59. * @stable ICU 51
  60. */
  61. CompactDecimalFormat(const CompactDecimalFormat& source);
  62. /**
  63. * Destructor.
  64. * @stable ICU 51
  65. */
  66. virtual ~CompactDecimalFormat();
  67. /**
  68. * Assignment operator.
  69. *
  70. * @param rhs the DecimalFormat object to be copied.
  71. * @stable ICU 51
  72. */
  73. CompactDecimalFormat& operator=(const CompactDecimalFormat& rhs);
  74. /**
  75. * Clone this Format object polymorphically. The caller owns the
  76. * result and should delete it when done.
  77. *
  78. * @return a polymorphic copy of this CompactDecimalFormat.
  79. * @stable ICU 51
  80. */
  81. virtual Format* clone() const;
  82. /**
  83. * Return TRUE if the given Format objects are semantically equal.
  84. * Objects of different subclasses are considered unequal.
  85. *
  86. * @param other the object to be compared with.
  87. * @return TRUE if the given Format objects are semantically equal.
  88. * @stable ICU 51
  89. */
  90. virtual UBool operator==(const Format& other) const;
  91. using DecimalFormat::format;
  92. /**
  93. * Format a double or long number using base-10 representation.
  94. *
  95. * @param number The value to be formatted.
  96. * @param appendTo Output parameter to receive result.
  97. * Result is appended to existing contents.
  98. * @param pos On input: an alignment field, if desired.
  99. * On output: the offsets of the alignment field.
  100. * @return Reference to 'appendTo' parameter.
  101. * @stable ICU 51
  102. */
  103. virtual UnicodeString& format(double number,
  104. UnicodeString& appendTo,
  105. FieldPosition& pos) const;
  106. /**
  107. * Format a double or long number using base-10 representation.
  108. *
  109. * @param number The value to be formatted.
  110. * @param appendTo Output parameter to receive result.
  111. * Result is appended to existing contents.
  112. * @param pos On input: an alignment field, if desired.
  113. * On output: the offsets of the alignment field.
  114. * @param status
  115. * @return Reference to 'appendTo' parameter.
  116. * @internal
  117. */
  118. virtual UnicodeString& format(double number,
  119. UnicodeString& appendTo,
  120. FieldPosition& pos,
  121. UErrorCode &status) const;
  122. /**
  123. * Format a double or long number using base-10 representation.
  124. * Currently sets status to U_UNSUPPORTED_ERROR.
  125. *
  126. * @param number The value to be formatted.
  127. * @param appendTo Output parameter to receive result.
  128. * Result is appended to existing contents.
  129. * @param posIter On return, can be used to iterate over positions
  130. * of fields generated by this format call.
  131. * Can be NULL.
  132. * @param status Output param filled with success/failure status.
  133. * @return Reference to 'appendTo' parameter.
  134. * @internal
  135. */
  136. virtual UnicodeString& format(double number,
  137. UnicodeString& appendTo,
  138. FieldPositionIterator* posIter,
  139. UErrorCode& status) const;
  140. /* Cannot use #ifndef U_HIDE_DRAFT_API for the following draft method since it is virtual. */
  141. /**
  142. * Format a long number using base-10 representation.
  143. *
  144. * @param number The value to be formatted.
  145. * @param appendTo Output parameter to receive result.
  146. * Result is appended to existing contents.
  147. * @param pos On input: an alignment field, if desired.
  148. * On output: the offsets of the alignment field.
  149. * @return Reference to 'appendTo' parameter.
  150. * @draft ICU 56
  151. */
  152. virtual UnicodeString& format(int32_t number,
  153. UnicodeString& appendTo,
  154. FieldPosition& pos) const;
  155. /**
  156. * Format a long number using base-10 representation.
  157. *
  158. * @param number The value to be formatted.
  159. * @param appendTo Output parameter to receive result.
  160. * Result is appended to existing contents.
  161. * @param pos On input: an alignment field, if desired.
  162. * On output: the offsets of the alignment field.
  163. * @return Reference to 'appendTo' parameter.
  164. * @internal
  165. */
  166. virtual UnicodeString& format(int32_t number,
  167. UnicodeString& appendTo,
  168. FieldPosition& pos,
  169. UErrorCode &status) const;
  170. /**
  171. * Format a long number using base-10 representation.
  172. * Currently sets status to U_UNSUPPORTED_ERROR
  173. *
  174. * @param number The value to be formatted.
  175. * @param appendTo Output parameter to receive result.
  176. * Result is appended to existing contents.
  177. * @param posIter On return, can be used to iterate over positions
  178. * of fields generated by this format call.
  179. * Can be NULL.
  180. * @param status Output param filled with success/failure status.
  181. * @return Reference to 'appendTo' parameter.
  182. * @internal
  183. */
  184. virtual UnicodeString& format(int32_t number,
  185. UnicodeString& appendTo,
  186. FieldPositionIterator* posIter,
  187. UErrorCode& status) const;
  188. /**
  189. * Format an int64 number using base-10 representation.
  190. *
  191. * @param number The value to be formatted.
  192. * @param appendTo Output parameter to receive result.
  193. * Result is appended to existing contents.
  194. * @param pos On input: an alignment field, if desired.
  195. * On output: the offsets of the alignment field.
  196. * @return Reference to 'appendTo' parameter.
  197. * @stable ICU 51
  198. */
  199. virtual UnicodeString& format(int64_t number,
  200. UnicodeString& appendTo,
  201. FieldPosition& pos) const;
  202. /**
  203. * Format an int64 number using base-10 representation.
  204. *
  205. * @param number The value to be formatted.
  206. * @param appendTo Output parameter to receive result.
  207. * Result is appended to existing contents.
  208. * @param pos On input: an alignment field, if desired.
  209. * On output: the offsets of the alignment field.
  210. * @return Reference to 'appendTo' parameter.
  211. * @internal
  212. */
  213. virtual UnicodeString& format(int64_t number,
  214. UnicodeString& appendTo,
  215. FieldPosition& pos,
  216. UErrorCode &status) const;
  217. /**
  218. * Format an int64 number using base-10 representation.
  219. * Currently sets status to U_UNSUPPORTED_ERROR
  220. *
  221. * @param number The value to be formatted.
  222. * @param appendTo Output parameter to receive result.
  223. * Result is appended to existing contents.
  224. * @param posIter On return, can be used to iterate over positions
  225. * of fields generated by this format call.
  226. * Can be NULL.
  227. * @param status Output param filled with success/failure status.
  228. * @return Reference to 'appendTo' parameter.
  229. * @internal
  230. */
  231. virtual UnicodeString& format(int64_t number,
  232. UnicodeString& appendTo,
  233. FieldPositionIterator* posIter,
  234. UErrorCode& status) const;
  235. /**
  236. * Format a decimal number. Currently sets status to U_UNSUPPORTED_ERROR
  237. * The syntax of the unformatted number is a "numeric string"
  238. * as defined in the Decimal Arithmetic Specification, available at
  239. * http://speleotrove.com/decimal
  240. *
  241. * @param number The unformatted number, as a string.
  242. * @param appendTo Output parameter to receive result.
  243. * Result is appended to existing contents.
  244. * @param posIter On return, can be used to iterate over positions
  245. * of fields generated by this format call.
  246. * Can be NULL.
  247. * @param status Output param filled with success/failure status.
  248. * @return Reference to 'appendTo' parameter.
  249. * @internal
  250. */
  251. virtual UnicodeString& format(const StringPiece &number,
  252. UnicodeString& appendTo,
  253. FieldPositionIterator* posIter,
  254. UErrorCode& status) const;
  255. /**
  256. * Format a decimal number. Currently sets status to U_UNSUPPORTED_ERROR
  257. * The number is a DigitList wrapper onto a floating point decimal number.
  258. * The default implementation in NumberFormat converts the decimal number
  259. * to a double and formats that.
  260. *
  261. * @param number The number, a DigitList format Decimal Floating Point.
  262. * @param appendTo Output parameter to receive result.
  263. * Result is appended to existing contents.
  264. * @param posIter On return, can be used to iterate over positions
  265. * of fields generated by this format call.
  266. * @param status Output param filled with success/failure status.
  267. * @return Reference to 'appendTo' parameter.
  268. * @internal
  269. */
  270. virtual UnicodeString& format(const DigitList &number,
  271. UnicodeString& appendTo,
  272. FieldPositionIterator* posIter,
  273. UErrorCode& status) const;
  274. /**
  275. * Format a decimal number. Currently sets status to U_UNSUPPORTED_ERROR.
  276. * The number is a DigitList wrapper onto a floating point decimal number.
  277. * The default implementation in NumberFormat converts the decimal number
  278. * to a double and formats that.
  279. *
  280. * @param number The number, a DigitList format Decimal Floating Point.
  281. * @param appendTo Output parameter to receive result.
  282. * Result is appended to existing contents.
  283. * @param pos On input: an alignment field, if desired.
  284. * On output: the offsets of the alignment field.
  285. * @param status Output param filled with success/failure status.
  286. * @return Reference to 'appendTo' parameter.
  287. * @internal
  288. */
  289. virtual UnicodeString& format(const DigitList &number,
  290. UnicodeString& appendTo,
  291. FieldPosition& pos,
  292. UErrorCode& status) const;
  293. /**
  294. * CompactDecimalFormat does not support parsing. This implementation
  295. * does nothing.
  296. * @param text Unused.
  297. * @param result Does not change.
  298. * @param parsePosition Does not change.
  299. * @see Formattable
  300. * @stable ICU 51
  301. */
  302. virtual void parse(const UnicodeString& text,
  303. Formattable& result,
  304. ParsePosition& parsePosition) const;
  305. /**
  306. * CompactDecimalFormat does not support parsing. This implementation
  307. * sets status to U_UNSUPPORTED_ERROR
  308. *
  309. * @param text Unused.
  310. * @param result Does not change.
  311. * @param status Always set to U_UNSUPPORTED_ERROR.
  312. * @stable ICU 51
  313. */
  314. virtual void parse(const UnicodeString& text,
  315. Formattable& result,
  316. UErrorCode& status) const;
  317. /**
  318. * Parses text from the given string as a currency amount. Unlike
  319. * the parse() method, this method will attempt to parse a generic
  320. * currency name, searching for a match of this object's locale's
  321. * currency display names, or for a 3-letter ISO currency code.
  322. * This method will fail if this format is not a currency format,
  323. * that is, if it does not contain the currency pattern symbol
  324. * (U+00A4) in its prefix or suffix. This implementation always returns
  325. * NULL.
  326. *
  327. * @param text the string to parse
  328. * @param pos input-output position; on input, the position within text
  329. * to match; must have 0 <= pos.getIndex() < text.length();
  330. * on output, the position after the last matched character.
  331. * If the parse fails, the position in unchanged upon output.
  332. * @return if parse succeeds, a pointer to a newly-created CurrencyAmount
  333. * object (owned by the caller) containing information about
  334. * the parsed currency; if parse fails, this is NULL.
  335. * @internal
  336. */
  337. virtual CurrencyAmount* parseCurrency(const UnicodeString& text,
  338. ParsePosition& pos) const;
  339. /**
  340. * Return the class ID for this class. This is useful only for
  341. * comparing to a return value from getDynamicClassID(). For example:
  342. * <pre>
  343. * . Base* polymorphic_pointer = createPolymorphicObject();
  344. * . if (polymorphic_pointer->getDynamicClassID() ==
  345. * . Derived::getStaticClassID()) ...
  346. * </pre>
  347. * @return The class ID for all objects of this class.
  348. * @stable ICU 51
  349. */
  350. static UClassID U_EXPORT2 getStaticClassID();
  351. /**
  352. * Returns a unique class ID POLYMORPHICALLY. Pure virtual override.
  353. * This method is to implement a simple version of RTTI, since not all
  354. * C++ compilers support genuine RTTI. Polymorphic operator==() and
  355. * clone() methods call this method.
  356. *
  357. * @return The class ID for this object. All objects of a
  358. * given class have the same class ID. Objects of
  359. * other classes have different class IDs.
  360. * @stable ICU 51
  361. */
  362. virtual UClassID getDynamicClassID() const;
  363. private:
  364. const UHashtable* _unitsByVariant;
  365. const double* _divisors;
  366. PluralRules* _pluralRules;
  367. // Default constructor not implemented.
  368. CompactDecimalFormat(const DecimalFormat &, const UHashtable* unitsByVariant, const double* divisors, PluralRules* pluralRules);
  369. UBool eqHelper(const CompactDecimalFormat& that) const;
  370. };
  371. U_NAMESPACE_END
  372. #endif /* #if !UCONFIG_NO_FORMATTING */
  373. #endif // __COMPACT_DECIMAL_FORMAT_H__
  374. //eof