Sort include directives within each block (separated by a blank line) in lexicographic order (except to prioritize `sys/types.h` first). First run `clang-format` with the config file: --- SortIncludes: false ... Commit the result temporarily. Then run `clang-format` again with: --- SortIncludes: true IncludeCategories: - Regex: 'sys/types.h' Priority: -1 ... Commit the result temporarily. Start a new branch and cherry-pick the second commit. Manually resolve conflicts to preserve indentation of re-ordered includes. This cleans up the include ordering without changing any other style. Use the following command to run `clang-format`: $ git ls-files -z -- \ '*.c' '*.cc' '*.cpp' '*.cxx' '*.h' '*.hh' '*.hpp' '*.hxx' | egrep -z -v '(Lexer|Parser|ParserHelper)\.' | egrep -z -v '^Source/cm_sha2' | egrep -z -v '^Source/(kwsys|CursesDialog/form)/' | egrep -z -v '^Utilities/(KW|cm).*/' | egrep -z -v '^Tests/Module/GenerateExportHeader' | egrep -z -v '^Tests/RunCMake/CommandLine/cmake_depends/test_UTF-16LE.h' | xargs -0 clang-format -i This selects source files that do not come from a third-party. Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
189 lines
6.2 KiB
C++
189 lines
6.2 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2013 Stephen Kelly <steveire@gmail.com>
|
|
|
|
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.
|
|
============================================================================*/
|
|
|
|
#include "cmGeneratorExpressionEvaluationFile.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
#include "cmGlobalGenerator.h"
|
|
#include "cmLocalGenerator.h"
|
|
#include "cmMakefile.h"
|
|
#include "cmSourceFile.h"
|
|
#include <cmsys/FStream.hxx>
|
|
|
|
#include <assert.h>
|
|
|
|
//----------------------------------------------------------------------------
|
|
cmGeneratorExpressionEvaluationFile::cmGeneratorExpressionEvaluationFile(
|
|
const std::string &input,
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> outputFileExpr,
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> condition,
|
|
bool inputIsContent)
|
|
: Input(input),
|
|
OutputFileExpr(outputFileExpr),
|
|
Condition(condition),
|
|
InputIsContent(inputIsContent)
|
|
{
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void cmGeneratorExpressionEvaluationFile::Generate(cmLocalGenerator* lg,
|
|
const std::string& config,
|
|
const std::string& lang,
|
|
cmCompiledGeneratorExpression* inputExpression,
|
|
std::map<std::string, std::string> &outputFiles, mode_t perm)
|
|
{
|
|
std::string rawCondition = this->Condition->GetInput();
|
|
if (!rawCondition.empty())
|
|
{
|
|
std::string condResult = this->Condition->Evaluate(lg,
|
|
config,
|
|
false, 0, 0, 0, lang);
|
|
if (condResult == "0")
|
|
{
|
|
return;
|
|
}
|
|
if (condResult != "1")
|
|
{
|
|
std::ostringstream e;
|
|
e << "Evaluation file condition \"" << rawCondition << "\" did "
|
|
"not evaluate to valid content. Got \"" << condResult << "\".";
|
|
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
return;
|
|
}
|
|
}
|
|
|
|
const std::string outputFileName
|
|
= this->OutputFileExpr->Evaluate(lg, config,
|
|
false, 0, 0, 0, lang);
|
|
const std::string outputContent
|
|
= inputExpression->Evaluate(lg,
|
|
config,
|
|
false, 0, 0, 0, lang);
|
|
|
|
std::map<std::string, std::string>::iterator it
|
|
= outputFiles.find(outputFileName);
|
|
|
|
if(it != outputFiles.end())
|
|
{
|
|
if (it->second == outputContent)
|
|
{
|
|
return;
|
|
}
|
|
std::ostringstream e;
|
|
e << "Evaluation file to be written multiple times for different "
|
|
"configurations or languages with different content:\n "
|
|
<< outputFileName;
|
|
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
return;
|
|
}
|
|
|
|
lg->GetMakefile()->AddCMakeOutputFile(outputFileName.c_str());
|
|
this->Files.push_back(outputFileName);
|
|
outputFiles[outputFileName] = outputContent;
|
|
|
|
cmGeneratedFileStream fout(outputFileName.c_str());
|
|
fout.SetCopyIfDifferent(true);
|
|
fout << outputContent;
|
|
if (fout.Close() && perm)
|
|
{
|
|
cmSystemTools::SetPermissions(outputFileName.c_str(), perm);
|
|
}
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void cmGeneratorExpressionEvaluationFile::CreateOutputFile(
|
|
cmLocalGenerator *lg, std::string const& config)
|
|
{
|
|
std::vector<std::string> enabledLanguages;
|
|
cmGlobalGenerator *gg = lg->GetGlobalGenerator();
|
|
gg->GetEnabledLanguages(enabledLanguages);
|
|
|
|
for(std::vector<std::string>::const_iterator le = enabledLanguages.begin();
|
|
le != enabledLanguages.end(); ++le)
|
|
{
|
|
std::string name = this->OutputFileExpr->Evaluate(lg,
|
|
config,
|
|
false, 0, 0, 0, *le);
|
|
cmSourceFile* sf = lg->GetMakefile()->GetOrCreateSource(name);
|
|
sf->SetProperty("GENERATED", "1");
|
|
|
|
gg->SetFilenameTargetDepends(sf,
|
|
this->OutputFileExpr->GetSourceSensitiveTargets());
|
|
}
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void cmGeneratorExpressionEvaluationFile::Generate(cmLocalGenerator *lg)
|
|
{
|
|
mode_t perm = 0;
|
|
std::string inputContent;
|
|
if (this->InputIsContent)
|
|
{
|
|
inputContent = this->Input;
|
|
}
|
|
else
|
|
{
|
|
lg->GetMakefile()->AddCMakeDependFile(this->Input.c_str());
|
|
cmSystemTools::GetPermissions(this->Input.c_str(), perm);
|
|
cmsys::ifstream fin(this->Input.c_str());
|
|
if(!fin)
|
|
{
|
|
std::ostringstream e;
|
|
e << "Evaluation file \"" << this->Input << "\" cannot be read.";
|
|
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
return;
|
|
}
|
|
|
|
std::string line;
|
|
std::string sep;
|
|
while(cmSystemTools::GetLineFromStream(fin, line))
|
|
{
|
|
inputContent += sep + line;
|
|
sep = "\n";
|
|
}
|
|
inputContent += sep;
|
|
}
|
|
|
|
cmListFileBacktrace lfbt = this->OutputFileExpr->GetBacktrace();
|
|
cmGeneratorExpression contentGE(lfbt);
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> inputExpression
|
|
= contentGE.Parse(inputContent);
|
|
|
|
std::map<std::string, std::string> outputFiles;
|
|
|
|
std::vector<std::string> allConfigs;
|
|
lg->GetMakefile()->GetConfigurations(allConfigs);
|
|
|
|
if (allConfigs.empty())
|
|
{
|
|
allConfigs.push_back("");
|
|
}
|
|
|
|
std::vector<std::string> enabledLanguages;
|
|
cmGlobalGenerator *gg = lg->GetGlobalGenerator();
|
|
gg->GetEnabledLanguages(enabledLanguages);
|
|
|
|
for(std::vector<std::string>::const_iterator le = enabledLanguages.begin();
|
|
le != enabledLanguages.end(); ++le)
|
|
{
|
|
for(std::vector<std::string>::const_iterator li = allConfigs.begin();
|
|
li != allConfigs.end(); ++li)
|
|
{
|
|
this->Generate(lg, *li, *le, inputExpression.get(), outputFiles, perm);
|
|
if(cmSystemTools::GetFatalErrorOccured())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|