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