2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-01 19:16:20 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-01 19:16:20 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2001-05-01 19:16:20 +04:00
|
|
|
#include "cmSetCommand.h"
|
|
|
|
|
|
|
|
// cmSetCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmSetCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-01 19:16:20 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-01-20 22:38:16 +03:00
|
|
|
// watch for ENV signatures
|
|
|
|
const char* variable = args[0].c_str(); // VAR is always first
|
2013-11-20 05:12:00 +04:00
|
|
|
if (cmHasLiteralPrefix(variable, "ENV{") && strlen(variable) > 5)
|
2005-01-20 22:38:16 +03:00
|
|
|
{
|
|
|
|
// what is the variable name
|
|
|
|
char *varName = new char [strlen(variable)];
|
|
|
|
strncpy(varName,variable+4,strlen(variable)-5);
|
|
|
|
varName[strlen(variable)-5] = '\0';
|
|
|
|
std::string putEnvArg = varName;
|
|
|
|
putEnvArg += "=";
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-01-20 22:38:16 +03:00
|
|
|
// what is the current value if any
|
|
|
|
const char *currValue = getenv(varName);
|
2005-06-03 22:17:59 +04:00
|
|
|
delete [] varName;
|
2005-01-20 22:38:16 +03:00
|
|
|
|
|
|
|
// will it be set to something, then set it
|
2015-01-16 01:04:33 +03:00
|
|
|
if (args.size() > 1 && !args[1].empty())
|
2005-01-20 22:38:16 +03:00
|
|
|
{
|
|
|
|
// but only if it is different from current value
|
|
|
|
if (!currValue || strcmp(currValue,args[1].c_str()))
|
|
|
|
{
|
|
|
|
putEnvArg += args[1];
|
2014-11-23 13:05:50 +03:00
|
|
|
cmSystemTools::PutEnv(putEnvArg);
|
2005-01-20 22:38:16 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-01-20 22:38:16 +03:00
|
|
|
// if it will be cleared, then clear it if it isn;t already clear
|
|
|
|
if (currValue)
|
|
|
|
{
|
2014-11-23 13:05:50 +03:00
|
|
|
cmSystemTools::PutEnv(putEnvArg);
|
2005-01-20 22:38:16 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-09-18 18:40:07 +04:00
|
|
|
// SET (VAR) // Removes the definition of VAR.
|
2001-05-01 19:16:20 +04:00
|
|
|
if (args.size() == 1)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->RemoveDefinition(args[0]);
|
2001-05-24 20:57:33 +04:00
|
|
|
return true;
|
2001-05-01 19:16:20 +04:00
|
|
|
}
|
2013-11-13 11:59:26 +04:00
|
|
|
// SET (VAR PARENT_SCOPE) // Removes the definition of VAR
|
|
|
|
// in the parent scope.
|
|
|
|
else if (args.size() == 2 && args[args.size()-1] == "PARENT_SCOPE")
|
|
|
|
{
|
|
|
|
this->Makefile->RaiseScope(variable, 0);
|
|
|
|
return true;
|
|
|
|
}
|
2001-05-24 20:57:33 +04:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
// here are the remaining options
|
2005-01-04 16:42:25 +03:00
|
|
|
// SET (VAR value )
|
2013-11-13 11:59:26 +04:00
|
|
|
// SET (VAR value PARENT_SCOPE)
|
2005-01-04 16:42:25 +03:00
|
|
|
// SET (VAR CACHE TYPE "doc String" [FORCE])
|
|
|
|
// SET (VAR value CACHE TYPE "doc string" [FORCE])
|
2001-05-24 20:57:33 +04:00
|
|
|
std::string value; // optional
|
|
|
|
bool cache = false; // optional
|
2002-10-09 23:48:59 +04:00
|
|
|
bool force = false; // optional
|
2008-01-18 23:52:54 +03:00
|
|
|
bool parentScope = false;
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::CacheEntryType type
|
|
|
|
= cmState::STRING; // required if cache
|
2001-05-24 20:57:33 +04:00
|
|
|
const char* docstring = 0; // required if cache
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-01-18 23:52:54 +03:00
|
|
|
unsigned int ignoreLastArgs = 0;
|
|
|
|
// look for PARENT_SCOPE argument
|
|
|
|
if (args.size() > 1 && args[args.size()-1] == "PARENT_SCOPE")
|
2002-10-09 23:48:59 +04:00
|
|
|
{
|
2008-01-18 23:52:54 +03:00
|
|
|
parentScope = true;
|
|
|
|
ignoreLastArgs++;
|
2002-10-09 23:48:59 +04:00
|
|
|
}
|
2008-01-18 23:52:54 +03:00
|
|
|
else
|
2001-05-18 21:04:36 +04:00
|
|
|
{
|
2008-01-18 23:52:54 +03:00
|
|
|
// look for FORCE argument
|
|
|
|
if (args.size() > 4 && args[args.size()-1] == "FORCE")
|
|
|
|
{
|
|
|
|
force = true;
|
|
|
|
ignoreLastArgs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for cache signature
|
|
|
|
if (args.size() > 3 && args[args.size() - 3 - (force ? 1 : 0)] == "CACHE")
|
|
|
|
{
|
|
|
|
cache = true;
|
|
|
|
ignoreLastArgs+=3;
|
|
|
|
}
|
2001-05-16 23:15:21 +04:00
|
|
|
}
|
2008-01-18 23:52:54 +03:00
|
|
|
|
2010-07-02 18:58:00 +04:00
|
|
|
// collect any values into a single semi-colon separated value list
|
2015-02-11 01:26:58 +03:00
|
|
|
value = cmJoin(cmRange(args).advance(1).retreat(ignoreLastArgs), ";");
|
2005-01-04 16:42:25 +03:00
|
|
|
|
2008-01-18 23:52:54 +03:00
|
|
|
if (parentScope)
|
|
|
|
{
|
2013-11-13 12:02:56 +04:00
|
|
|
this->Makefile->RaiseScope(variable, value.c_str());
|
|
|
|
return true;
|
2008-01-18 23:52:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-04 16:42:25 +03:00
|
|
|
// we should be nice and try to catch some simple screwups if the last or
|
|
|
|
// next to last args are CACHE then they screwed up. If they used FORCE
|
|
|
|
// without CACHE they screwed up
|
2009-09-11 16:18:15 +04:00
|
|
|
if ((args[args.size() - 1] == "CACHE") ||
|
|
|
|
(args.size() > 1 && args[args.size() - 2] == "CACHE") ||
|
|
|
|
(force && !cache))
|
2001-06-05 02:23:58 +04:00
|
|
|
{
|
2008-03-13 20:52:49 +03:00
|
|
|
this->SetError("given invalid arguments for CACHE mode.");
|
2001-06-05 02:23:58 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-05-24 20:57:33 +04:00
|
|
|
if(cache)
|
|
|
|
{
|
2009-05-11 00:07:34 +04:00
|
|
|
std::string::size_type cacheStart = args.size() - 3 - (force ? 1 : 0);
|
2015-04-07 23:45:54 +03:00
|
|
|
type = cmState::StringToCacheEntryType(args[cacheStart+1].c_str());
|
2001-05-24 20:57:33 +04:00
|
|
|
docstring = args[cacheStart+2].c_str();
|
|
|
|
}
|
2005-01-04 16:42:25 +03:00
|
|
|
|
2002-09-28 00:19:37 +04:00
|
|
|
// see if this is already in the cache
|
2015-04-06 11:52:45 +03:00
|
|
|
cmState* state = this->Makefile->GetState();
|
|
|
|
const char* existingValue = state->GetCacheEntryValue(variable);
|
2015-04-05 11:48:04 +03:00
|
|
|
if(existingValue &&
|
2015-04-07 23:45:54 +03:00
|
|
|
(state->GetCacheEntryType(variable) != cmState::UNINITIALIZED))
|
2001-05-24 20:57:33 +04:00
|
|
|
{
|
2002-09-28 00:19:37 +04:00
|
|
|
// if the set is trying to CACHE the value but the value
|
|
|
|
// is already in the cache and the type is not internal
|
|
|
|
// then leave now without setting any definitions in the cache
|
|
|
|
// or the makefile
|
2015-04-07 23:45:54 +03:00
|
|
|
if(cache && type != cmState::INTERNAL && !force)
|
2001-05-18 21:04:36 +04:00
|
|
|
{
|
2001-05-24 20:57:33 +04:00
|
|
|
return true;
|
2001-05-18 21:04:36 +04:00
|
|
|
}
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-05-24 20:57:33 +04:00
|
|
|
// if it is meant to be in the cache then define it in the cache
|
2001-05-18 21:04:36 +04:00
|
|
|
if(cache)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCacheDefinition(variable,
|
2001-08-08 19:54:46 +04:00
|
|
|
value.c_str(),
|
|
|
|
docstring,
|
2008-11-22 00:32:39 +03:00
|
|
|
type, force);
|
2001-08-08 19:54:46 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// add the definition
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(variable, value.c_str());
|
2001-05-01 19:16:20 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|