numfmt.h 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178
  1. /*
  2. ********************************************************************************
  3. * Copyright (C) 1997-2016, International Business Machines Corporation and others.
  4. * All Rights Reserved.
  5. ********************************************************************************
  6. *
  7. * File NUMFMT.H
  8. *
  9. * Modification History:
  10. *
  11. * Date Name Description
  12. * 02/19/97 aliu Converted from java.
  13. * 03/18/97 clhuang Updated per C++ implementation.
  14. * 04/17/97 aliu Changed DigitCount to int per code review.
  15. * 07/20/98 stephen JDK 1.2 sync up. Added scientific support.
  16. * Changed naming conventions to match C++ guidelines
  17. * Derecated Java style constants (eg, INTEGER_FIELD)
  18. ********************************************************************************
  19. */
  20. #ifndef NUMFMT_H
  21. #define NUMFMT_H
  22. #include "unicode/utypes.h"
  23. /**
  24. * \file
  25. * \brief C++ API: Abstract base class for all number formats.
  26. */
  27. #if !UCONFIG_NO_FORMATTING
  28. #include "unicode/unistr.h"
  29. #include "unicode/format.h"
  30. #include "unicode/unum.h" // UNumberFormatStyle
  31. #include "unicode/locid.h"
  32. #include "unicode/stringpiece.h"
  33. #include "unicode/curramt.h"
  34. #include "unicode/udisplaycontext.h"
  35. class NumberFormatTest;
  36. U_NAMESPACE_BEGIN
  37. class SharedNumberFormat;
  38. #if !UCONFIG_NO_SERVICE
  39. class NumberFormatFactory;
  40. class StringEnumeration;
  41. #endif
  42. /**
  43. *
  44. * Abstract base class for all number formats. Provides interface for
  45. * formatting and parsing a number. Also provides methods for
  46. * determining which locales have number formats, and what their names
  47. * are.
  48. * \headerfile unicode/numfmt.h "unicode/numfmt.h"
  49. * <P>
  50. * NumberFormat helps you to format and parse numbers for any locale.
  51. * Your code can be completely independent of the locale conventions
  52. * for decimal points, thousands-separators, or even the particular
  53. * decimal digits used, or whether the number format is even decimal.
  54. * <P>
  55. * To format a number for the current Locale, use one of the static
  56. * factory methods:
  57. * \code
  58. * #include <iostream>
  59. * #include "unicode/numfmt.h"
  60. * #include "unicode/unistr.h"
  61. * #include "unicode/ustream.h"
  62. * using namespace std;
  63. *
  64. * int main() {
  65. * double myNumber = 7.0;
  66. * UnicodeString myString;
  67. * UErrorCode success = U_ZERO_ERROR;
  68. * NumberFormat* nf = NumberFormat::createInstance(success);
  69. * nf->format(myNumber, myString);
  70. * cout << " Example 1: " << myString << endl;
  71. * }
  72. * \endcode
  73. * Note that there are additional factory methods within subclasses of
  74. * NumberFormat.
  75. * <P>
  76. * If you are formatting multiple numbers, it is more efficient to get
  77. * the format and use it multiple times so that the system doesn't
  78. * have to fetch the information about the local language and country
  79. * conventions multiple times.
  80. * \code
  81. * UnicodeString myString;
  82. * UErrorCode success = U_ZERO_ERROR;
  83. * NumberFormat *nf = NumberFormat::createInstance( success );
  84. * for (int32_t number: {123, 3333, -1234567}) {
  85. * nf->format(number, myString);
  86. * myString += "; ";
  87. * }
  88. * cout << " Example 2: " << myString << endl;
  89. * \endcode
  90. * To format a number for a different Locale, specify it in the
  91. * call to \c createInstance().
  92. * \code
  93. * nf = NumberFormat::createInstance(Locale::getFrench(), success);
  94. * \endcode
  95. * You can use a \c NumberFormat to parse also.
  96. * \code
  97. * UErrorCode success;
  98. * Formattable result(-999); // initialized with error code
  99. * nf->parse(myString, result, success);
  100. * \endcode
  101. * Use \c createInstance() to get the normal number format for a \c Locale.
  102. * There are other static factory methods available. Use \c createCurrencyInstance()
  103. * to get the currency number format for that country. Use \c createPercentInstance()
  104. * to get a format for displaying percentages. With this format, a
  105. * fraction from 0.53 is displayed as 53%.
  106. * <P>
  107. * The type of number formatting can be specified by passing a 'style' parameter to \c createInstance().
  108. * For example, use\n
  109. * \c createInstance(locale, UNUM_DECIMAL, errorCode) to get the normal number format,\n
  110. * \c createInstance(locale, UNUM_PERCENT, errorCode) to get a format for displaying percentage,\n
  111. * \c createInstance(locale, UNUM_SCIENTIFIC, errorCode) to get a format for displaying scientific number,\n
  112. * \c createInstance(locale, UNUM_CURRENCY, errorCode) to get the currency number format,
  113. * in which the currency is represented by its symbol, for example, "$3.00".\n
  114. * \c createInstance(locale, UNUM_CURRENCY_ISO, errorCode) to get the currency number format,
  115. * in which the currency is represented by its ISO code, for example "USD3.00".\n
  116. * \c createInstance(locale, UNUM_CURRENCY_PLURAL, errorCode) to get the currency number format,
  117. * in which the currency is represented by its full name in plural format,
  118. * for example, "3.00 US dollars" or "1.00 US dollar".
  119. * <P>
  120. * You can also control the display of numbers with such methods as
  121. * \c getMinimumFractionDigits(). If you want even more control over the
  122. * format or parsing, or want to give your users more control, you can
  123. * try dynamic_casting the \c NumberFormat you get from the factory methods to a
  124. * \c DecimalFormat. This will work for the vast majority of
  125. * countries; just remember to test for NULL in case you
  126. * encounter an unusual one.
  127. * <P>
  128. * You can also use forms of the parse and format methods with
  129. * \c ParsePosition and \c FieldPosition to allow you to:
  130. * <ul type=round>
  131. * <li>(a) progressively parse through pieces of a string.
  132. * <li>(b) align the decimal point and other areas.
  133. * </ul>
  134. * For example, you can align numbers in two ways.
  135. * <P>
  136. * If you are using a monospaced font with spacing for alignment, you
  137. * can pass the \c FieldPosition in your format call, with field =
  138. * \c UNUM_INTEGER_FIELD. On output, \c getEndIndex will be set to the offset
  139. * between the last character of the integer and the decimal. Add
  140. * (desiredSpaceCount - getEndIndex) spaces at the front of the
  141. * string.
  142. * <P>
  143. * If you are using proportional fonts, instead of padding with
  144. * spaces, measure the width of the string in pixels from the start to
  145. * getEndIndex. Then move the pen by (desiredPixelWidth -
  146. * widthToAlignmentPoint) before drawing the text. It also works
  147. * where there is no decimal, but possibly additional characters at
  148. * the end, e.g. with parentheses in negative numbers: "(12)" for -12.
  149. * <p>
  150. * <em>User subclasses are not supported.</em> While clients may write
  151. * subclasses, such code will not necessarily work and will not be
  152. * guaranteed to work stably from release to release.
  153. *
  154. * @stable ICU 2.0
  155. */
  156. class U_I18N_API NumberFormat : public Format {
  157. public:
  158. /**
  159. * Alignment Field constants used to construct a FieldPosition object.
  160. * Signifies that the position of the integer part or fraction part of
  161. * a formatted number should be returned.
  162. *
  163. * Note: as of ICU 4.4, the values in this enum have been extended to
  164. * support identification of all number format fields, not just those
  165. * pertaining to alignment.
  166. *
  167. * These constants are provided for backwards compatibility only.
  168. * Please use the C style constants defined in the header file unum.h.
  169. *
  170. * @see FieldPosition
  171. * @stable ICU 2.0
  172. */
  173. enum EAlignmentFields {
  174. /** @stable ICU 2.0 */
  175. kIntegerField = UNUM_INTEGER_FIELD,
  176. /** @stable ICU 2.0 */
  177. kFractionField = UNUM_FRACTION_FIELD,
  178. /** @stable ICU 2.0 */
  179. kDecimalSeparatorField = UNUM_DECIMAL_SEPARATOR_FIELD,
  180. /** @stable ICU 2.0 */
  181. kExponentSymbolField = UNUM_EXPONENT_SYMBOL_FIELD,
  182. /** @stable ICU 2.0 */
  183. kExponentSignField = UNUM_EXPONENT_SIGN_FIELD,
  184. /** @stable ICU 2.0 */
  185. kExponentField = UNUM_EXPONENT_FIELD,
  186. /** @stable ICU 2.0 */
  187. kGroupingSeparatorField = UNUM_GROUPING_SEPARATOR_FIELD,
  188. /** @stable ICU 2.0 */
  189. kCurrencyField = UNUM_CURRENCY_FIELD,
  190. /** @stable ICU 2.0 */
  191. kPercentField = UNUM_PERCENT_FIELD,
  192. /** @stable ICU 2.0 */
  193. kPermillField = UNUM_PERMILL_FIELD,
  194. /** @stable ICU 2.0 */
  195. kSignField = UNUM_SIGN_FIELD,
  196. /**
  197. * These constants are provided for backwards compatibility only.
  198. * Please use the constants defined in the header file unum.h.
  199. */
  200. /** @stable ICU 2.0 */
  201. INTEGER_FIELD = UNUM_INTEGER_FIELD,
  202. /** @stable ICU 2.0 */
  203. FRACTION_FIELD = UNUM_FRACTION_FIELD
  204. };
  205. /**
  206. * Destructor.
  207. * @stable ICU 2.0
  208. */
  209. virtual ~NumberFormat();
  210. /**
  211. * Return true if the given Format objects are semantically equal.
  212. * Objects of different subclasses are considered unequal.
  213. * @return true if the given Format objects are semantically equal.
  214. * @stable ICU 2.0
  215. */
  216. virtual UBool operator==(const Format& other) const;
  217. using Format::format;
  218. /**
  219. * Format an object to produce a string. This method handles
  220. * Formattable objects with numeric types. If the Formattable
  221. * object type is not a numeric type, then it returns a failing
  222. * UErrorCode.
  223. *
  224. * @param obj The object to format.
  225. * @param appendTo Output parameter to receive result.
  226. * Result is appended to existing contents.
  227. * @param pos On input: an alignment field, if desired.
  228. * On output: the offsets of the alignment field.
  229. * @param status Output param filled with success/failure status.
  230. * @return Reference to 'appendTo' parameter.
  231. * @stable ICU 2.0
  232. */
  233. virtual UnicodeString& format(const Formattable& obj,
  234. UnicodeString& appendTo,
  235. FieldPosition& pos,
  236. UErrorCode& status) const;
  237. /**
  238. * Format an object to produce a string. This method handles
  239. * Formattable objects with numeric types. If the Formattable
  240. * object type is not a numeric type, then it returns a failing
  241. * UErrorCode.
  242. *
  243. * @param obj The object to format.
  244. * @param appendTo Output parameter to receive result.
  245. * Result is appended to existing contents.
  246. * @param posIter On return, can be used to iterate over positions
  247. * of fields generated by this format call. Can be
  248. * NULL.
  249. * @param status Output param filled with success/failure status.
  250. * @return Reference to 'appendTo' parameter.
  251. * @stable 4.4
  252. */
  253. virtual UnicodeString& format(const Formattable& obj,
  254. UnicodeString& appendTo,
  255. FieldPositionIterator* posIter,
  256. UErrorCode& status) const;
  257. /**
  258. * Parse a string to produce an object. This methods handles
  259. * parsing of numeric strings into Formattable objects with numeric
  260. * types.
  261. * <P>
  262. * Before calling, set parse_pos.index to the offset you want to
  263. * start parsing at in the source. After calling, parse_pos.index
  264. * indicates the position after the successfully parsed text. If
  265. * an error occurs, parse_pos.index is unchanged.
  266. * <P>
  267. * When parsing, leading whitespace is discarded (with successful
  268. * parse), while trailing whitespace is left as is.
  269. * <P>
  270. * See Format::parseObject() for more.
  271. *
  272. * @param source The string to be parsed into an object.
  273. * @param result Formattable to be set to the parse result.
  274. * If parse fails, return contents are undefined.
  275. * @param parse_pos The position to start parsing at. Upon return
  276. * this param is set to the position after the
  277. * last character successfully parsed. If the
  278. * source is not parsed successfully, this param
  279. * will remain unchanged.
  280. * @return A newly created Formattable* object, or NULL
  281. * on failure. The caller owns this and should
  282. * delete it when done.
  283. * @stable ICU 2.0
  284. */
  285. virtual void parseObject(const UnicodeString& source,
  286. Formattable& result,
  287. ParsePosition& parse_pos) const;
  288. /**
  289. * Format a double number. These methods call the NumberFormat
  290. * pure virtual format() methods with the default FieldPosition.
  291. *
  292. * @param number The value to be formatted.
  293. * @param appendTo Output parameter to receive result.
  294. * Result is appended to existing contents.
  295. * @return Reference to 'appendTo' parameter.
  296. * @stable ICU 2.0
  297. */
  298. UnicodeString& format( double number,
  299. UnicodeString& appendTo) const;
  300. /**
  301. * Format a long number. These methods call the NumberFormat
  302. * pure virtual format() methods with the default FieldPosition.
  303. *
  304. * @param number The value to be formatted.
  305. * @param appendTo Output parameter to receive result.
  306. * Result is appended to existing contents.
  307. * @return Reference to 'appendTo' parameter.
  308. * @stable ICU 2.0
  309. */
  310. UnicodeString& format( int32_t number,
  311. UnicodeString& appendTo) const;
  312. /**
  313. * Format an int64 number. These methods call the NumberFormat
  314. * pure virtual format() methods with the default FieldPosition.
  315. *
  316. * @param number The value to be formatted.
  317. * @param appendTo Output parameter to receive result.
  318. * Result is appended to existing contents.
  319. * @return Reference to 'appendTo' parameter.
  320. * @stable ICU 2.8
  321. */
  322. UnicodeString& format( int64_t number,
  323. UnicodeString& appendTo) const;
  324. /**
  325. * Format a double number. Concrete subclasses must implement
  326. * these pure virtual methods.
  327. *
  328. * @param number The value to be formatted.
  329. * @param appendTo Output parameter to receive result.
  330. * Result is appended to existing contents.
  331. * @param pos On input: an alignment field, if desired.
  332. * On output: the offsets of the alignment field.
  333. * @return Reference to 'appendTo' parameter.
  334. * @stable ICU 2.0
  335. */
  336. virtual UnicodeString& format(double number,
  337. UnicodeString& appendTo,
  338. FieldPosition& pos) const = 0;
  339. /**
  340. * Format a double number. By default, the parent function simply
  341. * calls the base class and does not return an error status.
  342. * Therefore, the status may be ignored in some subclasses.
  343. *
  344. * @param number The value to be formatted.
  345. * @param appendTo Output parameter to receive result.
  346. * Result is appended to existing contents.
  347. * @param pos On input: an alignment field, if desired.
  348. * On output: the offsets of the alignment field.
  349. * @param status error status
  350. * @return Reference to 'appendTo' parameter.
  351. * @internal
  352. */
  353. virtual UnicodeString& format(double number,
  354. UnicodeString& appendTo,
  355. FieldPosition& pos,
  356. UErrorCode &status) const;
  357. /**
  358. * Format a double number. Subclasses must implement
  359. * this method.
  360. *
  361. * @param number The value to be formatted.
  362. * @param appendTo Output parameter to receive result.
  363. * Result is appended to existing contents.
  364. * @param posIter On return, can be used to iterate over positions
  365. * of fields generated by this format call.
  366. * Can be NULL.
  367. * @param status Output param filled with success/failure status.
  368. * @return Reference to 'appendTo' parameter.
  369. * @stable 4.4
  370. */
  371. virtual UnicodeString& format(double number,
  372. UnicodeString& appendTo,
  373. FieldPositionIterator* posIter,
  374. UErrorCode& status) const;
  375. /**
  376. * Format a long number. Concrete subclasses must implement
  377. * these pure virtual methods.
  378. *
  379. * @param number The value to be formatted.
  380. * @param appendTo Output parameter to receive result.
  381. * Result is appended to existing contents.
  382. * @param pos On input: an alignment field, if desired.
  383. * On output: the offsets of the alignment field.
  384. * @return Reference to 'appendTo' parameter.
  385. * @stable ICU 2.0
  386. */
  387. virtual UnicodeString& format(int32_t number,
  388. UnicodeString& appendTo,
  389. FieldPosition& pos) const = 0;
  390. /**
  391. * Format a long number. Concrete subclasses may override
  392. * this function to provide status return.
  393. *
  394. * @param number The value to be formatted.
  395. * @param appendTo Output parameter to receive result.
  396. * Result is appended to existing contents.
  397. * @param pos On input: an alignment field, if desired.
  398. * On output: the offsets of the alignment field.
  399. * @param status the output status.
  400. * @return Reference to 'appendTo' parameter.
  401. * @internal
  402. */
  403. virtual UnicodeString& format(int32_t number,
  404. UnicodeString& appendTo,
  405. FieldPosition& pos,
  406. UErrorCode &status) const;
  407. /**
  408. * Format an int32 number. Subclasses must implement
  409. * this method.
  410. *
  411. * @param number The value to be formatted.
  412. * @param appendTo Output parameter to receive result.
  413. * Result is appended to existing contents.
  414. * @param posIter On return, can be used to iterate over positions
  415. * of fields generated by this format call.
  416. * Can be NULL.
  417. * @param status Output param filled with success/failure status.
  418. * @return Reference to 'appendTo' parameter.
  419. * @stable 4.4
  420. */
  421. virtual UnicodeString& format(int32_t number,
  422. UnicodeString& appendTo,
  423. FieldPositionIterator* posIter,
  424. UErrorCode& status) const;
  425. /**
  426. * Format an int64 number. (Not abstract to retain compatibility
  427. * with earlier releases, however subclasses should override this
  428. * method as it just delegates to format(int32_t number...);
  429. *
  430. * @param number The value to be formatted.
  431. * @param appendTo Output parameter to receive result.
  432. * Result is appended to existing contents.
  433. * @param pos On input: an alignment field, if desired.
  434. * On output: the offsets of the alignment field.
  435. * @return Reference to 'appendTo' parameter.
  436. * @stable ICU 2.8
  437. */
  438. virtual UnicodeString& format(int64_t number,
  439. UnicodeString& appendTo,
  440. FieldPosition& pos) const;
  441. /**
  442. * Format an int64 number. (Not abstract to retain compatibility
  443. * with earlier releases, however subclasses should override this
  444. * method as it just delegates to format(int32_t number...);
  445. *
  446. * @param number The value to be formatted.
  447. * @param appendTo Output parameter to receive result.
  448. * Result is appended to existing contents.
  449. * @param pos On input: an alignment field, if desired.
  450. * On output: the offsets of the alignment field.
  451. * @param status Output param filled with success/failure status.
  452. * @return Reference to 'appendTo' parameter.
  453. * @internal
  454. */
  455. virtual UnicodeString& format(int64_t number,
  456. UnicodeString& appendTo,
  457. FieldPosition& pos,
  458. UErrorCode& status) const;
  459. /**
  460. * Format an int64 number. Subclasses must implement
  461. * this method.
  462. *
  463. * @param number The value to be formatted.
  464. * @param appendTo Output parameter to receive result.
  465. * Result is appended to existing contents.
  466. * @param posIter On return, can be used to iterate over positions
  467. * of fields generated by this format call.
  468. * Can be NULL.
  469. * @param status Output param filled with success/failure status.
  470. * @return Reference to 'appendTo' parameter.
  471. * @stable 4.4
  472. */
  473. virtual UnicodeString& format(int64_t number,
  474. UnicodeString& appendTo,
  475. FieldPositionIterator* posIter,
  476. UErrorCode& status) const;
  477. /**
  478. * Format a decimal number. Subclasses must implement
  479. * this method. The syntax of the unformatted number is a "numeric string"
  480. * as defined in the Decimal Arithmetic Specification, available at
  481. * http://speleotrove.com/decimal
  482. *
  483. * @param number The unformatted number, as a string, to be formatted.
  484. * @param appendTo Output parameter to receive result.
  485. * Result is appended to existing contents.
  486. * @param posIter On return, can be used to iterate over positions
  487. * of fields generated by this format call.
  488. * Can be NULL.
  489. * @param status Output param filled with success/failure status.
  490. * @return Reference to 'appendTo' parameter.
  491. * @stable 4.4
  492. */
  493. virtual UnicodeString& format(const StringPiece &number,
  494. UnicodeString& appendTo,
  495. FieldPositionIterator* posIter,
  496. UErrorCode& status) const;
  497. public:
  498. /**
  499. * Format a decimal number.
  500. * The number is a DigitList wrapper onto a floating point decimal number.
  501. * The default implementation in NumberFormat converts the decimal number
  502. * to a double and formats that. Subclasses of NumberFormat that want
  503. * to specifically handle big decimal numbers must override this method.
  504. * class DecimalFormat does so.
  505. *
  506. * @param number The number, a DigitList format Decimal Floating Point.
  507. * @param appendTo Output parameter to receive result.
  508. * Result is appended to existing contents.
  509. * @param posIter On return, can be used to iterate over positions
  510. * of fields generated by this format call.
  511. * @param status Output param filled with success/failure status.
  512. * @return Reference to 'appendTo' parameter.
  513. * @internal
  514. */
  515. virtual UnicodeString& format(const DigitList &number,
  516. UnicodeString& appendTo,
  517. FieldPositionIterator* posIter,
  518. UErrorCode& status) const;
  519. /**
  520. * Format a decimal number.
  521. * The number is a DigitList wrapper onto a floating point decimal number.
  522. * The default implementation in NumberFormat converts the decimal number
  523. * to a double and formats that. Subclasses of NumberFormat that want
  524. * to specifically handle big decimal numbers must override this method.
  525. * class DecimalFormat does so.
  526. *
  527. * @param number The number, a DigitList format Decimal Floating Point.
  528. * @param appendTo Output parameter to receive result.
  529. * Result is appended to existing contents.
  530. * @param pos On input: an alignment field, if desired.
  531. * On output: the offsets of the alignment field.
  532. * @param status Output param filled with success/failure status.
  533. * @return Reference to 'appendTo' parameter.
  534. * @internal
  535. */
  536. virtual UnicodeString& format(const DigitList &number,
  537. UnicodeString& appendTo,
  538. FieldPosition& pos,
  539. UErrorCode& status) const;
  540. public:
  541. /**
  542. * Return a long if possible (e.g. within range LONG_MAX,
  543. * LONG_MAX], and with no decimals), otherwise a double. If
  544. * IntegerOnly is set, will stop at a decimal point (or equivalent;
  545. * e.g. for rational numbers "1 2/3", will stop after the 1).
  546. * <P>
  547. * If no object can be parsed, index is unchanged, and NULL is
  548. * returned.
  549. * <P>
  550. * This is a pure virtual which concrete subclasses must implement.
  551. *
  552. * @param text The text to be parsed.
  553. * @param result Formattable to be set to the parse result.
  554. * If parse fails, return contents are undefined.
  555. * @param parsePosition The position to start parsing at on input.
  556. * On output, moved to after the last successfully
  557. * parse character. On parse failure, does not change.
  558. * @stable ICU 2.0
  559. */
  560. virtual void parse(const UnicodeString& text,
  561. Formattable& result,
  562. ParsePosition& parsePosition) const = 0;
  563. /**
  564. * Parse a string as a numeric value, and return a Formattable
  565. * numeric object. This method parses integers only if IntegerOnly
  566. * is set.
  567. *
  568. * @param text The text to be parsed.
  569. * @param result Formattable to be set to the parse result.
  570. * If parse fails, return contents are undefined.
  571. * @param status Output parameter set to a failure error code
  572. * when a failure occurs.
  573. * @see NumberFormat::isParseIntegerOnly
  574. * @stable ICU 2.0
  575. */
  576. virtual void parse(const UnicodeString& text,
  577. Formattable& result,
  578. UErrorCode& status) const;
  579. /**
  580. * Parses text from the given string as a currency amount. Unlike
  581. * the parse() method, this method will attempt to parse a generic
  582. * currency name, searching for a match of this object's locale's
  583. * currency display names, or for a 3-letter ISO currency code.
  584. * This method will fail if this format is not a currency format,
  585. * that is, if it does not contain the currency pattern symbol
  586. * (U+00A4) in its prefix or suffix.
  587. *
  588. * @param text the string to parse
  589. * @param pos input-output position; on input, the position within text
  590. * to match; must have 0 <= pos.getIndex() < text.length();
  591. * on output, the position after the last matched character.
  592. * If the parse fails, the position in unchanged upon output.
  593. * @return if parse succeeds, a pointer to a newly-created CurrencyAmount
  594. * object (owned by the caller) containing information about
  595. * the parsed currency; if parse fails, this is NULL.
  596. * @stable ICU 49
  597. */
  598. virtual CurrencyAmount* parseCurrency(const UnicodeString& text,
  599. ParsePosition& pos) const;
  600. /**
  601. * Return true if this format will parse numbers as integers
  602. * only. For example in the English locale, with ParseIntegerOnly
  603. * true, the string "1234." would be parsed as the integer value
  604. * 1234 and parsing would stop at the "." character. Of course,
  605. * the exact format accepted by the parse operation is locale
  606. * dependant and determined by sub-classes of NumberFormat.
  607. * @return true if this format will parse numbers as integers
  608. * only.
  609. * @stable ICU 2.0
  610. */
  611. UBool isParseIntegerOnly(void) const;
  612. /**
  613. * Sets whether or not numbers should be parsed as integers only.
  614. * @param value set True, this format will parse numbers as integers
  615. * only.
  616. * @see isParseIntegerOnly
  617. * @stable ICU 2.0
  618. */
  619. virtual void setParseIntegerOnly(UBool value);
  620. /**
  621. * Sets whether lenient parsing should be enabled (it is off by default).
  622. *
  623. * @param enable \c TRUE if lenient parsing should be used,
  624. * \c FALSE otherwise.
  625. * @stable ICU 4.8
  626. */
  627. virtual void setLenient(UBool enable);
  628. /**
  629. * Returns whether lenient parsing is enabled (it is off by default).
  630. *
  631. * @return \c TRUE if lenient parsing is enabled,
  632. * \c FALSE otherwise.
  633. * @see #setLenient
  634. * @stable ICU 4.8
  635. */
  636. virtual UBool isLenient(void) const;
  637. /**
  638. * Create a default style NumberFormat for the current default locale.
  639. * The default formatting style is locale dependent.
  640. * @stable ICU 2.0
  641. */
  642. static NumberFormat* U_EXPORT2 createInstance(UErrorCode&);
  643. /**
  644. * Create a default style NumberFormat for the specified locale.
  645. * The default formatting style is locale dependent.
  646. * @param inLocale the given locale.
  647. * @stable ICU 2.0
  648. */
  649. static NumberFormat* U_EXPORT2 createInstance(const Locale& inLocale,
  650. UErrorCode&);
  651. /**
  652. * Create a specific style NumberFormat for the specified locale.
  653. * @param desiredLocale the given locale.
  654. * @param style the given style.
  655. * @param errorCode Output param filled with success/failure status.
  656. * @return A new NumberFormat instance.
  657. * @stable ICU 4.8
  658. */
  659. static NumberFormat* U_EXPORT2 createInstance(const Locale& desiredLocale,
  660. UNumberFormatStyle style,
  661. UErrorCode& errorCode);
  662. #ifndef U_HIDE_INTERNAL_API
  663. /**
  664. * ICU use only.
  665. * Creates NumberFormat instance without using the cache.
  666. * @internal
  667. */
  668. static NumberFormat* internalCreateInstance(
  669. const Locale& desiredLocale,
  670. UNumberFormatStyle style,
  671. UErrorCode& errorCode);
  672. /**
  673. * ICU use only.
  674. * Returns handle to the shared, cached NumberFormat instance for given
  675. * locale. On success, caller must call removeRef() on returned value
  676. * once it is done with the shared instance.
  677. * @internal
  678. */
  679. static const SharedNumberFormat* U_EXPORT2 createSharedInstance(
  680. const Locale& inLocale, UNumberFormatStyle style, UErrorCode& status);
  681. #endif /* U_HIDE_INTERNAL_API */
  682. /**
  683. * Returns a currency format for the current default locale.
  684. * @stable ICU 2.0
  685. */
  686. static NumberFormat* U_EXPORT2 createCurrencyInstance(UErrorCode&);
  687. /**
  688. * Returns a currency format for the specified locale.
  689. * @param inLocale the given locale.
  690. * @stable ICU 2.0
  691. */
  692. static NumberFormat* U_EXPORT2 createCurrencyInstance(const Locale& inLocale,
  693. UErrorCode&);
  694. /**
  695. * Returns a percentage format for the current default locale.
  696. * @stable ICU 2.0
  697. */
  698. static NumberFormat* U_EXPORT2 createPercentInstance(UErrorCode&);
  699. /**
  700. * Returns a percentage format for the specified locale.
  701. * @param inLocale the given locale.
  702. * @stable ICU 2.0
  703. */
  704. static NumberFormat* U_EXPORT2 createPercentInstance(const Locale& inLocale,
  705. UErrorCode&);
  706. /**
  707. * Returns a scientific format for the current default locale.
  708. * @stable ICU 2.0
  709. */
  710. static NumberFormat* U_EXPORT2 createScientificInstance(UErrorCode&);
  711. /**
  712. * Returns a scientific format for the specified locale.
  713. * @param inLocale the given locale.
  714. * @stable ICU 2.0
  715. */
  716. static NumberFormat* U_EXPORT2 createScientificInstance(const Locale& inLocale,
  717. UErrorCode&);
  718. /**
  719. * Get the set of Locales for which NumberFormats are installed.
  720. * @param count Output param to receive the size of the locales
  721. * @stable ICU 2.0
  722. */
  723. static const Locale* U_EXPORT2 getAvailableLocales(int32_t& count);
  724. #if !UCONFIG_NO_SERVICE
  725. /**
  726. * Register a new NumberFormatFactory. The factory will be adopted.
  727. * Because ICU may choose to cache NumberFormat objects internally,
  728. * this must be called at application startup, prior to any calls to
  729. * NumberFormat::createInstance to avoid undefined behavior.
  730. * @param toAdopt the NumberFormatFactory instance to be adopted
  731. * @param status the in/out status code, no special meanings are assigned
  732. * @return a registry key that can be used to unregister this factory
  733. * @stable ICU 2.6
  734. */
  735. static URegistryKey U_EXPORT2 registerFactory(NumberFormatFactory* toAdopt, UErrorCode& status);
  736. /**
  737. * Unregister a previously-registered NumberFormatFactory using the key returned from the
  738. * register call. Key becomes invalid after a successful call and should not be used again.
  739. * The NumberFormatFactory corresponding to the key will be deleted.
  740. * Because ICU may choose to cache NumberFormat objects internally,
  741. * this should be called during application shutdown, after all calls to
  742. * NumberFormat::createInstance to avoid undefined behavior.
  743. * @param key the registry key returned by a previous call to registerFactory
  744. * @param status the in/out status code, no special meanings are assigned
  745. * @return TRUE if the factory for the key was successfully unregistered
  746. * @stable ICU 2.6
  747. */
  748. static UBool U_EXPORT2 unregister(URegistryKey key, UErrorCode& status);
  749. /**
  750. * Return a StringEnumeration over the locales available at the time of the call,
  751. * including registered locales.
  752. * @return a StringEnumeration over the locales available at the time of the call
  753. * @stable ICU 2.6
  754. */
  755. static StringEnumeration* U_EXPORT2 getAvailableLocales(void);
  756. #endif /* UCONFIG_NO_SERVICE */
  757. /**
  758. * Returns true if grouping is used in this format. For example,
  759. * in the English locale, with grouping on, the number 1234567
  760. * might be formatted as "1,234,567". The grouping separator as
  761. * well as the size of each group is locale dependant and is
  762. * determined by sub-classes of NumberFormat.
  763. * @see setGroupingUsed
  764. * @stable ICU 2.0
  765. */
  766. UBool isGroupingUsed(void) const;
  767. /**
  768. * Set whether or not grouping will be used in this format.
  769. * @param newValue True, grouping will be used in this format.
  770. * @see getGroupingUsed
  771. * @stable ICU 2.0
  772. */
  773. virtual void setGroupingUsed(UBool newValue);
  774. /**
  775. * Returns the maximum number of digits allowed in the integer portion of a
  776. * number.
  777. * @return the maximum number of digits allowed in the integer portion of a
  778. * number.
  779. * @see setMaximumIntegerDigits
  780. * @stable ICU 2.0
  781. */
  782. int32_t getMaximumIntegerDigits(void) const;
  783. /**
  784. * Sets the maximum number of digits allowed in the integer portion of a
  785. * number. maximumIntegerDigits must be >= minimumIntegerDigits. If the
  786. * new value for maximumIntegerDigits is less than the current value
  787. * of minimumIntegerDigits, then minimumIntegerDigits will also be set to
  788. * the new value.
  789. *
  790. * @param newValue the new value for the maximum number of digits
  791. * allowed in the integer portion of a number.
  792. * @see getMaximumIntegerDigits
  793. * @stable ICU 2.0
  794. */
  795. virtual void setMaximumIntegerDigits(int32_t newValue);
  796. /**
  797. * Returns the minimum number of digits allowed in the integer portion of a
  798. * number.
  799. * @return the minimum number of digits allowed in the integer portion of a
  800. * number.
  801. * @see setMinimumIntegerDigits
  802. * @stable ICU 2.0
  803. */
  804. int32_t getMinimumIntegerDigits(void) const;
  805. /**
  806. * Sets the minimum number of digits allowed in the integer portion of a
  807. * number. minimumIntegerDigits must be &lt;= maximumIntegerDigits. If the
  808. * new value for minimumIntegerDigits exceeds the current value
  809. * of maximumIntegerDigits, then maximumIntegerDigits will also be set to
  810. * the new value.
  811. * @param newValue the new value to be set.
  812. * @see getMinimumIntegerDigits
  813. * @stable ICU 2.0
  814. */
  815. virtual void setMinimumIntegerDigits(int32_t newValue);
  816. /**
  817. * Returns the maximum number of digits allowed in the fraction portion of a
  818. * number.
  819. * @return the maximum number of digits allowed in the fraction portion of a
  820. * number.
  821. * @see setMaximumFractionDigits
  822. * @stable ICU 2.0
  823. */
  824. int32_t getMaximumFractionDigits(void) const;
  825. /**
  826. * Sets the maximum number of digits allowed in the fraction portion of a
  827. * number. maximumFractionDigits must be >= minimumFractionDigits. If the
  828. * new value for maximumFractionDigits is less than the current value
  829. * of minimumFractionDigits, then minimumFractionDigits will also be set to
  830. * the new value.
  831. * @param newValue the new value to be set.
  832. * @see getMaximumFractionDigits
  833. * @stable ICU 2.0
  834. */
  835. virtual void setMaximumFractionDigits(int32_t newValue);
  836. /**
  837. * Returns the minimum number of digits allowed in the fraction portion of a
  838. * number.
  839. * @return the minimum number of digits allowed in the fraction portion of a
  840. * number.
  841. * @see setMinimumFractionDigits
  842. * @stable ICU 2.0
  843. */
  844. int32_t getMinimumFractionDigits(void) const;
  845. /**
  846. * Sets the minimum number of digits allowed in the fraction portion of a
  847. * number. minimumFractionDigits must be &lt;= maximumFractionDigits. If the
  848. * new value for minimumFractionDigits exceeds the current value
  849. * of maximumFractionDigits, then maximumIntegerDigits will also be set to
  850. * the new value
  851. * @param newValue the new value to be set.
  852. * @see getMinimumFractionDigits
  853. * @stable ICU 2.0
  854. */
  855. virtual void setMinimumFractionDigits(int32_t newValue);
  856. /**
  857. * Sets the currency used to display currency
  858. * amounts. This takes effect immediately, if this format is a
  859. * currency format. If this format is not a currency format, then
  860. * the currency is used if and when this object becomes a
  861. * currency format.
  862. * @param theCurrency a 3-letter ISO code indicating new currency
  863. * to use. It need not be null-terminated. May be the empty
  864. * string or NULL to indicate no currency.
  865. * @param ec input-output error code
  866. * @stable ICU 3.0
  867. */
  868. virtual void setCurrency(const UChar* theCurrency, UErrorCode& ec);
  869. /**
  870. * Gets the currency used to display currency
  871. * amounts. This may be an empty string for some subclasses.
  872. * @return a 3-letter null-terminated ISO code indicating
  873. * the currency in use, or a pointer to the empty string.
  874. * @stable ICU 2.6
  875. */
  876. const UChar* getCurrency() const;
  877. /**
  878. * Set a particular UDisplayContext value in the formatter, such as
  879. * UDISPCTX_CAPITALIZATION_FOR_STANDALONE.
  880. * @param value The UDisplayContext value to set.
  881. * @param status Input/output status. If at entry this indicates a failure
  882. * status, the function will do nothing; otherwise this will be
  883. * updated with any new status from the function.
  884. * @stable ICU 53
  885. */
  886. virtual void setContext(UDisplayContext value, UErrorCode& status);
  887. /**
  888. * Get the formatter's UDisplayContext value for the specified UDisplayContextType,
  889. * such as UDISPCTX_TYPE_CAPITALIZATION.
  890. * @param type The UDisplayContextType whose value to return
  891. * @param status Input/output status. If at entry this indicates a failure
  892. * status, the function will do nothing; otherwise this will be
  893. * updated with any new status from the function.
  894. * @return The UDisplayContextValue for the specified type.
  895. * @stable ICU 53
  896. */
  897. virtual UDisplayContext getContext(UDisplayContextType type, UErrorCode& status) const;
  898. public:
  899. /**
  900. * Return the class ID for this class. This is useful for
  901. * comparing to a return value from getDynamicClassID(). Note that,
  902. * because NumberFormat is an abstract base class, no fully constructed object
  903. * will have the class ID returned by NumberFormat::getStaticClassID().
  904. * @return The class ID for all objects of this class.
  905. * @stable ICU 2.0
  906. */
  907. static UClassID U_EXPORT2 getStaticClassID(void);
  908. /**
  909. * Returns a unique class ID POLYMORPHICALLY. Pure virtual override.
  910. * This method is to implement a simple version of RTTI, since not all
  911. * C++ compilers support genuine RTTI. Polymorphic operator==() and
  912. * clone() methods call this method.
  913. * <P>
  914. * @return The class ID for this object. All objects of a
  915. * given class have the same class ID. Objects of
  916. * other classes have different class IDs.
  917. * @stable ICU 2.0
  918. */
  919. virtual UClassID getDynamicClassID(void) const = 0;
  920. protected:
  921. /**
  922. * Default constructor for subclass use only.
  923. * @stable ICU 2.0
  924. */
  925. NumberFormat();
  926. /**
  927. * Copy constructor.
  928. * @stable ICU 2.0
  929. */
  930. NumberFormat(const NumberFormat&);
  931. /**
  932. * Assignment operator.
  933. * @stable ICU 2.0
  934. */
  935. NumberFormat& operator=(const NumberFormat&);
  936. /**
  937. * Returns the currency in effect for this formatter. Subclasses
  938. * should override this method as needed. Unlike getCurrency(),
  939. * this method should never return "".
  940. * @result output parameter for null-terminated result, which must
  941. * have a capacity of at least 4
  942. * @internal
  943. */
  944. virtual void getEffectiveCurrency(UChar* result, UErrorCode& ec) const;
  945. #ifndef U_HIDE_INTERNAL_API
  946. /**
  947. * Creates the specified number format style of the desired locale.
  948. * If mustBeDecimalFormat is TRUE, then the returned pointer is
  949. * either a DecimalFormat or it is NULL.
  950. * @internal
  951. */
  952. static NumberFormat* makeInstance(const Locale& desiredLocale,
  953. UNumberFormatStyle style,
  954. UBool mustBeDecimalFormat,
  955. UErrorCode& errorCode);
  956. #endif /* U_HIDE_INTERNAL_API */
  957. private:
  958. static UBool isStyleSupported(UNumberFormatStyle style);
  959. /**
  960. * Creates the specified decimal format style of the desired locale.
  961. * @param desiredLocale the given locale.
  962. * @param style the given style.
  963. * @param errorCode Output param filled with success/failure status.
  964. * @return A new NumberFormat instance.
  965. */
  966. static NumberFormat* makeInstance(const Locale& desiredLocale,
  967. UNumberFormatStyle style,
  968. UErrorCode& errorCode);
  969. UBool fGroupingUsed;
  970. int32_t fMaxIntegerDigits;
  971. int32_t fMinIntegerDigits;
  972. int32_t fMaxFractionDigits;
  973. int32_t fMinFractionDigits;
  974. protected:
  975. /** \internal */
  976. static const int32_t gDefaultMaxIntegerDigits;
  977. /** \internal */
  978. static const int32_t gDefaultMinIntegerDigits;
  979. private:
  980. UBool fParseIntegerOnly;
  981. UBool fLenient; // TRUE => lenient parse is enabled
  982. // ISO currency code
  983. UChar fCurrency[4];
  984. UDisplayContext fCapitalizationContext;
  985. friend class ICUNumberFormatFactory; // access to makeInstance
  986. friend class ICUNumberFormatService;
  987. friend class ::NumberFormatTest; // access to isStyleSupported()
  988. };
  989. #if !UCONFIG_NO_SERVICE
  990. /**
  991. * A NumberFormatFactory is used to register new number formats. The factory
  992. * should be able to create any of the predefined formats for each locale it
  993. * supports. When registered, the locales it supports extend or override the
  994. * locale already supported by ICU.
  995. *
  996. * @stable ICU 2.6
  997. */
  998. class U_I18N_API NumberFormatFactory : public UObject {
  999. public:
  1000. /**
  1001. * Destructor
  1002. * @stable ICU 3.0
  1003. */
  1004. virtual ~NumberFormatFactory();
  1005. /**
  1006. * Return true if this factory will be visible. Default is true.
  1007. * If not visible, the locales supported by this factory will not
  1008. * be listed by getAvailableLocales.
  1009. * @stable ICU 2.6
  1010. */
  1011. virtual UBool visible(void) const = 0;
  1012. /**
  1013. * Return the locale names directly supported by this factory. The number of names
  1014. * is returned in count;
  1015. * @stable ICU 2.6
  1016. */
  1017. virtual const UnicodeString * getSupportedIDs(int32_t &count, UErrorCode& status) const = 0;
  1018. /**
  1019. * Return a number format of the appropriate type. If the locale
  1020. * is not supported, return null. If the locale is supported, but
  1021. * the type is not provided by this service, return null. Otherwise
  1022. * return an appropriate instance of NumberFormat.
  1023. * @stable ICU 2.6
  1024. */
  1025. virtual NumberFormat* createFormat(const Locale& loc, UNumberFormatStyle formatType) = 0;
  1026. };
  1027. /**
  1028. * A NumberFormatFactory that supports a single locale. It can be visible or invisible.
  1029. * @stable ICU 2.6
  1030. */
  1031. class U_I18N_API SimpleNumberFormatFactory : public NumberFormatFactory {
  1032. protected:
  1033. /**
  1034. * True if the locale supported by this factory is visible.
  1035. * @stable ICU 2.6
  1036. */
  1037. const UBool _visible;
  1038. /**
  1039. * The locale supported by this factory, as a UnicodeString.
  1040. * @stable ICU 2.6
  1041. */
  1042. UnicodeString _id;
  1043. public:
  1044. /**
  1045. * @stable ICU 2.6
  1046. */
  1047. SimpleNumberFormatFactory(const Locale& locale, UBool visible = TRUE);
  1048. /**
  1049. * @stable ICU 3.0
  1050. */
  1051. virtual ~SimpleNumberFormatFactory();
  1052. /**
  1053. * @stable ICU 2.6
  1054. */
  1055. virtual UBool visible(void) const;
  1056. /**
  1057. * @stable ICU 2.6
  1058. */
  1059. virtual const UnicodeString * getSupportedIDs(int32_t &count, UErrorCode& status) const;
  1060. };
  1061. #endif /* #if !UCONFIG_NO_SERVICE */
  1062. // -------------------------------------
  1063. inline UBool
  1064. NumberFormat::isParseIntegerOnly() const
  1065. {
  1066. return fParseIntegerOnly;
  1067. }
  1068. inline UBool
  1069. NumberFormat::isLenient() const
  1070. {
  1071. return fLenient;
  1072. }
  1073. U_NAMESPACE_END
  1074. #endif /* #if !UCONFIG_NO_FORMATTING */
  1075. #endif // _NUMFMT
  1076. //eof