2010-10-14 01:30:07 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-17 06:30:48 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2006-09-17 02:14:57 -05:00
|
|
|
|
2001-03-15 05:30:43 -06:00
|
|
|
#include <idlc/idlc.hxx>
|
|
|
|
#include <idlc/astmodule.hxx>
|
|
|
|
#include <rtl/strbuf.hxx>
|
2001-08-17 07:09:50 -05:00
|
|
|
#include <osl/file.hxx>
|
|
|
|
#include <osl/thread.h>
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2011-04-16 02:08:29 -05:00
|
|
|
#if defined(SAL_W32)
|
2001-03-15 05:30:43 -06:00
|
|
|
#include <io.h>
|
|
|
|
#include <direct.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SAL_UNX
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
2008-02-04 06:45:12 -06:00
|
|
|
#include <string.h>
|
|
|
|
|
2001-03-15 05:30:43 -06:00
|
|
|
using namespace ::rtl;
|
2001-08-17 07:09:50 -05:00
|
|
|
using namespace ::osl;
|
2001-03-15 05:30:43 -06:00
|
|
|
|
|
|
|
StringList* pCreatedDirectories = NULL;
|
|
|
|
|
|
|
|
static sal_Bool checkOutputPath(const OString& completeName)
|
|
|
|
{
|
2004-05-18 07:41:10 -05:00
|
|
|
OString sysPathName = convertToAbsoluteSystemPath(completeName);
|
|
|
|
OStringBuffer buffer(sysPathName.getLength());
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2004-05-18 07:41:10 -05:00
|
|
|
if ( sysPathName.indexOf( SEPARATOR ) == -1 )
|
2001-03-15 05:30:43 -06:00
|
|
|
return sal_True;
|
|
|
|
|
2001-05-10 07:07:49 -05:00
|
|
|
sal_Int32 nIndex = 0;
|
2004-05-18 07:41:10 -05:00
|
|
|
OString token(sysPathName.getToken(0, SEPARATOR, nIndex));
|
2001-03-15 05:30:43 -06:00
|
|
|
const sal_Char* p = token.getStr();
|
|
|
|
if (strcmp(p, "..") == 0
|
|
|
|
|| *(p+1) == ':'
|
|
|
|
|| strcmp(p, ".") == 0)
|
|
|
|
{
|
|
|
|
buffer.append(token);
|
2001-05-10 07:07:49 -05:00
|
|
|
buffer.append(SEPARATOR);
|
2001-03-15 05:30:43 -06:00
|
|
|
}
|
2001-05-10 13:50:04 -05:00
|
|
|
else
|
|
|
|
nIndex = 0;
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2001-05-10 07:07:49 -05:00
|
|
|
do
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
2004-05-18 07:41:10 -05:00
|
|
|
buffer.append(sysPathName.getToken(0, SEPARATOR, nIndex));
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2001-05-10 13:50:04 -05:00
|
|
|
if ( buffer.getLength() > 0 && nIndex != -1 )
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
2011-04-16 02:08:29 -05:00
|
|
|
#if defined(SAL_UNX)
|
2001-03-15 05:30:43 -06:00
|
|
|
if (mkdir((char*)buffer.getStr(), 0777) == -1)
|
|
|
|
#else
|
|
|
|
if (mkdir((char*)buffer.getStr()) == -1)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: cannot create directory '%s'\n",
|
|
|
|
idlc()->getOptions()->getProgramName().getStr(), buffer.getStr());
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
if ( !pCreatedDirectories )
|
|
|
|
pCreatedDirectories = new StringList();
|
|
|
|
pCreatedDirectories->push_front(buffer.getStr());
|
|
|
|
}
|
|
|
|
}
|
2001-05-10 13:50:04 -05:00
|
|
|
buffer.append(SEPARATOR);
|
2001-05-10 07:07:49 -05:00
|
|
|
} while( nIndex != -1 );
|
2001-03-15 05:30:43 -06:00
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
static sal_Bool cleanPath()
|
|
|
|
{
|
|
|
|
if ( pCreatedDirectories )
|
|
|
|
{
|
|
|
|
StringList::iterator iter = pCreatedDirectories->begin();
|
|
|
|
StringList::iterator end = pCreatedDirectories->end();
|
|
|
|
while ( iter != end )
|
|
|
|
{
|
|
|
|
//#ifdef SAL_UNX
|
|
|
|
// if (rmdir((char*)(*iter).getStr(), 0777) == -1)
|
|
|
|
//#else
|
|
|
|
if (rmdir((char*)(*iter).getStr()) == -1)
|
|
|
|
//#endif
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: cannot remove directory '%s'\n",
|
|
|
|
idlc()->getOptions()->getProgramName().getStr(), (*iter).getStr());
|
|
|
|
return sal_False;
|
|
|
|
}
|
2001-04-11 01:29:27 -05:00
|
|
|
++iter;
|
2001-03-15 05:30:43 -06:00
|
|
|
}
|
|
|
|
delete pCreatedDirectories;
|
|
|
|
}
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
2004-03-30 09:47:44 -06:00
|
|
|
void removeIfExists(const OString& pathname)
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
2012-12-02 09:15:22 -06:00
|
|
|
osl::File::remove(OStringToOUString(pathname, RTL_TEXTENCODING_UTF8));
|
2001-03-15 05:30:43 -06:00
|
|
|
}
|
|
|
|
|
2012-01-14 14:16:17 -06:00
|
|
|
sal_Int32 SAL_CALL
|
|
|
|
produceFile(const OString& regFileName, sPair_t const*const pDepFile)
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
|
|
|
Options* pOptions = idlc()->getOptions();
|
|
|
|
|
2004-05-18 07:41:10 -05:00
|
|
|
OString regTmpName = regFileName.replaceAt(regFileName.getLength() -3, 3, "_idlc_");
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2004-05-18 07:41:10 -05:00
|
|
|
if ( !checkOutputPath(regFileName) )
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not create path of registry file '%s'.\n",
|
|
|
|
pOptions->getProgramName().getStr(), regFileName.getStr());
|
|
|
|
return 1;
|
2001-03-15 05:30:43 -06:00
|
|
|
}
|
|
|
|
|
2012-01-14 14:16:17 -06:00
|
|
|
OString depTmpName;
|
|
|
|
if (pDepFile)
|
|
|
|
{
|
|
|
|
depTmpName = pDepFile->first.replaceAt(
|
|
|
|
regFileName.getLength() -3, 3, "_idlc_");
|
|
|
|
if ( !checkOutputPath(depTmpName) )
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not create path of dep file '%s'.\n",
|
|
|
|
pOptions->getProgramName().getStr(), pDepFile->first.getStr());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
removeIfExists(depTmpName);
|
|
|
|
}
|
|
|
|
|
2001-03-15 05:30:43 -06:00
|
|
|
removeIfExists(regTmpName);
|
2001-08-17 07:09:50 -05:00
|
|
|
OString urlRegTmpName = convertToFileUrl(regTmpName);
|
2010-03-04 08:19:41 -06:00
|
|
|
|
|
|
|
Registry regFile;
|
|
|
|
if ( regFile.create(OStringToOUString(urlRegTmpName, RTL_TEXTENCODING_UTF8)) != REG_NO_ERROR )
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not create registry file '%s'\n",
|
|
|
|
pOptions->getProgramName().getStr(), regTmpName.getStr());
|
|
|
|
removeIfExists(regTmpName);
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegistryKey rootKey;
|
2010-03-04 08:19:41 -06:00
|
|
|
if ( regFile.openRootKey(rootKey) != REG_NO_ERROR )
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not open root of registry file '%s'\n",
|
|
|
|
pOptions->getProgramName().getStr(), regFileName.getStr());
|
|
|
|
removeIfExists(regTmpName);
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// produce registry file
|
2004-03-30 09:47:44 -06:00
|
|
|
if ( !idlc()->getRoot()->dump(rootKey) )
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
2010-03-04 08:19:41 -06:00
|
|
|
rootKey.releaseKey();
|
2001-03-15 05:30:43 -06:00
|
|
|
regFile.close();
|
|
|
|
regFile.destroy(OStringToOUString(regFileName, RTL_TEXTENCODING_UTF8));
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-03-04 08:19:41 -06:00
|
|
|
rootKey.releaseKey();
|
|
|
|
if ( regFile.close() != REG_NO_ERROR )
|
2001-03-15 05:30:43 -06:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not close registry file '%s'\n",
|
|
|
|
pOptions->getProgramName().getStr(), regFileName.getStr());
|
|
|
|
removeIfExists(regTmpName);
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-01-14 14:16:17 -06:00
|
|
|
if (pDepFile && !idlc()->dumpDeps(depTmpName, pDepFile->second))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: could not write dep file '%s'\n",
|
|
|
|
pOptions->getProgramName().getStr(), pDepFile->first.getStr());
|
|
|
|
removeIfExists(depTmpName);
|
|
|
|
removeIfExists(pDepFile->first);
|
|
|
|
removeIfExists(regTmpName);
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-03-15 05:30:43 -06:00
|
|
|
removeIfExists(regFileName);
|
2001-08-17 07:09:50 -05:00
|
|
|
|
2004-05-18 07:41:10 -05:00
|
|
|
if ( File::move(OStringToOUString(regTmpName, osl_getThreadTextEncoding()),
|
|
|
|
OStringToOUString(regFileName, osl_getThreadTextEncoding())) != FileBase::E_None ) {
|
|
|
|
fprintf(stderr, "%s: cannot rename temporary registry '%s' to '%s'\n",
|
2001-03-15 05:30:43 -06:00
|
|
|
idlc()->getOptions()->getProgramName().getStr(),
|
|
|
|
regTmpName.getStr(), regFileName.getStr());
|
|
|
|
removeIfExists(regTmpName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
2001-08-17 07:09:50 -05:00
|
|
|
removeIfExists(regTmpName);
|
2001-03-15 05:30:43 -06:00
|
|
|
|
2012-01-14 14:16:17 -06:00
|
|
|
if (pDepFile)
|
|
|
|
{
|
|
|
|
removeIfExists(pDepFile->first);
|
|
|
|
if ( File::move(OStringToOUString(depTmpName, osl_getThreadTextEncoding()),
|
|
|
|
OStringToOUString(pDepFile->first, osl_getThreadTextEncoding())) != FileBase::E_None ) {
|
|
|
|
fprintf(stderr, "%s: cannot rename dep file '%s' to '%s'\n",
|
|
|
|
idlc()->getOptions()->getProgramName().getStr(),
|
|
|
|
depTmpName.getStr(), pDepFile->first.getStr());
|
|
|
|
removeIfExists(depTmpName);
|
|
|
|
removeIfExists(pDepFile->first);
|
|
|
|
removeIfExists(regFileName);
|
|
|
|
cleanPath();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
removeIfExists(depTmpName);
|
|
|
|
}
|
|
|
|
|
2001-03-15 05:30:43 -06:00
|
|
|
return 0;
|
|
|
|
}
|
2010-10-14 01:30:07 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|