| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmGetPropertyCommand.h"
- #include "cmake.h"
- #include "cmTest.h"
- #include "cmPropertyDefinition.h"
- //----------------------------------------------------------------------------
- cmGetPropertyCommand::cmGetPropertyCommand()
- {
- this->InfoType = OutValue;
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand
- ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
- {
- if(args.size() < 3 )
- {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
- // The cmake variable in which to store the result.
- this->Variable = args[0];
- // Get the scope from which to get the property.
- cmProperty::ScopeType scope;
- if(args[1] == "GLOBAL")
- {
- scope = cmProperty::GLOBAL;
- }
- else if(args[1] == "DIRECTORY")
- {
- scope = cmProperty::DIRECTORY;
- }
- else if(args[1] == "TARGET")
- {
- scope = cmProperty::TARGET;
- }
- else if(args[1] == "SOURCE")
- {
- scope = cmProperty::SOURCE_FILE;
- }
- else if(args[1] == "TEST")
- {
- scope = cmProperty::TEST;
- }
- else if(args[1] == "VARIABLE")
- {
- scope = cmProperty::VARIABLE;
- }
- else
- {
- cmOStringStream e;
- e << "given invalid scope " << args[1] << ". "
- << "Valid scopes are "
- << "GLOBAL, DIRECTORY, TARGET, SOURCE, TEST, VARIABLE.";
- this->SetError(e.str().c_str());
- return false;
- }
- // Parse remaining arguments.
- enum Doing { DoingNone, DoingName, DoingProperty, DoingType };
- Doing doing = DoingName;
- for(unsigned int i=2; i < args.size(); ++i)
- {
- if(args[i] == "PROPERTY")
- {
- doing = DoingProperty;
- }
- else if(args[i] == "BRIEF_DOCS")
- {
- doing = DoingNone;
- this->InfoType = OutBriefDoc;
- }
- else if(args[i] == "FULL_DOCS")
- {
- doing = DoingNone;
- this->InfoType = OutFullDoc;
- }
- else if(args[i] == "SET")
- {
- doing = DoingNone;
- this->InfoType = OutSet;
- }
- else if(args[i] == "DEFINED")
- {
- doing = DoingNone;
- this->InfoType = OutDefined;
- }
- else if(doing == DoingName)
- {
- doing = DoingNone;
- this->Name = args[i];
- }
- else if(doing == DoingProperty)
- {
- doing = DoingNone;
- this->PropertyName = args[i];
- }
- else
- {
- cmOStringStream e;
- e << "given invalid argument \"" << args[i] << "\".";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- // Make sure a property name was found.
- if(this->PropertyName.empty())
- {
- this->SetError("not given a PROPERTY <name> argument.");
- return false;
- }
- // Compute requested output.
- if(this->InfoType == OutBriefDoc)
- {
- // Lookup brief documentation.
- std::string output;
- if(cmPropertyDefinition* def =
- this->Makefile->GetCMakeInstance()->
- GetPropertyDefinition(this->PropertyName.c_str(), scope))
- {
- output = def->GetShortDescription();
- }
- else
- {
- output = "NOTFOUND";
- }
- this->Makefile->AddDefinition(this->Variable.c_str(), output.c_str());
- }
- else if(this->InfoType == OutFullDoc)
- {
- // Lookup full documentation.
- std::string output;
- if(cmPropertyDefinition* def =
- this->Makefile->GetCMakeInstance()->
- GetPropertyDefinition(this->PropertyName.c_str(), scope))
- {
- output = def->GetFullDescription();
- }
- else
- {
- output = "NOTFOUND";
- }
- this->Makefile->AddDefinition(this->Variable.c_str(), output.c_str());
- }
- else if(this->InfoType == OutDefined)
- {
- // Lookup if the property is defined
- if(this->Makefile->GetCMakeInstance()->
- GetPropertyDefinition(this->PropertyName.c_str(), scope))
- {
- this->Makefile->AddDefinition(this->Variable.c_str(), "1");
- }
- else
- {
- this->Makefile->AddDefinition(this->Variable.c_str(), "0");
- }
- }
- else
- {
- // Dispatch property getting.
- switch(scope)
- {
- case cmProperty::GLOBAL: return this->HandleGlobalMode();
- case cmProperty::DIRECTORY: return this->HandleDirectoryMode();
- case cmProperty::TARGET: return this->HandleTargetMode();
- case cmProperty::SOURCE_FILE: return this->HandleSourceMode();
- case cmProperty::TEST: return this->HandleTestMode();
- case cmProperty::VARIABLE: return this->HandleVariableMode();
- case cmProperty::CACHED_VARIABLE:
- break; // should never happen
- }
- }
- return true;
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::StoreResult(const char* value)
- {
- if(this->InfoType == OutSet)
- {
- this->Makefile->AddDefinition(this->Variable.c_str(), value? "1":"0");
- }
- else // if(this->InfoType == OutValue)
- {
- this->Makefile->AddDefinition(this->Variable.c_str(), value);
- }
- return true;
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleGlobalMode()
- {
- if(!this->Name.empty())
- {
- this->SetError("given name for GLOBAL scope.");
- return false;
- }
- // Get the property.
- cmake* cm = this->Makefile->GetCMakeInstance();
- return this->StoreResult(cm->GetProperty(this->PropertyName.c_str()));
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleDirectoryMode()
- {
- // Default to the current directory.
- cmMakefile* mf = this->Makefile;
- // Lookup the directory if given.
- if(!this->Name.empty())
- {
- // Construct the directory name. Interpret relative paths with
- // respect to the current directory.
- std::string dir = this->Name;
- if(!cmSystemTools::FileIsFullPath(dir.c_str()))
- {
- dir = this->Makefile->GetCurrentDirectory();
- dir += "/";
- dir += this->Name;
- }
- // The local generators are associated with collapsed paths.
- dir = cmSystemTools::CollapseFullPath(dir.c_str());
- // Lookup the generator.
- if(cmLocalGenerator* lg =
- (this->Makefile->GetLocalGenerator()
- ->GetGlobalGenerator()->FindLocalGenerator(dir.c_str())))
- {
- // Use the makefile for the directory found.
- mf = lg->GetMakefile();
- }
- else
- {
- // Could not find the directory.
- this->SetError
- ("DIRECTORY scope provided but requested directory was not found. "
- "This could be because the directory argument was invalid or, "
- "it is valid but has not been processed yet.");
- return false;
- }
- }
- // Get the property.
- return this->StoreResult(mf->GetProperty(this->PropertyName.c_str()));
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleTargetMode()
- {
- if(this->Name.empty())
- {
- this->SetError("not given name for TARGET scope.");
- return false;
- }
- if(cmTarget* target = this->Makefile->FindTargetToUse(this->Name.c_str()))
- {
- return this->StoreResult(target->GetProperty(this->PropertyName.c_str()));
- }
- else
- {
- cmOStringStream e;
- e << "could not find TARGET " << this->Name
- << ". Perhaps it has not yet been created.";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleSourceMode()
- {
- if(this->Name.empty())
- {
- this->SetError("not given name for SOURCE scope.");
- return false;
- }
- // Get the source file.
- if(cmSourceFile* sf =
- this->Makefile->GetOrCreateSource(this->Name.c_str()))
- {
- return
- this->StoreResult(sf->GetPropertyForUser(this->PropertyName.c_str()));
- }
- else
- {
- cmOStringStream e;
- e << "given SOURCE name that could not be found or created: "
- << this->Name;
- this->SetError(e.str().c_str());
- return false;
- }
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleTestMode()
- {
- if(this->Name.empty())
- {
- this->SetError("not given name for TEST scope.");
- return false;
- }
- // Loop over all tests looking for matching names.
- if(cmTest* test = this->Makefile->GetTest(this->Name.c_str()))
- {
- return this->StoreResult(test->GetProperty(this->PropertyName.c_str()));
- }
- // If not found it is an error.
- cmOStringStream e;
- e << "given TEST name that does not exist: " << this->Name;
- this->SetError(e.str().c_str());
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmGetPropertyCommand::HandleVariableMode()
- {
- if(!this->Name.empty())
- {
- this->SetError("given name for VARIABLE scope.");
- return false;
- }
- return this->StoreResult
- (this->Makefile->GetDefinition(this->PropertyName.c_str()));
- }
|