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 :
21 : #include "vcl/strhelper.hxx"
22 : #include "sal/alloca.h"
23 :
24 : namespace psp {
25 :
26 0 : inline int isSpace( char cChar )
27 : {
28 : return
29 : cChar == ' ' || cChar == '\t' ||
30 : cChar == '\r' || cChar == '\n' ||
31 0 : cChar == 0x0c || cChar == 0x0b;
32 : }
33 :
34 876 : inline int isSpace( sal_Unicode cChar )
35 : {
36 : return
37 : cChar == ' ' || cChar == '\t' ||
38 : cChar == '\r' || cChar == '\n' ||
39 876 : cChar == 0x0c || cChar == 0x0b;
40 : }
41 :
42 0 : inline int isProtect( char cChar )
43 : {
44 0 : return cChar == '`' || cChar == '\'' || cChar == '"';
45 : }
46 :
47 0 : inline int isProtect( sal_Unicode cChar )
48 : {
49 0 : return cChar == '`' || cChar == '\'' || cChar == '"';
50 : }
51 :
52 0 : inline void CopyUntil( char*& pTo, const char*& pFrom, char cUntil, int bIncludeUntil = 0 )
53 : {
54 0 : do
55 : {
56 0 : if( *pFrom == '\\' )
57 : {
58 0 : pFrom++;
59 0 : if( *pFrom )
60 : {
61 0 : *pTo = *pFrom;
62 0 : pTo++;
63 : }
64 : }
65 0 : else if( bIncludeUntil || ! isProtect( *pFrom ) )
66 : {
67 0 : *pTo = *pFrom;
68 0 : pTo++;
69 : }
70 0 : pFrom++;
71 : } while( *pFrom && *pFrom != cUntil );
72 : // copy the terminating character unless zero or protector
73 0 : if( ! isProtect( *pFrom ) || bIncludeUntil )
74 : {
75 0 : *pTo = *pFrom;
76 0 : if( *pTo )
77 0 : pTo++;
78 : }
79 0 : if( *pFrom )
80 0 : pFrom++;
81 0 : }
82 :
83 0 : inline void CopyUntil( sal_Unicode*& pTo, const sal_Unicode*& pFrom, sal_Unicode cUntil, int bIncludeUntil = 0 )
84 : {
85 0 : do
86 : {
87 0 : if( *pFrom == '\\' )
88 : {
89 0 : pFrom++;
90 0 : if( *pFrom )
91 : {
92 0 : *pTo = *pFrom;
93 0 : pTo++;
94 : }
95 : }
96 0 : else if( bIncludeUntil || ! isProtect( *pFrom ) )
97 : {
98 0 : *pTo = *pFrom;
99 0 : pTo++;
100 : }
101 0 : pFrom++;
102 : } while( *pFrom && *pFrom != cUntil );
103 : // copy the terminating character unless zero or protector
104 0 : if( ! isProtect( *pFrom ) || bIncludeUntil )
105 : {
106 0 : *pTo = *pFrom;
107 0 : if( *pTo )
108 0 : pTo++;
109 : }
110 0 : if( *pFrom )
111 0 : pFrom++;
112 0 : }
113 :
114 0 : String GetCommandLineToken( int nToken, const String& rLine )
115 : {
116 0 : int nLen = rLine.Len();
117 0 : if( ! nLen )
118 0 : return String();
119 :
120 0 : int nActualToken = 0;
121 0 : sal_Unicode* pBuffer = (sal_Unicode*)alloca( sizeof(sal_Unicode)*( nLen + 1 ) );
122 0 : const sal_Unicode* pRun = rLine.GetBuffer();
123 0 : sal_Unicode* pLeap = NULL;
124 :
125 0 : while( *pRun && nActualToken <= nToken )
126 : {
127 0 : while( *pRun && isSpace( *pRun ) )
128 0 : pRun++;
129 0 : pLeap = pBuffer;
130 0 : while( *pRun && ! isSpace( *pRun ) )
131 : {
132 0 : if( *pRun == '\\' )
133 : {
134 : // escapement
135 0 : pRun++;
136 0 : *pLeap = *pRun;
137 0 : pLeap++;
138 0 : if( *pRun )
139 0 : pRun++;
140 : }
141 0 : else if( *pRun == '`' )
142 0 : CopyUntil( pLeap, pRun, '`' );
143 0 : else if( *pRun == '\'' )
144 0 : CopyUntil( pLeap, pRun, '\'' );
145 0 : else if( *pRun == '"' )
146 0 : CopyUntil( pLeap, pRun, '"' );
147 : else
148 : {
149 0 : *pLeap = *pRun;
150 0 : pLeap++;
151 0 : pRun++;
152 : }
153 : }
154 0 : if( nActualToken != nToken )
155 0 : pBuffer[0] = 0;
156 0 : nActualToken++;
157 : }
158 :
159 0 : *pLeap = 0;
160 :
161 0 : return rtl::OUString(pBuffer);
162 : }
163 :
164 0 : rtl::OString GetCommandLineToken(int nToken, const rtl::OString& rLine)
165 : {
166 0 : sal_Int32 nLen = rLine.getLength();
167 0 : if (!nLen)
168 0 : return rLine;
169 :
170 0 : int nActualToken = 0;
171 0 : char* pBuffer = (char*)alloca( nLen + 1 );
172 0 : const char* pRun = rLine.getStr();
173 0 : char* pLeap = NULL;
174 :
175 0 : while( *pRun && nActualToken <= nToken )
176 : {
177 0 : while( *pRun && isSpace( *pRun ) )
178 0 : pRun++;
179 0 : pLeap = pBuffer;
180 0 : while( *pRun && ! isSpace( *pRun ) )
181 : {
182 0 : if( *pRun == '\\' )
183 : {
184 : // escapement
185 0 : pRun++;
186 0 : *pLeap = *pRun;
187 0 : pLeap++;
188 0 : if( *pRun )
189 0 : pRun++;
190 : }
191 0 : else if( *pRun == '`' )
192 0 : CopyUntil( pLeap, pRun, '`' );
193 0 : else if( *pRun == '\'' )
194 0 : CopyUntil( pLeap, pRun, '\'' );
195 0 : else if( *pRun == '"' )
196 0 : CopyUntil( pLeap, pRun, '"' );
197 : else
198 : {
199 0 : *pLeap = *pRun;
200 0 : pLeap++;
201 0 : pRun++;
202 : }
203 : }
204 0 : if( nActualToken != nToken )
205 0 : pBuffer[0] = 0;
206 0 : nActualToken++;
207 : }
208 :
209 0 : *pLeap = 0;
210 :
211 0 : return rtl::OString(pBuffer);
212 : }
213 :
214 0 : int GetCommandLineTokenCount(const rtl::OUString& rLine)
215 : {
216 0 : if (rLine.isEmpty())
217 0 : return 0;
218 :
219 0 : int nTokenCount = 0;
220 0 : const sal_Unicode *pRun = rLine.getStr();
221 :
222 0 : while( *pRun )
223 : {
224 0 : while( *pRun && isSpace( *pRun ) )
225 0 : pRun++;
226 0 : if( ! *pRun )
227 0 : break;
228 0 : while( *pRun && ! isSpace( *pRun ) )
229 : {
230 0 : if( *pRun == '\\' )
231 : {
232 : // escapement
233 0 : pRun++;
234 0 : if( *pRun )
235 0 : pRun++;
236 : }
237 0 : else if( *pRun == '`' )
238 : {
239 0 : do pRun++; while( *pRun && *pRun != '`' );
240 0 : if( *pRun )
241 0 : pRun++;
242 : }
243 0 : else if( *pRun == '\'' )
244 : {
245 0 : do pRun++; while( *pRun && *pRun != '\'' );
246 0 : if( *pRun )
247 0 : pRun++;
248 : }
249 0 : else if( *pRun == '"' )
250 : {
251 0 : do pRun++; while( *pRun && *pRun != '"' );
252 0 : if( *pRun )
253 0 : pRun++;
254 : }
255 : else
256 0 : pRun++;
257 : }
258 0 : nTokenCount++;
259 : }
260 :
261 0 : return nTokenCount;
262 : }
263 :
264 70 : String WhitespaceToSpace( const String& rLine, sal_Bool bProtect )
265 : {
266 70 : int nLen = rLine.Len();
267 70 : if( ! nLen )
268 2 : return String();
269 :
270 68 : sal_Unicode *pBuffer = (sal_Unicode*)alloca( sizeof(sal_Unicode)*(nLen + 1) );
271 68 : const sal_Unicode *pRun = rLine.GetBuffer();
272 68 : sal_Unicode *pLeap = pBuffer;
273 :
274 246 : while( *pRun )
275 : {
276 110 : if( *pRun && isSpace( *pRun ) )
277 : {
278 110 : *pLeap = ' ';
279 110 : pLeap++;
280 110 : pRun++;
281 : }
282 220 : while( *pRun && isSpace( *pRun ) )
283 0 : pRun++;
284 836 : while( *pRun && ! isSpace( *pRun ) )
285 : {
286 616 : if( *pRun == '\\' )
287 : {
288 : // escapement
289 0 : pRun++;
290 0 : *pLeap = *pRun;
291 0 : pLeap++;
292 0 : if( *pRun )
293 0 : pRun++;
294 : }
295 616 : else if( bProtect && *pRun == '`' )
296 0 : CopyUntil( pLeap, pRun, '`', sal_True );
297 616 : else if( bProtect && *pRun == '\'' )
298 0 : CopyUntil( pLeap, pRun, '\'', sal_True );
299 616 : else if( bProtect && *pRun == '"' )
300 0 : CopyUntil( pLeap, pRun, '"', sal_True );
301 : else
302 : {
303 616 : *pLeap = *pRun;
304 616 : ++pLeap;
305 616 : ++pRun;
306 : }
307 : }
308 : }
309 :
310 68 : *pLeap = 0;
311 :
312 : // there might be a space at beginning or end
313 68 : pLeap--;
314 68 : if( *pLeap == ' ' )
315 2 : *pLeap = 0;
316 :
317 68 : return rtl::OUString(*pBuffer == ' ' ? pBuffer+1 : pBuffer);
318 : }
319 :
320 0 : rtl::OString WhitespaceToSpace(const rtl::OString& rLine, sal_Bool bProtect)
321 : {
322 0 : sal_Int32 nLen = rLine.getLength();
323 0 : if (!nLen)
324 0 : return rLine;
325 :
326 0 : char *pBuffer = (char*)alloca( nLen + 1 );
327 0 : const char *pRun = rLine.getStr();
328 0 : char *pLeap = pBuffer;
329 :
330 0 : while( *pRun )
331 : {
332 0 : if( *pRun && isSpace( *pRun ) )
333 : {
334 0 : *pLeap = ' ';
335 0 : pLeap++;
336 0 : pRun++;
337 : }
338 0 : while( *pRun && isSpace( *pRun ) )
339 0 : pRun++;
340 0 : while( *pRun && ! isSpace( *pRun ) )
341 : {
342 0 : if( *pRun == '\\' )
343 : {
344 : // escapement
345 0 : pRun++;
346 0 : *pLeap = *pRun;
347 0 : pLeap++;
348 0 : if( *pRun )
349 0 : pRun++;
350 : }
351 0 : else if( bProtect && *pRun == '`' )
352 0 : CopyUntil( pLeap, pRun, '`', sal_True );
353 0 : else if( bProtect && *pRun == '\'' )
354 0 : CopyUntil( pLeap, pRun, '\'', sal_True );
355 0 : else if( bProtect && *pRun == '"' )
356 0 : CopyUntil( pLeap, pRun, '"', sal_True );
357 : else
358 : {
359 0 : *pLeap = *pRun;
360 0 : ++pLeap;
361 0 : ++pRun;
362 : }
363 : }
364 : }
365 :
366 0 : *pLeap = 0;
367 :
368 : // there might be a space at beginning or end
369 0 : pLeap--;
370 0 : if( *pLeap == ' ' )
371 0 : *pLeap = 0;
372 :
373 0 : return rtl::OString(*pBuffer == ' ' ? pBuffer+1 : pBuffer);
374 : }
375 :
376 : } // namespace
377 :
378 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|