uformattable.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. ********************************************************************************
  5. * Copyright (C) 2013-2014, International Business Machines Corporation and others.
  6. * All Rights Reserved.
  7. ********************************************************************************
  8. *
  9. * File UFORMATTABLE.H
  10. *
  11. * Modification History:
  12. *
  13. * Date Name Description
  14. * 2013 Jun 7 srl New
  15. ********************************************************************************
  16. */
  17. /**
  18. * \file
  19. * \brief C API: UFormattable is a thin wrapper for primitive types used for formatting and parsing.
  20. *
  21. * This is a C interface to the icu::Formattable class. Static functions on this class convert
  22. * to and from this interface (via reinterpret_cast). Note that Formattables (and thus UFormattables)
  23. * are mutable, and many operations (even getters) may actually modify the internal state. For this
  24. * reason, UFormattables are not thread safe, and should not be shared between threads.
  25. *
  26. * See {@link unum_parseToUFormattable} for example code.
  27. */
  28. #ifndef UFORMATTABLE_H
  29. #define UFORMATTABLE_H
  30. #include "unicode/utypes.h"
  31. #if !UCONFIG_NO_FORMATTING
  32. #if U_SHOW_CPLUSPLUS_API
  33. #include "unicode/localpointer.h"
  34. #endif // U_SHOW_CPLUSPLUS_API
  35. /**
  36. * Enum designating the type of a UFormattable instance.
  37. * Practically, this indicates which of the getters would return without conversion
  38. * or error.
  39. * @see icu::Formattable::Type
  40. * @stable ICU 52
  41. */
  42. typedef enum UFormattableType {
  43. UFMT_DATE = 0, /**< ufmt_getDate() will return without conversion. @see ufmt_getDate*/
  44. UFMT_DOUBLE, /**< ufmt_getDouble() will return without conversion. @see ufmt_getDouble*/
  45. UFMT_LONG, /**< ufmt_getLong() will return without conversion. @see ufmt_getLong */
  46. UFMT_STRING, /**< ufmt_getUChars() will return without conversion. @see ufmt_getUChars*/
  47. UFMT_ARRAY, /**< ufmt_countArray() and ufmt_getArray() will return the value. @see ufmt_getArrayItemByIndex */
  48. UFMT_INT64, /**< ufmt_getInt64() will return without conversion. @see ufmt_getInt64 */
  49. UFMT_OBJECT, /**< ufmt_getObject() will return without conversion. @see ufmt_getObject*/
  50. #ifndef U_HIDE_DEPRECATED_API
  51. /**
  52. * One more than the highest normal UFormattableType value.
  53. * @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420.
  54. */
  55. UFMT_COUNT
  56. #endif /* U_HIDE_DEPRECATED_API */
  57. } UFormattableType;
  58. /**
  59. * Opaque type representing various types of data which may be used for formatting
  60. * and parsing operations.
  61. * @see icu::Formattable
  62. * @stable ICU 52
  63. */
  64. typedef void *UFormattable;
  65. /**
  66. * Initialize a UFormattable, to type UNUM_LONG, value 0
  67. * may return error if memory allocation failed.
  68. * parameter status error code.
  69. * See {@link unum_parseToUFormattable} for example code.
  70. * @stable ICU 52
  71. * @return the new UFormattable
  72. * @see ufmt_close
  73. * @see icu::Formattable::Formattable()
  74. */
  75. U_CAPI UFormattable* U_EXPORT2
  76. ufmt_open(UErrorCode* status);
  77. /**
  78. * Cleanup any additional memory allocated by this UFormattable.
  79. * @param fmt the formatter
  80. * @stable ICU 52
  81. * @see ufmt_open
  82. */
  83. U_CAPI void U_EXPORT2
  84. ufmt_close(UFormattable* fmt);
  85. #if U_SHOW_CPLUSPLUS_API
  86. U_NAMESPACE_BEGIN
  87. /**
  88. * \class LocalUFormattablePointer
  89. * "Smart pointer" class, closes a UFormattable via ufmt_close().
  90. * For most methods see the LocalPointerBase base class.
  91. *
  92. * @see LocalPointerBase
  93. * @see LocalPointer
  94. * @stable ICU 52
  95. */
  96. U_DEFINE_LOCAL_OPEN_POINTER(LocalUFormattablePointer, UFormattable, ufmt_close);
  97. U_NAMESPACE_END
  98. #endif
  99. /**
  100. * Return the type of this object
  101. * @param fmt the UFormattable object
  102. * @param status status code - U_ILLEGAL_ARGUMENT_ERROR is returned if the UFormattable contains data not supported by
  103. * the API
  104. * @return the value as a UFormattableType
  105. * @see ufmt_isNumeric
  106. * @see icu::Formattable::getType() const
  107. * @stable ICU 52
  108. */
  109. U_CAPI UFormattableType U_EXPORT2
  110. ufmt_getType(const UFormattable* fmt, UErrorCode *status);
  111. /**
  112. * Return whether the object is numeric.
  113. * @param fmt the UFormattable object
  114. * @return true if the object is a double, long, or int64 value, else false.
  115. * @see ufmt_getType
  116. * @see icu::Formattable::isNumeric() const
  117. * @stable ICU 52
  118. */
  119. U_CAPI UBool U_EXPORT2
  120. ufmt_isNumeric(const UFormattable* fmt);
  121. /**
  122. * Gets the UDate value of this object. If the type is not of type UFMT_DATE,
  123. * status is set to U_INVALID_FORMAT_ERROR and the return value is
  124. * undefined.
  125. * @param fmt the UFormattable object
  126. * @param status the error code - any conversion or format errors
  127. * @return the value
  128. * @stable ICU 52
  129. * @see icu::Formattable::getDate(UErrorCode&) const
  130. */
  131. U_CAPI UDate U_EXPORT2
  132. ufmt_getDate(const UFormattable* fmt, UErrorCode *status);
  133. /**
  134. * Gets the double value of this object. If the type is not a UFMT_DOUBLE, or
  135. * if there are additional significant digits than fit in a double type,
  136. * a conversion is performed with possible loss of precision.
  137. * If the type is UFMT_OBJECT and the
  138. * object is a Measure, then the result of
  139. * getNumber().getDouble(status) is returned. If this object is
  140. * neither a numeric type nor a Measure, then 0 is returned and
  141. * the status is set to U_INVALID_FORMAT_ERROR.
  142. * @param fmt the UFormattable object
  143. * @param status the error code - any conversion or format errors
  144. * @return the value
  145. * @stable ICU 52
  146. * @see icu::Formattable::getDouble(UErrorCode&) const
  147. */
  148. U_CAPI double U_EXPORT2
  149. ufmt_getDouble(UFormattable* fmt, UErrorCode *status);
  150. /**
  151. * Gets the long (int32_t) value of this object. If the magnitude is too
  152. * large to fit in a long, then the maximum or minimum long value,
  153. * as appropriate, is returned and the status is set to
  154. * U_INVALID_FORMAT_ERROR. If this object is of type UFMT_INT64 and
  155. * it fits within a long, then no precision is lost. If it is of
  156. * type kDouble or kDecimalNumber, then a conversion is performed, with
  157. * truncation of any fractional part. If the type is UFMT_OBJECT and
  158. * the object is a Measure, then the result of
  159. * getNumber().getLong(status) is returned. If this object is
  160. * neither a numeric type nor a Measure, then 0 is returned and
  161. * the status is set to U_INVALID_FORMAT_ERROR.
  162. * @param fmt the UFormattable object
  163. * @param status the error code - any conversion or format errors
  164. * @return the value
  165. * @stable ICU 52
  166. * @see icu::Formattable::getLong(UErrorCode&) const
  167. */
  168. U_CAPI int32_t U_EXPORT2
  169. ufmt_getLong(UFormattable* fmt, UErrorCode *status);
  170. /**
  171. * Gets the int64_t value of this object. If this object is of a numeric
  172. * type and the magnitude is too large to fit in an int64, then
  173. * the maximum or minimum int64 value, as appropriate, is returned
  174. * and the status is set to U_INVALID_FORMAT_ERROR. If the
  175. * magnitude fits in an int64, then a casting conversion is
  176. * performed, with truncation of any fractional part. If the type
  177. * is UFMT_OBJECT and the object is a Measure, then the result of
  178. * getNumber().getDouble(status) is returned. If this object is
  179. * neither a numeric type nor a Measure, then 0 is returned and
  180. * the status is set to U_INVALID_FORMAT_ERROR.
  181. * @param fmt the UFormattable object
  182. * @param status the error code - any conversion or format errors
  183. * @return the value
  184. * @stable ICU 52
  185. * @see icu::Formattable::getInt64(UErrorCode&) const
  186. */
  187. U_CAPI int64_t U_EXPORT2
  188. ufmt_getInt64(UFormattable* fmt, UErrorCode *status);
  189. /**
  190. * Returns a pointer to the UObject contained within this
  191. * formattable (as a const void*), or NULL if this object
  192. * is not of type UFMT_OBJECT.
  193. * @param fmt the UFormattable object
  194. * @param status the error code - any conversion or format errors
  195. * @return the value as a const void*. It is a polymorphic C++ object.
  196. * @stable ICU 52
  197. * @see icu::Formattable::getObject() const
  198. */
  199. U_CAPI const void *U_EXPORT2
  200. ufmt_getObject(const UFormattable* fmt, UErrorCode *status);
  201. /**
  202. * Gets the string value of this object as a UChar string. If the type is not a
  203. * string, status is set to U_INVALID_FORMAT_ERROR and a NULL pointer is returned.
  204. * This function is not thread safe and may modify the UFormattable if need be to terminate the string.
  205. * The returned pointer is not valid if any other functions are called on this UFormattable, or if the UFormattable is closed.
  206. * @param fmt the UFormattable object
  207. * @param status the error code - any conversion or format errors
  208. * @param len if non null, contains the string length on return
  209. * @return the null terminated string value - must not be referenced after any other functions are called on this UFormattable.
  210. * @stable ICU 52
  211. * @see icu::Formattable::getString(UnicodeString&)const
  212. */
  213. U_CAPI const UChar* U_EXPORT2
  214. ufmt_getUChars(UFormattable* fmt, int32_t *len, UErrorCode *status);
  215. /**
  216. * Get the number of array objects contained, if an array type UFMT_ARRAY
  217. * @param fmt the UFormattable object
  218. * @param status the error code - any conversion or format errors. U_ILLEGAL_ARGUMENT_ERROR if not an array type.
  219. * @return the number of array objects or undefined if not an array type
  220. * @stable ICU 52
  221. * @see ufmt_getArrayItemByIndex
  222. */
  223. U_CAPI int32_t U_EXPORT2
  224. ufmt_getArrayLength(const UFormattable* fmt, UErrorCode *status);
  225. /**
  226. * Get the specified value from the array of UFormattables. Invalid if the object is not an array type UFMT_ARRAY
  227. * @param fmt the UFormattable object
  228. * @param n the number of the array to return (0 based).
  229. * @param status the error code - any conversion or format errors. Returns an error if n is out of bounds.
  230. * @return the nth array value, only valid while the containing UFormattable is valid. NULL if not an array.
  231. * @stable ICU 52
  232. * @see icu::Formattable::getArray(int32_t&, UErrorCode&) const
  233. */
  234. U_CAPI UFormattable * U_EXPORT2
  235. ufmt_getArrayItemByIndex(UFormattable* fmt, int32_t n, UErrorCode *status);
  236. /**
  237. * Returns a numeric string representation of the number contained within this
  238. * formattable, or NULL if this object does not contain numeric type.
  239. * For values obtained by parsing, the returned decimal number retains
  240. * the full precision and range of the original input, unconstrained by
  241. * the limits of a double floating point or a 64 bit int.
  242. *
  243. * This function is not thread safe, and therefore is not declared const,
  244. * even though it is logically const.
  245. * The resulting buffer is owned by the UFormattable and is invalid if any other functions are
  246. * called on the UFormattable.
  247. *
  248. * Possible errors include U_MEMORY_ALLOCATION_ERROR, and
  249. * U_INVALID_STATE if the formattable object has not been set to
  250. * a numeric type.
  251. * @param fmt the UFormattable object
  252. * @param len if non-null, on exit contains the string length (not including the terminating null)
  253. * @param status the error code
  254. * @return the character buffer as a NULL terminated string, which is owned by the object and must not be accessed if any other functions are called on this object.
  255. * @stable ICU 52
  256. * @see icu::Formattable::getDecimalNumber(UErrorCode&)
  257. */
  258. U_CAPI const char * U_EXPORT2
  259. ufmt_getDecNumChars(UFormattable *fmt, int32_t *len, UErrorCode *status);
  260. #endif
  261. #endif