uformattable.h 11 KB

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