2001-02-27 02:00:49 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Copyright (c) 2001 Insight Consortium
|
|
|
|
All rights reserved.
|
2001-02-27 02:00:49 +03:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
2001-02-27 02:00:49 +03:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* The name of the Insight Consortium, nor the names of any consortium members,
|
|
|
|
nor of any contributors, may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
* Modified source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2001-02-27 02:00:49 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
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-02-27 02:00:49 +03:00
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|