office-gobmx/idlc/source/idlcmain.cxx

143 lines
4.6 KiB
C++
Raw Normal View History

2001-03-15 05:30:43 -06:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2001-03-15 05:30:43 -06:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2001-03-15 05:30:43 -06:00
*
* OpenOffice.org - a multi-platform office productivity suite
2001-03-15 05:30:43 -06:00
*
* $RCSfile: idlcmain.cxx,v $
* $Revision: 1.17 $
2001-03-15 05:30:43 -06:00
*
* This file is part of OpenOffice.org.
2001-03-15 05:30:43 -06:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2001-03-15 05:30:43 -06:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2001-03-15 05:30:43 -06:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2001-03-15 05:30:43 -06:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_idlc.hxx"
2001-03-15 05:30:43 -06:00
#include <idlc/idlc.hxx>
#include "sal/main.h"
2001-03-15 05:30:43 -06:00
using namespace ::rtl;
SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
2001-03-15 05:30:43 -06:00
{
Options options;
try
{
if (!options.initOptions(argc, argv))
exit(1);
2001-03-15 05:30:43 -06:00
}
catch( IllegalArgument& e)
{
fprintf(stderr, "Illegal argument: %s\n%s",
e.m_message.getStr(),
options.prepareVersion().getStr());
2001-03-15 05:30:43 -06:00
exit(99);
}
setIdlc(&options);
sal_Int32 nErrors = 0;
if (options.readStdin()) {
fprintf(
stdout, "%s: compile stdin...\n",
options.getProgramName().getStr());
nErrors = compileFile(0);
if (idlc()->getWarningCount() > 0) {
fprintf(
stdout, "%s: detected %lu warnings compiling stdin\n",
options.getProgramName().getStr(),
sal::static_int_cast< unsigned long >(
idlc()->getWarningCount()));
}
OString outputUrl;
if (options.isValid("-O")) {
outputUrl = convertToFileUrl(options.getOption("-O"));
if (outputUrl[outputUrl.getLength() - 1] != '/') {
outputUrl += "/";
}
outputUrl += "stdin.urd";
} else {
outputUrl = convertToFileUrl("stdin.urd");
}
if (nErrors > 0) {
removeIfExists(outputUrl);
} else {
nErrors = produceFile(outputUrl);
}
idlc()->reset();
}
StringVector const & files = options.getInputFiles();
for (StringVector::const_iterator i(files.begin());
i != files.end() && nErrors == 0; ++i)
2001-03-15 05:30:43 -06:00
{
OString sysFileName( convertToAbsoluteSystemPath(*i) );
fprintf(stdout, "%s: compile '%s' ... \n",
options.getProgramName().getStr(), (*i).getStr());
nErrors = compileFile(&sysFileName);
if ( idlc()->getWarningCount() )
fprintf(stdout, "%s: detected %lu warnings compiling file '%s'\n",
options.getProgramName().getStr(),
sal::static_int_cast< unsigned long >(
idlc()->getWarningCount()),
(*i).getStr());
// prepare output file name
OString outputFileUrl;
if ( options.isValid("-O") )
{
OString strippedFileName(sysFileName.copy(sysFileName.lastIndexOf(SEPARATOR) + 1));
outputFileUrl = convertToFileUrl(options.getOption("-O"));
sal_Char c = outputFileUrl.getStr()[outputFileUrl.getLength()-1];
if ( c != '/' )
outputFileUrl += OString::valueOf('/');
outputFileUrl += strippedFileName.replaceAt(strippedFileName.getLength() -3 , 3, "urd");
} else
{
outputFileUrl = convertToFileUrl(sysFileName.replaceAt(sysFileName.getLength() -3 , 3, "urd"));
}
if ( nErrors )
removeIfExists(outputFileUrl);
else
nErrors = produceFile(outputFileUrl);
2001-03-15 05:30:43 -06:00
idlc()->reset();
}
if ( nErrors > 0 )
{
fprintf(stdout, "%s: detected %ld errors%s",
options.getProgramName().getStr(),
sal::static_int_cast< long >(nErrors),
options.prepareVersion().getStr());
2001-03-15 05:30:43 -06:00
} else
{
2001-07-27 03:47:09 -05:00
fprintf(stdout, "%s: returned successful%s",
options.getProgramName().getStr(),
options.prepareVersion().getStr());
2001-03-15 05:30:43 -06:00
}
return nErrors;
2001-03-15 05:30:43 -06:00
}