Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : /****************** I N C L U D E S **************************************/
21 : #include <stdio.h>
22 : #include <string.h>
23 : #include <ctype.h>
24 :
25 : // Solar Definitionen
26 : #include <tools/solar.h>
27 : #include <rsctools.hxx>
28 :
29 : #include <rtl/textcvt.h>
30 : #include <rtl/textenc.h>
31 : #include <rtl/alloc.h>
32 :
33 : /*************************************************************************
34 : |*
35 : |* RscChar::MakeChar()
36 : |*
37 : |* Beschreibung Der String wird nach C-Konvention umgesetzt
38 : |*
39 : *************************************************************************/
40 35811 : char * RscChar::MakeUTF8( char * pStr, sal_uInt16 nTextEncoding )
41 : {
42 35811 : sal_Size nMaxUniCodeBuf = strlen( pStr ) + 1;
43 35811 : if( nMaxUniCodeBuf * 6 > 0x0FFFFF )
44 0 : RscExit( 10 );
45 :
46 35811 : char * pOrgStr = new char[ nMaxUniCodeBuf ];
47 35811 : sal_uInt32 nOrgLen = 0;
48 :
49 35811 : char cOld = '1';
50 895546 : while( cOld != 0 )
51 : {
52 : char c;
53 :
54 823924 : if( *pStr == '\\' )
55 : {
56 992 : ++pStr;
57 992 : switch( *pStr )
58 : {
59 : case 'a':
60 0 : c = '\a';
61 0 : break;
62 : case 'b':
63 1 : c = '\b';
64 1 : break;
65 : case 'f':
66 0 : c = '\f';
67 0 : break;
68 : case 'n':
69 570 : c = '\n';
70 570 : break;
71 : case 'r':
72 0 : c = '\r';
73 0 : break;
74 : case 't':
75 57 : c = '\t';
76 57 : break;
77 : case 'v':
78 0 : c = '\v';
79 0 : break;
80 : case '\\':
81 5 : c = '\\';
82 5 : break;
83 : case '?':
84 0 : c = '\?';
85 0 : break;
86 : case '\'':
87 80 : c = '\'';
88 80 : break;
89 : case '\"':
90 277 : c = '\"';
91 277 : break;
92 : default:
93 : {
94 2 : if( '0' <= *pStr && '7' >= *pStr )
95 : {
96 2 : sal_uInt16 nChar = 0;
97 2 : int i = 0;
98 10 : while( '0' <= *pStr && '7' >= *pStr && i != 3 )
99 : {
100 6 : nChar = nChar * 8 + (sal_uInt8)*pStr - (sal_uInt8)'0';
101 6 : ++pStr;
102 6 : i++;
103 : }
104 2 : if( nChar > 255 )
105 : {
106 : // Wert zu gross, oder kein 3 Ziffern
107 0 : delete [] pOrgStr;
108 0 : return( NULL );
109 : }
110 2 : c = (char)nChar;
111 2 : pStr--;
112 : }
113 0 : else if( 'x' == *pStr )
114 : {
115 0 : sal_uInt16 nChar = 0;
116 0 : int i = 0;
117 0 : ++pStr;
118 0 : while( isxdigit( *pStr ) && i != 2 )
119 : {
120 0 : if( isdigit( *pStr ) )
121 0 : nChar = nChar * 16 + (sal_uInt8)*pStr - (sal_uInt8)'0';
122 0 : else if( isupper( *pStr ) )
123 0 : nChar = nChar * 16 + (sal_uInt8)*pStr - (sal_uInt8)'A' +10;
124 : else
125 0 : nChar = nChar * 16 + (sal_uInt8)*pStr - (sal_uInt8)'a' +10;
126 0 : ++pStr;
127 0 : i++;
128 : }
129 0 : c = (char)nChar;
130 0 : pStr--;
131 : }
132 : else
133 0 : c = *pStr;
134 : };
135 : }
136 : }
137 : else
138 822932 : c = *pStr;
139 823924 : pOrgStr[ nOrgLen++ ] = c;
140 823924 : cOld = *pStr;
141 823924 : pStr++;
142 : }
143 :
144 35811 : sal_Unicode * pUniCode = new sal_Unicode[ nMaxUniCodeBuf ];
145 35811 : rtl_TextToUnicodeConverter hConv = rtl_createTextToUnicodeConverter( nTextEncoding );
146 :
147 : sal_uInt32 nInfo;
148 : sal_Size nSrcCvtBytes;
149 : sal_Size nUniSize = rtl_convertTextToUnicode( hConv, 0,
150 : pOrgStr, nOrgLen,
151 : pUniCode, nMaxUniCodeBuf,
152 : RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_DEFAULT
153 : | RTL_TEXTTOUNICODE_FLAGS_MBUNDEFINED_DEFAULT
154 : | RTL_TEXTTOUNICODE_FLAGS_INVALID_DEFAULT
155 : | RTL_TEXTTOUNICODE_FLAGS_FLUSH,
156 : &nInfo,
157 35811 : &nSrcCvtBytes );
158 :
159 35811 : rtl_destroyTextToUnicodeConverter( hConv );
160 35811 : delete[] pOrgStr, pOrgStr = 0;
161 :
162 35811 : hConv = rtl_createUnicodeToTextConverter( RTL_TEXTENCODING_UTF8 );
163 : // factor fo 6 is the maximum size of an UNICODE character as utf8
164 35811 : char * pUtf8 = (char *)rtl_allocateMemory( nUniSize * 6 );
165 : rtl_convertUnicodeToText( hConv, 0,
166 : pUniCode, nUniSize,
167 : pUtf8, nUniSize * 6,
168 : RTL_UNICODETOTEXT_FLAGS_UNDEFINED_DEFAULT
169 : | RTL_UNICODETOTEXT_FLAGS_INVALID_DEFAULT
170 : | RTL_UNICODETOTEXT_FLAGS_FLUSH,
171 : &nInfo,
172 35811 : &nSrcCvtBytes );
173 :
174 35811 : rtl_destroyTextToUnicodeConverter( hConv );
175 35811 : delete[] pUniCode, pUniCode = 0;
176 :
177 35811 : return pUtf8;
178 : };
179 :
180 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|