2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-26 17:38:31 +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-04-26 17:38:31 +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-04-26 17:38:31 +04:00
|
|
|
#include "cmFindPathCommand.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;
|
2010-11-12 18:47:28 +03:00
|
|
|
}
|
|
|
|
|
2001-04-26 17:38:31 +04:00
|
|
|
// cmFindPathCommand
|
2016-05-16 17:34:04 +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";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ParseArguments(argsIn)) {
|
2001-04-26 17:38:31 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->AlreadyInCache) {
|
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.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AlreadyInCacheWithoutMetaInfo) {
|
2006-07-18 23:21:26 +04:00
|
|
|
this->Makefile->AddCacheDefinition(
|
2016-05-16 17:34:04 +03:00
|
|
|
this->VariableName, "", this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath ? cmState::FILEPATH : cmState::PATH));
|
2001-04-26 17:38:31 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
2008-06-09 19:58:29 +04:00
|
|
|
|
|
|
|
std::string result = this->FindHeader();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!result.empty()) {
|
|
|
|
this->Makefile->AddCacheDefinition(
|
|
|
|
this->VariableName, result.c_str(), this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath) ? cmState::FILEPATH : cmState::PATH);
|
2008-06-09 19:58:29 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
this->Makefile->AddCacheDefinition(
|
|
|
|
this->VariableName, (this->VariableName + "-NOTFOUND").c_str(),
|
|
|
|
this->VariableDocumentation.c_str(),
|
|
|
|
(this->IncludeFileInPath) ? cmState::FILEPATH : cmState::PATH);
|
2001-04-26 17:38:31 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-06-09 19:58:29 +04:00
|
|
|
std::string cmFindPathCommand::FindHeader()
|
|
|
|
{
|
|
|
|
std::string header;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SearchFrameworkFirst || this->SearchFrameworkOnly) {
|
2008-06-09 19:58:29 +04:00
|
|
|
header = this->FindFrameworkHeader();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (header.empty() && !this->SearchFrameworkOnly) {
|
2008-06-09 19:58:29 +04:00
|
|
|
header = this->FindNormalHeader();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (header.empty() && this->SearchFrameworkLast) {
|
2008-06-09 19:58:29 +04:00
|
|
|
header = this->FindFrameworkHeader();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-06-09 19:58:29 +04:00
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmFindPathCommand::FindHeaderInFramework(std::string const& file,
|
|
|
|
std::string const& dir)
|
2005-12-31 05:54:26 +03:00
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
std::string fileName = file;
|
|
|
|
std::string frameWorkName;
|
|
|
|
std::string::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
|
2016-05-16 17:34:04 +03:00
|
|
|
if (pos != fileName.npos) {
|
2005-12-31 05:54:26 +03:00
|
|
|
// remove the name from the slash;
|
2016-05-16 17:34:04 +03:00
|
|
|
fileName = fileName.substr(pos + 1);
|
2005-12-31 05:54:26 +03:00
|
|
|
frameWorkName = file;
|
2012-08-13 21:42:58 +04:00
|
|
|
frameWorkName =
|
2016-05-16 17:34:04 +03:00
|
|
|
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
|
2016-05-16 17:34:04 +03:00
|
|
|
if (frameWorkName.find("/") != frameWorkName.npos) {
|
2005-12-31 05:54:26 +03:00
|
|
|
fileName = file;
|
|
|
|
frameWorkName = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!frameWorkName.empty()) {
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(intPath.c_str())) {
|
|
|
|
if (this->IncludeFileInPath) {
|
2006-03-02 21:30:22 +03:00
|
|
|
return intPath;
|
2005-12-31 05:54:26 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
return fpath;
|
2005-12-31 05:54:26 +03:00
|
|
|
}
|
2006-03-09 19:35:38 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:35:38 +03:00
|
|
|
// if it is not found yet or not a framework header, then do a glob search
|
2008-06-09 20:51:01 +04:00
|
|
|
// for all frameworks in the directory: dir/*.framework/Headers/<file>
|
2014-02-10 09:21:34 +04:00
|
|
|
std::string glob = dir;
|
2008-06-09 20:51:01 +04:00
|
|
|
glob += "*.framework/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();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!files.empty()) {
|
2014-10-15 16:54:05 +04:00
|
|
|
std::string fheader = cmSystemTools::CollapseFullPath(files[0]);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->IncludeFileInPath) {
|
2005-12-31 05:54:26 +03:00
|
|
|
return fheader;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-05-25 20:18:47 +03:00
|
|
|
fheader.resize(fheader.size() - file.size());
|
2006-03-09 19:35:38 +03:00
|
|
|
return fheader;
|
2016-05-16 17:34:04 +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
|
|
|
|
2008-06-09 19:58:29 +04:00
|
|
|
std::string cmFindPathCommand::FindNormalHeader()
|
|
|
|
{
|
|
|
|
std::string tryPath;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator ni = this->Names.begin();
|
|
|
|
ni != this->Names.end(); ++ni) {
|
|
|
|
for (std::vector<std::string>::const_iterator p =
|
|
|
|
this->SearchPaths.begin();
|
|
|
|
p != this->SearchPaths.end(); ++p) {
|
2008-06-09 19:58:29 +04:00
|
|
|
tryPath = *p;
|
|
|
|
tryPath += *ni;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(tryPath.c_str())) {
|
|
|
|
if (this->IncludeFileInPath) {
|
2008-06-09 19:58:29 +04:00
|
|
|
return tryPath;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2008-06-09 19:58:29 +04:00
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-06-09 19:58:29 +04:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmFindPathCommand::FindFrameworkHeader()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator ni = this->Names.begin();
|
|
|
|
ni != this->Names.end(); ++ni) {
|
|
|
|
for (std::vector<std::string>::const_iterator p =
|
|
|
|
this->SearchPaths.begin();
|
|
|
|
p != this->SearchPaths.end(); ++p) {
|
2008-06-09 19:58:29 +04:00
|
|
|
std::string fwPath = this->FindHeaderInFramework(*ni, *p);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fwPath.empty()) {
|
2008-06-09 19:58:29 +04:00
|
|
|
return fwPath;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-06-09 19:58:29 +04:00
|
|
|
return "";
|
|
|
|
}
|