2001-05-25 05:13:56 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-25 05:13:56 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-05-25 05:13:56 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
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.
|
2001-05-25 05:13:56 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmGetFilenameComponentCommand.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
// cmGetFilenameComponentCommand
|
2001-09-20 23:08:30 +04:00
|
|
|
bool cmGetFilenameComponentCommand::InitialPass(std::vector<std::string> const& args)
|
2001-05-25 05:13:56 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 3)
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-10-24 01:49:13 +04: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")
|
|
|
|
{
|
|
|
|
const char* cacheValue = m_Makefile->GetDefinition(args[0].c_str());
|
2003-01-31 21:50:42 +03:00
|
|
|
if(cacheValue && !cmSystemTools::IsNOTFOUND(cacheValue))
|
2001-10-24 01:49:13 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-25 05:13:56 +04:00
|
|
|
std::string result;
|
|
|
|
std::string filename = args[1];
|
2003-01-23 18:35:14 +03:00
|
|
|
cmSystemTools::ExpandRegistryValues(filename);
|
2002-11-20 02:17:17 +03:00
|
|
|
std::string storeArgs;
|
|
|
|
std::string programArgs;
|
2001-05-25 05:13:56 +04:00
|
|
|
if (args[2] == "PATH")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenamePath(filename);
|
|
|
|
}
|
|
|
|
else if (args[2] == "NAME")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenameName(filename);
|
|
|
|
}
|
2002-11-20 02:17:17 +03:00
|
|
|
else if (args[2] == "PROGRAM")
|
|
|
|
{
|
2002-11-20 17:06:38 +03:00
|
|
|
for(unsigned int i=2; i < args.size(); ++i)
|
2002-11-20 02:17:17 +03:00
|
|
|
{
|
|
|
|
if(args[i] == "PROGRAM_ARGS")
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
if(i < args.size())
|
|
|
|
{
|
|
|
|
storeArgs = args[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmSystemTools::SplitProgramFromArgs(filename.c_str(), result, programArgs);
|
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
else if (args[2] == "EXT")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::GetFilenameExtension(filename);
|
|
|
|
}
|
|
|
|
else if (args[2] == "NAME_WE")
|
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
result = cmSystemTools::GetFilenameWithoutExtension(filename);
|
2001-05-25 05:13:56 +04:00
|
|
|
}
|
2003-02-07 22:04:16 +03:00
|
|
|
else if (args[2] == "ABSOLUTE")
|
|
|
|
{
|
|
|
|
result = cmSystemTools::CollapseFullPath(filename.c_str());
|
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
else
|
|
|
|
{
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string err = "unknown component " + args[2];
|
2001-05-25 05:13:56 +04:00
|
|
|
this->SetError(err.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-10-24 01:49:13 +04:00
|
|
|
if(args.size() == 4 && args[3] == "CACHE")
|
|
|
|
{
|
2002-11-20 02:17:17 +03:00
|
|
|
if(programArgs.size() && storeArgs.size())
|
|
|
|
{
|
|
|
|
m_Makefile->AddCacheDefinition(storeArgs.c_str(),
|
|
|
|
programArgs.c_str(),
|
|
|
|
"",
|
|
|
|
args[2] == "PATH" ? cmCacheManager::FILEPATH
|
|
|
|
: cmCacheManager::STRING);
|
|
|
|
}
|
2001-10-24 01:49:13 +04:00
|
|
|
m_Makefile->AddCacheDefinition(args[0].c_str(),
|
|
|
|
result.c_str(),
|
|
|
|
"",
|
|
|
|
args[2] == "PATH" ? cmCacheManager::FILEPATH
|
|
|
|
: cmCacheManager::STRING);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-11-20 02:17:17 +03:00
|
|
|
if(programArgs.size() && storeArgs.size())
|
|
|
|
{
|
|
|
|
m_Makefile->AddDefinition(storeArgs.c_str(), programArgs.c_str());
|
|
|
|
}
|
2001-10-24 01:49:13 +04:00
|
|
|
m_Makefile->AddDefinition(args[0].c_str(), result.c_str());
|
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|