appendable.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /*
  2. *******************************************************************************
  3. * Copyright (C) 2011-2012, International Business Machines
  4. * Corporation and others. All Rights Reserved.
  5. *******************************************************************************
  6. * file name: appendable.h
  7. * encoding: US-ASCII
  8. * tab size: 8 (not used)
  9. * indentation:4
  10. *
  11. * created on: 2010dec07
  12. * created by: Markus W. Scherer
  13. */
  14. #ifndef __APPENDABLE_H__
  15. #define __APPENDABLE_H__
  16. /**
  17. * \file
  18. * \brief C++ API: Appendable class: Sink for Unicode code points and 16-bit code units (UChars).
  19. */
  20. #include "unicode/utypes.h"
  21. #include "unicode/uobject.h"
  22. U_NAMESPACE_BEGIN
  23. class UnicodeString;
  24. /**
  25. * Base class for objects to which Unicode characters and strings can be appended.
  26. * Combines elements of Java Appendable and ICU4C ByteSink.
  27. *
  28. * This class can be used in APIs where it does not matter whether the actual destination is
  29. * a UnicodeString, a UChar[] array, a UnicodeSet, or any other object
  30. * that receives and processes characters and/or strings.
  31. *
  32. * Implementation classes must implement at least appendCodeUnit(UChar).
  33. * The base class provides default implementations for the other methods.
  34. *
  35. * The methods do not take UErrorCode parameters.
  36. * If an error occurs (e.g., out-of-memory),
  37. * in addition to returning FALSE from failing operations,
  38. * the implementation must prevent unexpected behavior (e.g., crashes)
  39. * from further calls and should make the error condition available separately
  40. * (e.g., store a UErrorCode, make/keep a UnicodeString bogus).
  41. * @stable ICU 4.8
  42. */
  43. class U_COMMON_API Appendable : public UObject {
  44. public:
  45. /**
  46. * Destructor.
  47. * @stable ICU 4.8
  48. */
  49. ~Appendable();
  50. /**
  51. * Appends a 16-bit code unit.
  52. * @param c code unit
  53. * @return TRUE if the operation succeeded
  54. * @stable ICU 4.8
  55. */
  56. virtual UBool appendCodeUnit(UChar c) = 0;
  57. /**
  58. * Appends a code point.
  59. * The default implementation calls appendCodeUnit(UChar) once or twice.
  60. * @param c code point 0..0x10ffff
  61. * @return TRUE if the operation succeeded
  62. * @stable ICU 4.8
  63. */
  64. virtual UBool appendCodePoint(UChar32 c);
  65. /**
  66. * Appends a string.
  67. * The default implementation calls appendCodeUnit(UChar) for each code unit.
  68. * @param s string, must not be NULL if length!=0
  69. * @param length string length, or -1 if NUL-terminated
  70. * @return TRUE if the operation succeeded
  71. * @stable ICU 4.8
  72. */
  73. virtual UBool appendString(const UChar *s, int32_t length);
  74. /**
  75. * Tells the object that the caller is going to append roughly
  76. * appendCapacity UChars. A subclass might use this to pre-allocate
  77. * a larger buffer if necessary.
  78. * The default implementation does nothing. (It always returns TRUE.)
  79. * @param appendCapacity estimated number of UChars that will be appended
  80. * @return TRUE if the operation succeeded
  81. * @stable ICU 4.8
  82. */
  83. virtual UBool reserveAppendCapacity(int32_t appendCapacity);
  84. /**
  85. * Returns a writable buffer for appending and writes the buffer's capacity to
  86. * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
  87. * May return a pointer to the caller-owned scratch buffer which must have
  88. * scratchCapacity>=minCapacity.
  89. * The returned buffer is only valid until the next operation
  90. * on this Appendable.
  91. *
  92. * After writing at most *resultCapacity UChars, call appendString() with the
  93. * pointer returned from this function and the number of UChars written.
  94. * Many appendString() implementations will avoid copying UChars if this function
  95. * returned an internal buffer.
  96. *
  97. * Partial usage example:
  98. * \code
  99. * int32_t capacity;
  100. * UChar* buffer = app.getAppendBuffer(..., &capacity);
  101. * ... Write n UChars into buffer, with n <= capacity.
  102. * app.appendString(buffer, n);
  103. * \endcode
  104. * In many implementations, that call to append will avoid copying UChars.
  105. *
  106. * If the Appendable allocates or reallocates an internal buffer, it should use
  107. * the desiredCapacityHint if appropriate.
  108. * If a caller cannot provide a reasonable guess at the desired capacity,
  109. * it should pass desiredCapacityHint=0.
  110. *
  111. * If a non-scratch buffer is returned, the caller may only pass
  112. * a prefix to it to appendString().
  113. * That is, it is not correct to pass an interior pointer to appendString().
  114. *
  115. * The default implementation always returns the scratch buffer.
  116. *
  117. * @param minCapacity required minimum capacity of the returned buffer;
  118. * must be non-negative
  119. * @param desiredCapacityHint desired capacity of the returned buffer;
  120. * must be non-negative
  121. * @param scratch default caller-owned buffer
  122. * @param scratchCapacity capacity of the scratch buffer
  123. * @param resultCapacity pointer to an integer which will be set to the
  124. * capacity of the returned buffer
  125. * @return a buffer with *resultCapacity>=minCapacity
  126. * @stable ICU 4.8
  127. */
  128. virtual UChar *getAppendBuffer(int32_t minCapacity,
  129. int32_t desiredCapacityHint,
  130. UChar *scratch, int32_t scratchCapacity,
  131. int32_t *resultCapacity);
  132. };
  133. /**
  134. * An Appendable implementation which writes to a UnicodeString.
  135. *
  136. * This class is not intended for public subclassing.
  137. * @stable ICU 4.8
  138. */
  139. class U_COMMON_API UnicodeStringAppendable : public Appendable {
  140. public:
  141. /**
  142. * Aliases the UnicodeString (keeps its reference) for writing.
  143. * @param s The UnicodeString to which this Appendable will write.
  144. * @stable ICU 4.8
  145. */
  146. explicit UnicodeStringAppendable(UnicodeString &s) : str(s) {}
  147. /**
  148. * Destructor.
  149. * @stable ICU 4.8
  150. */
  151. ~UnicodeStringAppendable();
  152. /**
  153. * Appends a 16-bit code unit to the string.
  154. * @param c code unit
  155. * @return TRUE if the operation succeeded
  156. * @stable ICU 4.8
  157. */
  158. virtual UBool appendCodeUnit(UChar c);
  159. /**
  160. * Appends a code point to the string.
  161. * @param c code point 0..0x10ffff
  162. * @return TRUE if the operation succeeded
  163. * @stable ICU 4.8
  164. */
  165. virtual UBool appendCodePoint(UChar32 c);
  166. /**
  167. * Appends a string to the UnicodeString.
  168. * @param s string, must not be NULL if length!=0
  169. * @param length string length, or -1 if NUL-terminated
  170. * @return TRUE if the operation succeeded
  171. * @stable ICU 4.8
  172. */
  173. virtual UBool appendString(const UChar *s, int32_t length);
  174. /**
  175. * Tells the UnicodeString that the caller is going to append roughly
  176. * appendCapacity UChars.
  177. * @param appendCapacity estimated number of UChars that will be appended
  178. * @return TRUE if the operation succeeded
  179. * @stable ICU 4.8
  180. */
  181. virtual UBool reserveAppendCapacity(int32_t appendCapacity);
  182. /**
  183. * Returns a writable buffer for appending and writes the buffer's capacity to
  184. * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
  185. * May return a pointer to the caller-owned scratch buffer which must have
  186. * scratchCapacity>=minCapacity.
  187. * The returned buffer is only valid until the next write operation
  188. * on the UnicodeString.
  189. *
  190. * For details see Appendable::getAppendBuffer().
  191. *
  192. * @param minCapacity required minimum capacity of the returned buffer;
  193. * must be non-negative
  194. * @param desiredCapacityHint desired capacity of the returned buffer;
  195. * must be non-negative
  196. * @param scratch default caller-owned buffer
  197. * @param scratchCapacity capacity of the scratch buffer
  198. * @param resultCapacity pointer to an integer which will be set to the
  199. * capacity of the returned buffer
  200. * @return a buffer with *resultCapacity>=minCapacity
  201. * @stable ICU 4.8
  202. */
  203. virtual UChar *getAppendBuffer(int32_t minCapacity,
  204. int32_t desiredCapacityHint,
  205. UChar *scratch, int32_t scratchCapacity,
  206. int32_t *resultCapacity);
  207. private:
  208. UnicodeString &str;
  209. };
  210. U_NAMESPACE_END
  211. #endif // __APPENDABLE_H__