2002-01-21 23:30:43 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-01-21 23:30:43 +03: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.
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-12-01 00:48:52 +03:00
|
|
|
#include "cmakewizard.h"
|
2001-11-27 02:28:27 +03:00
|
|
|
#include "cmake.h"
|
2001-12-01 00:48:52 +03:00
|
|
|
#include "cmCacheManager.h"
|
2001-11-27 02:28:27 +03:00
|
|
|
|
2001-12-01 00:48:52 +03:00
|
|
|
cmakewizard::cmakewizard()
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ShowAdvanced = false;
|
2001-12-01 00:48:52 +03:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
|
|
|
|
void cmakewizard::AskUser(const char* key,
|
|
|
|
cmCacheManager::CacheIterator& iter)
|
2001-12-01 00:48:52 +03:00
|
|
|
{
|
2003-01-30 21:19:58 +03:00
|
|
|
printf("Variable Name: %s\n", key);
|
2002-09-11 22:05:45 +04:00
|
|
|
const char* helpstring = iter.GetProperty("HELPSTRING");
|
2003-01-30 21:19:58 +03:00
|
|
|
printf("Description: %s\n", (helpstring?helpstring:"(none)"));
|
|
|
|
printf("Current Value: %s\n", iter.GetValue());
|
|
|
|
printf("New Value (Enter to keep current value): ");
|
2001-11-27 02:28:27 +03:00
|
|
|
char buffer[4096];
|
|
|
|
buffer[0] = 0;
|
2002-09-17 21:48:30 +04:00
|
|
|
fgets(buffer, sizeof(buffer)-1, stdin);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-17 22:19:50 +04:00
|
|
|
if(strlen(buffer) > 0)
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2002-09-17 22:19:50 +04:00
|
|
|
std::string sbuffer = buffer;
|
|
|
|
std::string::size_type pos = sbuffer.find_last_not_of(" \n\r\t");
|
|
|
|
std::string value = "";
|
|
|
|
if ( pos != std::string::npos )
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2002-09-17 22:19:50 +04:00
|
|
|
value = sbuffer.substr(0, pos+1);
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-17 22:19:50 +04:00
|
|
|
if ( value.size() > 0 )
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2002-09-17 22:19:50 +04:00
|
|
|
if(iter.GetType() == cmCacheManager::PATH ||
|
|
|
|
iter.GetType() == cmCacheManager::FILEPATH)
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(value);
|
|
|
|
}
|
|
|
|
if(iter.GetType() == cmCacheManager::BOOL)
|
2002-09-11 22:05:45 +04:00
|
|
|
{
|
2002-09-17 22:19:50 +04:00
|
|
|
if(!cmSystemTools::IsOn(value.c_str()))
|
|
|
|
{
|
|
|
|
value = "OFF";
|
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
}
|
2002-09-17 22:19:50 +04:00
|
|
|
iter.SetValue(value.c_str());
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
}
|
2003-01-30 21:19:58 +03:00
|
|
|
printf("\n");
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
|
2001-12-01 00:48:52 +03:00
|
|
|
bool cmakewizard::AskAdvanced()
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
printf("Would you like to see advanced options? [No]:");
|
2001-11-27 02:28:27 +03:00
|
|
|
char buffer[4096];
|
|
|
|
buffer[0] = 0;
|
2002-09-17 21:48:30 +04:00
|
|
|
fgets(buffer, sizeof(buffer)-1, stdin);
|
2001-11-27 02:28:27 +03:00
|
|
|
if(buffer[0])
|
|
|
|
{
|
|
|
|
if(buffer[0] == 'y' || buffer[0] == 'Y')
|
|
|
|
{
|
2001-12-01 00:48:52 +03:00
|
|
|
return true;
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
}
|
2001-12-01 00:48:52 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmakewizard::ShowMessage(const char* m)
|
|
|
|
{
|
2003-01-30 21:19:58 +03:00
|
|
|
printf("%s\n", m);
|
2001-12-01 00:48:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-08-26 23:06:52 +04:00
|
|
|
int cmakewizard::RunWizard(std::vector<std::string> const& args)
|
2001-12-01 00:48:52 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ShowAdvanced = this->AskAdvanced();
|
2001-12-01 00:48:52 +03:00
|
|
|
cmSystemTools::DisableRunCommandOutput();
|
2001-11-27 02:28:27 +03:00
|
|
|
cmake make;
|
2002-09-11 22:05:45 +04:00
|
|
|
make.SetArgs(args);
|
2002-09-17 21:59:58 +04:00
|
|
|
make.SetCMakeCommand(args[0].c_str());
|
|
|
|
make.LoadCache();
|
|
|
|
make.SetCacheArgs(args);
|
2004-09-30 00:07:07 +04:00
|
|
|
std::map<cmStdString, cmStdString> askedCache;
|
2001-11-27 02:28:27 +03:00
|
|
|
bool asked = false;
|
|
|
|
// continue asking questions until no new questions are asked
|
|
|
|
do
|
|
|
|
{
|
|
|
|
asked = false;
|
|
|
|
// run cmake
|
2006-03-10 21:06:26 +03:00
|
|
|
this->ShowMessage(
|
|
|
|
"Please wait while cmake processes CMakeLists.txt files....\n");
|
2002-09-11 22:05:45 +04:00
|
|
|
|
2002-09-17 21:59:58 +04:00
|
|
|
make.Configure();
|
2001-12-01 00:48:52 +03:00
|
|
|
this->ShowMessage("\n");
|
2001-11-27 02:28:27 +03:00
|
|
|
// load the cache from disk
|
2002-08-28 22:51:10 +04:00
|
|
|
cmCacheManager *cachem = make.GetCacheManager();
|
2003-08-07 02:39:16 +04:00
|
|
|
cachem->LoadCache(make.GetHomeOutputDirectory());
|
2002-08-21 19:59:52 +04:00
|
|
|
cmCacheManager::CacheIterator i = cachem->NewIterator();
|
2001-11-27 02:28:27 +03:00
|
|
|
// iterate over all entries in the cache
|
2002-08-21 19:59:52 +04:00
|
|
|
for(;!i.IsAtEnd(); i.Next())
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2002-08-21 19:59:52 +04:00
|
|
|
std::string key = i.GetName();
|
2006-03-10 21:06:26 +03:00
|
|
|
if( i.GetType() == cmCacheManager::INTERNAL ||
|
2002-09-11 22:05:45 +04:00
|
|
|
i.GetType() == cmCacheManager::STATIC ||
|
|
|
|
i.GetType() == cmCacheManager::UNINITIALIZED )
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(askedCache.count(key))
|
|
|
|
{
|
2002-09-11 22:05:45 +04:00
|
|
|
std::string& e = askedCache.find(key)->second;
|
|
|
|
if(e != i.GetValue())
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->ShowAdvanced || !i.GetPropertyAsBool("ADVANCED"))
|
2001-12-01 00:48:52 +03:00
|
|
|
{
|
2002-09-12 17:00:30 +04:00
|
|
|
this->AskUser(key.c_str(), i);
|
2001-12-01 00:48:52 +03:00
|
|
|
asked = true;
|
|
|
|
}
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2006-03-15 19:02:08 +03:00
|
|
|
{
|
|
|
|
if(this->ShowAdvanced || !i.GetPropertyAsBool("ADVANCED"))
|
2001-12-01 00:48:52 +03:00
|
|
|
{
|
2002-09-12 17:00:30 +04:00
|
|
|
this->AskUser(key.c_str(), i);
|
2001-12-01 00:48:52 +03:00
|
|
|
asked = true;
|
|
|
|
}
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
askedCache[key] = i.GetValue();
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2003-08-07 02:39:16 +04:00
|
|
|
cachem->SaveCache(make.GetHomeOutputDirectory());
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
while(asked);
|
2003-08-26 23:06:52 +04:00
|
|
|
if(make.Generate() == 0)
|
|
|
|
{
|
|
|
|
this->ShowMessage("CMake complete, run make to build project.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|