-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathcharsetdecoder.cpp
More file actions
595 lines (508 loc) · 13.7 KB
/
charsetdecoder.cpp
File metadata and controls
595 lines (508 loc) · 13.7 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define NOMINMAX /* tell windows not to define min/max macros */
#include <log4cxx/private/string_c11.h>
#include <log4cxx/logstring.h>
#include <log4cxx/helpers/charsetdecoder.h>
#include <log4cxx/helpers/bytebuffer.h>
#include <log4cxx/helpers/exception.h>
#include <log4cxx/helpers/pool.h>
#include <log4cxx/helpers/loglog.h>
#include <apr_xlate.h>
#if !defined(LOG4CXX)
#define LOG4CXX 1
#endif
#include <log4cxx/private/log4cxx_private.h>
#include <locale.h>
#include <apr_portable.h>
#include <log4cxx/helpers/stringhelper.h>
#include <log4cxx/helpers/transcoder.h>
#include <mutex>
using namespace LOG4CXX_NS;
using namespace LOG4CXX_NS::helpers;
IMPLEMENT_LOG4CXX_OBJECT(CharsetDecoder)
namespace LOG4CXX_NS
{
namespace helpers
{
#if APR_HAS_XLATE
/**
* Converts from an arbitrary encoding to LogString
* using apr_xlate. Requires real iconv implementation,
* apr-iconv will crash in use.
*/
class APRCharsetDecoder : public CharsetDecoder
{
public:
/**
* Creates a new instance.
* @param frompage name of source encoding.
*/
APRCharsetDecoder(const LogString& frompage) : pool()
{
#if LOG4CXX_LOGCHAR_IS_WCHAR
const char* topage = "WCHAR_T";
#endif
#if LOG4CXX_LOGCHAR_IS_UTF8
const char* topage = "UTF-8";
#endif
#if LOG4CXX_LOGCHAR_IS_UNICHAR
const char* topage = "UTF-16";
#endif
std::string fpage(Transcoder::encodeCharsetName(frompage));
apr_status_t stat = apr_xlate_open(&convset,
topage,
fpage.c_str(),
pool.getAPRPool());
if (stat != APR_SUCCESS)
{
throw IllegalArgumentException(frompage);
}
}
/**
* Destructor.
*/
virtual ~APRCharsetDecoder()
{
}
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
enum { BUFSIZE = 256 };
logchar buf[BUFSIZE];
const apr_size_t initial_outbytes_left = BUFSIZE * sizeof(logchar);
apr_status_t stat = APR_SUCCESS;
if (in.remaining() == 0)
{
size_t outbytes_left = initial_outbytes_left;
{
std::lock_guard<std::mutex> lock(mutex);
stat = apr_xlate_conv_buffer((apr_xlate_t*) convset,
NULL, NULL, (char*) buf, &outbytes_left);
}
out.append(buf, (initial_outbytes_left - outbytes_left) / sizeof(logchar));
}
else
{
while (in.remaining() > 0 && stat == APR_SUCCESS)
{
size_t inbytes_left = in.remaining();
size_t initial_inbytes_left = inbytes_left;
apr_size_t outbytes_left = initial_outbytes_left;
{
std::lock_guard<std::mutex> lock(mutex);
stat = apr_xlate_conv_buffer((apr_xlate_t*) convset,
in.current(),
&inbytes_left,
(char*) buf,
&outbytes_left);
}
out.append(buf, (initial_outbytes_left - outbytes_left) / sizeof(logchar));
if (inbytes_left == initial_inbytes_left && stat == APR_SUCCESS)
{
stat = APR_BADCH;
break;
}
in.increment_position(initial_inbytes_left - inbytes_left);
}
}
return stat;
}
private:
APRCharsetDecoder(const APRCharsetDecoder&);
APRCharsetDecoder& operator=(const APRCharsetDecoder&);
LOG4CXX_NS::helpers::Pool pool;
std::mutex mutex;
apr_xlate_t* convset;
};
#endif
#if LOG4CXX_LOGCHAR_IS_WCHAR && LOG4CXX_HAS_MBSRTOWCS
/**
* Converts from the default multi-byte string to
* LogString using mbstowcs.
*
*/
class MbstowcsCharsetDecoder : public CharsetDecoder
{
public:
MbstowcsCharsetDecoder()
{
}
virtual ~MbstowcsCharsetDecoder()
{
}
private:
inline log4cxx_status_t append(LogString& out, const wchar_t* buf)
{
out.append(buf);
return APR_SUCCESS;
}
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
log4cxx_status_t stat = APR_SUCCESS;
enum { BUFSIZE = 256 };
wchar_t wbuf[BUFSIZE];
char cbuf[BUFSIZE*4];
mbstate_t mbstate;
memset(&mbstate, 0, sizeof(mbstate));
while (in.remaining() > 0)
{
const char* src = in.current();
if (*src == 0)
{
out.append(1, (logchar) 0);
in.increment_position(1);
}
else
{
auto available = std::min(sizeof (cbuf) - 1, in.remaining());
strncpy(cbuf, src, available);
cbuf[available] = 0;
src = cbuf;
size_t wCharCount = mbsrtowcs(wbuf,
&src,
BUFSIZE - 1,
&mbstate);
auto converted = src - cbuf;
in.increment_position(converted);
if (wCharCount == (size_t) -1) // Illegal byte sequence?
{
LogString msg(LOG4CXX_STR("Illegal byte sequence at "));
msg.append(std::to_wstring(in.position()));
msg.append(LOG4CXX_STR(" of "));
msg.append(std::to_wstring(in.limit()));
LogLog::warn(msg);
stat = APR_BADCH;
break;
}
else
{
// FIX: Check for incomplete sequence infinite loop.
// If mbsrtowcs returns success (>=0) but converted 0 bytes while data remains,
// we are stuck (e.g. incomplete multibyte char at EOF).
if (converted == 0 && in.remaining() > 0)
{
LogString msg(LOG4CXX_STR("Incomplete multibyte sequence at end of buffer"));
LogLog::warn(msg);
stat = APR_BADCH;
break; // Break the infinite loop
}
wbuf[wCharCount] = 0;
stat = append(out, wbuf);
}
}
}
return stat;
}
private:
MbstowcsCharsetDecoder(const MbstowcsCharsetDecoder&);
MbstowcsCharsetDecoder& operator=(const MbstowcsCharsetDecoder&);
};
#endif
/**
* Decoder used when the external and internal charsets
* are the same.
*
*/
class TrivialCharsetDecoder : public CharsetDecoder
{
public:
TrivialCharsetDecoder()
{
}
virtual ~TrivialCharsetDecoder()
{
}
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
size_t remaining = in.remaining();
if ( remaining > 0)
{
auto src = in.current();
auto count = remaining / sizeof(logchar);
out.append(reinterpret_cast<const logchar*>(src), count);
in.increment_position(remaining);
}
return APR_SUCCESS;
}
private:
TrivialCharsetDecoder(const TrivialCharsetDecoder&);
TrivialCharsetDecoder& operator=(const TrivialCharsetDecoder&);
};
/**
* Converts from UTF-8 to std::wstring
*
*/
class UTF8CharsetDecoder : public CharsetDecoder
{
public:
UTF8CharsetDecoder()
{
}
virtual ~UTF8CharsetDecoder()
{
}
private:
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
auto availableByteCount = in.remaining();
std::string tmp(in.current(), availableByteCount);
std::string::const_iterator nextCodePoint = tmp.begin();
while (nextCodePoint != tmp.end())
{
auto lastCodePoint = nextCodePoint;
auto sv = Transcoder::decode(tmp, nextCodePoint);
if (sv == 0xFFFF || nextCodePoint == lastCodePoint)
{
size_t offset = nextCodePoint - tmp.begin();
in.increment_position(offset);
return APR_BADCH;
}
else
{
Transcoder::encode(sv, out);
}
}
in.increment_position(availableByteCount);
return APR_SUCCESS;
}
private:
UTF8CharsetDecoder(const UTF8CharsetDecoder&);
UTF8CharsetDecoder& operator=(const UTF8CharsetDecoder&);
};
/**
* Converts from ISO-8859-1 to LogString.
*
*/
class ISOLatinCharsetDecoder : public CharsetDecoder
{
public:
ISOLatinCharsetDecoder()
{
}
virtual ~ISOLatinCharsetDecoder()
{
}
private:
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
auto availableByteCount = in.remaining();
auto src = in.current();
auto srcEnd = src + availableByteCount;
while (src < srcEnd)
{
auto sv = static_cast<unsigned int>(*src++);
Transcoder::encode(sv, out);
}
in.increment_position(availableByteCount);
return APR_SUCCESS;
}
private:
ISOLatinCharsetDecoder(const ISOLatinCharsetDecoder&);
ISOLatinCharsetDecoder& operator=(const ISOLatinCharsetDecoder&);
};
/**
* Converts from US-ASCII to LogString.
*
*/
class USASCIICharsetDecoder : public CharsetDecoder
{
public:
USASCIICharsetDecoder()
{
}
virtual ~USASCIICharsetDecoder()
{
}
private:
virtual log4cxx_status_t decode(ByteBuffer& in,
LogString& out)
{
log4cxx_status_t stat = APR_SUCCESS;
auto availableByteCount = in.remaining();
auto src = in.current();
auto srcEnd = src + availableByteCount;
size_t byteCount = 0;
while (src < srcEnd)
{
auto sv = static_cast<unsigned int>(*src++);
if (sv < 0x80)
{
++byteCount;
Transcoder::encode(sv, out);
}
else
{
stat = APR_BADCH;
break;
}
}
in.increment_position(byteCount);
return stat;
}
private:
USASCIICharsetDecoder(const USASCIICharsetDecoder&);
USASCIICharsetDecoder& operator=(const USASCIICharsetDecoder&);
};
/**
* Charset decoder that uses current locale settings.
*/
class LocaleCharsetDecoder : public CharsetDecoder
{
public:
LocaleCharsetDecoder() : state()
{
}
log4cxx_status_t decode(ByteBuffer& in, LogString& out) override
{
log4cxx_status_t result = APR_SUCCESS;
auto p = in.current();
auto availableByteCount = in.remaining();
size_t byteCount = 0;
#if !LOG4CXX_CHARSET_EBCDIC
if (std::mbsinit(&this->state)) // ByteBuffer not partially decoded?
{
// Copy single byte characters
for (; byteCount < availableByteCount && static_cast<unsigned int>(*p) < 0x80; ++byteCount, ++p)
{
out.append(1, *p);
}
}
#endif
// Decode characters that may be represented by multiple bytes
while (byteCount < availableByteCount)
{
wchar_t ch = 0;
size_t n = std::mbrtowc(&ch, p, availableByteCount - byteCount, &this->state);
if (0 == n) // NULL encountered?
{
++byteCount;
break;
}
if (static_cast<std::size_t>(-1) == n) // decoding error?
{
result = APR_BADCH;
break;
}
if (static_cast<std::size_t>(-2) == n) // incomplete sequence?
{
break;
}
Transcoder::encode(static_cast<unsigned int>(ch), out);
byteCount += n;
p += n;
}
in.increment_position(byteCount);
return result;
}
private:
std::mbstate_t state;
};
} // namespace helpers
} //namespace log4cxx
CharsetDecoder::CharsetDecoder()
{
}
CharsetDecoder::~CharsetDecoder()
{
}
CharsetDecoder* CharsetDecoder::createDefaultDecoder()
{
#if LOG4CXX_CHARSET_UTF8
#if LOG4CXX_LOGCHAR_IS_UTF8
return new TrivialCharsetDecoder();
#else
return new UTF8CharsetDecoder();
#endif
#elif LOG4CXX_CHARSET_ISO88591 || defined(_WIN32_WCE)
return new ISOLatinCharsetDecoder();
#elif LOG4CXX_CHARSET_USASCII
return new USASCIICharsetDecoder();
#elif LOG4CXX_LOGCHAR_IS_WCHAR && LOG4CXX_HAS_MBSRTOWCS
return new MbstowcsCharsetDecoder();
#else
return new LocaleCharsetDecoder();
#endif
}
CharsetDecoderPtr CharsetDecoder::getDefaultDecoder()
{
static WideLife<CharsetDecoderPtr> decoder(createDefaultDecoder());
//
// if invoked after static variable destruction
// (if logging is called in the destructor of a static object)
// then create a new decoder.
//
if (decoder.value() == 0)
{
return CharsetDecoderPtr( createDefaultDecoder() );
}
return decoder;
}
CharsetDecoderPtr CharsetDecoder::getUTF8Decoder()
{
return std::make_shared<UTF8CharsetDecoder>();
}
CharsetDecoderPtr CharsetDecoder::getISOLatinDecoder()
{
return std::make_shared<ISOLatinCharsetDecoder>();
}
CharsetDecoderPtr CharsetDecoder::getDecoder(const LogString& charset)
{
if (StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("UTF-8"), LOG4CXX_STR("utf-8")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("UTF8"), LOG4CXX_STR("utf8")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("CP65001"), LOG4CXX_STR("cp65001")))
{
#if LOG4CXX_LOGCHAR_IS_UTF8
return std::make_shared<TrivialCharsetDecoder>();
#else
return std::make_shared<UTF8CharsetDecoder>();
#endif
}
else if (StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("C"), LOG4CXX_STR("c")) ||
charset == LOG4CXX_STR("646") ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("US-ASCII"), LOG4CXX_STR("us-ascii")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("ISO646-US"), LOG4CXX_STR("iso646-US")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("ANSI_X3.4-1968"), LOG4CXX_STR("ansi_x3.4-1968")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("CP20127"), LOG4CXX_STR("cp20127")))
{
return std::make_shared<USASCIICharsetDecoder>();
}
else if (StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("ISO-8859-1"), LOG4CXX_STR("iso-8859-1")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("ISO-LATIN-1"), LOG4CXX_STR("iso-latin-1")) ||
StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("CP1252"), LOG4CXX_STR("cp1252")))
{
return std::make_shared<ISOLatinCharsetDecoder>();
}
else if (StringHelper::equalsIgnoreCase(charset, LOG4CXX_STR("LOCALE"), LOG4CXX_STR("locale")))
{
return std::make_shared<LocaleCharsetDecoder>();
}
#if APR_HAS_XLATE
return std::make_shared<APRCharsetDecoder>(charset);
#else
throw IllegalArgumentException(charset);
#endif
}
log4cxx_status_t CharsetDecoder::decode(const char* in, size_t maxByteCount, LogString& out)
{
ByteBuffer buf((char*)in, strnlen_s(in, maxByteCount));
return decode(buf, out);
}