2001-04-26 17:38:31 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-26 17:38:31 +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-04-26 17:38:31 +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-04-26 17:38:31 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmFindPathCommand.h"
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
|
2006-03-21 20:54:31 +03:00
|
|
|
#include <cmsys/Glob.hxx>
|
2006-03-02 21:30:22 +03:00
|
|
|
|
|
|
|
cmFindPathCommand::cmFindPathCommand()
|
|
|
|
{
|
2007-12-15 04:46:15 +03:00
|
|
|
this->EnvironmentPath = "INCLUDE";
|
2006-03-02 21:30:22 +03:00
|
|
|
this->IncludeFileInPath = false;
|
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
2007-10-10 19:47:43 +04:00
|
|
|
"FIND_XXX", "find_path");
|
2006-03-02 21:30:22 +03:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"CMAKE_XXX_PATH", "CMAKE_INCLUDE_PATH");
|
2008-01-17 17:02:31 +03:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"CMAKE_XXX_MAC_PATH",
|
|
|
|
"CMAKE_FRAMEWORK_PATH");
|
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"CMAKE_SYSTEM_XXX_MAC_PATH",
|
|
|
|
"CMAKE_SYSTEM_FRAMEWORK_PATH");
|
2006-03-02 21:30:22 +03:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"XXX_SYSTEM", "INCLUDE");
|
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
2006-05-10 23:46:45 +04:00
|
|
|
"CMAKE_SYSTEM_XXX_PATH",
|
|
|
|
"CMAKE_SYSTEM_INCLUDE_PATH");
|
2006-03-02 21:30:22 +03:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
2006-05-10 23:46:45 +04:00
|
|
|
"SEARCH_XXX_DESC",
|
|
|
|
"directory containing the named file");
|
2006-03-02 21:30:22 +03:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"SEARCH_XXX", "file in a directory");
|
2007-10-26 17:55:40 +04:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"XXX_SUBDIR", "include");
|
2007-06-08 19:57:16 +04:00
|
|
|
cmSystemTools::ReplaceString(this->GenericDocumentation,
|
|
|
|
"CMAKE_FIND_ROOT_PATH_MODE_XXX",
|
|
|
|
"CMAKE_FIND_ROOT_PATH_MODE_INCLUDE");
|
|
|
|
|
2006-03-02 21:30:22 +03:00
|
|
|
this->ExtraDocAdded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmFindPathCommand::GetFullDocumentation()
|
|
|
|
{
|
|
|
|
if(!this->ExtraDocAdded && !this->IncludeFileInPath)
|
|
|
|
{
|
|
|
|
this->GenericDocumentation +=
|
|
|
|
"\n"
|
|
|
|
"When searching for frameworks, if the file is specified as "
|
2006-05-10 23:46:45 +04:00
|
|
|
"A/b.h, then the framework search will look for "
|
|
|
|
"A.framework/Headers/b.h. "
|
2006-03-02 21:30:22 +03:00
|
|
|
"If that is found the path will be set to the path to the framework. "
|
2006-05-10 23:46:45 +04:00
|
|
|
"CMake will convert this to the correct -F option to include the "
|
|
|
|
"file. ";
|
2006-03-02 21:30:22 +03:00
|
|
|
this->ExtraDocAdded = true;
|
|
|
|
}
|
|
|
|
return this->GenericDocumentation.c_str();
|
|
|
|
}
|
|
|
|
|
2001-04-26 17:38:31 +04:00
|
|
|
// cmFindPathCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmFindPathCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& argsIn, cmExecutionStatus &)
|
2001-04-26 17:38:31 +04:00
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
this->VariableDocumentation = "Path to a file.";
|
|
|
|
this->CMakePathName = "INCLUDE";
|
|
|
|
if(!this->ParseArguments(argsIn))
|
2001-04-26 17:38:31 +04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-02 21:30:22 +03:00
|
|
|
if(this->AlreadyInCache)
|
2001-11-27 02:24:47 +03:00
|
|
|
{
|
2006-07-18 23:21:26 +04:00
|
|
|
// If the user specifies the entry on the command line without a
|
|
|
|
// type we should add the type and docstring but keep the original
|
|
|
|
// value.
|
|
|
|
if(this->AlreadyInCacheWithoutMetaInfo)
|
|
|
|
{
|
|
|
|
this->Makefile->AddCacheDefinition(
|
|
|
|
this->VariableName.c_str(), "",
|
|
|
|
this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath ?
|
|
|
|
cmCacheManager::FILEPATH :cmCacheManager::PATH)
|
|
|
|
);
|
|
|
|
}
|
2001-04-26 17:38:31 +04:00
|
|
|
return true;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ff = this->Makefile->GetSafeDefinition("CMAKE_FIND_FRAMEWORK");
|
2006-03-02 21:30:22 +03:00
|
|
|
bool supportFrameworks = true;
|
|
|
|
if( ff.size() == 0 || ff == "NEVER" )
|
2001-04-26 17:38:31 +04:00
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
supportFrameworks = false;
|
2001-04-26 17:38:31 +04:00
|
|
|
}
|
2006-03-02 21:30:22 +03:00
|
|
|
std::string framework;
|
2008-01-21 01:24:46 +03:00
|
|
|
// Add a trailing slash to all paths to aid the search process.
|
|
|
|
for(std::vector<std::string>::iterator i = this->SearchPaths.begin();
|
|
|
|
i != this->SearchPaths.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string& p = *i;
|
2008-01-21 03:29:12 +03:00
|
|
|
if(p.empty() || p[p.size()-1] != '/')
|
2008-01-21 01:24:46 +03:00
|
|
|
{
|
|
|
|
p += "/";
|
|
|
|
}
|
|
|
|
}
|
2006-01-28 02:20:55 +03:00
|
|
|
// Use the search path to find the file.
|
2001-04-26 17:38:31 +04:00
|
|
|
unsigned int k;
|
2006-03-02 21:30:22 +03:00
|
|
|
std::string result;
|
|
|
|
for(k=0; k < this->SearchPaths.size(); k++)
|
2001-04-26 17:38:31 +04:00
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
for(unsigned int j =0; j < this->Names.size(); ++j)
|
2001-04-26 17:38:31 +04:00
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
// if frameworks are supported try to find the header in a framework
|
|
|
|
std::string tryPath;
|
|
|
|
if(supportFrameworks)
|
|
|
|
{
|
|
|
|
tryPath = this->FindHeaderInFramework(this->Names[j],
|
|
|
|
this->SearchPaths[k]);
|
|
|
|
if(tryPath.size())
|
|
|
|
{
|
|
|
|
result = tryPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(result.size() == 0)
|
2003-01-17 18:28:41 +03:00
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
tryPath = this->SearchPaths[k];
|
|
|
|
tryPath += this->Names[j];
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str()))
|
|
|
|
{
|
|
|
|
if(this->IncludeFileInPath)
|
|
|
|
{
|
|
|
|
result = tryPath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = this->SearchPaths[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(result.size() != 0)
|
|
|
|
{
|
2006-05-10 23:46:45 +04:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(this->VariableName.c_str(), result.c_str(),
|
|
|
|
this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath) ?
|
|
|
|
cmCacheManager::FILEPATH :cmCacheManager::PATH);
|
2006-03-02 21:30:22 +03:00
|
|
|
return true;
|
2003-01-17 18:28:41 +03:00
|
|
|
}
|
2001-04-26 17:38:31 +04:00
|
|
|
}
|
|
|
|
}
|
2006-05-10 23:46:45 +04:00
|
|
|
this->Makefile->AddCacheDefinition
|
|
|
|
(this->VariableName.c_str(),
|
|
|
|
(this->VariableName + "-NOTFOUND").c_str(),
|
|
|
|
this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath) ?
|
|
|
|
cmCacheManager::FILEPATH :cmCacheManager::PATH);
|
2001-04-26 17:38:31 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-02 21:30:22 +03:00
|
|
|
std::string cmFindPathCommand::FindHeaderInFramework(std::string& file,
|
|
|
|
std::string& dir)
|
2005-12-31 05:54:26 +03:00
|
|
|
{
|
|
|
|
cmStdString fileName = file;
|
|
|
|
cmStdString frameWorkName;
|
|
|
|
cmStdString::size_type pos = fileName.find("/");
|
2006-03-02 21:30:22 +03:00
|
|
|
// if there is a / in the name try to find the header as a framework
|
|
|
|
// For example bar/foo.h would look for:
|
|
|
|
// bar.framework/Headers/foo.h
|
2005-12-31 05:54:26 +03:00
|
|
|
if(pos != fileName.npos)
|
|
|
|
{
|
|
|
|
// remove the name from the slash;
|
|
|
|
fileName = fileName.substr(pos+1);
|
|
|
|
frameWorkName = file;
|
2006-05-10 23:46:45 +04:00
|
|
|
frameWorkName =
|
|
|
|
frameWorkName.substr(0, frameWorkName.size()-fileName.size()-1);
|
2005-12-31 05:54:26 +03:00
|
|
|
// if the framework has a path in it then just use the filename
|
|
|
|
if(frameWorkName.find("/") != frameWorkName.npos)
|
|
|
|
{
|
|
|
|
fileName = file;
|
|
|
|
frameWorkName = "";
|
2006-03-02 21:30:22 +03:00
|
|
|
}
|
2005-12-31 05:54:26 +03:00
|
|
|
if(frameWorkName.size())
|
|
|
|
{
|
2006-03-02 21:30:22 +03:00
|
|
|
std::string fpath = dir;
|
2005-12-31 05:54:26 +03:00
|
|
|
fpath += frameWorkName;
|
|
|
|
fpath += ".framework";
|
|
|
|
std::string intPath = fpath;
|
|
|
|
intPath += "/Headers/";
|
|
|
|
intPath += fileName;
|
|
|
|
if(cmSystemTools::FileExists(intPath.c_str()))
|
2006-03-02 21:30:22 +03:00
|
|
|
{
|
|
|
|
if(this->IncludeFileInPath)
|
|
|
|
{
|
|
|
|
return intPath;
|
|
|
|
}
|
2005-12-31 05:54:26 +03:00
|
|
|
return fpath;
|
|
|
|
}
|
|
|
|
}
|
2006-03-09 19:35:38 +03:00
|
|
|
}
|
|
|
|
// if it is not found yet or not a framework header, then do a glob search
|
|
|
|
// for all files in dir/*/Headers/
|
|
|
|
cmStdString glob = dir;
|
2008-01-21 01:24:46 +03:00
|
|
|
glob += "*/Headers/";
|
2006-03-09 19:35:38 +03:00
|
|
|
glob += file;
|
2006-03-21 20:54:31 +03:00
|
|
|
cmsys::Glob globIt;
|
2006-03-09 19:35:38 +03:00
|
|
|
globIt.FindFiles(glob);
|
|
|
|
std::vector<std::string> files = globIt.GetFiles();
|
|
|
|
if(files.size())
|
|
|
|
{
|
|
|
|
cmStdString fheader = cmSystemTools::CollapseFullPath(files[0].c_str());
|
|
|
|
if(this->IncludeFileInPath)
|
2005-12-31 05:54:26 +03:00
|
|
|
{
|
|
|
|
return fheader;
|
|
|
|
}
|
2006-03-09 19:35:38 +03:00
|
|
|
fheader = cmSystemTools::GetFilenamePath(fheader);
|
|
|
|
return fheader;
|
2005-12-31 05:54:26 +03:00
|
|
|
}
|
2006-03-02 21:30:22 +03:00
|
|
|
return "";
|
2005-12-31 05:54:26 +03:00
|
|
|
}
|
2006-03-02 21:30:22 +03:00
|
|
|
|