2001-06-11 02:21:55 +04:00
|
|
|
|
|
|
|
#include "CMakeSetupGUIImplementation.h"
|
2001-06-20 00:10:38 +04:00
|
|
|
#include "FL/fl_file_chooser.H"
|
|
|
|
#include "FL/filename.H"
|
|
|
|
#include "FL/fl_ask.H"
|
2001-06-11 02:21:55 +04:00
|
|
|
#include "cstring"
|
|
|
|
#include "../cmCacheManager.h"
|
|
|
|
#include "../cmMakefile.h"
|
|
|
|
#include <iostream>
|
2001-06-11 05:36:04 +04:00
|
|
|
#include "FLTKPropertyList.h"
|
2001-06-20 00:10:38 +04:00
|
|
|
#include "FL/fl_draw.H"
|
2001-06-11 09:20:22 +04:00
|
|
|
#include "../cmake.h"
|
2001-06-11 02:21:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
CMakeSetupGUIImplementation
|
2001-06-21 16:41:14 +04:00
|
|
|
::CMakeSetupGUIImplementation():m_CacheEntriesList( this )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
2001-06-11 09:20:22 +04:00
|
|
|
m_BuildPathChanged = false;
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor
|
|
|
|
*/
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::~CMakeSetupGUIImplementation()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the graphic interface
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::Show( void )
|
|
|
|
{
|
|
|
|
dialogWindow->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide the graphic interface
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::Close( void )
|
|
|
|
{
|
|
|
|
dialogWindow->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Browse for the path to the sources
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::BrowseForSourcePath( void )
|
|
|
|
{
|
|
|
|
const char * path =
|
|
|
|
fl_file_chooser(
|
|
|
|
"Path to Sources",
|
|
|
|
"",
|
|
|
|
sourcePathTextInput->value() );
|
|
|
|
|
|
|
|
if( !path )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetSourcePath( path );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Browse for the path to the binaries
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::BrowseForBinaryPath( void )
|
|
|
|
{
|
|
|
|
const char * path =
|
|
|
|
fl_file_chooser(
|
|
|
|
"Path to Binaries",
|
|
|
|
"",
|
|
|
|
binaryPathTextInput->value() );
|
|
|
|
|
|
|
|
if( !path )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetBinaryPath( path );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-06-15 15:51:55 +04:00
|
|
|
/**
|
|
|
|
* Set path to executable. Used to get the path to CMake
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::SetPathToExecutable( const char * path )
|
|
|
|
{
|
|
|
|
m_PathToExecutable = path;
|
|
|
|
|
|
|
|
char expandedPath[1024];
|
|
|
|
filename_expand( expandedPath, path );
|
|
|
|
|
|
|
|
char absolutePath[1024];
|
|
|
|
filename_absolute( absolutePath, expandedPath );
|
|
|
|
|
|
|
|
char * p = absolutePath + strlen( absolutePath );
|
|
|
|
while( *p != '/' && *p != '\\' )
|
|
|
|
{
|
|
|
|
p--;
|
|
|
|
}
|
|
|
|
p--;
|
|
|
|
while( *p != '/' && *p != '\\' )
|
|
|
|
{
|
|
|
|
p--;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
m_PathToExecutable = absolutePath;
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2001-06-20 21:56:38 +04:00
|
|
|
m_PathToExecutable += "/Debug/CMake.exe";
|
2001-06-15 15:51:55 +04:00
|
|
|
#else
|
|
|
|
m_PathToExecutable += "/cmake";
|
|
|
|
#endif
|
2001-06-21 15:37:49 +04:00
|
|
|
|
2001-06-15 15:51:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
/**
|
|
|
|
* Set the source path
|
|
|
|
*/
|
2001-06-12 16:34:29 +04:00
|
|
|
bool
|
2001-06-11 02:21:55 +04:00
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::SetSourcePath( const char * path )
|
|
|
|
{
|
2001-06-12 16:34:29 +04:00
|
|
|
|
|
|
|
if( !path || strlen(path)==0 )
|
|
|
|
{
|
|
|
|
fl_alert("Please select the path to the sources");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-06-12 20:20:33 +04:00
|
|
|
std::string expandedAbsolutePath = ExpandPathAndMakeItAbsolute( path );
|
2001-06-12 16:34:29 +04:00
|
|
|
|
|
|
|
sourcePathTextInput->value( expandedAbsolutePath.c_str() );
|
|
|
|
|
|
|
|
if( VerifySourcePath( expandedAbsolutePath ) )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
2001-06-12 16:34:29 +04:00
|
|
|
m_WhereSource = expandedAbsolutePath;
|
|
|
|
return true;
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
return false;
|
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-06-12 16:34:29 +04:00
|
|
|
* Expand environment variables in the path and make it absolute
|
2001-06-11 02:21:55 +04:00
|
|
|
*/
|
2001-06-12 20:20:33 +04:00
|
|
|
std::string
|
2001-06-11 02:21:55 +04:00
|
|
|
CMakeSetupGUIImplementation
|
2001-06-12 20:20:33 +04:00
|
|
|
::ExpandPathAndMakeItAbsolute( const std::string & inputPath ) const
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
char expandedPath[3000];
|
|
|
|
filename_expand( expandedPath, inputPath.c_str() );
|
2001-06-11 02:21:55 +04:00
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
char absolutePath[3000];
|
|
|
|
filename_absolute( absolutePath, expandedPath );
|
|
|
|
|
2001-06-12 20:20:33 +04:00
|
|
|
std::string expandedAbsolutePath = absolutePath;
|
2001-06-11 02:21:55 +04:00
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
return expandedAbsolutePath;
|
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-06-12 16:34:29 +04:00
|
|
|
* Set the binary path
|
2001-06-11 02:21:55 +04:00
|
|
|
*/
|
|
|
|
bool
|
|
|
|
CMakeSetupGUIImplementation
|
2001-06-12 16:34:29 +04:00
|
|
|
::SetBinaryPath( const char * path )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
if( !path || strlen(path)==0 )
|
|
|
|
{
|
|
|
|
fl_alert("Please select the path to the binaries");
|
2001-06-12 16:34:29 +04:00
|
|
|
return false;
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
2001-06-12 20:20:33 +04:00
|
|
|
std::string expandedAbsolutePath = ExpandPathAndMakeItAbsolute( path );
|
2001-06-12 16:34:29 +04:00
|
|
|
|
|
|
|
binaryPathTextInput->value( expandedAbsolutePath.c_str() );
|
2001-06-11 02:21:55 +04:00
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
if( !VerifyBinaryPath( expandedAbsolutePath.c_str() ) )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
2001-06-12 16:34:29 +04:00
|
|
|
return false;
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
if( m_WhereBuild != expandedAbsolutePath )
|
|
|
|
{
|
|
|
|
m_BuildPathChanged = true;
|
|
|
|
m_WhereBuild = expandedAbsolutePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
LoadCacheFromDiskToGUI();
|
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
return true;
|
2001-06-12 16:34:29 +04:00
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-06-12 16:34:29 +04:00
|
|
|
* Verify the path to binaries
|
2001-06-11 02:21:55 +04:00
|
|
|
*/
|
|
|
|
bool
|
|
|
|
CMakeSetupGUIImplementation
|
2001-06-12 20:20:33 +04:00
|
|
|
::VerifyBinaryPath( const std::string & path ) const
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
bool pathIsOK = false;
|
|
|
|
|
|
|
|
if( filename_isdir( path.c_str() ) )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
2001-06-12 16:34:29 +04:00
|
|
|
pathIsOK = true;
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
2001-06-12 16:34:29 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int userWantsToCreateDirectory =
|
|
|
|
fl_ask("The directory \n %s \n Doesn't exist. Do you want to create it ?",
|
|
|
|
path.c_str() );
|
|
|
|
|
|
|
|
if( userWantsToCreateDirectory )
|
|
|
|
{
|
2001-06-12 20:20:33 +04:00
|
|
|
std::string command = "mkdir ";
|
2001-06-12 16:34:29 +04:00
|
|
|
command += path;
|
|
|
|
system( command.c_str() );
|
|
|
|
pathIsOK = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pathIsOK = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pathIsOK;
|
|
|
|
|
|
|
|
}
|
2001-06-11 02:21:55 +04:00
|
|
|
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify the path to sources
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
CMakeSetupGUIImplementation
|
2001-06-12 20:20:33 +04:00
|
|
|
::VerifySourcePath( const std::string & path ) const
|
2001-06-12 16:34:29 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
if( !filename_isdir( path.c_str() ) )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
2001-06-12 16:34:29 +04:00
|
|
|
fl_alert("The Source directory \n %s \n Doesn't exist or is not a directory", path.c_str() );
|
2001-06-11 02:21:55 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the project files
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::BuildProjectFiles( void )
|
|
|
|
{
|
|
|
|
|
2001-06-12 16:34:29 +04:00
|
|
|
// Take and verify the source path from the GUI
|
|
|
|
if( !SetSourcePath( sourcePathTextInput->value() ) )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2001-06-12 16:34:29 +04:00
|
|
|
|
|
|
|
// Take and verify the binary path from the GUI
|
|
|
|
if( !SetBinaryPath( binaryPathTextInput->value() ) )
|
|
|
|
{
|
2001-06-11 02:21:55 +04:00
|
|
|
return;
|
|
|
|
}
|
2001-06-12 16:34:29 +04:00
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
|
2001-06-11 09:20:22 +04:00
|
|
|
// set the wait cursor
|
2001-06-11 10:10:31 +04:00
|
|
|
fl_cursor(FL_CURSOR_WAIT,FL_BLACK,FL_WHITE);
|
2001-06-21 15:37:49 +04:00
|
|
|
|
|
|
|
// save the current GUI values to the cache
|
|
|
|
this->SaveCacheFromGUI();
|
|
|
|
|
2001-06-11 09:20:22 +04:00
|
|
|
// Make sure we are working from the cache on disk
|
|
|
|
this->LoadCacheFromDiskToGUI();
|
2001-06-21 15:37:49 +04:00
|
|
|
|
2001-06-11 09:20:22 +04:00
|
|
|
// create a cmake object
|
|
|
|
cmake make;
|
|
|
|
// create the arguments for the cmake object
|
|
|
|
std::vector<std::string> args;
|
|
|
|
args.push_back( m_PathToExecutable.c_str() );
|
|
|
|
std::string arg;
|
|
|
|
arg = "-H";
|
|
|
|
arg += m_WhereSource;
|
|
|
|
args.push_back(arg);
|
|
|
|
arg = "-B";
|
|
|
|
arg += m_WhereBuild;
|
|
|
|
args.push_back(arg);
|
|
|
|
// run the generate process
|
|
|
|
if(make.Generate(args) != 0)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"Error in generation process, project files may be invalid");
|
|
|
|
}
|
|
|
|
// update the GUI with any new values in the caused by the
|
|
|
|
// generation process
|
|
|
|
this->LoadCacheFromDiskToGUI();
|
2001-06-21 17:45:46 +04:00
|
|
|
|
2001-06-11 09:20:22 +04:00
|
|
|
// path is up-to-date now
|
|
|
|
m_BuildPathChanged = false;
|
2001-06-21 17:45:46 +04:00
|
|
|
|
2001-06-11 09:20:22 +04:00
|
|
|
// put the cursor back
|
2001-06-11 10:10:31 +04:00
|
|
|
fl_cursor(FL_CURSOR_DEFAULT,FL_BLACK,FL_WHITE);
|
2001-06-11 09:20:22 +04:00
|
|
|
fl_message("Done !");
|
2001-06-11 02:21:55 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load Cache from disk to GUI
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::LoadCacheFromDiskToGUI( void )
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if( m_WhereBuild != "" )
|
|
|
|
{
|
|
|
|
cmCacheManager::GetInstance()->LoadCache( m_WhereBuild.c_str() );
|
|
|
|
this->FillCacheGUIFromCacheManager();
|
2001-06-15 15:51:55 +04:00
|
|
|
}
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save Cache from disk to GUI
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::SaveCacheFromGUI( void )
|
|
|
|
{
|
2001-06-11 05:36:04 +04:00
|
|
|
this->FillCacheManagerFromCacheGUI();
|
|
|
|
if( m_WhereBuild != "" )
|
|
|
|
{
|
|
|
|
cmCacheManager::GetInstance()->SaveCache(
|
|
|
|
m_WhereBuild.c_str() );
|
|
|
|
}
|
2001-06-11 02:21:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill Cache GUI from cache manager
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::FillCacheGUIFromCacheManager( void )
|
|
|
|
{
|
|
|
|
|
|
|
|
// Prepare to add rows to the scroll
|
2001-06-21 17:45:46 +04:00
|
|
|
m_CacheEntriesList.RemoveAll();
|
|
|
|
propertyListPack->clear();
|
2001-06-11 02:21:55 +04:00
|
|
|
propertyListPack->begin();
|
|
|
|
|
|
|
|
const cmCacheManager::CacheEntryMap &cache =
|
|
|
|
cmCacheManager::GetInstance()->GetCacheMap();
|
|
|
|
for(cmCacheManager::CacheEntryMap::const_iterator i = cache.begin();
|
|
|
|
i != cache.end(); ++i)
|
|
|
|
{
|
|
|
|
const char* key = i->first.c_str();
|
|
|
|
const cmCacheManager::CacheEntry& value = i->second;
|
|
|
|
|
|
|
|
switch(value.m_Type )
|
|
|
|
{
|
|
|
|
case cmCacheManager::BOOL:
|
|
|
|
if(cmCacheManager::GetInstance()->IsOn(key))
|
|
|
|
{
|
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
"ON",
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::CHECKBOX,"");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
"OFF",
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::CHECKBOX,"");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmCacheManager::PATH:
|
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
value.m_Value.c_str(),
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::PATH,"");
|
|
|
|
break;
|
|
|
|
case cmCacheManager::FILEPATH:
|
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
value.m_Value.c_str(),
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::FILE,"");
|
|
|
|
break;
|
|
|
|
case cmCacheManager::STRING:
|
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
value.m_Value.c_str(),
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::EDIT,"");
|
|
|
|
break;
|
|
|
|
case cmCacheManager::INTERNAL:
|
2001-06-21 17:45:46 +04:00
|
|
|
m_CacheEntriesList.AddProperty(key,
|
|
|
|
value.m_Value.c_str(),
|
|
|
|
value.m_HelpString.c_str(),
|
|
|
|
fltk::PropertyList::EDIT,"");
|
2001-06-11 02:21:55 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
propertyListPack->end();
|
|
|
|
propertyListPack->init_sizes();
|
|
|
|
cacheValuesScroll->position( 0, 0 );
|
|
|
|
|
2001-06-21 17:45:46 +04:00
|
|
|
propertyListPack->redraw();
|
|
|
|
|
|
|
|
Fl::check();
|
|
|
|
|
2001-06-11 02:21:55 +04:00
|
|
|
this->UpdateData(false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UpdateData
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::UpdateData( bool option )
|
|
|
|
{
|
|
|
|
dialogWindow->redraw();
|
|
|
|
Fl::check();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-06-11 05:36:04 +04:00
|
|
|
/**
|
|
|
|
* Fill cache manager from Cache GUI
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
CMakeSetupGUIImplementation
|
|
|
|
::FillCacheManagerFromCacheGUI( void )
|
|
|
|
{
|
|
|
|
cmCacheManager::GetInstance()->GetCacheMap();
|
|
|
|
std::set<fltk::PropertyItem*> items = m_CacheEntriesList.GetItems();
|
|
|
|
for(std::set<fltk::PropertyItem*>::iterator i = items.begin();
|
|
|
|
i != items.end(); ++i)
|
|
|
|
{
|
|
|
|
fltk::PropertyItem* item = *i;
|
|
|
|
cmCacheManager::CacheEntry *entry =
|
|
|
|
cmCacheManager::GetInstance()->GetCacheEntry(
|
|
|
|
(const char*)item->m_propName.c_str() );
|
|
|
|
if (entry)
|
|
|
|
{
|
|
|
|
entry->m_Value = item->m_curValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|