2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-25 01:13:56 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-25 01:13:56 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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-25 01:13:56 +00:00
|
|
|
#include "cmGetFilenameComponentCommand.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
// cmGetFilenameComponentCommand
|
2006-05-10 19:56:00 +00:00
|
|
|
bool cmGetFilenameComponentCommand
|
2008-01-23 15:28:26 +00:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-25 01:13:56 +00:00
|
|
|
{
|
|
|
|
if(args.size() < 3)
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-10-23 21:49:13 +00:00
|
|
|
// Check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value
|
|
|
|
if(args.size() == 4 && args[3] == "CACHE")
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
const char* cacheValue = this->Makefile->GetDefinition(args[0].c_str());
|
2003-01-31 18:50:42 +00:00
|
|
|
if(cacheValue && !cmSystemTools::IsNOTFOUND(cacheValue))
|
2001-10-23 21:49:13 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-25 01:13:56 +00:00
|
|
|
std::string result;
|
|
|
|
std::string filename = args[1];
|
2009-09-30 17:45:24 +00:00
|
|
|
if(filename.find("[HKEY") != filename.npos)
|
|
|
|
{
|
|
|
|
// Check the registry as the target application would view it.
|
|
|
|
cmSystemTools::KeyWOW64 view = cmSystemTools::KeyWOW64_32;
|
|
|
|
cmSystemTools::KeyWOW64 other_view = cmSystemTools::KeyWOW64_64;
|
|
|
|
if(this->Makefile->PlatformIs64Bit())
|
|
|
|
{
|
|
|
|
view = cmSystemTools::KeyWOW64_64;
|
|
|
|
other_view = cmSystemTools::KeyWOW64_32;
|
|
|
|
}
|
|
|
|
cmSystemTools::ExpandRegistryValues(filename, view);
|
|
|
|
if(filename.find("/registry") != filename.npos)
|
|
|
|
{
|
|
|
|
std::string other = args[1];
|
|
|
|
cmSystemTools::ExpandRegistryValues(other, other_view);
|
|
|
|
if(other.find("/registry") == other.npos)
|
|
|
|
{
|
|
|
|
filename = other;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-19 23:17:17 +00:00
|
|
|
std::string storeArgs;
|
|
|
|
std::string programArgs;
|
2001-05-25 01:13:56 +00:00
|
|
|
if (args[2] == "PATH")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenamePath(filename);
|
|
|
|
}
|
|
|
|
else if (args[2] == "NAME")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenameName(filename);
|
|
|
|
}
|
2002-11-19 23:17:17 +00:00
|
|
|
else if (args[2] == "PROGRAM")
|
|
|
|
{
|
2002-11-20 14:06:38 +00:00
|
|
|
for(unsigned int i=2; i < args.size(); ++i)
|
2002-11-19 23:17:17 +00:00
|
|
|
{
|
|
|
|
if(args[i] == "PROGRAM_ARGS")
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
if(i < args.size())
|
|
|
|
{
|
|
|
|
storeArgs = args[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-10 19:56:00 +00:00
|
|
|
cmSystemTools::SplitProgramFromArgs(filename.c_str(),
|
|
|
|
result, programArgs);
|
2002-11-19 23:17:17 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
else if (args[2] == "EXT")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenameExtension(filename);
|
|
|
|
}
|
|
|
|
else if (args[2] == "NAME_WE")
|
|
|
|
{
|
2002-06-27 19:57:09 +00:00
|
|
|
result = cmSystemTools::GetFilenameWithoutExtension(filename);
|
2001-05-25 01:13:56 +00:00
|
|
|
}
|
2009-02-09 14:23:55 +00:00
|
|
|
else if (args[2] == "ABSOLUTE" ||
|
|
|
|
args[2] == "REALPATH")
|
2003-02-07 19:04:16 +00:00
|
|
|
{
|
2009-07-23 12:10:02 +00:00
|
|
|
// Collapse the path to its simplest form.
|
2006-01-31 15:46:29 +00:00
|
|
|
// If the path given is relative evaluate it relative to the
|
|
|
|
// current source directory.
|
2009-07-23 12:10:02 +00:00
|
|
|
result = cmSystemTools::CollapseFullPath(
|
|
|
|
filename.c_str(), this->Makefile->GetCurrentDirectory());
|
2009-02-09 14:23:55 +00:00
|
|
|
if(args[2] == "REALPATH")
|
|
|
|
{
|
|
|
|
// Resolve symlinks if possible
|
2009-11-18 15:56:40 +00:00
|
|
|
result = cmSystemTools::GetRealPath(result.c_str());
|
2009-02-09 14:23:55 +00:00
|
|
|
}
|
2003-02-07 19:04:16 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
else
|
|
|
|
{
|
2003-02-07 19:04:16 +00:00
|
|
|
std::string err = "unknown component " + args[2];
|
2001-05-25 01:13:56 +00:00
|
|
|
this->SetError(err.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-10-23 21:49:13 +00:00
|
|
|
if(args.size() == 4 && args[3] == "CACHE")
|
|
|
|
{
|
2002-11-19 23:17:17 +00:00
|
|
|
if(programArgs.size() && storeArgs.size())
|
|
|
|
{
|
2006-05-10 19:56:00 +00:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(storeArgs.c_str(), programArgs.c_str(),
|
|
|
|
"", args[2] == "PATH" ? cmCacheManager::FILEPATH
|
|
|
|
: cmCacheManager::STRING);
|
2002-11-19 23:17:17 +00:00
|
|
|
}
|
2006-05-10 19:56:00 +00:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(args[0].c_str(), result.c_str(), "",
|
|
|
|
args[2] == "PATH" ? cmCacheManager::FILEPATH
|
|
|
|
: cmCacheManager::STRING);
|
2001-10-23 21:49:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-11-19 23:17:17 +00:00
|
|
|
if(programArgs.size() && storeArgs.size())
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Makefile->AddDefinition(storeArgs.c_str(), programArgs.c_str());
|
2002-11-19 23:17:17 +00:00
|
|
|
}
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Makefile->AddDefinition(args[0].c_str(), result.c_str());
|
2001-10-23 21:49:13 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|