OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / libs / qtcreatorcdbext / base64.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #include "base64.h"
34
35 #include <sstream>
36
37 template <class OStream>
38 static void base64EncodeTriple(OStream &str, const unsigned char triple[3], size_t length = 3)
39 {
40     static const char base64Encoding[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
41
42     // Convert 3 bytes of triplet into 4 bytes, write out 64 bit-wise using a character mapping,
43     // see description of base64.
44     unsigned tripleValue = triple[0] * 256;
45     tripleValue += triple[1];
46     tripleValue *= 256;
47     tripleValue += triple[2];
48
49     char result[4]= {0, 0, 0, 0};
50     for (int i = 3; i >= 0 ; i--) {
51         result[i] = base64Encoding[tripleValue % 64];
52         tripleValue /= 64;
53     }
54
55     // Write out quad and pad if it is a padding triple.
56     const size_t writeLength = length + 1;
57     size_t i = 0;
58     for ( ; i < writeLength; i++)
59         str << result[i];
60     for ( ; i < 4; i++)
61         str << '=';
62 }
63
64 template <class OStream>
65 void base64EncodeHelper(OStream &str, const unsigned char *source, size_t sourcelen)
66 {
67     if (!sourcelen) {
68         str << "====";
69         return;
70     }
71     /* Encode triples */
72     const unsigned char *sourceEnd = source + sourcelen;
73     for (const unsigned char *triple = source; triple < sourceEnd; ) {
74         const unsigned char *nextTriple = triple + 3;
75         if (nextTriple <= sourceEnd) { // Encode full triple, including very last one
76             base64EncodeTriple(str, triple);
77             triple = nextTriple;
78         } else { // Past end and some padding required.
79             unsigned char paddingTriple[3] = {0, 0, 0};
80             std::copy(triple, sourceEnd, paddingTriple);
81             base64EncodeTriple(str, paddingTriple, sourceEnd - triple);
82             break;
83         }
84     }
85 }
86
87 void base64Encode(std::ostream &str, const unsigned char *source, size_t sourcelen)
88 {
89     base64EncodeHelper(str, source, sourcelen);
90 }
91
92 std::string base64EncodeToString(const unsigned char *source, size_t sourcelen)
93 {
94     std::ostringstream str;
95     base64Encode(str, source, sourcelen);
96     return str.str();
97 }
98
99 void base64EncodeW(std::wostream &str, const unsigned char *source, size_t sourcelen)
100 {
101     base64EncodeHelper(str, source, sourcelen);
102 }
103
104 std::wstring base64EncodeToWString(const unsigned char *source, size_t sourcelen)
105 {
106     std::wostringstream str;
107     base64EncodeW(str, source, sourcelen);
108     return str.str();
109 }