Simplify cmNinjaTargetGenerator using cmGeneratorTarget

Replace the classification of source files in this generator using that
computed by cmGeneratorTarget.
This commit is contained in:
Brad King 2012-03-13 09:24:54 -04:00
parent c68cc06612
commit a2514f15fa
2 changed files with 38 additions and 43 deletions

View File

@ -14,6 +14,7 @@
#include "cmGlobalNinjaGenerator.h" #include "cmGlobalNinjaGenerator.h"
#include "cmLocalNinjaGenerator.h" #include "cmLocalNinjaGenerator.h"
#include "cmGeneratedFileStream.h" #include "cmGeneratedFileStream.h"
#include "cmGeneratorTarget.h"
#include "cmNinjaNormalTargetGenerator.h" #include "cmNinjaNormalTargetGenerator.h"
#include "cmNinjaUtilityTargetGenerator.h" #include "cmNinjaUtilityTargetGenerator.h"
#include "cmSystemTools.h" #include "cmSystemTools.h"
@ -60,6 +61,8 @@ cmNinjaTargetGenerator::cmNinjaTargetGenerator(cmTarget* target)
static_cast<cmLocalNinjaGenerator*>(Makefile->GetLocalGenerator())), static_cast<cmLocalNinjaGenerator*>(Makefile->GetLocalGenerator())),
Objects() Objects()
{ {
this->GeneratorTarget =
this->GetGlobalGenerator()->GetGeneratorTarget(target);
} }
cmNinjaTargetGenerator::~cmNinjaTargetGenerator() cmNinjaTargetGenerator::~cmNinjaTargetGenerator()
@ -231,9 +234,9 @@ cmNinjaDeps cmNinjaTargetGenerator::ComputeLinkDeps() const
std::transform(deps.begin(), deps.end(), result.begin(), MapToNinjaPath()); std::transform(deps.begin(), deps.end(), result.begin(), MapToNinjaPath());
// Add a dependency on the link definitions file, if any. // Add a dependency on the link definitions file, if any.
if(!this->ModuleDefinitionFile.empty()) if(!this->GeneratorTarget->ModuleDefinitionFile.empty())
{ {
result.push_back(this->ModuleDefinitionFile); result.push_back(this->GeneratorTarget->ModuleDefinitionFile);
} }
return result; return result;
@ -377,12 +380,26 @@ cmNinjaTargetGenerator
<< this->GetTargetName() << this->GetTargetName()
<< "\n\n"; << "\n\n";
// For each source files of this target. for(std::vector<cmSourceFile*>::const_iterator
for(std::vector<cmSourceFile*>::const_iterator i = si = this->GeneratorTarget->CustomCommands.begin();
this->GetTarget()->GetSourceFiles().begin(); si != this->GeneratorTarget->CustomCommands.end(); ++si)
i != this->GetTarget()->GetSourceFiles().end(); {
++i) cmCustomCommand const* cc = (*si)->GetCustomCommand();
this->WriteObjectBuildStatement(*i); this->GetLocalGenerator()->AddCustomCommandTarget(cc, this->GetTarget());
}
// TODO: this->GeneratorTarget->OSXContent
for(std::vector<cmSourceFile*>::const_iterator
si = this->GeneratorTarget->ExternalObjects.begin();
si != this->GeneratorTarget->ExternalObjects.end(); ++si)
{
this->Objects.push_back(this->GetSourceFilePath(*si));
}
for(std::vector<cmSourceFile*>::const_iterator
si = this->GeneratorTarget->ObjectSources.begin();
si != this->GeneratorTarget->ObjectSources.end(); ++si)
{
this->WriteObjectBuildStatement(*si);
}
this->GetBuildFileStream() << "\n"; this->GetBuildFileStream() << "\n";
} }
@ -391,26 +408,10 @@ void
cmNinjaTargetGenerator cmNinjaTargetGenerator
::WriteObjectBuildStatement(cmSourceFile* source) ::WriteObjectBuildStatement(cmSourceFile* source)
{ {
if (cmCustomCommand *cc = source->GetCustomCommand())
this->GetLocalGenerator()->AddCustomCommandTarget(cc, this->GetTarget());
cmNinjaDeps emptyDeps; cmNinjaDeps emptyDeps;
std::string comment; std::string comment;
const char* language = source->GetLanguage(); const char* language = source->GetLanguage();
// If we cannot get the language this is probably a non-source file provided
// in the list (typically an header file).
if (!language) {
if (source->GetPropertyAsBool("EXTERNAL_OBJECT"))
this->Objects.push_back(this->GetSourceFilePath(source));
if(cmSystemTools::UpperCase(source->GetExtension()) == "DEF")
this->ModuleDefinitionFile = GetSourceFilePath(source);
return;
}
if (source->GetPropertyAsBool("HEADER_FILE_ONLY"))
return;
std::string rule = this->LanguageCompilerRule(language); std::string rule = this->LanguageCompilerRule(language);
cmNinjaDeps outputs; cmNinjaDeps outputs;
@ -435,21 +436,16 @@ cmNinjaTargetGenerator
std::back_inserter(orderOnlyDeps), MapToNinjaPath()); std::back_inserter(orderOnlyDeps), MapToNinjaPath());
} }
// Add order-only dependency on any header file with a custom command. // Add order-only dependencies on custom command outputs.
{ for(std::vector<cmSourceFile*>::const_iterator
const std::vector<cmSourceFile*>& sources = si = this->GeneratorTarget->CustomCommands.begin();
this->GetTarget()->GetSourceFiles(); si != this->GeneratorTarget->CustomCommands.end(); ++si)
for(std::vector<cmSourceFile*>::const_iterator si = sources.begin(); {
si != sources.end(); ++si) { cmCustomCommand const* cc = (*si)->GetCustomCommand();
if (!(*si)->GetLanguage()) { const std::vector<std::string>& ccoutputs = cc->GetOutputs();
if (cmCustomCommand* cc = (*si)->GetCustomCommand()) { std::transform(ccoutputs.begin(), ccoutputs.end(),
const std::vector<std::string>& ccoutputs = cc->GetOutputs(); std::back_inserter(orderOnlyDeps), MapToNinjaPath());
std::transform(ccoutputs.begin(), ccoutputs.end(),
std::back_inserter(orderOnlyDeps), MapToNinjaPath());
}
}
} }
}
// If the source file is GENERATED and does not have a custom command // If the source file is GENERATED and does not have a custom command
// (either attached to this source file or another one), assume that one of // (either attached to this source file or another one), assume that one of
@ -482,7 +478,7 @@ void
cmNinjaTargetGenerator cmNinjaTargetGenerator
::AddModuleDefinitionFlag(std::string& flags) ::AddModuleDefinitionFlag(std::string& flags)
{ {
if(this->ModuleDefinitionFile.empty()) if(this->GeneratorTarget->ModuleDefinitionFile.empty())
{ {
return; return;
} }
@ -499,6 +495,6 @@ cmNinjaTargetGenerator
// vs6's "cl -link" pass it to the linker. // vs6's "cl -link" pass it to the linker.
std::string flag = defFileFlag; std::string flag = defFileFlag;
flag += (this->LocalGenerator->ConvertToLinkReference( flag += (this->LocalGenerator->ConvertToLinkReference(
this->ModuleDefinitionFile.c_str())); this->GeneratorTarget->ModuleDefinitionFile.c_str()));
this->LocalGenerator->AppendFlags(flags, flag.c_str()); this->LocalGenerator->AppendFlags(flags, flag.c_str());
} }

View File

@ -20,6 +20,7 @@
class cmTarget; class cmTarget;
class cmGlobalNinjaGenerator; class cmGlobalNinjaGenerator;
class cmGeneratedFileStream; class cmGeneratedFileStream;
class cmGeneratorTarget;
class cmMakefile; class cmMakefile;
class cmSourceFile; class cmSourceFile;
class cmCustomCommand; class cmCustomCommand;
@ -112,13 +113,11 @@ protected:
private: private:
cmTarget* Target; cmTarget* Target;
cmGeneratorTarget* GeneratorTarget;
cmMakefile* Makefile; cmMakefile* Makefile;
cmLocalNinjaGenerator* LocalGenerator; cmLocalNinjaGenerator* LocalGenerator;
/// List of object files for this target. /// List of object files for this target.
cmNinjaDeps Objects; cmNinjaDeps Objects;
// The windows module definition source file (.def), if any.
std::string ModuleDefinitionFile;
}; };
#endif // ! cmNinjaTargetGenerator_h #endif // ! cmNinjaTargetGenerator_h