blob: f7a28eadbcf4edf24526ea7dde87653ba99be7d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/*=========================================================================
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.
=========================================================================*/
#include "cmCabilCommand.h"
#include "cmCacheManager.h"
// cmCabilCommand
/**
* Constructor initializes to empty m_CabilData.
*/
cmCabilCommand::cmCabilCommand(): m_CabilData(0)
{
}
/**
* Destructor frees the cmCabilData only if this command is its owner.
*/
cmCabilCommand::~cmCabilCommand()
{
if(m_CabilData && m_CabilData->OwnerIs(this))
{
delete m_CabilData;
}
}
/**
* Write a CABIL configuration file header.
*/
void cmCabilCommand::WriteConfigurationHeader(std::ostream& os) const
{
os << "<?xml version=\"1.0\"?>" << std::endl
<< "<CabilConfiguration>" << std::endl;
}
/**
* Write a CABIL configuration file footer.
*/
void cmCabilCommand::WriteConfigurationFooter(std::ostream& os) const
{
os << "</CabilConfiguration>" << std::endl;
}
/**
* Ensure that this cmCabilCommand has a valid m_CabilData pointer.
*/
void cmCabilCommand::SetupCabilData()
{
// Only do something if the pointer is invalid.
if(m_CabilData)
{ 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)
{
// If this command is a cmCabilCommand, see if it has a cmCabilData
// instance.
cmCabilCommand* command = cmCabilCommand::SafeDownCast(*commandIter);
if(command)
{ m_CabilData = command->m_CabilData; }
// If we found an instance of cmCabilData, then we are done.
if(m_CabilData)
{ return; }
}
// We didn't find another cmCabilCommand with a valid cmCabilData.
// We must allocate the new cmCabilData ourselves, and with this
// command as its owner.
m_CabilData = new cmCabilData(this);
}
|