LCOV - code coverage report
Current view: top level - idlc/source - idlcmain.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 77 0.0 %
Date: 2014-04-14 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          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 "idlc/idlc.hxx"
      22             : #include "sal/main.h"
      23             : 
      24             : #include <string.h>
      25             : 
      26             : using namespace ::rtl;
      27             : 
      28           0 : SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
      29             : {
      30           0 :     std::vector< std::string > args;
      31           0 :     for (int i = 1; i < argc; i++)
      32             :     {
      33           0 :         if (!Options::checkArgument (args, argv[i], strlen(argv[i])))
      34           0 :             return (1);
      35             :     }
      36             : 
      37           0 :     Options options(argv[0]);
      38             :     try
      39             :     {
      40           0 :         if (!options.initOptions(args))
      41           0 :            return (0);
      42             :     }
      43           0 :     catch(const IllegalArgument& e)
      44             :     {
      45             :         fprintf(stderr, "Illegal argument: %s\n%s",
      46             :             e.m_message.getStr(),
      47           0 :             options.prepareVersion().getStr());
      48           0 :         return (99);
      49             :     }
      50             : 
      51           0 :     setIdlc(&options);
      52             : 
      53           0 :     sal_Int32 nErrors = 0;
      54           0 :     if (options.readStdin()) {
      55           0 :         if ( !options.quiet() )
      56             :             fprintf(
      57             :                 stdout, "%s: Compiling stdin\n",
      58           0 :                 options.getProgramName().getStr());
      59           0 :         nErrors = compileFile(0);
      60           0 :         if ( ( idlc()->getWarningCount() > 0 ) && !options.quiet() ) {
      61             :             fprintf(
      62             :                 stdout, "%s: detected %lu warnings compiling stdin\n",
      63           0 :                 options.getProgramName().getStr(),
      64             :                 sal::static_int_cast< unsigned long >(
      65           0 :                     idlc()->getWarningCount()));
      66             :         }
      67           0 :         OString outputUrl;
      68           0 :         if (options.isValid("-O")) {
      69           0 :             outputUrl = convertToFileUrl(options.getOption("-O"));
      70           0 :             if (!outputUrl.endsWith("/")) {
      71           0 :                 outputUrl += "/";
      72             :             }
      73           0 :             outputUrl += "stdin.urd";
      74             :         } else {
      75           0 :             outputUrl = convertToFileUrl("stdin.urd");
      76             :         }
      77           0 :         if (nErrors > 0) {
      78           0 :             removeIfExists(outputUrl);
      79             :         } else {
      80           0 :             nErrors = produceFile(outputUrl, 0);
      81             :         }
      82           0 :         idlc()->reset();
      83             :     }
      84           0 :     StringVector const & files = options.getInputFiles();
      85           0 :     if ( options.verbose() )
      86             :     {
      87             :         fprintf( stdout, "%s: compiling %i source files ... \n",
      88           0 :             options.getProgramName().getStr(), (int)files.size() );
      89           0 :         fflush( stdout );
      90             :     }
      91           0 :     for (StringVector::const_iterator i(files.begin());
      92           0 :          i != files.end() && nErrors == 0; ++i)
      93             :     {
      94           0 :         OString sysFileName( convertToAbsoluteSystemPath(*i) );
      95             : 
      96           0 :         if ( !options.quiet() )
      97             :             fprintf(stdout, "Compiling: %s\n",
      98           0 :                 (*i).getStr());
      99           0 :         nErrors = compileFile(&sysFileName);
     100             : 
     101           0 :         if ( idlc()->getWarningCount() && !options.quiet() )
     102             :             fprintf(stdout, "%s: detected %lu warnings compiling file '%s'\n",
     103           0 :                     options.getProgramName().getStr(),
     104             :                     sal::static_int_cast< unsigned long >(
     105             :                         idlc()->getWarningCount()),
     106           0 :                     (*i).getStr());
     107             : 
     108             :         // prepare output file name
     109             :         OString const strippedFileName(
     110           0 :                 sysFileName.copy(sysFileName.lastIndexOf(SEPARATOR) + 1));
     111           0 :         OString outputFile;
     112           0 :         if ( options.isValid("-O") )
     113             :         {
     114           0 :             outputFile = (options.getOption("-O"));
     115           0 :             if (!outputFile.endsWith("/")) {
     116           0 :                 outputFile += OString('/');
     117             :             }
     118           0 :             outputFile += strippedFileName.replaceAt(
     119           0 :                     strippedFileName.getLength() -3 , 3, "urd");
     120             :         } else {
     121           0 :             outputFile =
     122           0 :                 sysFileName.replaceAt(sysFileName.getLength() -3 , 3, "urd");
     123             :         }
     124           0 :         OString const outputFileUrl = convertToFileUrl(outputFile);
     125             : 
     126           0 :         OString depFileUrl;
     127           0 :         if (options.isValid("-M")) {
     128           0 :             depFileUrl = convertToFileUrl(options.getOption("-M"));
     129           0 :             if (!depFileUrl.endsWith("/")) {
     130           0 :                 depFileUrl += "/";
     131             :             }
     132           0 :             depFileUrl += strippedFileName.replaceAt(
     133           0 :                     strippedFileName.getLength() -3 , 3, "d");
     134             :         }
     135             : 
     136           0 :         if ( nErrors ) {
     137           0 :             if (options.isValid("-M")) {
     138           0 :                 removeIfExists(depFileUrl);
     139             :             }
     140           0 :             removeIfExists(outputFileUrl);
     141             :         } else {
     142           0 :             sPair_t const pair(depFileUrl, outputFile);
     143             :             nErrors = produceFile(outputFileUrl,
     144           0 :                         (options.isValid("-M")) ? &pair : 0);
     145             :         }
     146             : 
     147           0 :         idlc()->reset();
     148           0 :     }
     149             : 
     150           0 :     if ( nErrors > 0 )
     151             :     {
     152             :         fprintf(stderr, "%s: detected %ld errors%s",
     153           0 :             options.getProgramName().getStr(),
     154             :             sal::static_int_cast< long >(nErrors),
     155           0 :             options.prepareVersion().getStr());
     156             :     } else
     157             :     {
     158           0 :         if ( options.verbose() )
     159             :             fprintf(stdout, "%s: returned successful%s",
     160           0 :                 options.getProgramName().getStr(),
     161           0 :                 options.prepareVersion().getStr());
     162             :     }
     163           0 :     return nErrors;
     164             : }
     165             : 
     166             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10