aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/utfstring.h
blob: 5355f3ef3d55df858c383eca5cd117db177399f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
 * Copyright (C) 2007-2019 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#ifndef BU_UTF_STRING_H
#define BU_UTF_STRING_H

#include <stdint.h>
#include "bu/array.h"

namespace Bu
{
    class String;
    class Stream;

    /**
     * UtfChar isn't actually a character, unicode specifies "code points" not
     * characters.  The main reason for this is that not all code points define
     * usable characters.  Some control text directionality, some apply
     * properties to other code points which are characters.  However, most of
     * these distinctions are only important when implementing displays that
     * comply with the Unicode standard fully.
     */
    typedef uint32_t UtfChar;

    /**
     * A unicode string.  This class represents a string of unicode code points.
     * Every character in unicode can be represented with 21 bits, but we don't
     * have a datatype that's 24 bits long, so we return all code points as a
     * 32 bit unsigned value represented by Bu::UtfChar.  However, the UtfString
     * class, for efficiency purposes doesn't store 32 bit values internally.
     * It represents all code points in the native utf16 encodeng.  This means
     * that it may be very difficult to quickly determine the length of a
     * UtfString in code points.  Unlike many Unicode handling systems, this
     * one actually works with complete code points.  When using this class you
     * don't ever have to know about the inner workings of the different
     * encoding schemes.  All of the data is dealt with as whole code points.
     *
     * As an aside, this means that when encoding a UtfString to a Utf16
     * encoding that matches your archetecture this operation will be very
     * fast since it will effectively be a raw dump of the internal data
     * structures.  However, it is highly reccomended that you DO NOT use the
     * little endian encodings if you can possibly avoid it.  They are not
     * reccomended by the Unicode Consortium and are mainly supported as a
     * means of communicating with other systems that encode their data
     * incorrectly.  That said, whenever UtfString encodes the contained string
     * it always includes a BOM at the begining (the byte order marker) so that
     * proper byte order can be easily determined by the program reading the
     * data.
     *
     *@todo Investigate http://www.unicode.org/reports/tr6/ for compression.
     */
    class UtfString
    {
    public:
        enum Encoding
        {
            Utf8,
            Utf16,
            Utf16be,
            Utf16le,
            Utf32,
            Utf32be,
            Utf32le,
            Ucs2,
            Ucs4,
            GuessEncoding
        };

        UtfString();
        UtfString( const Bu::String &sInput, Encoding eEnc=Utf8 );
        UtfString( const Bu::Blob &sInput, Encoding eEnc=Utf8 );
        UtfString( const char *sInput, Encoding eEnc=Utf8 );
        virtual ~UtfString();

        class iterator
        {
        friend class UtfString;
        private:
            iterator( UtfString *pSrc, int iCodePos ) :
                pSrc( pSrc ), iCodePos( iCodePos )
            {
            }

        public:
            iterator() :
                pSrc( NULL ), iCodePos( 0 )
            {
            }

            UtfChar operator*()
            {
                if( !pSrc )
                    throw Bu::ExceptionBase("invalid UtfString::iterator dereferenced.");
                return pSrc->get( iCodePos );
            }

            iterator operator++()
            {
                pSrc->nextChar( iCodePos );
                return *this;
            }

            iterator operator++( int )
            {
                pSrc->nextChar( iCodePos );
                return *this;
            }

            operator bool() const
            {
                return iCodePos < pSrc->aData.getSize();
            }

        private:
            UtfString *pSrc;
            int iCodePos;
        };
        
        class const_iterator
        {
        friend class UtfString;
        private:
            const_iterator( const UtfString *pSrc, int iCodePos ) :
                pSrc( pSrc ), iCodePos( iCodePos )
            {
            }

        public:
            const_iterator() :
                pSrc( NULL ), iCodePos( 0 )
            {
            }

            UtfChar operator*()
            {
                if( !pSrc )
                    throw Bu::ExceptionBase("invalid UtfString::iterator dereferenced.");
                return pSrc->get( iCodePos );
            }

            const_iterator operator++()
            {
                pSrc->nextChar( iCodePos );
                return *this;
            }

            const_iterator operator++( int )
            {
                pSrc->nextChar( iCodePos );
                return *this;
            }

            operator bool() const
            {
                return iCodePos < pSrc->aData.getSize();
            }

        private:
            const UtfString *pSrc;
            int iCodePos;
        };

        iterator begin();
        const_iterator begin() const;

        /**
         * Append a UtfChar (A unicode code point) to the string.  This can be
         * any valid code point, and is just the value of the code point, no
         * encoding necessary.
         */
        void append( UtfChar ch );

        void append( const UtfString &rSrc );

        /**
         * Set the value of the entire string based on the given input and
         * encoding.  The default encoding is Utf8, which is compatible with
         * 7-bit ascii, so it's a great choice for setting UtfStrings from
         * string literals in code.
         */
        void set( const Bu::String &sInput, Encoding eEnc=Utf8 );
        
        /**
         * Set the value of the entire string based on the given input and
         * encoding.  The default encoding is Utf8, which is compatible with
         * 7-bit ascii, so it's a great choice for setting UtfStrings from
         * string literals in code.
         */
        void set( const Bu::Blob &bInput, Encoding eEnc=Utf8 );

        /**
         * This encodes the UtfString in the given encoding and outputs it to
         * the provided stream.  all Utf16 and Utf32 encodings will have the
         * correct BOM (byte order marker) at the begining.
         */
        void write( Bu::Stream &sOut, Encoding eEnc=Utf8 ) const;

        /**
         * Reads as many bytes from the given stream, starting at the current
         * position, as required to read a single UtfChar (code point).
         */
        static int readPoint( Bu::Stream &sIn, UtfChar &c,
                Encoding sEnc=Utf8 );
        static int writePoint( Bu::Stream &sOut, const UtfChar &c,
                Encoding sEnc=Utf8 ); 

        int32_t toInt32( int iRadix=10 ) const;
        int64_t toInt64( int iRadix=10 ) const;

        /**
         * This encodes the UtfString in the given encoding and returns it as
         * a binary Bu::Blob.  Like write, this also includes the proper BOM
         * at the begining.
         */
        Bu::String get( Encoding eEnc=Utf8 ) const;

        void debug() const;

        /**
         * This may or may not stick around, given an index, this returns a
         * codepoint, however there isn't necesarilly a 1:1 ratio between
         * indexes and code points.
         */
        UtfChar get( int iIndex ) const;

        /**
         * This is what to use if you want to iterate through a section of the
         * UtfString and you want to use a numerical index.  In most cases it
         * will be much easier to use an iterator, though.  Given an index this
         * will return the codepoint at that position and increment iIndex an
         * appropriate amount for it to point to the next code point.
         */
        UtfChar nextChar( int &iIndex ) const;

        bool operator==( const Bu::UtfString &rhs ) const;
        bool operator==( const Bu::Blob &rhs ) const;
        bool operator==( const char *rhs ) const;
        UtfString &operator+=( const Bu::UtfString &rhs );
        UtfString &operator+=( const UtfChar &rhs );

        bool operator<( const Bu::UtfString &rhs ) const;
        bool operator<=( const Bu::UtfString &rhs ) const;
        bool operator>( const Bu::UtfString &rhs ) const;
        bool operator>=( const Bu::UtfString &rhs ) const;

    private:
        void append16( uint16_t i ) { aData.append( i ); }

        void setUtf8( const Bu::Blob &sInput );
        void setUtf16( const Bu::Blob &sInput );
        void setUtf16be( const Bu::Blob &sInput );
        void setUtf16le( const Bu::Blob &sInput );
        void setUtf32( const Bu::Blob &sInput );
        void setUtf32be( const Bu::Blob &sInput );
        void setUtf32le( const Bu::Blob &sInput );
        
        void writeUtf8( Bu::Stream &sOut ) const;
        void writeUtf16be( Bu::Stream &sOut ) const;
        void writeUtf16le( Bu::Stream &sOut ) const;
        void writeUtf32be( Bu::Stream &sOut ) const;
        void writeUtf32le( Bu::Stream &sOut ) const;

    private:
        static uint8_t utf8_lmask[8];
        Bu::Array<uint16_t> aData;
        int iRawLen;
        int iCharLen;
    };

    //
    // Hash support
    //
    template<typename T>
    uint32_t __calcHashCode( const T &k );

    template<typename T>
    bool __cmpHashKeys( const T &a, const T &b );

    template<> uint32_t __calcHashCode<UtfString>( const UtfString &k );
    template<> bool __cmpHashKeys<UtfString>(
        const UtfString &a, const UtfString &b );

    class Formatter;
    Bu::Formatter operator<<( Bu::Formatter &f, const Bu::UtfString &s );
};

#endif