2011-10-22 21:43:34 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2004-2011 Kitware, Inc.
|
|
|
|
Copyright 2011 Alexander Neundorf (neundorf@kde.org)
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
|
2016-04-29 16:40:20 +03:00
|
|
|
#include "cmQtAutoGenerators.h"
|
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2015-09-26 20:41:31 +03:00
|
|
|
#include "cmOutputConverter.h"
|
2011-08-07 19:16:00 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSystemTools.h"
|
2015-04-11 15:15:55 +03:00
|
|
|
#include "cmState.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2015-03-19 04:30:26 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2011-11-11 01:54:44 +04:00
|
|
|
#include <cmsys/Terminal.h>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2013-07-25 11:24:53 +04:00
|
|
|
#include <assert.h>
|
2011-11-11 01:54:44 +04:00
|
|
|
|
|
|
|
#include <string.h>
|
2012-03-28 03:36:33 +04:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2011-08-14 18:43:04 +04:00
|
|
|
|
2013-08-07 18:48:09 +04:00
|
|
|
static bool requiresMocing(const std::string& text, std::string ¯oName)
|
2011-11-11 01:54:44 +04:00
|
|
|
{
|
|
|
|
// this simple check is much much faster than the regexp
|
2013-08-07 18:48:09 +04:00
|
|
|
if (strstr(text.c_str(), "Q_OBJECT") == NULL
|
|
|
|
&& strstr(text.c_str(), "Q_GADGET") == NULL)
|
2011-11-11 01:54:44 +04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsys::RegularExpression qObjectRegExp("[\n][ \t]*Q_OBJECT[^a-zA-Z0-9_]");
|
2013-08-07 18:48:09 +04:00
|
|
|
if (qObjectRegExp.find(text))
|
|
|
|
{
|
|
|
|
macroName = "Q_OBJECT";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
cmsys::RegularExpression qGadgetRegExp("[\n][ \t]*Q_GADGET[^a-zA-Z0-9_]");
|
|
|
|
if (qGadgetRegExp.find(text))
|
|
|
|
{
|
|
|
|
macroName = "Q_GADGET";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-11-11 01:54:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-23 00:35:08 +04:00
|
|
|
static std::string findMatchingHeader(const std::string& absPath,
|
|
|
|
const std::string& mocSubDir,
|
|
|
|
const std::string& basename,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions)
|
2011-11-23 00:35:08 +04:00
|
|
|
{
|
|
|
|
std::string header;
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-11-23 00:35:08 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
std::string sourceFilePath = absPath + basename + "." + (*ext);
|
2011-11-23 00:35:08 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(sourceFilePath.c_str()))
|
|
|
|
{
|
|
|
|
header = sourceFilePath;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!mocSubDir.empty())
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
sourceFilePath = mocSubDir + basename + "." + (*ext);
|
2011-11-23 00:35:08 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(sourceFilePath.c_str()))
|
|
|
|
{
|
|
|
|
header = sourceFilePath;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static std::string extractSubDir(const std::string& absPath,
|
|
|
|
const std::string& currentMoc)
|
|
|
|
{
|
|
|
|
std::string subDir;
|
|
|
|
if (currentMoc.find_first_of('/') != std::string::npos)
|
|
|
|
{
|
|
|
|
subDir = absPath
|
|
|
|
+ cmsys::SystemTools::GetFilenamePath(currentMoc) + '/';
|
|
|
|
}
|
|
|
|
return subDir;
|
|
|
|
}
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
cmQtAutoGenerators::cmQtAutoGenerators()
|
2011-08-11 01:49:30 +04:00
|
|
|
:Verbose(cmsys::SystemTools::GetEnv("VERBOSE") != 0)
|
2011-08-14 18:43:04 +04:00
|
|
|
,ColorOutput(true)
|
2011-08-08 17:20:13 +04:00
|
|
|
,RunMocFailed(false)
|
2013-07-25 11:24:53 +04:00
|
|
|
,RunUicFailed(false)
|
2013-09-15 16:41:07 +04:00
|
|
|
,RunRccFailed(false)
|
2011-08-08 17:20:13 +04:00
|
|
|
,GenerateAll(false)
|
2011-08-07 14:02:46 +04:00
|
|
|
{
|
2011-08-14 18:43:04 +04:00
|
|
|
|
|
|
|
std::string colorEnv = "";
|
|
|
|
cmsys::SystemTools::GetEnv("COLOR", colorEnv);
|
|
|
|
if(!colorEnv.empty())
|
|
|
|
{
|
|
|
|
if(cmSystemTools::IsOn(colorEnv.c_str()))
|
|
|
|
{
|
|
|
|
this->ColorOutput = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->ColorOutput = false;
|
|
|
|
}
|
|
|
|
}
|
2011-08-07 14:02:46 +04:00
|
|
|
}
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
void cmQtAutoGenerators::MergeUicOptions(std::vector<std::string> &opts,
|
|
|
|
const std::vector<std::string> &fileOpts,
|
|
|
|
bool isQt5)
|
|
|
|
{
|
|
|
|
static const char* valueOptions[] = {
|
|
|
|
"tr",
|
|
|
|
"translate",
|
|
|
|
"postfix",
|
|
|
|
"generator",
|
2013-11-21 02:17:13 +04:00
|
|
|
"include", // Since Qt 5.3
|
2013-07-25 11:24:53 +04:00
|
|
|
"g"
|
|
|
|
};
|
|
|
|
std::vector<std::string> extraOpts;
|
|
|
|
for(std::vector<std::string>::const_iterator it = fileOpts.begin();
|
|
|
|
it != fileOpts.end(); ++it)
|
|
|
|
{
|
|
|
|
std::vector<std::string>::iterator existingIt
|
|
|
|
= std::find(opts.begin(), opts.end(), *it);
|
|
|
|
if (existingIt != opts.end())
|
|
|
|
{
|
|
|
|
const char *o = it->c_str();
|
|
|
|
if (*o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (isQt5 && *o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (std::find_if(cmArrayBegin(valueOptions), cmArrayEnd(valueOptions),
|
2014-01-17 22:38:27 +04:00
|
|
|
cmStrCmp(*it)) != cmArrayEnd(valueOptions))
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
assert(existingIt + 1 != opts.end());
|
|
|
|
*(existingIt + 1) = *(it + 1);
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extraOpts.push_back(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.insert(opts.end(), extraOpts.begin(), extraOpts.end());
|
|
|
|
}
|
|
|
|
|
2015-05-20 01:17:30 +03:00
|
|
|
bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
|
|
|
const std::string& config)
|
2014-01-24 17:00:34 +04:00
|
|
|
{
|
2015-05-20 01:17:30 +03:00
|
|
|
bool success = true;
|
|
|
|
cmake cm;
|
|
|
|
cm.SetHomeOutputDirectory(targetDirectory);
|
|
|
|
cm.SetHomeDirectory(targetDirectory);
|
2015-10-13 22:48:46 +03:00
|
|
|
cm.GetCurrentSnapshot().SetDefaultDefinitions();
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalGenerator gg(&cm);
|
2014-01-24 17:00:34 +04:00
|
|
|
|
2015-05-31 02:43:31 +03:00
|
|
|
cmState::Snapshot snapshot = cm.GetCurrentSnapshot();
|
2015-05-31 02:57:04 +03:00
|
|
|
snapshot.GetDirectory().SetCurrentBinary(targetDirectory);
|
|
|
|
snapshot.GetDirectory().SetCurrentSource(targetDirectory);
|
|
|
|
|
2015-08-02 12:41:51 +03:00
|
|
|
cmsys::auto_ptr<cmMakefile> mf(new cmMakefile(&gg, snapshot));
|
2015-09-26 20:41:31 +03:00
|
|
|
gg.SetCurrentMakefile(mf.get());
|
2014-01-24 17:00:34 +04:00
|
|
|
|
2015-09-26 20:41:31 +03:00
|
|
|
this->ReadAutogenInfoFile(mf.get(), targetDirectory, config);
|
|
|
|
this->ReadOldMocDefinitionsFile(mf.get(), targetDirectory);
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Init();
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2011-11-01 17:48:45 +04:00
|
|
|
if (this->QtMajorVersion == "4" || this->QtMajorVersion == "5")
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2015-09-26 20:41:31 +03:00
|
|
|
success = this->RunAutogen(mf.get());
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this->WriteOldMocDefinitionsFile(targetDirectory);
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2012-06-15 00:27:22 +04:00
|
|
|
return success;
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
|
2013-10-02 15:50:31 +04:00
|
|
|
bool cmQtAutoGenerators::ReadAutogenInfoFile(cmMakefile* makefile,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& targetDirectory,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-07 19:16:00 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
2013-10-11 16:26:55 +04:00
|
|
|
filename += "/AutogenInfo.cmake";
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2015-04-18 15:50:37 +03:00
|
|
|
if (!makefile->ReadListFile(filename.c_str()))
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2013-06-21 15:51:58 +04:00
|
|
|
cmSystemTools::Error("Error processing file: ", filename.c_str());
|
2011-08-08 17:20:13 +04:00
|
|
|
return false;
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
this->QtMajorVersion = makefile->GetSafeDefinition("AM_QT_VERSION_MAJOR");
|
2011-11-10 02:17:20 +04:00
|
|
|
if (this->QtMajorVersion == "")
|
|
|
|
{
|
2011-11-10 03:57:21 +04:00
|
|
|
this->QtMajorVersion = makefile->GetSafeDefinition(
|
2011-11-26 18:15:33 +04:00
|
|
|
"AM_Qt5Core_VERSION_MAJOR");
|
2011-11-10 02:17:20 +04:00
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Sources = makefile->GetSafeDefinition("AM_SOURCES");
|
2014-09-23 02:57:48 +04:00
|
|
|
{
|
|
|
|
std::string rccSources = makefile->GetSafeDefinition("AM_RCC_SOURCES");
|
|
|
|
cmSystemTools::ExpandListArgument(rccSources, this->RccSources);
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
this->SkipMoc = makefile->GetSafeDefinition("AM_SKIP_MOC");
|
|
|
|
this->SkipUic = makefile->GetSafeDefinition("AM_SKIP_UIC");
|
2011-08-09 11:11:53 +04:00
|
|
|
this->Headers = makefile->GetSafeDefinition("AM_HEADERS");
|
2011-08-10 22:45:22 +04:00
|
|
|
this->IncludeProjectDirsBefore = makefile->IsOn(
|
|
|
|
"AM_CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Srcdir = makefile->GetSafeDefinition("AM_CMAKE_CURRENT_SOURCE_DIR");
|
2011-08-25 23:39:51 +04:00
|
|
|
this->Builddir = makefile->GetSafeDefinition("AM_CMAKE_CURRENT_BINARY_DIR");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->MocExecutable = makefile->GetSafeDefinition("AM_QT_MOC_EXECUTABLE");
|
2013-07-25 11:24:53 +04:00
|
|
|
this->UicExecutable = makefile->GetSafeDefinition("AM_QT_UIC_EXECUTABLE");
|
2013-09-15 16:41:07 +04:00
|
|
|
this->RccExecutable = makefile->GetSafeDefinition("AM_QT_RCC_EXECUTABLE");
|
2014-01-24 16:19:36 +04:00
|
|
|
{
|
2013-06-11 17:52:48 +04:00
|
|
|
std::string compileDefsPropOrig = "AM_MOC_COMPILE_DEFINITIONS";
|
|
|
|
std::string compileDefsProp = compileDefsPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-06-11 17:52:48 +04:00
|
|
|
{
|
|
|
|
compileDefsProp += "_";
|
|
|
|
compileDefsProp += config;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
const char *compileDefs = makefile->GetDefinition(compileDefsProp);
|
2013-06-11 17:52:48 +04:00
|
|
|
this->MocCompileDefinitionsStr = compileDefs ? compileDefs
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(compileDefsPropOrig);
|
2014-01-24 16:19:36 +04:00
|
|
|
}
|
|
|
|
{
|
2013-06-11 17:52:48 +04:00
|
|
|
std::string includesPropOrig = "AM_MOC_INCLUDES";
|
|
|
|
std::string includesProp = includesPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-06-11 17:52:48 +04:00
|
|
|
{
|
|
|
|
includesProp += "_";
|
|
|
|
includesProp += config;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
const char *includes = makefile->GetDefinition(includesProp);
|
2013-06-11 17:52:48 +04:00
|
|
|
this->MocIncludesStr = includes ? includes
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(includesPropOrig);
|
2014-01-24 16:19:36 +04:00
|
|
|
}
|
2011-11-01 17:33:11 +04:00
|
|
|
this->MocOptionsStr = makefile->GetSafeDefinition("AM_MOC_OPTIONS");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->ProjectBinaryDir = makefile->GetSafeDefinition("AM_CMAKE_BINARY_DIR");
|
|
|
|
this->ProjectSourceDir = makefile->GetSafeDefinition("AM_CMAKE_SOURCE_DIR");
|
|
|
|
this->TargetName = makefile->GetSafeDefinition("AM_TARGET_NAME");
|
2014-04-17 12:50:50 +04:00
|
|
|
this->OriginTargetName
|
|
|
|
= makefile->GetSafeDefinition("AM_ORIGIN_TARGET_NAME");
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
const char *uicOptionsFiles
|
|
|
|
= makefile->GetSafeDefinition("AM_UIC_OPTIONS_FILES");
|
2013-11-20 17:54:39 +04:00
|
|
|
std::string uicOptionsPropOrig = "AM_UIC_TARGET_OPTIONS";
|
|
|
|
std::string uicOptionsProp = uicOptionsPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-11-20 17:54:39 +04:00
|
|
|
{
|
|
|
|
uicOptionsProp += "_";
|
|
|
|
uicOptionsProp += config;
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
const char *uicTargetOptions
|
2014-03-11 03:04:11 +04:00
|
|
|
= makefile->GetSafeDefinition(uicOptionsProp);
|
2013-11-20 17:54:39 +04:00
|
|
|
cmSystemTools::ExpandListArgument(
|
|
|
|
uicTargetOptions ? uicTargetOptions
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(uicOptionsPropOrig),
|
2013-11-20 17:54:39 +04:00
|
|
|
this->UicTargetOptions);
|
2013-07-25 11:24:53 +04:00
|
|
|
const char *uicOptionsOptions
|
|
|
|
= makefile->GetSafeDefinition("AM_UIC_OPTIONS_OPTIONS");
|
|
|
|
std::vector<std::string> uicFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(uicOptionsFiles, uicFilesVec);
|
|
|
|
std::vector<std::string> uicOptionsVec;
|
|
|
|
cmSystemTools::ExpandListArgument(uicOptionsOptions, uicOptionsVec);
|
|
|
|
if (uicFilesVec.size() != uicOptionsVec.size())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (std::vector<std::string>::iterator fileIt = uicFilesVec.begin(),
|
|
|
|
optionIt = uicOptionsVec.begin();
|
|
|
|
fileIt != uicFilesVec.end();
|
|
|
|
++fileIt, ++optionIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*optionIt, "@list_sep@", ";");
|
|
|
|
this->UicOptions[*fileIt] = *optionIt;
|
|
|
|
}
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
const char *rccOptionsFiles
|
|
|
|
= makefile->GetSafeDefinition("AM_RCC_OPTIONS_FILES");
|
|
|
|
const char *rccOptionsOptions
|
|
|
|
= makefile->GetSafeDefinition("AM_RCC_OPTIONS_OPTIONS");
|
|
|
|
std::vector<std::string> rccFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(rccOptionsFiles, rccFilesVec);
|
|
|
|
std::vector<std::string> rccOptionsVec;
|
|
|
|
cmSystemTools::ExpandListArgument(rccOptionsOptions, rccOptionsVec);
|
|
|
|
if (rccFilesVec.size() != rccOptionsVec.size())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (std::vector<std::string>::iterator fileIt = rccFilesVec.begin(),
|
|
|
|
optionIt = rccOptionsVec.begin();
|
|
|
|
fileIt != rccFilesVec.end();
|
|
|
|
++fileIt, ++optionIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*optionIt, "@list_sep@", ";");
|
|
|
|
this->RccOptions[*fileIt] = *optionIt;
|
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
|
|
|
|
const char *rccInputs = makefile->GetSafeDefinition("AM_RCC_INPUTS");
|
|
|
|
std::vector<std::string> rccInputLists;
|
|
|
|
cmSystemTools::ExpandListArgument(rccInputs, rccInputLists);
|
|
|
|
|
|
|
|
if (this->RccSources.size() != rccInputLists.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error processing file: ", filename.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::string>::iterator fileIt = this->RccSources.begin(),
|
|
|
|
inputIt = rccInputLists.begin();
|
|
|
|
fileIt != this->RccSources.end();
|
|
|
|
++fileIt, ++inputIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*inputIt, "@list_sep@", ";");
|
|
|
|
std::vector<std::string> rccInputFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(*inputIt, rccInputFiles);
|
|
|
|
|
|
|
|
this->RccInputs[*fileIt] = rccInputFiles;
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2012-08-27 23:39:50 +04:00
|
|
|
this->CurrentCompileSettingsStr = this->MakeCompileSettingsString(makefile);
|
|
|
|
|
2011-12-14 01:11:47 +04:00
|
|
|
this->RelaxedMode = makefile->IsOn("AM_RELAXED_MODE");
|
2011-12-03 01:08:06 +04:00
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
std::string cmQtAutoGenerators::MakeCompileSettingsString(cmMakefile* makefile)
|
2012-08-27 23:39:50 +04:00
|
|
|
{
|
|
|
|
std::string s;
|
2012-09-06 00:13:30 +04:00
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_COMPILE_DEFINITIONS");
|
2012-08-27 23:39:50 +04:00
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_INCLUDES");
|
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_OPTIONS");
|
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->IsOn("AM_CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE") ? "TRUE"
|
|
|
|
: "FALSE";
|
|
|
|
s += " ~~~ ";
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::ReadOldMocDefinitionsFile(cmMakefile* makefile,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& targetDirectory)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-07 19:16:00 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
2015-04-18 15:50:37 +03:00
|
|
|
if (makefile->ReadListFile(filename.c_str()))
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2012-08-27 23:39:50 +04:00
|
|
|
this->OldCompileSettingsStr =
|
|
|
|
makefile->GetSafeDefinition("AM_OLD_COMPILE_SETTINGS");
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void
|
2014-02-25 02:38:30 +04:00
|
|
|
cmQtAutoGenerators::WriteOldMocDefinitionsFile(
|
|
|
|
const std::string& targetDirectory)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-08 17:20:13 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
2014-10-05 00:19:13 +04:00
|
|
|
cmsys::ofstream outfile;
|
2011-08-08 17:20:13 +04:00
|
|
|
outfile.open(filename.c_str(),
|
2014-10-05 00:19:13 +04:00
|
|
|
std::ios::trunc);
|
2012-08-27 23:39:50 +04:00
|
|
|
outfile << "set(AM_OLD_COMPILE_SETTINGS "
|
2015-05-16 01:55:21 +03:00
|
|
|
<< cmOutputConverter::EscapeForCMake(
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CurrentCompileSettingsStr) << ")\n";
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
outfile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::Init()
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2016-04-19 11:15:31 +03:00
|
|
|
this->TargetBuildSubDir = this->TargetName;
|
|
|
|
this->TargetBuildSubDir += ".dir/";
|
|
|
|
|
2016-04-18 14:46:28 +03:00
|
|
|
this->OutMocCppFilenameRel = this->TargetName;
|
|
|
|
this->OutMocCppFilenameRel += ".cpp";
|
2016-04-19 11:15:31 +03:00
|
|
|
this->OutMocCppFilenameAbs = this->Builddir + this->OutMocCppFilenameRel;
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
std::vector<std::string> cdefList;
|
|
|
|
cmSystemTools::ExpandListArgument(this->MocCompileDefinitionsStr, cdefList);
|
2012-09-06 00:13:30 +04:00
|
|
|
for(std::vector<std::string>::const_iterator it = cdefList.begin();
|
|
|
|
it != cdefList.end();
|
|
|
|
++it)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2012-09-06 00:13:30 +04:00
|
|
|
this->MocDefinitions.push_back("-D" + (*it));
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
|
2011-11-01 17:33:11 +04:00
|
|
|
cmSystemTools::ExpandListArgument(this->MocOptionsStr, this->MocOptions);
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
std::vector<std::string> incPaths;
|
|
|
|
cmSystemTools::ExpandListArgument(this->MocIncludesStr, incPaths);
|
|
|
|
|
|
|
|
std::set<std::string> frameworkPaths;
|
|
|
|
for(std::vector<std::string>::const_iterator it = incPaths.begin();
|
|
|
|
it != incPaths.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
const std::string &path = *it;
|
|
|
|
this->MocIncludes.push_back("-I" + path);
|
2014-11-14 02:04:57 +03:00
|
|
|
if (cmHasLiteralSuffix(path, ".framework/Headers"))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
// Go up twice to get to the framework root
|
|
|
|
std::vector<std::string> pathComponents;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::SplitPath(path, pathComponents);
|
2011-08-08 17:20:13 +04:00
|
|
|
std::string frameworkPath =cmsys::SystemTools::JoinPath(
|
|
|
|
pathComponents.begin(), pathComponents.end() - 2);
|
|
|
|
frameworkPaths.insert(frameworkPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::set<std::string>::const_iterator it = frameworkPaths.begin();
|
|
|
|
it != frameworkPaths.end(); ++it)
|
|
|
|
{
|
|
|
|
this->MocIncludes.push_back("-F");
|
|
|
|
this->MocIncludes.push_back(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (this->IncludeProjectDirsBefore)
|
|
|
|
{
|
2014-11-14 02:03:28 +03:00
|
|
|
const std::string binDir = "-I" + this->ProjectBinaryDir;
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
const std::string srcDir = "-I" + this->ProjectSourceDir;
|
|
|
|
|
|
|
|
std::list<std::string> sortedMocIncludes;
|
|
|
|
std::list<std::string>::iterator it = this->MocIncludes.begin();
|
|
|
|
while (it != this->MocIncludes.end())
|
|
|
|
{
|
2016-04-18 12:22:00 +03:00
|
|
|
if (cmsys::SystemTools::StringStartsWith(*it, binDir.c_str()))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
sortedMocIncludes.push_back(*it);
|
|
|
|
it = this->MocIncludes.erase(it);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
it = this->MocIncludes.begin();
|
|
|
|
while (it != this->MocIncludes.end())
|
|
|
|
{
|
2016-04-18 12:22:00 +03:00
|
|
|
if (cmsys::SystemTools::StringStartsWith(*it, srcDir.c_str()))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
sortedMocIncludes.push_back(*it);
|
|
|
|
it = this->MocIncludes.erase(it);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sortedMocIncludes.insert(sortedMocIncludes.end(),
|
|
|
|
this->MocIncludes.begin(), this->MocIncludes.end());
|
|
|
|
this->MocIncludes = sortedMocIncludes;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-09-26 20:05:00 +03:00
|
|
|
static std::string ReadAll(const std::string& filename)
|
|
|
|
{
|
|
|
|
cmsys::ifstream file(filename.c_str());
|
|
|
|
std::stringstream stream;
|
|
|
|
stream << file.rdbuf();
|
|
|
|
file.close();
|
|
|
|
return stream.str();
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-10-11 15:28:08 +04:00
|
|
|
bool cmQtAutoGenerators::RunAutogen(cmMakefile* makefile)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2016-04-19 11:15:31 +03:00
|
|
|
if (!cmsys::SystemTools::FileExists(this->OutMocCppFilenameAbs.c_str())
|
2012-08-27 23:39:50 +04:00
|
|
|
|| (this->OldCompileSettingsStr != this->CurrentCompileSettingsStr))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
this->GenerateAll = true;
|
|
|
|
}
|
|
|
|
|
2011-08-10 22:45:22 +04:00
|
|
|
// the program goes through all .cpp files to see which moc files are
|
|
|
|
// included. It is not really interesting how the moc file is named, but
|
|
|
|
// what file the moc is created from. Once a moc is included the same moc
|
|
|
|
// may not be included in the _automoc.cpp file anymore. OTOH if there's a
|
|
|
|
// header containing Q_OBJECT where no corresponding moc file is included
|
|
|
|
// anywhere a moc_<filename>.cpp file is created and included in
|
|
|
|
// the _automoc.cpp file.
|
|
|
|
|
|
|
|
// key = moc source filepath, value = moc output filepath
|
|
|
|
std::map<std::string, std::string> includedMocs;
|
2011-10-22 21:38:39 +04:00
|
|
|
// collect all headers which may need to be mocced
|
|
|
|
std::set<std::string> headerFiles;
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
std::vector<std::string> sourceFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(this->Sources, sourceFiles);
|
|
|
|
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::vector<std::string>& headerExtensions =
|
2015-10-24 15:58:23 +03:00
|
|
|
makefile->GetCMakeInstance()->GetHeaderExtensions();
|
2011-12-02 23:38:14 +04:00
|
|
|
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> > includedUis;
|
|
|
|
std::map<std::string, std::vector<std::string> > skippedUis;
|
2013-07-25 11:24:53 +04:00
|
|
|
std::vector<std::string> uicSkipped;
|
|
|
|
cmSystemTools::ExpandListArgument(this->SkipUic, uicSkipped);
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
for (std::vector<std::string>::const_iterator it = sourceFiles.begin();
|
|
|
|
it != sourceFiles.end();
|
|
|
|
++it)
|
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
const bool skipUic = std::find(uicSkipped.begin(), uicSkipped.end(), *it)
|
|
|
|
!= uicSkipped.end();
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> >& uiFiles
|
2014-02-02 16:19:27 +04:00
|
|
|
= skipUic ? skippedUis : includedUis;
|
2011-08-08 17:20:13 +04:00
|
|
|
const std::string &absFilename = *it;
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: Checking " << absFilename << std::endl;
|
|
|
|
this->LogInfo(err.str());
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
2011-12-14 01:11:47 +04:00
|
|
|
if (this->RelaxedMode)
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseCppFile(absFilename, headerExtensions, includedMocs,
|
|
|
|
uiFiles);
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
2011-12-03 01:08:06 +04:00
|
|
|
else
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
this->StrictParseCppFile(absFilename, headerExtensions, includedMocs,
|
|
|
|
uiFiles);
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
2011-12-02 23:38:14 +04:00
|
|
|
this->SearchHeadersForCppFile(absFilename, headerExtensions, headerFiles);
|
2011-08-09 11:11:53 +04:00
|
|
|
}
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> mocSkipped;
|
|
|
|
cmSystemTools::ExpandListArgument(this->SkipMoc, mocSkipped);
|
|
|
|
for (std::vector<std::string>::const_iterator it = mocSkipped.begin();
|
|
|
|
it != mocSkipped.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
if (std::find(uicSkipped.begin(), uicSkipped.end(), *it)
|
|
|
|
!= uicSkipped.end())
|
|
|
|
{
|
|
|
|
const std::string &absFilename = *it;
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: Checking " << absFilename << std::endl;
|
|
|
|
this->LogInfo(err.str());
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
this->ParseForUic(absFilename, includedUis);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 21:38:39 +04:00
|
|
|
std::vector<std::string> headerFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(this->Headers, headerFilesVec);
|
2014-11-25 18:33:00 +03:00
|
|
|
headerFiles.insert(headerFilesVec.begin(), headerFilesVec.end());
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2011-10-22 21:38:39 +04:00
|
|
|
// key = moc source filepath, value = moc output filename
|
|
|
|
std::map<std::string, std::string> notIncludedMocs;
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseHeaders(headerFiles, includedMocs, notIncludedMocs, includedUis);
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2016-04-18 14:46:28 +03:00
|
|
|
if(!this->MocExecutable.empty())
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2016-04-18 14:46:28 +03:00
|
|
|
this->GenerateMocFiles ( includedMocs, notIncludedMocs );
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
2016-04-18 15:07:12 +03:00
|
|
|
if(!this->UicExecutable.empty())
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
2016-04-18 15:07:12 +03:00
|
|
|
this->GenerateUiFiles ( includedUis );
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
if(!this->RccExecutable.empty())
|
|
|
|
{
|
2016-04-18 13:34:10 +03:00
|
|
|
this->GenerateQrcFiles();
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
if (this->RunMocFailed)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err; err << "moc failed..." << std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-08-08 17:20:13 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
if (this->RunUicFailed)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err; err << "uic failed..." << std::endl;
|
|
|
|
this->LogError(err.str());
|
2013-07-25 11:24:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
if (this->RunRccFailed)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err; err << "rcc failed..." << std::endl;
|
|
|
|
this->LogError(err.str());
|
2013-09-15 16:41:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::ParseCppFile(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> > &includedUis)
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
|
|
|
cmsys::RegularExpression mocIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?moc_[^ \">/]+\\.cpp|[^ \">]+\\.moc)[\">]");
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2011-08-10 23:00:53 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-08-10 23:00:53 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-01-24 20:01:59 +04:00
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
if (this->MocExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-10 23:00:53 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-11-10 23:25:28 +04:00
|
|
|
const std::string scannedFileBasename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFilename);
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
const bool requiresMoc = requiresMocing(contentsString, macroName);
|
2011-11-11 00:30:06 +04:00
|
|
|
bool dotMocIncluded = false;
|
|
|
|
bool mocUnderscoreIncluded = false;
|
|
|
|
std::string ownMocUnderscoreFile;
|
2011-11-29 23:55:36 +04:00
|
|
|
std::string ownDotMocFile;
|
2011-11-11 00:30:06 +04:00
|
|
|
std::string ownMocHeaderFile;
|
|
|
|
|
2011-08-19 22:16:53 +04:00
|
|
|
std::string::size_type matchOffset = 0;
|
2012-11-07 20:13:09 +04:00
|
|
|
// first a simple string check for "moc" is *much* faster than the regexp,
|
2011-11-11 01:54:44 +04:00
|
|
|
// and if the string search already fails, we don't have to try the
|
|
|
|
// expensive regexp
|
|
|
|
if ((strstr(contentsString.c_str(), "moc") != NULL)
|
|
|
|
&& (mocIncludeRegExp.find(contentsString)))
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
|
|
|
// for every moc include in the file
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentMoc = mocIncludeRegExp.match(1);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentMoc);
|
2014-11-14 02:04:57 +03:00
|
|
|
const bool moc_style = cmHasLiteralPrefix(basename, "moc_");
|
2011-08-10 23:00:53 +04:00
|
|
|
|
|
|
|
// If the moc include is of the moc_foo.cpp style we expect
|
|
|
|
// the Q_OBJECT class declaration in a header file.
|
|
|
|
// If the moc include is of the foo.moc style we need to look for
|
|
|
|
// a Q_OBJECT macro in the current source file, if it contains the
|
2011-10-22 23:16:39 +04:00
|
|
|
// macro we generate the moc file from the source file.
|
2011-08-10 23:00:53 +04:00
|
|
|
// Q_OBJECT
|
2011-10-22 23:16:39 +04:00
|
|
|
if (moc_style)
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
2011-10-22 23:16:39 +04:00
|
|
|
// basename should be the part of the moc filename used for
|
|
|
|
// finding the correct header, so we need to remove the moc_ part
|
|
|
|
basename = basename.substr(4);
|
2011-11-23 00:35:08 +04:00
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
2011-11-10 23:56:46 +04:00
|
|
|
|
|
|
|
if (!headerToMoc.empty())
|
|
|
|
{
|
|
|
|
includedMocs[headerToMoc] = currentMoc;
|
2011-11-11 00:30:06 +04:00
|
|
|
if (basename == scannedFileBasename)
|
|
|
|
{
|
|
|
|
mocUnderscoreIncluded = true;
|
|
|
|
ownMocUnderscoreFile = currentMoc;
|
|
|
|
ownMocHeaderFile = headerToMoc;
|
|
|
|
}
|
2011-11-10 23:56:46 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << ": The file "
|
|
|
|
<< "includes the moc file \"" << currentMoc << "\", "
|
|
|
|
<< "but could not find header \"" << basename
|
|
|
|
<< '{' << this->JoinExts(headerExtensions) << "}\" ";
|
2011-11-10 23:56:46 +04:00
|
|
|
if (mocSubDir.empty())
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
err << "in " << absPath << "\n" << std::endl;
|
2011-11-10 23:56:46 +04:00
|
|
|
}
|
2011-08-10 23:00:53 +04:00
|
|
|
else
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
err << "neither in " << absPath
|
|
|
|
<< " nor in " << mocSubDir << "\n" << std::endl;
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
2016-04-24 16:00:26 +03:00
|
|
|
this->LogError(err.str());
|
2011-11-10 23:56:46 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-01 00:43:05 +04:00
|
|
|
std::string fileToMoc = absFilename;
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((basename != scannedFileBasename) || (requiresMoc==false))
|
2011-11-10 23:25:28 +04:00
|
|
|
{
|
2011-12-03 00:43:15 +04:00
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
|
|
|
if (!headerToMoc.empty())
|
2011-11-23 01:01:13 +04:00
|
|
|
{
|
2011-12-03 00:43:15 +04:00
|
|
|
// this is for KDE4 compatibility:
|
|
|
|
fileToMoc = headerToMoc;
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((requiresMoc==false) &&(basename==scannedFileBasename))
|
2011-12-03 00:54:11 +04:00
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": The file "
|
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\", but does not contain a " << macroName
|
|
|
|
<< " macro. Running moc on "
|
|
|
|
<< "\"" << headerToMoc << "\" ! Include \"moc_"
|
|
|
|
<< basename << ".cpp\" for a compatibility with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-12-03 00:54:11 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": The file "
|
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\" instead of \"moc_" << basename << ".cpp\". "
|
|
|
|
"Running moc on "
|
|
|
|
<< "\"" << headerToMoc << "\" ! Include \"moc_"
|
|
|
|
<< basename << ".cpp\" for compatibility with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-12-03 00:54:11 +04:00
|
|
|
}
|
2011-11-23 01:01:13 +04:00
|
|
|
}
|
2011-12-03 00:43:15 +04:00
|
|
|
else
|
2011-11-23 01:01:13 +04:00
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << ": The file "
|
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\", which seems to be the moc file from a different "
|
|
|
|
"source file. CMake also could not find a matching "
|
|
|
|
"header.\n" << std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-11-23 01:01:13 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-11-10 23:25:28 +04:00
|
|
|
}
|
2011-11-29 23:55:36 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
dotMocIncluded = true;
|
|
|
|
ownDotMocFile = currentMoc;
|
|
|
|
}
|
2011-12-01 00:43:05 +04:00
|
|
|
includedMocs[fileToMoc] = currentMoc;
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
matchOffset += mocIncludeRegExp.end();
|
|
|
|
} while(mocIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2011-11-11 00:30:06 +04:00
|
|
|
// In this case, check whether the scanned file itself contains a Q_OBJECT.
|
|
|
|
// If this is the case, the moc_foo.cpp should probably be generated from
|
|
|
|
// foo.cpp instead of foo.h, because otherwise it won't build.
|
|
|
|
// But warn, since this is not how it is supposed to be used.
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((dotMocIncluded == false) && (requiresMoc == true))
|
2011-11-11 00:30:06 +04:00
|
|
|
{
|
2011-12-02 23:59:44 +04:00
|
|
|
if (mocUnderscoreIncluded == true)
|
2011-11-11 00:30:06 +04:00
|
|
|
{
|
2011-11-17 01:35:06 +04:00
|
|
|
// this is for KDE4 compatibility:
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": The file "
|
|
|
|
<< "contains a " << macroName << " macro, but does not "
|
|
|
|
"include "
|
|
|
|
<< "\"" << scannedFileBasename << ".moc\", but instead "
|
|
|
|
"includes "
|
|
|
|
<< "\"" << ownMocUnderscoreFile << "\". Running moc on "
|
|
|
|
<< "\"" << absFilename << "\" ! Better include \""
|
|
|
|
<< scannedFileBasename << ".moc\" for compatibility with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
|
|
|
|
2011-11-11 00:30:06 +04:00
|
|
|
includedMocs[absFilename] = ownMocUnderscoreFile;
|
|
|
|
includedMocs.erase(ownMocHeaderFile);
|
|
|
|
}
|
2011-11-17 01:35:06 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// otherwise always error out since it will not compile:
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << ": The file "
|
|
|
|
<< "contains a " << macroName << " macro, but does not "
|
|
|
|
"include "
|
|
|
|
<< "\"" << scannedFileBasename << ".moc\" !\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
|
|
|
|
2011-11-17 01:35:06 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-11-11 00:30:06 +04:00
|
|
|
}
|
|
|
|
|
2011-12-02 23:38:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::StrictParseCppFile(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
|
|
|
cmsys::RegularExpression mocIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?moc_[^ \">/]+\\.cpp|[^ \">]+\\.moc)[\">]");
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2011-12-02 23:59:44 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-12-02 23:59:44 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-01-24 20:01:59 +04:00
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
if (this->MocExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-02 23:59:44 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-12-02 23:59:44 +04:00
|
|
|
const std::string scannedFileBasename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFilename);
|
|
|
|
|
|
|
|
bool dotMocIncluded = false;
|
|
|
|
|
|
|
|
std::string::size_type matchOffset = 0;
|
2012-11-07 20:13:09 +04:00
|
|
|
// first a simple string check for "moc" is *much* faster than the regexp,
|
2011-12-02 23:59:44 +04:00
|
|
|
// and if the string search already fails, we don't have to try the
|
|
|
|
// expensive regexp
|
|
|
|
if ((strstr(contentsString.c_str(), "moc") != NULL)
|
|
|
|
&& (mocIncludeRegExp.find(contentsString)))
|
|
|
|
{
|
|
|
|
// for every moc include in the file
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentMoc = mocIncludeRegExp.match(1);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentMoc);
|
2014-11-14 02:04:57 +03:00
|
|
|
const bool mocUnderscoreStyle = cmHasLiteralPrefix(basename, "moc_");
|
2011-12-02 23:59:44 +04:00
|
|
|
|
|
|
|
// If the moc include is of the moc_foo.cpp style we expect
|
|
|
|
// the Q_OBJECT class declaration in a header file.
|
|
|
|
// If the moc include is of the foo.moc style we need to look for
|
|
|
|
// a Q_OBJECT macro in the current source file, if it contains the
|
|
|
|
// macro we generate the moc file from the source file.
|
|
|
|
if (mocUnderscoreStyle)
|
|
|
|
{
|
|
|
|
// basename should be the part of the moc filename used for
|
|
|
|
// finding the correct header, so we need to remove the moc_ part
|
|
|
|
basename = basename.substr(4);
|
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
|
|
|
|
|
|
|
if (!headerToMoc.empty())
|
|
|
|
{
|
|
|
|
includedMocs[headerToMoc] = currentMoc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << " The file "
|
|
|
|
<< "includes the moc file \"" << currentMoc << "\", "
|
|
|
|
<< "but could not find header \"" << basename
|
|
|
|
<< '{' << this->JoinExts(headerExtensions) << "}\" ";
|
2011-12-02 23:59:44 +04:00
|
|
|
if (mocSubDir.empty())
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
err << "in " << absPath << "\n" << std::endl;
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
err << "neither in " << absPath
|
|
|
|
<< " nor in " << mocSubDir << "\n" << std::endl;
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
2016-04-24 16:00:26 +03:00
|
|
|
this->LogError(err.str());
|
2011-12-02 23:59:44 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (basename != scannedFileBasename)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << ": The file "
|
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\", which seems to be the moc file from a different "
|
|
|
|
"source file. This is not supported. "
|
|
|
|
"Include \"" << scannedFileBasename << ".moc\" to run "
|
|
|
|
"moc on this source file.\n" << std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-12-02 23:59:44 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
dotMocIncluded = true;
|
|
|
|
includedMocs[absFilename] = currentMoc;
|
|
|
|
}
|
|
|
|
matchOffset += mocIncludeRegExp.end();
|
|
|
|
} while(mocIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
// In this case, check whether the scanned file itself contains a Q_OBJECT.
|
|
|
|
// If this is the case, the moc_foo.cpp should probably be generated from
|
|
|
|
// foo.cpp instead of foo.h, because otherwise it won't build.
|
|
|
|
// But warn, since this is not how it is supposed to be used.
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
if ((dotMocIncluded == false) && (requiresMocing(contentsString,
|
|
|
|
macroName)))
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
|
|
|
// otherwise always error out since it will not compile:
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: " << absFilename << ": The file "
|
|
|
|
<< "contains a " << macroName << " macro, but does not include "
|
|
|
|
<< "\"" << scannedFileBasename << ".moc\" !\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-12-02 23:59:44 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
void cmQtAutoGenerators::ParseForUic(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (this->UicExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2013-07-25 11:24:53 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2013-07-25 11:24:53 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-02 16:19:27 +04:00
|
|
|
void cmQtAutoGenerators::ParseForUic(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::string& contentsString,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (this->UicExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cmsys::RegularExpression uiIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?ui_[^ \">/]+\\.h)[\">]");
|
|
|
|
|
|
|
|
std::string::size_type matchOffset = 0;
|
|
|
|
|
2014-03-25 04:26:27 +04:00
|
|
|
const std::string realName =
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename);
|
2014-02-02 16:19:27 +04:00
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
matchOffset = 0;
|
|
|
|
if ((strstr(contentsString.c_str(), "ui_") != NULL)
|
|
|
|
&& (uiIncludeRegExp.find(contentsString)))
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentUi = uiIncludeRegExp.match(1);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentUi);
|
|
|
|
|
|
|
|
// basename should be the part of the ui filename used for
|
|
|
|
// finding the correct header, so we need to remove the ui_ part
|
|
|
|
basename = basename.substr(3);
|
|
|
|
|
2014-09-17 03:23:57 +04:00
|
|
|
includedUis[realName].push_back(basename);
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
matchOffset += uiIncludeRegExp.end();
|
|
|
|
} while(uiIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void
|
|
|
|
cmQtAutoGenerators::SearchHeadersForCppFile(const std::string& absFilename,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::set<std::string>& absHeaders)
|
2011-12-02 23:38:14 +04:00
|
|
|
{
|
2011-10-22 21:38:39 +04:00
|
|
|
// search for header files and private header files we may need to moc:
|
|
|
|
const std::string basename =
|
|
|
|
cmsys::SystemTools::GetFilenameWithoutLastExtension(absFilename);
|
2011-12-02 23:38:14 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-12-02 23:38:14 +04:00
|
|
|
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-10-22 21:38:39 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::string headerName = absPath + basename + "." + (*ext);
|
2011-10-22 21:38:39 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(headerName.c_str()))
|
|
|
|
{
|
|
|
|
absHeaders.insert(headerName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-10-22 21:38:39 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::string privateHeaderName = absPath+basename+"_p."+(*ext);
|
2011-10-22 21:38:39 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(privateHeaderName.c_str()))
|
|
|
|
{
|
|
|
|
absHeaders.insert(privateHeaderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::ParseHeaders(const std::set<std::string>& absHeaders,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::string>& notIncludedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
for(std::set<std::string>::const_iterator hIt=absHeaders.begin();
|
|
|
|
hIt!=absHeaders.end();
|
|
|
|
++hIt)
|
|
|
|
{
|
|
|
|
const std::string& headerName = *hIt;
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contents = ReadAll(headerName);
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2014-01-24 20:01:59 +04:00
|
|
|
if (!this->MocExecutable.empty()
|
|
|
|
&& includedMocs.find(headerName) == includedMocs.end())
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: Checking " << headerName << std::endl;
|
|
|
|
this->LogInfo(err.str());
|
2011-10-22 21:38:39 +04:00
|
|
|
}
|
|
|
|
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
if (requiresMocing(contents, macroName))
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
2016-04-19 11:15:31 +03:00
|
|
|
const std::string parentDir = this->TargetBuildSubDir
|
|
|
|
+ this->SourceRelativePath ( headerName );
|
|
|
|
const std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(headerName);
|
|
|
|
const std::string currentMoc = parentDir + "moc_" + basename + ".cpp";
|
2011-10-22 21:38:39 +04:00
|
|
|
notIncludedMocs[headerName] = currentMoc;
|
|
|
|
}
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseForUic(headerName, contents, includedUis);
|
2011-10-22 21:38:39 +04:00
|
|
|
}
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
|
2016-04-18 14:46:28 +03:00
|
|
|
|
|
|
|
bool cmQtAutoGenerators::GenerateMocFiles(
|
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
|
|
|
const std::map<std::string, std::string>& notIncludedMocs )
|
|
|
|
{
|
2016-04-18 21:09:23 +03:00
|
|
|
// look for name collisions
|
|
|
|
{
|
|
|
|
std::multimap<std::string, std::string> collisions;
|
|
|
|
// Test merged map of included and notIncluded
|
|
|
|
std::map<std::string, std::string> mergedMocs ( includedMocs );
|
|
|
|
mergedMocs.insert ( notIncludedMocs.begin(), notIncludedMocs.end() );
|
|
|
|
if( this->NameCollisionTest ( mergedMocs, collisions ) )
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err <<
|
2016-04-18 21:09:23 +03:00
|
|
|
"AUTOGEN: error: "
|
|
|
|
"The same moc file will be generated "
|
|
|
|
"from different sources." << std::endl <<
|
|
|
|
"To avoid this error either" << std::endl <<
|
|
|
|
"- rename the source files or" << std::endl <<
|
|
|
|
"- do not include the (moc_NAME.cpp|NAME.moc) file" << std::endl;
|
2016-04-24 16:00:26 +03:00
|
|
|
this->NameCollisionLog ( err.str(), collisions );
|
2016-04-18 21:09:23 +03:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 14:46:28 +03:00
|
|
|
// generate moc files that are included by source files.
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = includedMocs.begin(); it != includedMocs.end(); ++it)
|
|
|
|
{
|
|
|
|
if (!this->GenerateMoc(it->first, it->second))
|
|
|
|
{
|
|
|
|
if (this->RunMocFailed)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate moc files that are _not_ included by source files.
|
|
|
|
bool automocCppChanged = false;
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = notIncludedMocs.begin(); it != notIncludedMocs.end(); ++it)
|
|
|
|
{
|
|
|
|
if (this->GenerateMoc(it->first, it->second))
|
|
|
|
{
|
|
|
|
automocCppChanged = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (this->RunMocFailed)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// compose _automoc.cpp content
|
|
|
|
std::string automocSource;
|
|
|
|
{
|
|
|
|
std::stringstream outStream;
|
|
|
|
outStream << "/* This file is autogenerated, do not edit*/\n";
|
|
|
|
if( notIncludedMocs.empty() )
|
|
|
|
{
|
|
|
|
outStream << "enum some_compilers { need_more_than_nothing };\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = notIncludedMocs.begin();
|
|
|
|
it != notIncludedMocs.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
outStream << "#include \"" << it->second << "\"\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
outStream.flush();
|
|
|
|
automocSource = outStream.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if we even need to update _automoc.cpp
|
|
|
|
if (!automocCppChanged)
|
|
|
|
{
|
|
|
|
// compare contents of the _automoc.cpp file
|
2016-04-19 11:15:31 +03:00
|
|
|
const std::string oldContents = ReadAll(this->OutMocCppFilenameAbs);
|
2016-04-18 14:46:28 +03:00
|
|
|
if (oldContents == automocSource)
|
|
|
|
{
|
|
|
|
// nothing changed: don't touch the _automoc.cpp file
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: " << this->OutMocCppFilenameRel
|
|
|
|
<< " still up to date" << std::endl;
|
|
|
|
this->LogInfo(err.str());
|
2016-04-18 14:46:28 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// actually write _automoc.cpp
|
|
|
|
{
|
2016-04-24 16:44:10 +03:00
|
|
|
std::string msg = "Generating moc compilation ";
|
2016-04-18 14:46:28 +03:00
|
|
|
msg += this->OutMocCppFilenameRel;
|
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
cmsys::ofstream outfile;
|
2016-04-19 11:15:31 +03:00
|
|
|
outfile.open(this->OutMocCppFilenameAbs.c_str(),
|
2016-04-18 14:46:28 +03:00
|
|
|
std::ios::trunc);
|
|
|
|
outfile << automocSource;
|
|
|
|
outfile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateMoc(const std::string& sourceFile,
|
2011-08-08 17:20:13 +04:00
|
|
|
const std::string& mocFileName)
|
|
|
|
{
|
|
|
|
const std::string mocFilePath = this->Builddir + mocFileName;
|
|
|
|
int sourceNewerThanMoc = 0;
|
2014-10-15 16:54:05 +04:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(sourceFile,
|
|
|
|
mocFilePath,
|
2011-08-08 17:20:13 +04:00
|
|
|
&sourceNewerThanMoc);
|
|
|
|
if (this->GenerateAll || !success || sourceNewerThanMoc >= 0)
|
|
|
|
{
|
|
|
|
// make sure the directory for the resulting moc file exists
|
|
|
|
std::string mocDir = mocFilePath.substr(0, mocFilePath.rfind('/'));
|
|
|
|
if (!cmsys::SystemTools::FileExists(mocDir.c_str(), false))
|
|
|
|
{
|
|
|
|
cmsys::SystemTools::MakeDirectory(mocDir.c_str());
|
|
|
|
}
|
|
|
|
|
2016-04-24 16:44:10 +03:00
|
|
|
std::string msg = "Generating moc source ";
|
2011-08-14 18:43:04 +04:00
|
|
|
msg += mocFileName;
|
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> command;
|
2011-08-08 17:20:13 +04:00
|
|
|
command.push_back(this->MocExecutable);
|
2014-11-22 13:00:45 +03:00
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocIncludes.begin(), this->MocIncludes.end());
|
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocDefinitions.begin(), this->MocDefinitions.end());
|
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocOptions.begin(), this->MocOptions.end());
|
2011-08-08 17:20:13 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
command.push_back("-DWIN32");
|
|
|
|
#endif
|
|
|
|
command.push_back("-o");
|
|
|
|
command.push_back(mocFilePath);
|
|
|
|
command.push_back(sourceFile);
|
|
|
|
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-18 13:02:28 +03:00
|
|
|
this->LogCommand(command);
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2015-04-20 22:36:57 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
2011-08-08 17:20:13 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: process for " << mocFilePath <<" failed:\n"
|
|
|
|
<< output << std::endl;
|
|
|
|
this->LogError(err.str());
|
2011-08-08 17:20:13 +04:00
|
|
|
this->RunMocFailed = true;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::RemoveFile(mocFilePath);
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-18 15:07:12 +03:00
|
|
|
|
|
|
|
bool cmQtAutoGenerators::GenerateUiFiles(
|
|
|
|
const std::map<std::string, std::vector<std::string> >& includedUis )
|
|
|
|
{
|
2016-04-18 17:51:24 +03:00
|
|
|
// single map with input / output names
|
|
|
|
std::map<std::string, std::map<std::string, std::string> > uiGenMap;
|
2016-04-18 21:32:44 +03:00
|
|
|
std::map<std::string, std::string> testMap;
|
2016-04-18 15:07:12 +03:00
|
|
|
for(std::map<std::string, std::vector<std::string> >::const_iterator
|
|
|
|
it = includedUis.begin(); it != includedUis.end(); ++it)
|
|
|
|
{
|
2016-04-18 17:51:24 +03:00
|
|
|
// source file path
|
|
|
|
std::string sourcePath = cmsys::SystemTools::GetFilenamePath(it->first);
|
|
|
|
sourcePath += '/';
|
|
|
|
// insert new map for source file an use new reference
|
|
|
|
uiGenMap[it->first] = std::map<std::string, std::string>();
|
|
|
|
std::map<std::string, std::string>& sourceMap = uiGenMap[it->first];
|
|
|
|
for (std::vector<std::string>::const_iterator sit = it->second.begin();
|
|
|
|
sit != it->second.end();
|
|
|
|
++sit)
|
2016-04-18 15:07:12 +03:00
|
|
|
{
|
2016-04-18 17:51:24 +03:00
|
|
|
const std::string & uiFileName = *sit;
|
|
|
|
const std::string uiInputFile = sourcePath + uiFileName + ".ui";
|
|
|
|
const std::string uiOutputFile = "ui_" + uiFileName + ".h";
|
|
|
|
sourceMap[uiInputFile] = uiOutputFile;
|
2016-04-18 21:32:44 +03:00
|
|
|
testMap[uiInputFile] = uiOutputFile;
|
2016-04-18 17:51:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 21:32:44 +03:00
|
|
|
// look for name collisions
|
|
|
|
{
|
|
|
|
std::multimap<std::string, std::string> collisions;
|
|
|
|
if( this->NameCollisionTest ( testMap, collisions ) )
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: The same ui_NAME.h file will be generated "
|
|
|
|
"from different sources." << std::endl
|
|
|
|
<< "To avoid this error rename the source files." << std::endl;
|
|
|
|
this->NameCollisionLog ( err.str(), collisions );
|
2016-04-18 21:32:44 +03:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
testMap.clear();
|
|
|
|
|
2016-04-18 17:51:24 +03:00
|
|
|
// generate ui files
|
|
|
|
for(std::map<std::string, std::map<std::string, std::string> >::
|
|
|
|
const_iterator it = uiGenMap.begin(); it != uiGenMap.end(); ++it)
|
|
|
|
{
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
sit = it->second.begin();
|
|
|
|
sit != it->second.end();
|
|
|
|
++sit)
|
|
|
|
{
|
|
|
|
if (!this->GenerateUi(it->first, sit->first, sit->second) )
|
2016-04-18 15:07:12 +03:00
|
|
|
{
|
|
|
|
if (this->RunUicFailed)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-25 04:26:27 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateUi(const std::string& realName,
|
2016-04-18 17:51:24 +03:00
|
|
|
const std::string& uiInputFile,
|
|
|
|
const std::string& uiOutputFile)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (!cmsys::SystemTools::FileExists(this->Builddir.c_str(), false))
|
|
|
|
{
|
|
|
|
cmsys::SystemTools::MakeDirectory(this->Builddir.c_str());
|
|
|
|
}
|
|
|
|
|
2016-04-18 17:51:24 +03:00
|
|
|
const ::std::string uiBuildFile = this->Builddir + uiOutputFile;
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
int sourceNewerThanUi = 0;
|
2016-04-18 17:51:24 +03:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(uiInputFile,
|
|
|
|
uiBuildFile,
|
2013-07-25 11:24:53 +04:00
|
|
|
&sourceNewerThanUi);
|
|
|
|
if (this->GenerateAll || !success || sourceNewerThanUi >= 0)
|
|
|
|
{
|
2016-04-24 16:44:10 +03:00
|
|
|
std::string msg = "Generating ui header ";
|
2016-04-18 17:51:24 +03:00
|
|
|
msg += uiOutputFile;
|
2013-07-25 11:24:53 +04:00
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> command;
|
2013-07-25 11:24:53 +04:00
|
|
|
command.push_back(this->UicExecutable);
|
|
|
|
|
|
|
|
std::vector<std::string> opts = this->UicTargetOptions;
|
|
|
|
std::map<std::string, std::string>::const_iterator optionIt
|
2016-04-18 17:51:24 +03:00
|
|
|
= this->UicOptions.find(uiInputFile);
|
2013-07-25 11:24:53 +04:00
|
|
|
if (optionIt != this->UicOptions.end())
|
|
|
|
{
|
|
|
|
std::vector<std::string> fileOpts;
|
|
|
|
cmSystemTools::ExpandListArgument(optionIt->second, fileOpts);
|
2015-09-20 17:40:49 +03:00
|
|
|
cmQtAutoGenerators::MergeUicOptions(opts, fileOpts,
|
|
|
|
this->QtMajorVersion == "5");
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
2014-11-22 13:00:45 +03:00
|
|
|
command.insert(command.end(), opts.begin(), opts.end());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
command.push_back("-o");
|
2016-04-18 17:51:24 +03:00
|
|
|
command.push_back(uiBuildFile);
|
|
|
|
command.push_back(uiInputFile);
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2016-04-18 13:02:28 +03:00
|
|
|
this->LogCommand(command);
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2015-04-20 22:36:57 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
2013-07-25 11:24:53 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOUIC: error: process for " << uiOutputFile <<
|
|
|
|
" needed by\n \"" << realName << "\"\nfailed:\n" << output
|
|
|
|
<< std::endl;
|
|
|
|
this->LogError(err.str());
|
2013-07-25 11:24:53 +04:00
|
|
|
this->RunUicFailed = true;
|
2016-04-18 17:51:24 +03:00
|
|
|
cmSystemTools::RemoveFile(uiOutputFile);
|
2013-07-25 11:24:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2014-09-17 04:42:30 +04:00
|
|
|
bool cmQtAutoGenerators::InputFilesNewerThanQrc(const std::string& qrcFile,
|
|
|
|
const std::string& rccOutput)
|
|
|
|
{
|
|
|
|
std::vector<std::string> const& files = this->RccInputs[qrcFile];
|
|
|
|
for (std::vector<std::string>::const_iterator it = files.begin();
|
|
|
|
it != files.end(); ++it)
|
|
|
|
{
|
|
|
|
int inputNewerThanQrc = 0;
|
2014-11-23 13:05:50 +03:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(*it,
|
|
|
|
rccOutput,
|
2014-09-17 04:42:30 +04:00
|
|
|
&inputNewerThanQrc);
|
|
|
|
if (!success || inputNewerThanQrc >= 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-18 13:34:10 +03:00
|
|
|
bool cmQtAutoGenerators::GenerateQrcFiles()
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2016-04-18 18:52:00 +03:00
|
|
|
// generate single map with input / output names
|
|
|
|
std::map<std::string, std::string> qrcGenMap;
|
2014-09-23 02:57:48 +04:00
|
|
|
for(std::vector<std::string>::const_iterator si = this->RccSources.begin();
|
|
|
|
si != this->RccSources.end(); ++si)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2016-04-18 18:52:00 +03:00
|
|
|
const std::string ext = cmsys::SystemTools::GetFilenameLastExtension(*si);
|
|
|
|
if (ext == ".qrc")
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2016-04-18 18:52:00 +03:00
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(*si);
|
2016-04-19 12:02:48 +03:00
|
|
|
std::string qrcOutputFile = this->TargetBuildSubDir
|
|
|
|
+ this->SourceRelativePath ( *si )
|
|
|
|
+ "qrc_" + basename + ".cpp";
|
|
|
|
//std::string qrcOutputFile = "CMakeFiles/" + this->OriginTargetName
|
|
|
|
// + ".dir/qrc_" + basename + ".cpp";
|
2016-04-18 18:52:00 +03:00
|
|
|
qrcGenMap[*si] = qrcOutputFile;
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2016-04-18 18:52:00 +03:00
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2016-04-18 21:36:04 +03:00
|
|
|
// look for name collisions
|
|
|
|
{
|
|
|
|
std::multimap<std::string, std::string> collisions;
|
|
|
|
if( this->NameCollisionTest ( qrcGenMap, collisions ) )
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTOGEN: error: The same qrc_NAME.cpp file"
|
|
|
|
" will be generated from different sources." << std::endl
|
|
|
|
<< "To avoid this error rename the source .qrc files."
|
|
|
|
<< std::endl;
|
|
|
|
this->NameCollisionLog ( err.str(), collisions );
|
2016-04-18 21:36:04 +03:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
// generate qrc files
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
si = qrcGenMap.begin(); si != qrcGenMap.end(); ++si)
|
|
|
|
{
|
|
|
|
if (!this->GenerateQrc( si->first, si->second))
|
|
|
|
{
|
|
|
|
if (this->RunRccFailed)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
bool cmQtAutoGenerators::GenerateQrc (
|
|
|
|
const std::string& qrcInputFile,
|
|
|
|
const std::string& qrcOutputFile )
|
|
|
|
{
|
2016-04-19 12:02:48 +03:00
|
|
|
std::string relName = this->SourceRelativePath ( qrcInputFile );
|
|
|
|
cmSystemTools::ReplaceString(relName, "/", "_");
|
|
|
|
relName += cmsys::SystemTools::GetFilenameWithoutLastExtension(qrcInputFile);
|
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
const ::std::string qrcBuildFile = this->Builddir + qrcOutputFile;
|
|
|
|
|
|
|
|
int sourceNewerThanQrc = 0;
|
|
|
|
bool generateQrc = !cmsys::SystemTools::FileTimeCompare(qrcInputFile,
|
|
|
|
qrcBuildFile,
|
|
|
|
&sourceNewerThanQrc);
|
|
|
|
generateQrc = generateQrc || (sourceNewerThanQrc >= 0);
|
|
|
|
generateQrc = generateQrc || this->InputFilesNewerThanQrc(qrcInputFile,
|
|
|
|
qrcBuildFile);
|
|
|
|
|
|
|
|
if (this->GenerateAll || generateQrc)
|
|
|
|
{
|
2016-04-24 16:44:10 +03:00
|
|
|
std::string msg = "Generating qrc source ";
|
2016-04-18 18:52:00 +03:00
|
|
|
msg += qrcOutputFile;
|
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
std::vector<std::string> command;
|
|
|
|
command.push_back(this->RccExecutable);
|
2014-09-17 04:42:30 +04:00
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
std::map<std::string, std::string>::const_iterator optionIt
|
|
|
|
= this->RccOptions.find(qrcInputFile);
|
|
|
|
if (optionIt != this->RccOptions.end())
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2016-04-18 18:52:00 +03:00
|
|
|
cmSystemTools::ExpandListArgument(optionIt->second, command);
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
command.push_back("-name");
|
2016-04-19 12:02:48 +03:00
|
|
|
command.push_back(relName);
|
2016-04-18 18:52:00 +03:00
|
|
|
command.push_back("-o");
|
|
|
|
command.push_back(qrcBuildFile);
|
|
|
|
command.push_back(qrcInputFile);
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2016-04-18 18:52:00 +03:00
|
|
|
if (this->Verbose)
|
|
|
|
{
|
|
|
|
this->LogCommand(command);
|
|
|
|
}
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
|
|
|
if (!result || retVal)
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
err << "AUTORCC: error: process for " << qrcOutputFile <<
|
|
|
|
" failed:\n" << output << std::endl;
|
|
|
|
this->LogError(err.str());
|
2016-04-18 18:52:00 +03:00
|
|
|
this->RunRccFailed = true;
|
|
|
|
cmSystemTools::RemoveFile(qrcBuildFile);
|
|
|
|
return false;
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-19 11:15:31 +03:00
|
|
|
std::string cmQtAutoGenerators::SourceRelativePath(const std::string& filename)
|
|
|
|
{
|
|
|
|
std::string pathRel;
|
|
|
|
|
|
|
|
// Test if the file is child to any of the known directories
|
|
|
|
{
|
|
|
|
std::string fileNameReal = cmsys::SystemTools::GetRealPath( filename );
|
|
|
|
std::string parentDirectory;
|
|
|
|
bool match ( false );
|
|
|
|
{
|
|
|
|
const ::std::string* testDirs[4];
|
|
|
|
testDirs[0] = &(this->Srcdir);
|
|
|
|
testDirs[1] = &(this->Builddir);
|
|
|
|
testDirs[2] = &(this->ProjectSourceDir);
|
|
|
|
testDirs[3] = &(this->ProjectBinaryDir);
|
|
|
|
for(int ii=0; ii != sizeof(testDirs)/sizeof(const ::std::string*); ++ii )
|
|
|
|
{
|
|
|
|
const ::std::string testDir = cmsys::SystemTools::GetRealPath(
|
|
|
|
*(testDirs[ii]));
|
|
|
|
if (cmsys::SystemTools::IsSubDirectory(fileNameReal,
|
|
|
|
testDir) )
|
|
|
|
{
|
|
|
|
parentDirectory = testDir;
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Use root as fallback parent directory
|
|
|
|
if ( !match )
|
|
|
|
{
|
|
|
|
cmsys::SystemTools::SplitPathRootComponent(fileNameReal,
|
|
|
|
&parentDirectory);
|
|
|
|
}
|
|
|
|
pathRel = cmsys::SystemTools::RelativePath(
|
|
|
|
parentDirectory, cmsys::SystemTools::GetParentDirectory(fileNameReal));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sanitize relative path
|
|
|
|
if (!pathRel.empty())
|
|
|
|
{
|
|
|
|
pathRel += '/';
|
|
|
|
cmSystemTools::ReplaceString(pathRel, "..", "__");
|
|
|
|
}
|
|
|
|
return pathRel;
|
|
|
|
}
|
|
|
|
|
2016-04-18 21:09:23 +03:00
|
|
|
/**
|
|
|
|
* @brief Collects name collisions as output/input pairs
|
|
|
|
* @return True if there were collisions
|
|
|
|
*/
|
|
|
|
bool cmQtAutoGenerators::NameCollisionTest(
|
|
|
|
const std::map<std::string, std::string >& genFiles,
|
|
|
|
std::multimap<std::string, std::string>& collisions)
|
|
|
|
{
|
|
|
|
typedef std::map<std::string, std::string>::const_iterator Iter;
|
|
|
|
typedef std::map<std::string, std::string>::value_type VType;
|
|
|
|
for(Iter ait = genFiles.begin(); ait != genFiles.end(); ++ait )
|
|
|
|
{
|
|
|
|
bool first_match ( true );
|
|
|
|
for (Iter bit = (++Iter(ait)); bit != genFiles.end(); ++bit)
|
|
|
|
{
|
|
|
|
if(ait->second == bit->second)
|
|
|
|
{
|
|
|
|
if (first_match)
|
|
|
|
{
|
|
|
|
if (collisions.find(ait->second) != collisions.end())
|
|
|
|
{
|
|
|
|
// We already know of this collision from before
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
collisions.insert(VType(ait->second, ait->first));
|
|
|
|
first_match = false;
|
|
|
|
}
|
|
|
|
collisions.insert(VType(bit->second, bit->first));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !collisions.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmQtAutoGenerators::NameCollisionLog(
|
2016-04-24 16:00:26 +03:00
|
|
|
const std::string& message,
|
|
|
|
const std::multimap<std::string, std::string>& collisions)
|
2016-04-18 21:09:23 +03:00
|
|
|
{
|
|
|
|
typedef std::multimap<std::string, std::string>::const_iterator Iter;
|
|
|
|
|
2016-04-24 16:00:26 +03:00
|
|
|
std::stringstream err;
|
|
|
|
// Add message
|
|
|
|
err << message;
|
|
|
|
// Append collision list
|
2016-04-18 21:09:23 +03:00
|
|
|
for(Iter it = collisions.begin(); it != collisions.end(); ++it )
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
err << it->first << " : " << it->second << std::endl;
|
2016-04-18 21:09:23 +03:00
|
|
|
}
|
2016-04-24 16:00:26 +03:00
|
|
|
this->LogError(err.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmQtAutoGenerators::LogInfo(const std::string& message)
|
|
|
|
{
|
|
|
|
std::cout << message;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmQtAutoGenerators::LogError(const std::string& message)
|
|
|
|
{
|
|
|
|
std::cerr << message;
|
2016-04-18 21:09:23 +03:00
|
|
|
}
|
|
|
|
|
2016-04-18 13:02:28 +03:00
|
|
|
void cmQtAutoGenerators::LogCommand(const std::vector<std::string>& command)
|
|
|
|
{
|
|
|
|
std::stringstream sbuf;
|
|
|
|
for(std::vector<std::string>::const_iterator cmdIt = command.begin();
|
|
|
|
cmdIt != command.end();
|
|
|
|
++cmdIt)
|
|
|
|
{
|
|
|
|
if ( cmdIt != command.begin() )
|
|
|
|
{
|
|
|
|
sbuf << " ";
|
|
|
|
}
|
|
|
|
sbuf << *cmdIt;
|
|
|
|
}
|
|
|
|
if ( !sbuf.str().empty() )
|
|
|
|
{
|
2016-04-24 16:00:26 +03:00
|
|
|
sbuf << std::endl;
|
|
|
|
this->LogInfo ( sbuf.str() );
|
2016-04-18 13:02:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 12:39:06 +03:00
|
|
|
std::string cmQtAutoGenerators::JoinExts(const std::vector<std::string>& lst)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
if (lst.empty())
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string result;
|
2016-04-18 12:39:06 +03:00
|
|
|
std::string separator = ",";
|
2013-02-10 20:49:42 +04:00
|
|
|
for (std::vector<std::string>::const_iterator it = lst.begin();
|
2011-08-08 17:20:13 +04:00
|
|
|
it != lst.end();
|
|
|
|
++it)
|
|
|
|
{
|
2016-04-18 12:39:06 +03:00
|
|
|
if(it != lst.begin())
|
|
|
|
{
|
|
|
|
result += separator;
|
|
|
|
}
|
|
|
|
result += '.' + (*it);
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
result.erase(result.end() - 1);
|
|
|
|
return result;
|
|
|
|
}
|