tmutfmt.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /*
  2. *******************************************************************************
  3. * Copyright (C) 2008-2014, Google, International Business Machines Corporation
  4. * and others. All Rights Reserved.
  5. *******************************************************************************
  6. */
  7. #ifndef __TMUTFMT_H__
  8. #define __TMUTFMT_H__
  9. #include "unicode/utypes.h"
  10. /**
  11. * \file
  12. * \brief C++ API: Format and parse duration in single time unit
  13. */
  14. #if !UCONFIG_NO_FORMATTING
  15. #ifndef U_HIDE_DEPRECATED_API
  16. #include "unicode/unistr.h"
  17. #include "unicode/tmunit.h"
  18. #include "unicode/tmutamt.h"
  19. #include "unicode/measfmt.h"
  20. #include "unicode/numfmt.h"
  21. #include "unicode/plurrule.h"
  22. /**
  23. * Constants for various styles.
  24. * There are 2 styles: full name and abbreviated name.
  25. * For example, for English, the full name for hour duration is "3 hours",
  26. * and the abbreviated name is "3 hrs".
  27. * @deprecated ICU 53 Use MeasureFormat and UMeasureFormatWidth instead.
  28. */
  29. enum UTimeUnitFormatStyle {
  30. /** @deprecated ICU 53 */
  31. UTMUTFMT_FULL_STYLE,
  32. /** @deprecated ICU 53 */
  33. UTMUTFMT_ABBREVIATED_STYLE,
  34. /** @deprecated ICU 53 */
  35. UTMUTFMT_FORMAT_STYLE_COUNT
  36. };
  37. typedef enum UTimeUnitFormatStyle UTimeUnitFormatStyle; /**< @deprecated ICU 53 */
  38. U_NAMESPACE_BEGIN
  39. class Hashtable;
  40. class UVector;
  41. /**
  42. * Format or parse a TimeUnitAmount, using plural rules for the units where available.
  43. *
  44. * <P>
  45. * Code Sample:
  46. * <pre>
  47. * // create time unit amount instance - a combination of Number and time unit
  48. * UErrorCode status = U_ZERO_ERROR;
  49. * TimeUnitAmount* source = new TimeUnitAmount(2, TimeUnit::UTIMEUNIT_YEAR, status);
  50. * // create time unit format instance
  51. * TimeUnitFormat* format = new TimeUnitFormat(Locale("en"), status);
  52. * // format a time unit amount
  53. * UnicodeString formatted;
  54. * Formattable formattable;
  55. * if (U_SUCCESS(status)) {
  56. * formattable.adoptObject(source);
  57. * formatted = ((Format*)format)->format(formattable, formatted, status);
  58. * Formattable result;
  59. * ((Format*)format)->parseObject(formatted, result, status);
  60. * if (U_SUCCESS(status)) {
  61. * assert (result == formattable);
  62. * }
  63. * }
  64. * </pre>
  65. *
  66. * <P>
  67. * @see TimeUnitAmount
  68. * @see TimeUnitFormat
  69. * @deprecated ICU 53 Use the MeasureFormat class instead.
  70. */
  71. class U_I18N_API TimeUnitFormat: public MeasureFormat {
  72. public:
  73. /**
  74. * Create TimeUnitFormat with default locale, and full name style.
  75. * Use setLocale and/or setFormat to modify.
  76. * @deprecated ICU 53
  77. */
  78. TimeUnitFormat(UErrorCode& status);
  79. /**
  80. * Create TimeUnitFormat given locale, and full name style.
  81. * @deprecated ICU 53
  82. */
  83. TimeUnitFormat(const Locale& locale, UErrorCode& status);
  84. /**
  85. * Create TimeUnitFormat given locale and style.
  86. * @deprecated ICU 53
  87. */
  88. TimeUnitFormat(const Locale& locale, UTimeUnitFormatStyle style, UErrorCode& status);
  89. /**
  90. * Copy constructor.
  91. * @deprecated ICU 53
  92. */
  93. TimeUnitFormat(const TimeUnitFormat&);
  94. /**
  95. * deconstructor
  96. * @deprecated ICU 53
  97. */
  98. virtual ~TimeUnitFormat();
  99. /**
  100. * Clone this Format object polymorphically. The caller owns the result and
  101. * should delete it when done.
  102. * @return A copy of the object.
  103. * @deprecated ICU 53
  104. */
  105. virtual Format* clone(void) const;
  106. /**
  107. * Assignment operator
  108. * @deprecated ICU 53
  109. */
  110. TimeUnitFormat& operator=(const TimeUnitFormat& other);
  111. /**
  112. * Return true if the given Format objects are not semantically equal.
  113. * Objects of different subclasses are considered unequal.
  114. * @param other the object to be compared with.
  115. * @return true if the given Format objects are not semantically equal.
  116. * @deprecated ICU 53
  117. */
  118. UBool operator!=(const Format& other) const;
  119. /**
  120. * Set the locale used for formatting or parsing.
  121. * @param locale the locale to be set
  122. * @param status output param set to success/failure code on exit
  123. * @deprecated ICU 53
  124. */
  125. void setLocale(const Locale& locale, UErrorCode& status);
  126. /**
  127. * Set the number format used for formatting or parsing.
  128. * @param format the number formatter to be set
  129. * @param status output param set to success/failure code on exit
  130. * @deprecated ICU 53
  131. */
  132. void setNumberFormat(const NumberFormat& format, UErrorCode& status);
  133. /**
  134. * Parse a TimeUnitAmount.
  135. * @see Format#parseObject(const UnicodeString&, Formattable&, ParsePosition&) const;
  136. * @deprecated ICU 53
  137. */
  138. virtual void parseObject(const UnicodeString& source,
  139. Formattable& result,
  140. ParsePosition& pos) const;
  141. /**
  142. * Return the class ID for this class. This is useful only for comparing to
  143. * a return value from getDynamicClassID(). For example:
  144. * <pre>
  145. * . Base* polymorphic_pointer = createPolymorphicObject();
  146. * . if (polymorphic_pointer->getDynamicClassID() ==
  147. * . erived::getStaticClassID()) ...
  148. * </pre>
  149. * @return The class ID for all objects of this class.
  150. * @deprecated ICU 53
  151. */
  152. static UClassID U_EXPORT2 getStaticClassID(void);
  153. /**
  154. * Returns a unique class ID POLYMORPHICALLY. Pure virtual override. This
  155. * method is to implement a simple version of RTTI, since not all C++
  156. * compilers support genuine RTTI. Polymorphic operator==() and clone()
  157. * methods call this method.
  158. *
  159. * @return The class ID for this object. All objects of a
  160. * given class have the same class ID. Objects of
  161. * other classes have different class IDs.
  162. * @deprecated ICU 53
  163. */
  164. virtual UClassID getDynamicClassID(void) const;
  165. private:
  166. Hashtable* fTimeUnitToCountToPatterns[TimeUnit::UTIMEUNIT_FIELD_COUNT];
  167. UTimeUnitFormatStyle fStyle;
  168. void create(UTimeUnitFormatStyle style, UErrorCode& status);
  169. // it might actually be simpler to make them Decimal Formats later.
  170. // initialize all private data members
  171. void setup(UErrorCode& status);
  172. // initialize data member without fill in data for fTimeUnitToCountToPattern
  173. void initDataMembers(UErrorCode& status);
  174. // initialize fTimeUnitToCountToPatterns from current locale's resource.
  175. void readFromCurrentLocale(UTimeUnitFormatStyle style, const char* key, const UVector& pluralCounts,
  176. UErrorCode& status);
  177. // check completeness of fTimeUnitToCountToPatterns against all time units,
  178. // and all plural rules, fill in fallback as necessary.
  179. void checkConsistency(UTimeUnitFormatStyle style, const char* key, UErrorCode& status);
  180. // fill in fTimeUnitToCountToPatterns from locale fall-back chain
  181. void searchInLocaleChain(UTimeUnitFormatStyle style, const char* key, const char* localeName,
  182. TimeUnit::UTimeUnitFields field, const UnicodeString&,
  183. const char*, Hashtable*, UErrorCode&);
  184. // initialize hash table
  185. Hashtable* initHash(UErrorCode& status);
  186. // delete hash table
  187. void deleteHash(Hashtable* htable);
  188. // copy hash table
  189. void copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status);
  190. // get time unit name, such as "year", from time unit field enum, such as
  191. // UTIMEUNIT_YEAR.
  192. static const char* getTimeUnitName(TimeUnit::UTimeUnitFields field, UErrorCode& status);
  193. };
  194. inline UBool
  195. TimeUnitFormat::operator!=(const Format& other) const {
  196. return !operator==(other);
  197. }
  198. U_NAMESPACE_END
  199. #endif /* U_HIDE_DEPRECATED_API */
  200. #endif /* #if !UCONFIG_NO_FORMATTING */
  201. #endif // __TMUTFMT_H__
  202. //eof