Use QCollator in QString and remove it from qlocale_icu
[profile/ivi/qtbase.git] / src / corelib / tools / qlocale_icu.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtCore module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qglobal.h"
43 #include "qlibrary.h"
44 #include "qdebug.h"
45 #include "qlocale_p.h"
46 #include "qmutex.h"
47
48 #include "unicode/uloc.h"
49 #include "unicode/ustring.h"
50
51 QT_BEGIN_NAMESPACE
52
53 typedef int32_t (*Ptr_u_strToCase)(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, const char *locale, UErrorCode *pErrorCode);
54
55 // caseFunc can either be u_strToUpper or u_strToLower
56 static bool qt_u_strToCase(const QString &str, QString *out, const char *localeID, Ptr_u_strToCase caseFunc)
57 {
58     Q_ASSERT(out);
59
60     int32_t size = str.size();
61     size += size >> 2; // add 25% for possible expansions
62     QString result(size, Qt::Uninitialized);
63
64     UErrorCode status = U_ZERO_ERROR;
65
66     size = caseFunc(reinterpret_cast<UChar *>(result.data()), result.size(),
67             reinterpret_cast<const UChar *>(str.constData()), str.size(),
68             localeID, &status);
69
70     if (U_FAILURE(status) && status != U_BUFFER_OVERFLOW_ERROR)
71         return false;
72
73     if (size < result.size()) {
74         result.resize(size);
75     } else if (size > result.size()) {
76         // the resulting string is larger than our source string
77         result.resize(size);
78
79         status = U_ZERO_ERROR;
80         size = caseFunc(reinterpret_cast<UChar *>(result.data()), result.size(),
81             reinterpret_cast<const UChar *>(str.constData()), str.size(),
82             localeID, &status);
83
84         if (U_FAILURE(status))
85             return false;
86
87         // if the sizes don't match now, we give up.
88         if (size != result.size())
89             return false;
90     }
91
92     *out = result;
93     return true;
94 }
95
96 QString QIcu::toUpper(const QByteArray &localeID, const QString &str, bool *ok)
97 {
98     QString out;
99     bool err = qt_u_strToCase(str, &out, localeID, u_strToUpper);
100     if (ok)
101         *ok = err;
102     return out;
103 }
104
105 QString QIcu::toLower(const QByteArray &localeID, const QString &str, bool *ok)
106 {
107     QString out;
108     bool err = qt_u_strToCase(str, &out, localeID, u_strToLower);
109     if (ok)
110         *ok = err;
111     return out;
112 }
113
114 QT_END_NAMESPACE