region.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. *******************************************************************************
  5. * Copyright (C) 2014-2016, International Business Machines Corporation and others.
  6. * All Rights Reserved.
  7. *******************************************************************************
  8. */
  9. #ifndef REGION_H
  10. #define REGION_H
  11. /**
  12. * \file
  13. * \brief C++ API: Region classes (territory containment)
  14. */
  15. #include "unicode/utypes.h"
  16. #if U_SHOW_CPLUSPLUS_API
  17. #if !UCONFIG_NO_FORMATTING
  18. #include "unicode/uregion.h"
  19. #include "unicode/uobject.h"
  20. #include "unicode/uniset.h"
  21. #include "unicode/unistr.h"
  22. #include "unicode/strenum.h"
  23. U_NAMESPACE_BEGIN
  24. /**
  25. * <code>Region</code> is the class representing a Unicode Region Code, also known as a
  26. * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
  27. * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
  28. * types of region codes that are important to distinguish.
  29. * <p>
  30. * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or
  31. * selected economic and other grouping" as defined in
  32. * UN M.49 (http://unstats.un.org/unsd/methods/m49/m49regin.htm).
  33. * These are typically 3-digit codes, but contain some 2-letter codes, such as the LDML code QO
  34. * added for Outlying Oceania. Not all UNM.49 codes are defined in LDML, but most of them are.
  35. * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 ),
  36. * CONTINENTS ( regions contained directly by WORLD ), and SUBCONTINENTS ( things contained directly
  37. * by a continent ).
  38. * <p>
  39. * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but also
  40. * include areas that are not separate countries, such as the code "AQ" for Antarctica or the code
  41. * "HK" for Hong Kong (SAR China). Overseas dependencies of countries may or may not have separate
  42. * codes. The codes are typically 2-letter codes aligned with the ISO 3166 standard, but BCP47 allows
  43. * for the use of 3-digit codes in the future.
  44. * <p>
  45. * UNKNOWN - The code ZZ is defined by Unicode LDML for use to indicate that the Region is unknown,
  46. * or that the value supplied as a region was invalid.
  47. * <p>
  48. * DEPRECATED - Region codes that have been defined in the past but are no longer in modern usage,
  49. * usually due to a country splitting into multiple territories or changing its name.
  50. * <p>
  51. * GROUPING - A widely understood grouping of territories that has a well defined membership such
  52. * that a region code has been assigned for it. Some of these are UNM.49 codes that do't fall into
  53. * the world/continent/sub-continent hierarchy, while others are just well known groupings that have
  54. * their own region code. Region "EU" (European Union) is one such region code that is a grouping.
  55. * Groupings will never be returned by the getContainingRegion() API, since a different type of region
  56. * ( WORLD, CONTINENT, or SUBCONTINENT ) will always be the containing region instead.
  57. *
  58. * The Region class is not intended for public subclassing.
  59. *
  60. * @author John Emmons
  61. * @stable ICU 51
  62. */
  63. class U_I18N_API Region : public UObject {
  64. public:
  65. /**
  66. * Destructor.
  67. * @stable ICU 51
  68. */
  69. virtual ~Region();
  70. /**
  71. * Returns true if the two regions are equal.
  72. * @stable ICU 51
  73. */
  74. bool operator==(const Region &that) const;
  75. /**
  76. * Returns true if the two regions are NOT equal; that is, if operator ==() returns false.
  77. * @stable ICU 51
  78. */
  79. bool operator!=(const Region &that) const;
  80. /**
  81. * Returns a pointer to a Region using the given region code. The region code can be either 2-letter ISO code,
  82. * 3-letter ISO code, UNM.49 numeric code, or other valid Unicode Region Code as defined by the LDML specification.
  83. * The identifier will be canonicalized internally using the supplemental metadata as defined in the CLDR.
  84. * If the region code is nullptr or not recognized, the appropriate error code will be set ( U_ILLEGAL_ARGUMENT_ERROR )
  85. * @stable ICU 51
  86. */
  87. static const Region* U_EXPORT2 getInstance(const char *region_code, UErrorCode &status);
  88. /**
  89. * Returns a pointer to a Region using the given numeric region code. If the numeric region code is not recognized,
  90. * the appropriate error code will be set ( U_ILLEGAL_ARGUMENT_ERROR ).
  91. * @stable ICU 51
  92. */
  93. static const Region* U_EXPORT2 getInstance (int32_t code, UErrorCode &status);
  94. /**
  95. * Returns an enumeration over the IDs of all known regions that match the given type.
  96. * @stable ICU 55
  97. */
  98. static StringEnumeration* U_EXPORT2 getAvailable(URegionType type, UErrorCode &status);
  99. /**
  100. * Returns a pointer to the region that contains this region. Returns nullptr if this region is code "001" (World)
  101. * or "ZZ" (Unknown region). For example, calling this method with region "IT" (Italy) returns the
  102. * region "039" (Southern Europe).
  103. * @stable ICU 51
  104. */
  105. const Region* getContainingRegion() const;
  106. /**
  107. * Return a pointer to the region that geographically contains this region and matches the given type,
  108. * moving multiple steps up the containment chain if necessary. Returns nullptr if no containing region can be found
  109. * that matches the given type. Note: The URegionTypes = "URGN_GROUPING", "URGN_DEPRECATED", or "URGN_UNKNOWN"
  110. * are not appropriate for use in this API. nullptr will be returned in this case. For example, calling this method
  111. * with region "IT" (Italy) for type "URGN_CONTINENT" returns the region "150" ( Europe ).
  112. * @stable ICU 51
  113. */
  114. const Region* getContainingRegion(URegionType type) const;
  115. /**
  116. * Return an enumeration over the IDs of all the regions that are immediate children of this region in the
  117. * region hierarchy. These returned regions could be either macro regions, territories, or a mixture of the two,
  118. * depending on the containment data as defined in CLDR. This API may return nullptr if this region doesn't have
  119. * any sub-regions. For example, calling this method with region "150" (Europe) returns an enumeration containing
  120. * the various sub regions of Europe - "039" (Southern Europe) - "151" (Eastern Europe) - "154" (Northern Europe)
  121. * and "155" (Western Europe).
  122. * @stable ICU 55
  123. */
  124. StringEnumeration* getContainedRegions(UErrorCode &status) const;
  125. /**
  126. * Returns an enumeration over the IDs of all the regions that are children of this region anywhere in the region
  127. * hierarchy and match the given type. This API may return an empty enumeration if this region doesn't have any
  128. * sub-regions that match the given type. For example, calling this method with region "150" (Europe) and type
  129. * "URGN_TERRITORY" returns a set containing all the territories in Europe ( "FR" (France) - "IT" (Italy) - "DE" (Germany) etc. )
  130. * @stable ICU 55
  131. */
  132. StringEnumeration* getContainedRegions( URegionType type, UErrorCode &status ) const;
  133. /**
  134. * Returns true if this region contains the supplied other region anywhere in the region hierarchy.
  135. * @stable ICU 51
  136. */
  137. UBool contains(const Region &other) const;
  138. /**
  139. * For deprecated regions, return an enumeration over the IDs of the regions that are the preferred replacement
  140. * regions for this region. Returns null for a non-deprecated region. For example, calling this method with region
  141. * "SU" (Soviet Union) would return a list of the regions containing "RU" (Russia), "AM" (Armenia), "AZ" (Azerbaijan), etc...
  142. * @stable ICU 55
  143. */
  144. StringEnumeration* getPreferredValues(UErrorCode &status) const;
  145. /**
  146. * Return this region's canonical region code.
  147. * @stable ICU 51
  148. */
  149. const char* getRegionCode() const;
  150. /**
  151. * Return this region's numeric code.
  152. * Returns a negative value if the given region does not have a numeric code assigned to it.
  153. * @stable ICU 51
  154. */
  155. int32_t getNumericCode() const;
  156. /**
  157. * Returns the region type of this region.
  158. * @stable ICU 51
  159. */
  160. URegionType getType() const;
  161. #ifndef U_HIDE_INTERNAL_API
  162. /**
  163. * Cleans up statically allocated memory.
  164. * @internal
  165. */
  166. static void cleanupRegionData();
  167. #endif /* U_HIDE_INTERNAL_API */
  168. private:
  169. char id[4];
  170. UnicodeString idStr;
  171. int32_t code;
  172. URegionType fType;
  173. Region *containingRegion;
  174. UVector *containedRegions;
  175. UVector *preferredValues;
  176. /**
  177. * Default Constructor. Internal - use factory methods only.
  178. */
  179. Region();
  180. /*
  181. * Initializes the region data from the ICU resource bundles. The region data
  182. * contains the basic relationships such as which regions are known, what the numeric
  183. * codes are, any known aliases, and the territory containment data.
  184. *
  185. * If the region data has already loaded, then this method simply returns without doing
  186. * anything meaningful.
  187. */
  188. static void U_CALLCONV loadRegionData(UErrorCode &status);
  189. };
  190. U_NAMESPACE_END
  191. #endif /* #if !UCONFIG_NO_FORMATTING */
  192. #endif /* U_SHOW_CPLUSPLUS_API */
  193. #endif // REGION_H
  194. //eof