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 :
24 : #include <gui.hxx>
25 : #include <rscrsc.hxx>
26 : #include <rscdb.hxx>
27 :
28 0 : static RscVerbosity lcl_determineVerbosity( int argc, char ** argv )
29 : {
30 0 : for ( int i = 0; i < argc; ++i )
31 : {
32 0 : if ( argv[i] == NULL )
33 0 : continue;
34 0 : if ( rsc_stricmp( argv[i], "-verbose" ) == 0 )
35 0 : return RscVerbosityVerbose;
36 0 : if ( rsc_stricmp( argv[i], "-quiet" ) == 0 )
37 0 : return RscVerbositySilent;
38 : }
39 0 : return RscVerbosityNormal;
40 : }
41 :
42 0 : int rsc2_main( int argc, char **argv )
43 : {
44 : #if OSL_DEBUG_LEVEL > 1
45 : fprintf( stderr, "debugging %s\n", argv[0] );
46 : #endif
47 :
48 0 : ERRTYPE aError;
49 :
50 0 : InitRscCompiler();
51 0 : RscError* pErrHdl = new RscError( lcl_determineVerbosity( argc, argv ) );
52 0 : RscCmdLine* pCmdLine = new RscCmdLine( argc, argv, pErrHdl );
53 : RscTypCont* pTypCont = new RscTypCont( pErrHdl,
54 : pCmdLine->nByteOrder,
55 : pCmdLine->aPath,
56 0 : pCmdLine->nCommands );
57 :
58 0 : if( pErrHdl->nErrors )
59 0 : aError = ERR_ERROR;
60 : else{
61 0 : RscCompiler* pCompiler = new RscCompiler( pCmdLine, pTypCont );
62 :
63 0 : aError = pCompiler->Start();
64 :
65 0 : delete pCompiler;
66 : }
67 :
68 0 : delete pTypCont;
69 0 : delete pCmdLine;
70 0 : delete pErrHdl;
71 0 : delete pHS; // wird durch InitRscCompiler erzeugt
72 :
73 0 : if( aError.IsOk() )
74 0 : return( 0 );
75 : else
76 0 : return( 1 );
77 : }
78 :
79 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|