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 <stdlib.h>
22 : #include <stdio.h>
23 : #include <fcntl.h>
24 : #include <string.h>
25 :
26 : #ifdef UNX
27 : #include <unistd.h>
28 : #include <sys/wait.h>
29 : #else // UNX
30 :
31 : #include <io.h>
32 : #include <process.h>
33 : #include <dos.h>
34 :
35 : #endif // UNX
36 :
37 : #include <gui.hxx>
38 : #include <rsctools.hxx>
39 : #include <rscerror.h>
40 : #include <sal/main.h>
41 : #include <rtl/strbuf.hxx>
42 :
43 :
44 363 : static bool CallPrePro( const OString& rInput,
45 : const OString& rOutput, RscPtrPtr * pCmdLine,
46 : bool bResponse )
47 : {
48 363 : RscPtrPtr aNewCmdL; // Kommandozeile
49 726 : RscPtrPtr aRespCmdL; // Kommandozeile
50 363 : RscPtrPtr * pCmdL = &aNewCmdL;
51 : int i, nRet;
52 363 : FILE* fRspFile = NULL;
53 726 : OString aRspFileName;
54 :
55 363 : if( bResponse )
56 : {
57 363 : aRspFileName = ::GetTmpFileName();
58 363 : fRspFile = fopen( aRspFileName.getStr(), "w" );
59 : }
60 :
61 363 : if( !fRspFile )
62 0 : aNewCmdL.Append( rsc_strdup( "rscpp" ) );
63 :
64 363 : bool bVerbose = false;
65 10132 : for( i = 1; i < int(pCmdLine->GetCount() -1); i++ )
66 : {
67 9769 : if ( 0 == rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-verbose" ) )
68 : {
69 0 : bVerbose = true;
70 0 : continue;
71 : }
72 9769 : if (strcmp(static_cast<char *>(pCmdLine->GetEntry(i)), "-isystem") == 0)
73 : {
74 : // ignore "-isystem" and following arg
75 0 : if (i < int(pCmdLine->GetCount()) - 1)
76 : {
77 0 : ++i;
78 : }
79 0 : continue;
80 : }
81 9769 : if (strncmp(
82 9769 : static_cast<char *>(pCmdLine->GetEntry(i)), "-isystem",
83 9769 : strlen("-isystem"))
84 : == 0)
85 : {
86 : // ignore args starting with "-isystem"
87 0 : continue;
88 : }
89 29307 : if ( !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-u", 2 ) ||
90 15214 : !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-i", 2 ) ||
91 5445 : !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-d", 2 ))
92 : {
93 8317 : aNewCmdL.Append( rsc_strdup( (char *)pCmdLine->GetEntry( i ) ) );
94 : }
95 : }
96 :
97 363 : aNewCmdL.Append( rsc_strdup( rInput.getStr() ) );
98 363 : aNewCmdL.Append( rsc_strdup( rOutput.getStr() ) );
99 363 : aNewCmdL.Append( (void *)0 );
100 :
101 363 : if ( bVerbose )
102 : {
103 0 : printf( "Preprocessor commandline: " );
104 0 : for( i = 0; i < (int)(pCmdL->GetCount() -1); i++ )
105 : {
106 0 : printf( " " );
107 0 : printf( "%s", (const char *)pCmdL->GetEntry( i ) );
108 : }
109 0 : printf( "\n" );
110 : }
111 :
112 363 : if( fRspFile )
113 : {
114 363 : aRespCmdL.Append( rsc_strdup( "rscpp" ) );
115 363 : OStringBuffer aTmpStr;
116 363 : aTmpStr.append('@').append(aRspFileName);
117 363 : aRespCmdL.Append( rsc_strdup( aTmpStr.getStr() ) );
118 363 : aRespCmdL.Append( (void *)0 );
119 :
120 363 : pCmdL = &aRespCmdL;
121 9406 : for( i = 0; i < (int)(aNewCmdL.GetCount() -1); i++ )
122 : {
123 9043 : fprintf( fRspFile, "%s ", (const char *)aNewCmdL.GetEntry( i ) );
124 : }
125 363 : fclose( fRspFile );
126 :
127 363 : if ( bVerbose )
128 : {
129 0 : printf( "Preprocessor startline: " );
130 0 : for( i = 0; i < (int)(pCmdL->GetCount() -1); i++ )
131 : {
132 0 : printf( " " );
133 0 : printf( "%s", (const char *)pCmdL->GetEntry( i ) );
134 : }
135 0 : printf( "\n" );
136 363 : }
137 : }
138 :
139 363 : nRet = rscpp_main( pCmdL->GetCount()-1, (char**)pCmdL->GetBlock() );
140 :
141 363 : if ( fRspFile )
142 : {
143 : #if OSL_DEBUG_LEVEL > 5
144 : fprintf( stderr, "leaving response file %s\n", aRspFileName.getStr() );
145 : #else
146 363 : unlink( aRspFileName.getStr() );
147 : #endif
148 : }
149 363 : if ( nRet )
150 0 : return false;
151 :
152 726 : return true;
153 : }
154 :
155 :
156 419 : static bool CallRsc2( RscStrList * pInputList,
157 : const OString &rSrsName, RscPtrPtr * pCmdLine )
158 : {
159 : int nRet;
160 : OString* pString;
161 419 : RscVerbosity eVerbosity = RscVerbosityNormal;
162 :
163 419 : RscPtrPtr aNewCmdL;
164 419 : aNewCmdL.Append( rsc_strdup( "rsc2" ) );
165 :
166 11084 : for (int i = 1; i < (int)(pCmdLine->GetCount() -1); ++i)
167 : {
168 10665 : if ( !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-verbose" ) )
169 : {
170 0 : eVerbosity = RscVerbosityVerbose;
171 0 : continue;
172 : }
173 10665 : if ( !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-quiet" ) )
174 : {
175 0 : eVerbosity = RscVerbositySilent;
176 0 : continue;
177 : }
178 31632 : if( !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-fp=", 4 ) ||
179 20604 : !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-fo=", 4 ) ||
180 20241 : !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-presponse", 9 ) ||
181 19878 : !rsc_strnicmp( (char *)pCmdLine->GetEntry( i ), "-rc", 3 ) ||
182 19878 : !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-+" ) ||
183 19878 : !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-br" ) ||
184 19878 : !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-bz" ) ||
185 30487 : !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-r" ) ||
186 9883 : ( '-' != *(char *)pCmdLine->GetEntry( i ) ) )
187 : {
188 : }
189 : else
190 : {
191 9464 : aNewCmdL.Append( rsc_strdup( (char *)pCmdLine->GetEntry( i ) ) );
192 : }
193 : }
194 :
195 419 : aNewCmdL.Append( rsc_strdup( rSrsName.getStr() ) );
196 :
197 838 : for ( size_t i = 0, n = pInputList->size(); i < n; ++i )
198 : {
199 419 : pString = (*pInputList)[ i ];
200 419 : aNewCmdL.Append( rsc_strdup( pString->getStr() ) );
201 : }
202 :
203 419 : if ( eVerbosity >= RscVerbosityVerbose )
204 : {
205 0 : printf( "Rsc2 commandline: " );
206 0 : for( size_t i = 0; i < (unsigned int)(aNewCmdL.GetCount() -1); i++ )
207 : {
208 0 : printf( " %s", (const char *)aNewCmdL.GetEntry( i ) );
209 : }
210 0 : printf( "\n" );
211 : }
212 :
213 419 : nRet = rsc2_main( aNewCmdL.GetCount(), (char**)aNewCmdL.GetBlock() );
214 :
215 419 : if( nRet )
216 0 : return false;
217 419 : return true;
218 : }
219 :
220 838 : SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
221 : {
222 419 : bool bPrePro = true;
223 419 : bool bHelp = false;
224 419 : bool bError = false;
225 419 : bool bResponse = false;
226 419 : OString aSrsName;
227 838 : OString aResName;
228 838 : RscStrList aInputList;
229 838 : RscStrList aTmpList;
230 : char * pStr;
231 : char ** ppStr;
232 838 : RscPtrPtr aCmdLine; // Kommandozeile
233 : sal_uInt32 i;
234 : OString* pString;
235 :
236 419 : pStr = ::ResponseFile( &aCmdLine, argv, argc );
237 419 : if( pStr )
238 : {
239 0 : printf( "Cannot open response file <%s>\n", pStr );
240 0 : return( 1 );
241 : };
242 :
243 419 : ppStr = (char **)aCmdLine.GetBlock();
244 419 : ppStr++;
245 419 : i = 1;
246 419 : bool bSetSrs = false;
247 11503 : while( ppStr && i < (aCmdLine.GetCount() -1) )
248 : {
249 10665 : if (strcmp(*ppStr, "-isystem") == 0)
250 : {
251 : // ignore "-isystem" and following arg
252 0 : if (i < aCmdLine.GetCount() - 1)
253 : {
254 0 : ++ppStr;
255 0 : ++i;
256 : }
257 : }
258 10665 : else if (strncmp(*ppStr, "-isystem", strlen("-isystem")) == 0)
259 : {
260 : // ignore args starting with "-isystem"
261 : }
262 10665 : else if( '-' == **ppStr )
263 : {
264 20492 : if( !rsc_stricmp( (*ppStr) + 1, "p" )
265 10246 : || !rsc_stricmp( (*ppStr) + 1, "l" ) )
266 : { // kein Preprozessor
267 56 : bPrePro = false;
268 : }
269 10190 : else if( !rsc_stricmp( (*ppStr) + 1, "h" ) )
270 : { // Hilfe anzeigen
271 0 : bHelp = true;
272 : }
273 10190 : else if( !rsc_strnicmp( (*ppStr) + 1, "presponse", 9 ) )
274 : { // whether to use response file when parameterising preprocessor
275 363 : bResponse = true;
276 : }
277 9827 : else if( !rsc_strnicmp( (*ppStr) + 1, "fo=", 3 ) )
278 : { // anderer Name fuer .res-file
279 0 : aResName = (*ppStr) + 4;
280 : }
281 9827 : else if( !rsc_strnicmp( (*ppStr) + 1, "fp=", 3 ) )
282 : { // anderer Name fuer .srs-file
283 363 : bSetSrs = true;
284 363 : aSrsName = (*ppStr);
285 : }
286 : }
287 : else
288 : {
289 : // Eingabedatei
290 419 : aInputList.push_back( new OString(*ppStr) );
291 : }
292 10665 : ppStr++;
293 10665 : i++;
294 : }
295 :
296 419 : if( !aInputList.empty() )
297 : {
298 : /* build the output file names */
299 419 : if (!aResName.getLength())
300 419 : aResName = OutputFile( *aInputList[ 0 ], "res" );
301 419 : if( ! bSetSrs )
302 : {
303 112 : aSrsName = OStringBuffer("-fp=").append(OutputFile(*aInputList[0], "srs")).
304 56 : makeStringAndClear();
305 : }
306 : };
307 :
308 419 : if( bHelp )
309 0 : bPrePro = false;
310 :
311 419 : if( bPrePro && !aInputList.empty() )
312 : {
313 363 : OString aTmpName;
314 :
315 726 : for ( size_t k = 0, n = aInputList.size(); k < n; ++k )
316 : {
317 363 : pString = aInputList[ k ];
318 363 : aTmpName = ::GetTmpFileName();
319 363 : if( !CallPrePro( *pString, aTmpName, &aCmdLine, bResponse ) )
320 : {
321 0 : printf( "Error starting preprocessor\n" );
322 0 : bError = true;
323 0 : break;
324 : }
325 363 : aTmpList.push_back( new OString(aTmpName) );
326 363 : };
327 : };
328 :
329 419 : if( !bError )
330 : {
331 419 : if( !CallRsc2( bPrePro ? &aTmpList : &aInputList, aSrsName, &aCmdLine ) )
332 : {
333 0 : if( !bHelp )
334 : {
335 0 : printf( "Error starting rsc2 compiler\n" );
336 0 : bError = true;
337 : }
338 : };
339 : };
340 :
341 782 : for ( size_t k = 0, n = aTmpList.size(); k < n; ++k )
342 363 : unlink( aTmpList[ k ]->getStr() );
343 :
344 838 : return bError ? EXIT_FAILURE : EXIT_SUCCESS;
345 : }
346 :
347 0 : void RscExit( sal_uInt32 nExit )
348 : {
349 0 : if( nExit )
350 0 : printf( "Program exit is %d\n", (int)nExit );
351 0 : exit( nExit );
352 : }
353 :
354 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|