PHP 8.2.30
Preview: appendable.h Size: 8.49 KB
/proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/alt/libicu65/usr/include/unicode/appendable.h

// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*   Copyright (C) 2011-2012, International Business Machines
*   Corporation and others.  All Rights Reserved.
*******************************************************************************
*   file name:  appendable.h
*   encoding:   UTF-8
*   tab size:   8 (not used)
*   indentation:4
*
*   created on: 2010dec07
*   created by: Markus W. Scherer
*/

#ifndef __APPENDABLE_H__
#define __APPENDABLE_H__

/**
 * \file
 * \brief C++ API: Appendable class: Sink for Unicode code points and 16-bit code units (char16_ts).
 */

#include "unicode/utypes.h"

#if U_SHOW_CPLUSPLUS_API

#include "unicode/uobject.h"

U_NAMESPACE_BEGIN

class UnicodeString;

/**
 * Base class for objects to which Unicode characters and strings can be appended.
 * Combines elements of Java Appendable and ICU4C ByteSink.
 *
 * This class can be used in APIs where it does not matter whether the actual destination is
 * a UnicodeString, a char16_t[] array, a UnicodeSet, or any other object
 * that receives and processes characters and/or strings.
 *
 * Implementation classes must implement at least appendCodeUnit(char16_t).
 * The base class provides default implementations for the other methods.
 *
 * The methods do not take UErrorCode parameters.
 * If an error occurs (e.g., out-of-memory),
 * in addition to returning FALSE from failing operations,
 * the implementation must prevent unexpected behavior (e.g., crashes)
 * from further calls and should make the error condition available separately
 * (e.g., store a UErrorCode, make/keep a UnicodeString bogus).
 * @stable ICU 4.8
 */
class U_COMMON_API Appendable : public UObject {
public:
    /**
     * Destructor.
     * @stable ICU 4.8
     */
    ~Appendable();

    /**
     * Appends a 16-bit code unit.
     * @param c code unit
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendCodeUnit(char16_t c) = 0;

    /**
     * Appends a code point.
     * The default implementation calls appendCodeUnit(char16_t) once or twice.
     * @param c code point 0..0x10ffff
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendCodePoint(UChar32 c);

    /**
     * Appends a string.
     * The default implementation calls appendCodeUnit(char16_t) for each code unit.
     * @param s string, must not be NULL if length!=0
     * @param length string length, or -1 if NUL-terminated
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendString(const char16_t *s, int32_t length);

    /**
     * Tells the object that the caller is going to append roughly
     * appendCapacity char16_ts. A subclass might use this to pre-allocate
     * a larger buffer if necessary.
     * The default implementation does nothing. (It always returns TRUE.)
     * @param appendCapacity estimated number of char16_ts that will be appended
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool reserveAppendCapacity(int32_t appendCapacity);

    /**
     * Returns a writable buffer for appending and writes the buffer's capacity to
     * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
     * May return a pointer to the caller-owned scratch buffer which must have
     * scratchCapacity>=minCapacity.
     * The returned buffer is only valid until the next operation
     * on this Appendable.
     *
     * After writing at most *resultCapacity char16_ts, call appendString() with the
     * pointer returned from this function and the number of char16_ts written.
     * Many appendString() implementations will avoid copying char16_ts if this function
     * returned an internal buffer.
     *
     * Partial usage example:
     * \code
     *  int32_t capacity;
     *  char16_t* buffer = app.getAppendBuffer(..., &capacity);
     *  ... Write n char16_ts into buffer, with n <= capacity.
     *  app.appendString(buffer, n);
     * \endcode
     * In many implementations, that call to append will avoid copying char16_ts.
     *
     * If the Appendable allocates or reallocates an internal buffer, it should use
     * the desiredCapacityHint if appropriate.
     * If a caller cannot provide a reasonable guess at the desired capacity,
     * it should pass desiredCapacityHint=0.
     *
     * If a non-scratch buffer is returned, the caller may only pass
     * a prefix to it to appendString().
     * That is, it is not correct to pass an interior pointer to appendString().
     *
     * The default implementation always returns the scratch buffer.
     *
     * @param minCapacity required minimum capacity of the returned buffer;
     *                    must be non-negative
     * @param desiredCapacityHint desired capacity of the returned buffer;
     *                            must be non-negative
     * @param scratch default caller-owned buffer
     * @param scratchCapacity capacity of the scratch buffer
     * @param resultCapacity pointer to an integer which will be set to the
     *                       capacity of the returned buffer
     * @return a buffer with *resultCapacity>=minCapacity
     * @stable ICU 4.8
     */
    virtual char16_t *getAppendBuffer(int32_t minCapacity,
                                   int32_t desiredCapacityHint,
                                   char16_t *scratch, int32_t scratchCapacity,
                                   int32_t *resultCapacity);
};

/**
 * An Appendable implementation which writes to a UnicodeString.
 *
 * This class is not intended for public subclassing.
 * @stable ICU 4.8
 */
class U_COMMON_API UnicodeStringAppendable : public Appendable {
public:
    /**
     * Aliases the UnicodeString (keeps its reference) for writing.
     * @param s The UnicodeString to which this Appendable will write.
     * @stable ICU 4.8
     */
    explicit UnicodeStringAppendable(UnicodeString &s) : str(s) {}

    /**
     * Destructor.
     * @stable ICU 4.8
     */
    ~UnicodeStringAppendable();

    /**
     * Appends a 16-bit code unit to the string.
     * @param c code unit
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendCodeUnit(char16_t c);

    /**
     * Appends a code point to the string.
     * @param c code point 0..0x10ffff
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendCodePoint(UChar32 c);

    /**
     * Appends a string to the UnicodeString.
     * @param s string, must not be NULL if length!=0
     * @param length string length, or -1 if NUL-terminated
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool appendString(const char16_t *s, int32_t length);

    /**
     * Tells the UnicodeString that the caller is going to append roughly
     * appendCapacity char16_ts.
     * @param appendCapacity estimated number of char16_ts that will be appended
     * @return TRUE if the operation succeeded
     * @stable ICU 4.8
     */
    virtual UBool reserveAppendCapacity(int32_t appendCapacity);

    /**
     * Returns a writable buffer for appending and writes the buffer's capacity to
     * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
     * May return a pointer to the caller-owned scratch buffer which must have
     * scratchCapacity>=minCapacity.
     * The returned buffer is only valid until the next write operation
     * on the UnicodeString.
     *
     * For details see Appendable::getAppendBuffer().
     *
     * @param minCapacity required minimum capacity of the returned buffer;
     *                    must be non-negative
     * @param desiredCapacityHint desired capacity of the returned buffer;
     *                            must be non-negative
     * @param scratch default caller-owned buffer
     * @param scratchCapacity capacity of the scratch buffer
     * @param resultCapacity pointer to an integer which will be set to the
     *                       capacity of the returned buffer
     * @return a buffer with *resultCapacity>=minCapacity
     * @stable ICU 4.8
     */
    virtual char16_t *getAppendBuffer(int32_t minCapacity,
                                   int32_t desiredCapacityHint,
                                   char16_t *scratch, int32_t scratchCapacity,
                                   int32_t *resultCapacity);

private:
    UnicodeString &str;
};

U_NAMESPACE_END

#endif /* U_SHOW_CPLUSPLUS_API */

#endif  // __APPENDABLE_H__

Directory Contents

Dirs: 0 × Files: 187

Name Size Perms Modified Actions
26.48 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
8.49 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
9.15 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
27.80 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
9.60 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
20.77 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.08 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
105.74 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.43 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
25.33 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.22 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
24.05 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
23.91 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
13.76 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
56.23 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.88 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
3.76 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.30 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
4.05 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
40.67 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
1.19 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
20.13 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
87.38 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
6.97 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
37.70 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.84 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
46.63 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
18.51 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
25.08 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
8.68 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
20.74 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
2.08 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
4.84 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
8.69 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
5.37 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
24.42 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
12.50 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
10.27 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.04 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.33 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
31.71 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
1.03 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
11.88 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
12.70 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
9.47 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
11.27 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
22.50 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
19.69 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.12 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
47.40 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
11.33 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
93.31 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
4.32 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
33.71 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
44.11 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
34.03 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
30.94 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
2.69 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
86.31 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
30.14 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
49.81 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
7.19 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.08 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
5.56 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
28.08 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
25.20 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
18.39 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.49 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.33 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
26.58 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
48.73 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
15.60 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
84.36 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
9.18 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
22.62 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
9.37 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
18.07 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.32 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.40 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
22.22 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
14.30 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
12.59 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
45.44 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
70.97 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
11.18 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
1.05 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
9.92 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
5.79 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.38 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
15.33 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
21.30 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
4.27 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
36.61 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
41.02 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
3.38 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
4.90 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
7.85 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
65.82 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
42.89 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
16.85 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
35.37 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
6.12 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
89.56 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
12.65 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
23.97 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
56.90 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
15.18 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
5.36 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
140.56 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
22.58 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.21 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
13.20 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
11.21 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
83.09 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.14 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.59 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
20.99 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
61.46 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
9.46 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
12.07 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
5.53 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
22.46 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
14.67 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
16.12 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
60.88 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
15.56 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
10.03 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
26.01 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
5.89 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.78 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
4.36 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
10.94 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
12.14 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
2.00 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
33.37 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
22.77 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
10.45 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
8.83 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
52.54 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
11.26 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
14.53 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
1.33 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
24.23 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
8.24 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
3.96 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
4.04 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.10 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
3.38 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
64.90 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
170.43 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
20.52 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
24.66 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
53.62 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
25.36 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
7.21 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
10.68 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.88 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
72.05 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
9.84 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
17.26 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
130.97 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
5.38 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
36.54 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
26.87 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
38.12 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
40.00 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
9.55 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
18.00 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
65.90 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
8.14 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
38.54 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
1.89 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
72.47 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
3.15 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
58.13 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
7.86 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
30.96 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
23.32 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
763 B lrw-r--r-- 2022-02-08 16:22:58
Edit Download
45.83 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
13.78 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
15.73 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
25.52 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download
30.74 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.67 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
6.00 KB lrw-r--r-- 2022-02-08 16:22:58
Edit Download
20.30 KB lrw-r--r-- 2022-02-08 16:22:59
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).