2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-09 16:51:54 +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-09 16:51:54 +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-09 16:51:54 +04:00
|
|
|
#include "cmLoadCacheCommand.h"
|
|
|
|
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
2001-05-09 16:51:54 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// cmLoadCacheCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmLoadCacheCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-05-09 16:51:54 +04:00
|
|
|
{
|
2016-09-16 00:59:29 +03:00
|
|
|
if (args.empty()) {
|
2001-08-15 21:40:56 +04:00
|
|
|
this->SetError("called with wrong number of arguments.");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() >= 2 && args[1] == "READ_WITH_PREFIX") {
|
2002-11-21 02:00:02 +03:00
|
|
|
return this->ReadWithPrefix(args);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-08-16 19:41:44 +04:00
|
|
|
// Cache entries to be excluded from the import list.
|
|
|
|
// If this set is empty, all cache entries are brought in
|
|
|
|
// and they can not be overridden.
|
2016-05-16 17:34:04 +03:00
|
|
|
bool excludeFiles = false;
|
2001-08-15 21:40:56 +04:00
|
|
|
unsigned int i;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> excludes;
|
2001-08-15 21:40:56 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < args.size(); i++) {
|
|
|
|
if (excludeFiles) {
|
2001-08-15 21:40:56 +04:00
|
|
|
excludes.insert(args[i]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (args[i] == "EXCLUDE") {
|
|
|
|
excludeFiles = true;
|
|
|
|
}
|
|
|
|
if (excludeFiles && (args[i] == "INCLUDE_INTERNALS")) {
|
2001-08-16 19:41:44 +04:00
|
|
|
break;
|
2001-05-09 16:51:54 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-05-09 16:51:54 +04:00
|
|
|
|
2001-08-16 19:41:44 +04:00
|
|
|
// Internal cache entries to be imported.
|
|
|
|
// If this set is empty, no internal cache entries are
|
|
|
|
// brought in.
|
2016-05-16 17:34:04 +03:00
|
|
|
bool includeFiles = false;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> includes;
|
2001-08-16 19:41:44 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < args.size(); i++) {
|
|
|
|
if (includeFiles) {
|
2001-08-16 19:41:44 +04:00
|
|
|
includes.insert(args[i]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (args[i] == "INCLUDE_INTERNALS") {
|
|
|
|
includeFiles = true;
|
|
|
|
}
|
|
|
|
if (includeFiles && (args[i] == "EXCLUDE")) {
|
2001-08-16 19:41:44 +04:00
|
|
|
break;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-08-16 19:41:44 +04:00
|
|
|
|
2002-01-22 18:17:37 +03:00
|
|
|
// Loop over each build directory listed in the arguments. Each
|
|
|
|
// directory has a cache file.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < args.size(); i++) {
|
|
|
|
if ((args[i] == "EXCLUDE") || (args[i] == "INCLUDE_INTERNALS")) {
|
2001-08-15 21:40:56 +04:00
|
|
|
break;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetCMakeInstance()->LoadCache(args[i], false, excludes,
|
|
|
|
includes);
|
|
|
|
}
|
2001-08-15 21:40:56 +04:00
|
|
|
|
2001-05-09 16:51:54 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
bool cmLoadCacheCommand::ReadWithPrefix(std::vector<std::string> const& args)
|
|
|
|
{
|
|
|
|
// Make sure we have a prefix.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 3) {
|
2002-11-21 02:00:02 +03:00
|
|
|
this->SetError("READ_WITH_PREFIX form must specify a prefix.");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// Make sure the cache file exists.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cacheFile = args[0] + "/CMakeCache.txt";
|
|
|
|
if (!cmSystemTools::FileExists(cacheFile.c_str())) {
|
2002-11-21 02:00:02 +03:00
|
|
|
std::string e = "Cannot load cache file from " + cacheFile;
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(e);
|
2002-11-21 02:00:02 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// Prepare the table of variables to read.
|
|
|
|
this->Prefix = args[2];
|
2015-01-15 05:09:43 +03:00
|
|
|
this->VariablesToRead.insert(args.begin() + 3, args.end());
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// Read the cache file.
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(cacheFile.c_str());
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// This is a big hack read loop to overcome a buggy ifstream
|
|
|
|
// implementation on HP-UX. This should work on all platforms even
|
|
|
|
// for small buffer sizes.
|
|
|
|
const int bufferSize = 4096;
|
2012-08-13 21:42:58 +04:00
|
|
|
char buffer[bufferSize];
|
2002-11-21 02:00:02 +03:00
|
|
|
std::string line;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (fin) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Read a block of the file.
|
|
|
|
fin.read(buffer, bufferSize);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (fin.gcount()) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Parse for newlines directly.
|
|
|
|
const char* i = buffer;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* end = buffer + fin.gcount();
|
|
|
|
while (i != end) {
|
2002-11-21 02:00:02 +03:00
|
|
|
const char* begin = i;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (i != end && *i != '\n') {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
if (i == begin || *(i - 1) != '\r') {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Include this portion of the line.
|
2016-05-16 17:34:04 +03:00
|
|
|
line += std::string(begin, i - begin);
|
|
|
|
} else {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Include this portion of the line.
|
|
|
|
// Don't include the \r in a \r\n pair.
|
2016-05-16 17:34:04 +03:00
|
|
|
line += std::string(begin, i - 1 - begin);
|
|
|
|
}
|
|
|
|
if (i != end) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Completed a line.
|
|
|
|
this->CheckLine(line.c_str());
|
|
|
|
line = "";
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
// Skip the newline character.
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!line.empty()) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Partial last line.
|
|
|
|
this->CheckLine(line.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
return true;
|
|
|
|
}
|
2001-05-09 16:51:54 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
void cmLoadCacheCommand::CheckLine(const char* line)
|
|
|
|
{
|
|
|
|
// Check one line of the cache file.
|
|
|
|
std::string var;
|
|
|
|
std::string value;
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::CacheEntryType type = cmState::UNINITIALIZED;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmake::ParseCacheEntry(line, var, value, type)) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// Found a real entry. See if this one was requested.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->VariablesToRead.find(var) != this->VariablesToRead.end()) {
|
2002-11-21 02:00:02 +03:00
|
|
|
// This was requested. Set this variable locally with the given
|
|
|
|
// prefix.
|
|
|
|
var = this->Prefix + var;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!value.empty()) {
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(var, value.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->RemoveDefinition(var);
|
2002-11-21 02:00:02 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-21 02:00:02 +03:00
|
|
|
}
|