summaryrefslogtreecommitdiff
path: root/i18npool/source/transliteration/transliteration_Numeric.cxx
blob: e0717379ed4c70f00d4ba2d759f774d2bfbaee7a (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   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 .
 */


#include <com/sun/star/i18n/TransliterationType.hpp>

#include <transliteration_Numeric.hxx>
#include <nativenumbersupplier.hxx>
#include <rtl/ref.hxx>

using namespace com::sun::star::i18n;
using namespace com::sun::star::uno;


namespace i18npool {

sal_Int16 SAL_CALL transliteration_Numeric::getType()
{
    return TransliterationType::NUMERIC;
}

OUString
    transliteration_Numeric::foldingImpl( const OUString& /*inStr*/, sal_Int32 /*startPos*/, sal_Int32 /*nCount*/, Sequence< sal_Int32 >* /*pOffset*/ )
{
    throw RuntimeException();
}

sal_Bool SAL_CALL
    transliteration_Numeric::equals( const OUString& /*str1*/, sal_Int32 /*pos1*/, sal_Int32 /*nCount1*/, sal_Int32& /*nMatch1*/, const OUString& /*str2*/, sal_Int32 /*pos2*/, sal_Int32 /*nCount2*/, sal_Int32& /*nMatch2*/ )
{
    throw RuntimeException();
}

Sequence< OUString > SAL_CALL
    transliteration_Numeric::transliterateRange( const OUString& /*str1*/, const OUString& /*str2*/ )
{
    throw RuntimeException();
}


#define isNumber(c) ((c) >= 0x30 && (c) <= 0x39)
#define NUMBER_ZERO 0x30

OUString
transliteration_Numeric::transliterateBullet( std::u16string_view inStr, sal_Int32 startPos, sal_Int32 nCount,
        Sequence< sal_Int32 >* pOffset ) const
{
    sal_Int32 number = -1, j = 0, endPos = startPos + nCount;

    if (endPos > static_cast<sal_Int32>(inStr.size()))
        endPos = inStr.size();

    rtl_uString* pStr = rtl_uString_alloc(nCount);
    sal_Unicode* out = pStr->buffer;

    if (pOffset)
        pOffset->realloc(nCount);
    auto ppOffset = pOffset ? pOffset->getArray() : nullptr;

    for (sal_Int32 i = startPos; i < endPos; i++) {
        if (isNumber(inStr[i]))
        {
            if (number == -1) {
                startPos = i;
                number = (inStr[i] - NUMBER_ZERO);
            } else  {
                number = number * 10 + (inStr[i] - NUMBER_ZERO);
            }
        } else {
            if (number == 0) {
                if (ppOffset)
                    ppOffset[j] = startPos;
                out[j++] = NUMBER_ZERO;
            } else if (number > tableSize && !recycleSymbol) {
                for (sal_Int32 k = startPos; k < i; k++) {
                    if (ppOffset)
                        ppOffset[j] = k;
                    out[j++] = inStr[k];
                }
            } else if (number > 0) {
                if (ppOffset)
                    ppOffset[j] = startPos;
                out[j++] = table[--number % tableSize];
            } else if (i < endPos) {
                if (ppOffset)
                    ppOffset[j] = i;
                out[j++] = inStr[i];
            }
            number = -1;
        }
    }
    out[j] = 0;

    if (pOffset)
        pOffset->realloc(j);

    return OUString( pStr, SAL_NO_ACQUIRE );
}

OUString
transliteration_Numeric::transliterateImpl( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
        Sequence< sal_Int32 >* pOffset )
{
    if (tableSize)
        return transliterateBullet( inStr, startPos, nCount, pOffset);
    else
        return rtl::Reference(new NativeNumberSupplierService())->getNativeNumberString( inStr.copy(startPos, nCount), aLocale, nNativeNumberMode, pOffset );
}

sal_Unicode SAL_CALL
transliteration_Numeric::transliterateChar2Char( sal_Unicode inChar )
{
    if (tableSize) {
        if (isNumber(inChar)) {
            sal_Int16 number = inChar - NUMBER_ZERO;
            if (number <= tableSize || recycleSymbol)
                return table[--number % tableSize];
        }
        return inChar;
    }
    else
        return NativeNumberSupplierService::getNativeNumberChar( inChar, aLocale, nNativeNumberMode );
}

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */