blob: 172158d379676b873c6234e3822172509229a778 (
plain) (
blame)
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
|
//
// Unicode.cpp
//
// Library: Foundation
// Package: Text
// Module: Unicode
//
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Unicode.h"
extern "C"
{
#include "pcre_config.h"
#include "pcre_internal.h"
}
namespace Poco {
void Unicode::properties(int ch, CharacterProperties& props)
{
if (ch > UCP_MAX_CODEPOINT) ch = 0;
const ucd_record* ucd = GET_UCD(ch);
props.category = static_cast<CharacterCategory>(_pcre_ucp_gentype[ucd->chartype]);
props.type = static_cast<CharacterType>(ucd->chartype);
props.script = static_cast<Script>(ucd->script);
}
int Unicode::toLower(int ch)
{
if (isUpper(ch))
return static_cast<int>(UCD_OTHERCASE(static_cast<unsigned>(ch)));
else
return ch;
}
int Unicode::toUpper(int ch)
{
if (isLower(ch))
return static_cast<int>(UCD_OTHERCASE(static_cast<unsigned>(ch)));
else
return ch;
}
} // namespace Poco
|