diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/unstable/blobbuilder.cpp | 2 | ||||
-rw-r--r-- | src/unstable/text.cpp | 55 | ||||
-rw-r--r-- | src/unstable/text.h | 13 | ||||
-rw-r--r-- | src/unstable/textbuilder.cpp | 291 | ||||
-rw-r--r-- | src/unstable/textbuilder.h | 79 | ||||
-rw-r--r-- | src/unstable/textcodec.cpp | 17 | ||||
-rw-r--r-- | src/unstable/textcodec.h | 41 | ||||
-rw-r--r-- | src/unstable/textcodecutf8.cpp | 25 | ||||
-rw-r--r-- | src/unstable/textcodecutf8.h | 26 |
9 files changed, 534 insertions, 15 deletions
diff --git a/src/unstable/blobbuilder.cpp b/src/unstable/blobbuilder.cpp index 43c0779..fd62cb0 100644 --- a/src/unstable/blobbuilder.cpp +++ b/src/unstable/blobbuilder.cpp | |||
@@ -93,7 +93,7 @@ Bu::BlobBuilderCore::BlobBuilderCore( const Bu::BlobBuilderCore &rSrc ) : | |||
93 | pLast( 0 ), | 93 | pLast( 0 ), |
94 | iLength( rSrc.iLength ) | 94 | iLength( rSrc.iLength ) |
95 | { | 95 | { |
96 | 96 | throw Bu::ExceptionBase("Not yet implemented."); | |
97 | } | 97 | } |
98 | 98 | ||
99 | Bu::BlobBuilderCore::~BlobBuilderCore() | 99 | Bu::BlobBuilderCore::~BlobBuilderCore() |
diff --git a/src/unstable/text.cpp b/src/unstable/text.cpp index 9e5670d..6ec41da 100644 --- a/src/unstable/text.cpp +++ b/src/unstable/text.cpp | |||
@@ -6,22 +6,34 @@ | |||
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include "bu/text.h" | 8 | #include "bu/text.h" |
9 | |||
10 | #include "bu/exceptionbase.h" | ||
11 | |||
9 | #include <string.h> | 12 | #include <string.h> |
10 | 13 | ||
11 | Bu::Text::Text() : | 14 | Bu::Text::Text() : |
12 | pData( NULL ), | 15 | pData( NULL ), |
13 | iSize( 0 ), | 16 | bIsBmpOnly( true ), |
14 | iCodePoints( 0 ) | 17 | iSize( 0 ) |
15 | { | 18 | { |
16 | } | 19 | } |
17 | 20 | ||
18 | Bu::Text::Text( const Text &rSrc ) : | 21 | Bu::Text::Text( const Text &rSrc ) : |
19 | pData( NULL ), | 22 | pData( NULL ), |
20 | iSize( rSrc.iSize ), | 23 | bIsBmpOnly( rSrc.bIsBmpOnly ), |
21 | iCodePoints( rSrc.iCodePoints ) | 24 | iSize( rSrc.iSize ) |
25 | { | ||
26 | pData = new CodePoint[iSize]; | ||
27 | memcpy( pData, rSrc.pData, sizeof(CodePoint)*iSize ); | ||
28 | } | ||
29 | |||
30 | Bu::Text::Text( const TextBuilder &rSrc ) : | ||
31 | pData( NULL ), | ||
32 | bIsBmpOnly( true ), | ||
33 | iSize( rSrc.getSize() ) | ||
22 | { | 34 | { |
23 | pData = new uint16_t[iSize]; | 35 | pData = new CodePoint[iSize]; |
24 | memcpy( pData, rSrc.pData, sizeof(uint16_t)*iSize ); | 36 | |
25 | } | 37 | } |
26 | 38 | ||
27 | Bu::Text::~Text() | 39 | Bu::Text::~Text() |
@@ -30,4 +42,35 @@ Bu::Text::~Text() | |||
30 | pData = NULL; | 42 | pData = NULL; |
31 | } | 43 | } |
32 | 44 | ||
45 | bool Bu::Text::isEmpty() const | ||
46 | { | ||
47 | return (iSize == 0); | ||
48 | } | ||
49 | |||
50 | bool Bu::Text::isBmpOnly() const | ||
51 | { | ||
52 | return bIsBmpOnly; | ||
53 | } | ||
54 | |||
55 | int32_t Bu::Text::getSize() const | ||
56 | { | ||
57 | return iSize; | ||
58 | } | ||
59 | |||
60 | int32_t Bu::Text::getSizeInBytes() const | ||
61 | { | ||
62 | return iSize*sizeof(CodePoint); | ||
63 | } | ||
64 | |||
65 | Bu::CodePoint Bu::Text::operator[]( int32_t iIndex ) const | ||
66 | { | ||
67 | if( iIndex < 0 || iIndex >= iSize ) | ||
68 | throw Bu::ExceptionBase("Index out of range."); | ||
69 | return pData[iIndex]; | ||
70 | } | ||
71 | |||
72 | Bu::CodePoint *Bu::Text::getData() const | ||
73 | { | ||
74 | return pData; | ||
75 | } | ||
33 | 76 | ||
diff --git a/src/unstable/text.h b/src/unstable/text.h index 1d623ff..1154a50 100644 --- a/src/unstable/text.h +++ b/src/unstable/text.h | |||
@@ -27,11 +27,6 @@ namespace Bu | |||
27 | * multilpe code points. In addition, a code point can also represent | 27 | * multilpe code points. In addition, a code point can also represent |
28 | * formatting or display inforamtion. | 28 | * formatting or display inforamtion. |
29 | * | 29 | * |
30 | * Internally all data is stored in UTF-16, which is a fair compromise for | ||
31 | * mose text. All characters from all modern natural languages fit within | ||
32 | * the Basic Multilingual Plane, which requires only a single 16 bit value | ||
33 | * to represent it. However, when iterating through or addressing data | ||
34 | * in the Text object all work is done on a code point basis. | ||
35 | */ | 30 | */ |
36 | class Text | 31 | class Text |
37 | { | 32 | { |
@@ -43,20 +38,22 @@ namespace Bu | |||
43 | public: | 38 | public: |
44 | Text(); | 39 | Text(); |
45 | Text( const Text &rSrc ); | 40 | Text( const Text &rSrc ); |
41 | Text( const TextBuilder &rSrc ); | ||
46 | virtual ~Text(); | 42 | virtual ~Text(); |
47 | 43 | ||
48 | bool isEmpty() const; | 44 | bool isEmpty() const; |
49 | bool isBmpOnly() const; | 45 | bool isBmpOnly() const; |
50 | int32_t getSize() const; | 46 | int32_t getSize() const; |
51 | int32_t getSizeInBytes() const; | 47 | int32_t getSizeInBytes() const; |
48 | CodePoint operator[]( int32_t iIndex ) const; | ||
52 | 49 | ||
53 | uint16_t *getRawData() const; | 50 | CodePoint *getData() const; |
54 | // Text transform( (CodePoint *)(*pCallback)( CodePoint * ) ); | 51 | // Text transform( (CodePoint *)(*pCallback)( CodePoint * ) ); |
55 | 52 | ||
56 | private: | 53 | private: |
57 | uint16_t *pData; | 54 | CodePoint *pData; |
55 | bool bIsBmpOnly; | ||
58 | int32_t iSize; | 56 | int32_t iSize; |
59 | int32_t iCodePoints; | ||
60 | }; | 57 | }; |
61 | typedef Text::CodePoint CodePoint; | 58 | typedef Text::CodePoint CodePoint; |
62 | } | 59 | } |
diff --git a/src/unstable/textbuilder.cpp b/src/unstable/textbuilder.cpp index 73271f8..5209e7b 100644 --- a/src/unstable/textbuilder.cpp +++ b/src/unstable/textbuilder.cpp | |||
@@ -5,4 +5,295 @@ | |||
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include "bu/textbuilder.h" | ||
9 | |||
10 | #include "bu/exceptionbase.h" | ||
11 | #include "bu/text.h" | ||
12 | |||
13 | #define PAGE_SIZE 16 | ||
14 | |||
15 | Bu::TextBuilderCore::Chunk::Chunk( const CodePoint *pSrc, int32_t iLength ) : | ||
16 | iLength( iLength ), | ||
17 | pData( 0 ), | ||
18 | pNext( 0 ) | ||
19 | { | ||
20 | if( iLength < PAGE_SIZE ) | ||
21 | { | ||
22 | pData = new CodePoint[PAGE_SIZE]; | ||
23 | } | ||
24 | else | ||
25 | { | ||
26 | pData = new CodePoint[iLength]; | ||
27 | } | ||
28 | memcpy( pData, pSrc, iLength*sizeof(CodePoint) ); | ||
29 | } | ||
30 | |||
31 | Bu::TextBuilderCore::Chunk::~Chunk() | ||
32 | { | ||
33 | delete[] pData; | ||
34 | pData = 0; | ||
35 | pNext = 0; | ||
36 | } | ||
37 | |||
38 | void Bu::TextBuilderCore::Chunk::append( const Bu::CodePoint *&pSrc, | ||
39 | int32_t &iLength ) | ||
40 | { | ||
41 | if( this->iLength >= PAGE_SIZE ) | ||
42 | { | ||
43 | // This chink is full, just return. | ||
44 | return; | ||
45 | } | ||
46 | int32_t iCopy = PAGE_SIZE-this->iLength; | ||
47 | if( iCopy > iLength ) | ||
48 | { | ||
49 | iCopy = iLength; | ||
50 | } | ||
51 | memcpy( pData+this->iLength, pSrc, iCopy*sizeof(Bu::CodePoint) ); | ||
52 | this->iLength += iCopy; | ||
53 | pSrc += iCopy; | ||
54 | iLength -= iCopy; | ||
55 | } | ||
56 | |||
57 | Bu::TextBuilderCore::Chunk *Bu::TextBuilderCore::Chunk::split( int32_t iIndex ) | ||
58 | { | ||
59 | if( iIndex == 0 ) | ||
60 | return NULL; | ||
61 | |||
62 | if( iIndex >= iLength ) | ||
63 | return NULL; | ||
64 | |||
65 | Chunk *pNew = new Chunk( pData+iIndex, iLength-iIndex ); | ||
66 | iLength -= iIndex; | ||
67 | pNew->pNext = pNext; | ||
68 | pNext = pNew; | ||
69 | |||
70 | return pNew; | ||
71 | } | ||
72 | |||
73 | |||
74 | ////// | ||
75 | // TextBuilderCore | ||
76 | // | ||
77 | Bu::TextBuilderCore::TextBuilderCore() : | ||
78 | pFirst( 0 ), | ||
79 | pLast( 0 ), | ||
80 | iLength( 0 ) | ||
81 | { | ||
82 | } | ||
83 | |||
84 | Bu::TextBuilderCore::TextBuilderCore( const TextBuilderCore &rSrc ) : | ||
85 | pFirst( 0 ), | ||
86 | pLast( 0 ), | ||
87 | iLength( rSrc.iLength ) | ||
88 | { | ||
89 | throw Bu::ExceptionBase("Not yet implemented."); | ||
90 | } | ||
91 | |||
92 | Bu::TextBuilderCore::~TextBuilderCore() | ||
93 | { | ||
94 | clear(); | ||
95 | } | ||
96 | |||
97 | void Bu::TextBuilderCore::clear() | ||
98 | { | ||
99 | Chunk *pCur = pFirst; | ||
100 | while( pCur ) | ||
101 | { | ||
102 | Chunk *pNext = pCur->pNext; | ||
103 | delete pCur; | ||
104 | pCur = pNext; | ||
105 | } | ||
106 | pFirst = pLast = 0; | ||
107 | iLength = 0; | ||
108 | } | ||
109 | |||
110 | void Bu::TextBuilderCore::append( const CodePoint *pSrc, int32_t iLength ) | ||
111 | { | ||
112 | this->iLength += iLength; | ||
113 | if( pFirst == 0 ) | ||
114 | { | ||
115 | // Nothing in the list, just add a chunk. | ||
116 | pFirst = pLast = new Chunk( pSrc, iLength ); | ||
117 | return; | ||
118 | } | ||
119 | else if( pLast->iLength < PAGE_SIZE ) | ||
120 | { | ||
121 | // Append to the last chunk first, this will modify pSrc & iLength. | ||
122 | pLast->append( pSrc, iLength ); | ||
123 | } | ||
124 | |||
125 | // If there's unused data at the end, append it now. | ||
126 | if( iLength > 0 ) | ||
127 | { | ||
128 | pLast->pNext = new Chunk( pSrc, iLength ); | ||
129 | pLast = pLast->pNext; | ||
130 | } | ||
131 | } | ||
132 | |||
133 | void Bu::TextBuilderCore::prepend( const CodePoint *pSrc, int32_t iLength ) | ||
134 | { | ||
135 | if( pFirst == 0 ) | ||
136 | { | ||
137 | pFirst = pLast = new Chunk( pSrc, iLength ); | ||
138 | } | ||
139 | else | ||
140 | { | ||
141 | Chunk *pNew = new Chunk( pSrc, iLength ); | ||
142 | pNew->pNext = pFirst; | ||
143 | pFirst = pNew; | ||
144 | } | ||
145 | this->iLength += iLength; | ||
146 | } | ||
147 | |||
148 | void Bu::TextBuilderCore::insert( int32_t iBefore, const CodePoint *pSrc, int32_t iLength ) | ||
149 | { | ||
150 | if( iBefore <= 0 ) | ||
151 | { | ||
152 | prepend( pSrc, iLength ); | ||
153 | return; | ||
154 | } | ||
155 | if( iBefore >= this->iLength ) | ||
156 | { | ||
157 | append( pSrc, iLength ); | ||
158 | return; | ||
159 | } | ||
160 | |||
161 | Chunk *pCur = pFirst; | ||
162 | while( pCur ) | ||
163 | { | ||
164 | if( iBefore == 0 ) | ||
165 | { | ||
166 | // Insert between chunks, no splitting required. | ||
167 | Chunk *pNew = new Chunk( pSrc, iLength ); | ||
168 | pNew->pNext = pCur->pNext; | ||
169 | pCur->pNext = pNew; | ||
170 | if( pLast == pCur ) | ||
171 | pLast = pNew; | ||
172 | } | ||
173 | if( iBefore < pCur->iLength ) | ||
174 | { | ||
175 | // This is the chunk we need to split. | ||
176 | Chunk *pNew = pCur->split( iBefore ); | ||
177 | if( pLast == pCur ) | ||
178 | pLast = pNew; | ||
179 | continue; | ||
180 | } | ||
181 | pCur = pCur->pNext; | ||
182 | } | ||
183 | this->iLength = iLength; | ||
184 | } | ||
185 | |||
186 | void Bu::TextBuilderCore::set( const CodePoint *pSrc, int32_t iLength ) | ||
187 | { | ||
188 | clear(); | ||
189 | append( pSrc, iLength ); | ||
190 | } | ||
191 | |||
192 | void Bu::TextBuilderCore::copyTo( void *pDestRaw, int32_t iLength ) | ||
193 | { | ||
194 | CodePoint *pDest = reinterpret_cast<CodePoint *>( pDestRaw ); | ||
195 | |||
196 | Chunk *pCur = pFirst; | ||
197 | while( pCur && iLength ) | ||
198 | { | ||
199 | } | ||
200 | } | ||
201 | |||
202 | Bu::CodePoint Bu::TextBuilderCore::getAt( int32_t iIndex ) const | ||
203 | { | ||
204 | if( iIndex < 0 || iIndex >= iLength ) | ||
205 | throw Bu::ExceptionBase("Requested index is out of range."); | ||
206 | |||
207 | Chunk *pCur = pFirst; | ||
208 | while( iIndex >= pCur->iLength ) | ||
209 | { | ||
210 | iIndex -= pCur->iLength; | ||
211 | pCur = pCur->pNext; | ||
212 | } | ||
213 | return pCur->pData[iIndex]; | ||
214 | } | ||
215 | |||
216 | ///// | ||
217 | // TextBuilder | ||
218 | // | ||
219 | |||
220 | Bu::TextBuilder::TextBuilder() | ||
221 | { | ||
222 | } | ||
223 | |||
224 | Bu::TextBuilder::TextBuilder( const Text &rSrc ) | ||
225 | { | ||
226 | } | ||
227 | |||
228 | Bu::TextBuilder::TextBuilder( const TextBuilder &rSrc ) : | ||
229 | Bu::SharedCore<Bu::TextBuilder, Bu::TextBuilderCore>( rSrc ) | ||
230 | { | ||
231 | } | ||
232 | |||
233 | Bu::TextBuilder::~TextBuilder() | ||
234 | { | ||
235 | } | ||
236 | |||
237 | void Bu::TextBuilder::set( const Text &rSrc ) | ||
238 | { | ||
239 | _hardCopy(); | ||
240 | core->set( rSrc.getData(), rSrc.getSize() ); | ||
241 | } | ||
242 | |||
243 | void Bu::TextBuilder::append( const Text &rSrc ) | ||
244 | { | ||
245 | _hardCopy(); | ||
246 | } | ||
247 | |||
248 | void Bu::TextBuilder::append( const CodePoint *pSrc, int32_t iLength ) | ||
249 | { | ||
250 | _hardCopy(); | ||
251 | } | ||
252 | |||
253 | void Bu::TextBuilder::prepend( const Text &rSrc ) | ||
254 | { | ||
255 | _hardCopy(); | ||
256 | } | ||
257 | |||
258 | void Bu::TextBuilder::insert( const Text &rSrc ) | ||
259 | { | ||
260 | _hardCopy(); | ||
261 | } | ||
262 | |||
263 | void Bu::TextBuilder::clear() | ||
264 | { | ||
265 | _hardCopy(); | ||
266 | } | ||
267 | |||
268 | int32_t Bu::TextBuilder::getSize() const | ||
269 | { | ||
270 | return core->iLength; | ||
271 | } | ||
272 | |||
273 | Bu::Text Bu::TextBuilder::getText() const | ||
274 | { | ||
275 | return Text( *this ); | ||
276 | } | ||
277 | |||
278 | void Bu::TextBuilder::copyTo( void *pDestRaw, int32_t iDestSize ) const | ||
279 | { | ||
280 | core->copyTo( pDestRaw, iDestSize ); | ||
281 | } | ||
282 | |||
283 | Bu::CodePoint Bu::TextBuilder::operator[]( int32_t iIndex ) const | ||
284 | { | ||
285 | return core->getAt( iIndex ); | ||
286 | } | ||
287 | |||
288 | Bu::TextBuilder &Bu::TextBuilder::operator=( const Text &rSrc ) | ||
289 | { | ||
290 | set( rSrc ); | ||
291 | return *this; | ||
292 | } | ||
293 | |||
294 | Bu::TextBuilder &Bu::TextBuilder::operator==( const Text &rSrc ) | ||
295 | { | ||
296 | set( pSrc ); | ||
297 | return *this; | ||
298 | } | ||
8 | 299 | ||
diff --git a/src/unstable/textbuilder.h b/src/unstable/textbuilder.h index 73271f8..f0dee8c 100644 --- a/src/unstable/textbuilder.h +++ b/src/unstable/textbuilder.h | |||
@@ -5,4 +5,83 @@ | |||
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef BU_TEXT_BUILDER_H | ||
9 | #define BU_TEXT_BUILDER_H | ||
10 | |||
11 | #include <stdint.h> | ||
12 | #include "bu/sharedcore.h" | ||
13 | #include "bu/text.h" | ||
14 | |||
15 | namespace Bu | ||
16 | { | ||
17 | class TextBuilder; | ||
18 | |||
19 | /** @cond DEVEL */ | ||
20 | class TextBuilderCore | ||
21 | { | ||
22 | friend class TextBuilder; | ||
23 | friend class SharedCore<TextBuilder, TextBuilderCore>; | ||
24 | private: | ||
25 | class Chunk | ||
26 | { | ||
27 | public: | ||
28 | Chunk( const CodePoint *pSrc, int32_t iLength ); | ||
29 | ~Chunk(); | ||
30 | |||
31 | void append( const CodePoint *&pSrc, int32_t &iLength ); | ||
32 | |||
33 | Chunk *split( int32_t iIndex ); | ||
34 | |||
35 | int32_t iLength; | ||
36 | CodePoint *pData; | ||
37 | Chunk *pNext; | ||
38 | }; | ||
39 | |||
40 | TextBuilderCore(); | ||
41 | TextBuilderCore( const TextBuilderCore &rSrc ); | ||
42 | virtual ~TextBuilderCore(); | ||
43 | |||
44 | void clear(); | ||
45 | void append( const CodePoint *pSrc, int32_t iLength ); | ||
46 | void prepend( const CodePoint *pSrc, int32_t iLength ); | ||
47 | void insert( int32_t iBefore, const CodePoint *pSrc, int32_t iLength ); | ||
48 | void set( const CodePoint *pSrc, int32_t iLength ); | ||
49 | void copyTo( void *pDestRaw, int32_t iLength ); | ||
50 | CodePoint getAt( int32_t iIndex ) const; | ||
51 | |||
52 | Chunk *pFirst; | ||
53 | Chunk *pLast; | ||
54 | int32_t iLength; | ||
55 | }; | ||
56 | |||
57 | class TextBuilder : public Bu::SharedCore<TextBuilder, TextBuilderCore> | ||
58 | { | ||
59 | protected: | ||
60 | using SharedCore<TextBuilder, TextBuilderCore>::core; | ||
61 | using SharedCore<TextBuilder, TextBuilderCore>::_hardCopy; | ||
62 | |||
63 | public: | ||
64 | TextBuilder(); | ||
65 | TextBuilder( const Text &rSrc ); | ||
66 | TextBuilder( const TextBuilder &rSrc ); | ||
67 | virtual ~TextBuilder(); | ||
68 | |||
69 | void set( const Text &rSrc ); | ||
70 | void append( const Text &rSrc ); | ||
71 | void append( const CodePoint *pSrc, int32_t iLength ); | ||
72 | void prepend( const Text &rSrc ); | ||
73 | void insert( const Text &rSrc ); | ||
74 | void clear(); | ||
75 | |||
76 | int32_t getSize() const; | ||
77 | Text getText() const; | ||
78 | void copyTo( void *pDestRaw, int32_t iDestSize ) const; | ||
79 | CodePoint operator[]( int32_t iIndex ) const; | ||
80 | |||
81 | TextBuilder &operator=( const Text &rSrc ); | ||
82 | TextBuilder &operator==( const Text &rSrc ); | ||
83 | }; | ||
84 | } | ||
85 | |||
86 | #endif | ||
8 | 87 | ||
diff --git a/src/unstable/textcodec.cpp b/src/unstable/textcodec.cpp index e69de29..0ac791e 100644 --- a/src/unstable/textcodec.cpp +++ b/src/unstable/textcodec.cpp | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/textcodec.h" | ||
9 | |||
10 | Bu::TextCodec::TextCodec() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | Bu::TextCodec::~TextCodec() | ||
15 | { | ||
16 | } | ||
17 | |||
diff --git a/src/unstable/textcodec.h b/src/unstable/textcodec.h index e69de29..6ae392e 100644 --- a/src/unstable/textcodec.h +++ b/src/unstable/textcodec.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #ifndef TEXT_CODEC_H | ||
9 | #define TEXT_CODEC_H | ||
10 | |||
11 | #include "bu/text.h" | ||
12 | #include "bu/blob.h" | ||
13 | |||
14 | namespace Bu | ||
15 | { | ||
16 | class Text; | ||
17 | class Blob; | ||
18 | class TextBuilder; | ||
19 | class BlobBuilder; | ||
20 | |||
21 | /** | ||
22 | * Represents a textual format and the routines to convert from that | ||
23 | * format to unicode code points and vica versa. | ||
24 | */ | ||
25 | class TextCodec | ||
26 | { | ||
27 | public: | ||
28 | TextCodec(); | ||
29 | virtual ~TextCodec(); | ||
30 | |||
31 | // virtual Blob encode( const Text &rSource ); | ||
32 | // virtual Text decode( const Blob &rSource, int32_t &rBytesUsed ); | ||
33 | |||
34 | virtual void encode( BlobBuilder &rTarget, const Text &rSource )=0; | ||
35 | virtual int32_t decode( TextBuilder &rTarget, const Blob &rSource )=0; | ||
36 | |||
37 | private: | ||
38 | }; | ||
39 | }; | ||
40 | |||
41 | #endif | ||
diff --git a/src/unstable/textcodecutf8.cpp b/src/unstable/textcodecutf8.cpp index e69de29..ce4e0a2 100644 --- a/src/unstable/textcodecutf8.cpp +++ b/src/unstable/textcodecutf8.cpp | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/textcodecutf8.h" | ||
9 | |||
10 | Bu::TextCodecUtf8::TextCodecUtf8() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | Bu::TextCodecUtf8::~TextCodecUtf8() | ||
15 | { | ||
16 | } | ||
17 | |||
18 | void Bu::TextCodecUtf8::encode( BlobBuilder &rTarget, const Text &rSource ) | ||
19 | { | ||
20 | } | ||
21 | |||
22 | int32_t Bu::TextCodecUtf8::decode( TextBuilder &rTarget, const Blob &rSource ) | ||
23 | { | ||
24 | } | ||
25 | |||
diff --git a/src/unstable/textcodecutf8.h b/src/unstable/textcodecutf8.h index e69de29..f565f57 100644 --- a/src/unstable/textcodecutf8.h +++ b/src/unstable/textcodecutf8.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #ifndef TEXT_CODEC_UTF8_H | ||
9 | #define TEXT_CODEC_UTF8_H | ||
10 | |||
11 | #include "bu/textcodec.h" | ||
12 | |||
13 | namespace Bu | ||
14 | { | ||
15 | class TextCodecUtf8 : public TextCodec | ||
16 | { | ||
17 | public: | ||
18 | TextCodecUtf8(); | ||
19 | virtual ~TextCodecUtf8(); | ||
20 | |||
21 | virtual void encode( BlobBuilder &rTarget, const Text &rSource ); | ||
22 | virtual int32_t decode( TextBuilder &rTarget, const Blob &rSource ); | ||
23 | }; | ||
24 | } | ||
25 | |||
26 | #endif | ||