2001-02-27 02:00:49 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-02-28 17:34:01 +03:00
|
|
|
#include "cmCableCommand.h"
|
2001-02-27 02:00:49 +03:00
|
|
|
#include "cmCacheManager.h"
|
|
|
|
|
2001-02-28 17:34:01 +03:00
|
|
|
// cmCableCommand
|
2001-02-27 02:00:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-02-28 17:34:01 +03:00
|
|
|
* Constructor initializes to empty m_CableData.
|
2001-02-27 02:00:49 +03:00
|
|
|
*/
|
2001-02-28 17:34:01 +03:00
|
|
|
cmCableCommand::cmCableCommand(): m_CableData(0)
|
2001-02-27 02:00:49 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-02-28 17:34:01 +03:00
|
|
|
* Destructor frees the cmCableData only if this command is its owner.
|
2001-02-27 02:00:49 +03:00
|
|
|
*/
|
2001-02-28 17:34:01 +03:00
|
|
|
cmCableCommand::~cmCableCommand()
|
2001-02-27 02:00:49 +03:00
|
|
|
{
|
2001-02-28 17:34:01 +03:00
|
|
|
if(m_CableData && m_CableData->OwnerIs(this))
|
2001-02-27 02:00:49 +03:00
|
|
|
{
|
2001-02-28 17:34:01 +03:00
|
|
|
delete m_CableData;
|
2001-02-27 02:00:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2001-02-28 17:34:01 +03:00
|
|
|
* Ensure that this cmCableCommand has a valid m_CableData pointer.
|
2001-02-27 02:00:49 +03:00
|
|
|
*/
|
2001-02-28 17:34:01 +03:00
|
|
|
void cmCableCommand::SetupCableData()
|
2001-02-27 02:00:49 +03:00
|
|
|
{
|
|
|
|
// Only do something if the pointer is invalid.
|
2001-02-28 17:34:01 +03:00
|
|
|
if(m_CableData)
|
2001-02-27 02:00:49 +03:00
|
|
|
{ return; }
|
|
|
|
|
|
|
|
// Look through the vector of commands from the makefile.
|
|
|
|
const std::vector<cmCommand*>& usedCommands =
|
|
|
|
m_Makefile->GetUsedCommands();
|
|
|
|
for(std::vector<cmCommand*>::const_iterator commandIter =
|
|
|
|
usedCommands.begin(); commandIter != usedCommands.end(); ++commandIter)
|
|
|
|
{
|
2001-02-28 17:34:01 +03:00
|
|
|
// If this command is a cmCableCommand, see if it has a cmCableData
|
2001-02-27 02:00:49 +03:00
|
|
|
// instance.
|
2001-02-28 17:34:01 +03:00
|
|
|
cmCableCommand* command = cmCableCommand::SafeDownCast(*commandIter);
|
2001-02-27 02:00:49 +03:00
|
|
|
if(command)
|
2001-02-28 17:34:01 +03:00
|
|
|
{ m_CableData = command->m_CableData; }
|
2001-02-27 02:00:49 +03:00
|
|
|
|
2001-02-28 17:34:01 +03:00
|
|
|
// If we found an instance of cmCableData, then we are done.
|
|
|
|
if(m_CableData)
|
2001-02-27 02:00:49 +03:00
|
|
|
{ return; }
|
|
|
|
}
|
2001-03-09 18:52:43 +03:00
|
|
|
|
|
|
|
// We must make sure the output directory exists so that the CABLE
|
|
|
|
// configuration file can be opened by the cmCableData.
|
|
|
|
std::string pathName = m_Makefile->GetStartOutputDirectory();
|
|
|
|
if(!cmSystemTools::MakeDirectory(pathName.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to make directory ", pathName.c_str());
|
|
|
|
}
|
|
|
|
|
2001-02-28 17:34:01 +03:00
|
|
|
// We didn't find another cmCableCommand with a valid cmCableData.
|
|
|
|
// We must allocate the new cmCableData ourselves, and with this
|
2001-02-27 02:00:49 +03:00
|
|
|
// command as its owner.
|
2001-03-02 20:27:41 +03:00
|
|
|
pathName += "/cable_config.xml";
|
|
|
|
m_CableData = new cmCableData(this, pathName);
|
2001-03-19 18:09:43 +03:00
|
|
|
|
|
|
|
// We must add a custom rule to cause the cable_config.xml to be re-built
|
|
|
|
// when it is removed. Rebuilding it means re-running CMake.
|
2001-04-09 18:31:36 +04:00
|
|
|
std::string cMakeLists = m_Makefile->GetStartDirectory();
|
2001-03-19 18:09:43 +03:00
|
|
|
cMakeLists += "/";
|
2001-04-09 18:31:36 +04:00
|
|
|
cMakeLists += "CMakeLists.txt";
|
2001-03-19 19:01:33 +03:00
|
|
|
|
|
|
|
std::string command;
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2001-04-09 17:44:29 +04:00
|
|
|
command = "\"";
|
|
|
|
command += m_Makefile->GetHomeDirectory();
|
2001-04-09 18:31:36 +04:00
|
|
|
command += "/CMake/Source/CMakeSetupCMD\" \"";
|
2001-03-19 19:01:33 +03:00
|
|
|
command += cMakeLists;
|
2001-04-09 18:31:36 +04:00
|
|
|
command += "\" -DSP";
|
2001-03-19 19:01:33 +03:00
|
|
|
#else
|
2001-04-09 17:44:29 +04:00
|
|
|
command = "\"";
|
|
|
|
command += m_Makefile->GetHomeOutputDirectory();
|
2001-04-09 18:31:36 +04:00
|
|
|
command += "/CMake/Source/CMakeBuildTargets\" \"";
|
2001-03-19 19:01:33 +03:00
|
|
|
command += cMakeLists;
|
2001-04-09 18:31:36 +04:00
|
|
|
command += "\"";
|
2001-03-19 19:01:33 +03:00
|
|
|
#endif
|
2001-04-09 17:44:29 +04:00
|
|
|
command += " -H\"";
|
2001-03-19 18:09:43 +03:00
|
|
|
command += m_Makefile->GetHomeDirectory();
|
2001-04-09 17:44:29 +04:00
|
|
|
command += "\" -S\"";
|
2001-03-19 18:09:43 +03:00
|
|
|
command += m_Makefile->GetStartDirectory();
|
2001-04-09 17:44:29 +04:00
|
|
|
command += "\" -O\"";
|
2001-03-19 18:09:43 +03:00
|
|
|
command += m_Makefile->GetStartOutputDirectory();
|
2001-04-09 17:44:29 +04:00
|
|
|
command += "\" -B\"";
|
2001-03-19 18:09:43 +03:00
|
|
|
command += m_Makefile->GetHomeOutputDirectory();
|
2001-04-09 17:44:29 +04:00
|
|
|
command += "\"";
|
2001-03-19 18:09:43 +03:00
|
|
|
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
m_Makefile->AddCustomCommand(cMakeLists.c_str(),
|
|
|
|
command.c_str(),
|
2001-03-20 21:20:59 +03:00
|
|
|
depends,
|
|
|
|
"cable_config.xml");
|
2001-02-27 02:00:49 +03:00
|
|
|
}
|