parsepos.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved.
  3. *******************************************************************************
  4. *
  5. * File PARSEPOS.H
  6. *
  7. * Modification History:
  8. *
  9. * Date Name Description
  10. * 07/09/97 helena Converted from java.
  11. * 07/17/98 stephen Added errorIndex support.
  12. * 05/11/99 stephen Cleaned up.
  13. *******************************************************************************
  14. */
  15. #ifndef PARSEPOS_H
  16. #define PARSEPOS_H
  17. #include "unicode/utypes.h"
  18. #include "unicode/uobject.h"
  19. U_NAMESPACE_BEGIN
  20. /**
  21. * \file
  22. * \brief C++ API: Canonical Iterator
  23. */
  24. /**
  25. * <code>ParsePosition</code> is a simple class used by <code>Format</code>
  26. * and its subclasses to keep track of the current position during parsing.
  27. * The <code>parseObject</code> method in the various <code>Format</code>
  28. * classes requires a <code>ParsePosition</code> object as an argument.
  29. *
  30. * <p>
  31. * By design, as you parse through a string with different formats,
  32. * you can use the same <code>ParsePosition</code>, since the index parameter
  33. * records the current position.
  34. *
  35. * The ParsePosition class is not suitable for subclassing.
  36. *
  37. * @version 1.3 10/30/97
  38. * @author Mark Davis, Helena Shih
  39. * @see java.text.Format
  40. */
  41. class U_COMMON_API ParsePosition : public UObject {
  42. public:
  43. /**
  44. * Default constructor, the index starts with 0 as default.
  45. * @stable ICU 2.0
  46. */
  47. ParsePosition()
  48. : UObject(),
  49. index(0),
  50. errorIndex(-1)
  51. {}
  52. /**
  53. * Create a new ParsePosition with the given initial index.
  54. * @param newIndex the new text offset.
  55. * @stable ICU 2.0
  56. */
  57. ParsePosition(int32_t newIndex)
  58. : UObject(),
  59. index(newIndex),
  60. errorIndex(-1)
  61. {}
  62. /**
  63. * Copy constructor
  64. * @param copy the object to be copied from.
  65. * @stable ICU 2.0
  66. */
  67. ParsePosition(const ParsePosition& copy)
  68. : UObject(copy),
  69. index(copy.index),
  70. errorIndex(copy.errorIndex)
  71. {}
  72. /**
  73. * Destructor
  74. * @stable ICU 2.0
  75. */
  76. virtual ~ParsePosition();
  77. /**
  78. * Assignment operator
  79. * @stable ICU 2.0
  80. */
  81. ParsePosition& operator=(const ParsePosition& copy);
  82. /**
  83. * Equality operator.
  84. * @return TRUE if the two parse positions are equal, FALSE otherwise.
  85. * @stable ICU 2.0
  86. */
  87. UBool operator==(const ParsePosition& that) const;
  88. /**
  89. * Equality operator.
  90. * @return TRUE if the two parse positions are not equal, FALSE otherwise.
  91. * @stable ICU 2.0
  92. */
  93. UBool operator!=(const ParsePosition& that) const;
  94. /**
  95. * Clone this object.
  96. * Clones can be used concurrently in multiple threads.
  97. * If an error occurs, then NULL is returned.
  98. * The caller must delete the clone.
  99. *
  100. * @return a clone of this object
  101. *
  102. * @see getDynamicClassID
  103. * @stable ICU 2.8
  104. */
  105. ParsePosition *clone() const;
  106. /**
  107. * Retrieve the current parse position. On input to a parse method, this
  108. * is the index of the character at which parsing will begin; on output, it
  109. * is the index of the character following the last character parsed.
  110. * @return the current index.
  111. * @stable ICU 2.0
  112. */
  113. int32_t getIndex(void) const;
  114. /**
  115. * Set the current parse position.
  116. * @param index the new index.
  117. * @stable ICU 2.0
  118. */
  119. void setIndex(int32_t index);
  120. /**
  121. * Set the index at which a parse error occurred. Formatters
  122. * should set this before returning an error code from their
  123. * parseObject method. The default value is -1 if this is not
  124. * set.
  125. * @stable ICU 2.0
  126. */
  127. void setErrorIndex(int32_t ei);
  128. /**
  129. * Retrieve the index at which an error occurred, or -1 if the
  130. * error index has not been set.
  131. * @stable ICU 2.0
  132. */
  133. int32_t getErrorIndex(void) const;
  134. /**
  135. * ICU "poor man's RTTI", returns a UClassID for this class.
  136. *
  137. * @stable ICU 2.2
  138. */
  139. static UClassID U_EXPORT2 getStaticClassID();
  140. /**
  141. * ICU "poor man's RTTI", returns a UClassID for the actual class.
  142. *
  143. * @stable ICU 2.2
  144. */
  145. virtual UClassID getDynamicClassID() const;
  146. private:
  147. /**
  148. * Input: the place you start parsing.
  149. * <br>Output: position where the parse stopped.
  150. * This is designed to be used serially,
  151. * with each call setting index up for the next one.
  152. */
  153. int32_t index;
  154. /**
  155. * The index at which a parse error occurred.
  156. */
  157. int32_t errorIndex;
  158. };
  159. inline ParsePosition&
  160. ParsePosition::operator=(const ParsePosition& copy)
  161. {
  162. index = copy.index;
  163. errorIndex = copy.errorIndex;
  164. return *this;
  165. }
  166. inline UBool
  167. ParsePosition::operator==(const ParsePosition& copy) const
  168. {
  169. if(index != copy.index || errorIndex != copy.errorIndex)
  170. return FALSE;
  171. else
  172. return TRUE;
  173. }
  174. inline UBool
  175. ParsePosition::operator!=(const ParsePosition& copy) const
  176. {
  177. return !operator==(copy);
  178. }
  179. inline int32_t
  180. ParsePosition::getIndex() const
  181. {
  182. return index;
  183. }
  184. inline void
  185. ParsePosition::setIndex(int32_t offset)
  186. {
  187. this->index = offset;
  188. }
  189. inline int32_t
  190. ParsePosition::getErrorIndex() const
  191. {
  192. return errorIndex;
  193. }
  194. inline void
  195. ParsePosition::setErrorIndex(int32_t ei)
  196. {
  197. this->errorIndex = ei;
  198. }
  199. U_NAMESPACE_END
  200. #endif