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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkProgressAccumulator.cxx,v $
Language: C++
Date: $Date: 2007-12-21 18:30:08 $
Version: $Revision: 1.10 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "itkProgressAccumulator.h"
namespace itk {
ProgressAccumulator
::ProgressAccumulator()
{
m_MiniPipelineFilter = 0;
// Initialize the progress values
this->ResetProgress();
// Create a member command
m_CallbackCommand = CommandType::New();
m_CallbackCommand->SetCallbackFunction( this, & Self::ReportProgress );
}
ProgressAccumulator
::~ProgressAccumulator()
{
UnregisterAllFilters();
}
void
ProgressAccumulator
::RegisterInternalFilter(GenericFilterType *filter,float weight)
{
// Observe the filter
unsigned long progressTag =
filter->AddObserver(ProgressEvent(), m_CallbackCommand);
unsigned long iterationTag =
filter->AddObserver(IterationEvent(), m_CallbackCommand);
// Create a record for the filter
struct FilterRecord record;
record.Filter = filter;
record.Weight = weight;
record.ProgressObserverTag = progressTag;
record.IterationObserverTag = iterationTag;
record.Progress = 0.0f;
// Add the record to the list
m_FilterRecord.push_back(record);
}
void
ProgressAccumulator
::UnregisterAllFilters()
{
// The filters should no longer be observing us
FilterRecordVector::iterator it;
for(it = m_FilterRecord.begin(); it != m_FilterRecord.end();++it)
{
it->Filter->RemoveObserver(it->ProgressObserverTag);
it->Filter->RemoveObserver(it->IterationObserverTag);
}
// Clear the filter array
m_FilterRecord.clear();
// Reset the progress meter
ResetProgress();
}
void
ProgressAccumulator
::ResetProgress()
{
// Reset the accumulated progress
m_AccumulatedProgress = 0.0f;
m_BaseAccumulatedProgress = 0.0f;
// Reset each of the individial progress meters
FilterRecordVector::iterator it;
for(it = m_FilterRecord.begin();it != m_FilterRecord.end();++it)
{
it->Progress = 0.0f;
it->Filter->SetProgress( 0.0f );
}
}
void
ProgressAccumulator
::ResetFilterProgressAndKeepAccumulatedProgress()
{
m_BaseAccumulatedProgress = m_AccumulatedProgress;
// Reset each of the individial progress meters
FilterRecordVector::iterator it;
for(it = m_FilterRecord.begin();it != m_FilterRecord.end();++it)
{
it->Progress = 0.0f;
it->Filter->SetProgress( 0.0f );
}
}
void
ProgressAccumulator
::ReportProgress(Object *who, const EventObject &event)
{
ProgressEvent pe;
IterationEvent ie;
if( typeid( event ) == typeid( pe ) )
{
// Add up the progress from different filters
m_AccumulatedProgress = m_BaseAccumulatedProgress;
FilterRecordVector::iterator it;
for(it = m_FilterRecord.begin();it != m_FilterRecord.end();++it)
{
m_AccumulatedProgress += it->Filter->GetProgress() * it->Weight;
}
// Update the progress of the client mini-pipeline filter
m_MiniPipelineFilter->UpdateProgress(m_AccumulatedProgress);
// check for abort
if ( m_MiniPipelineFilter->GetAbortGenerateData() )
{
// Abort the filter that is reporting progress
FilterRecordVector::iterator fit;
for(fit = m_FilterRecord.begin();fit != m_FilterRecord.end();++fit)
{
if (who == fit->Filter)
{
fit->Filter->AbortGenerateDataOn();
}
}
}
}
else if (typeid( event ) == typeid ( ie ) )
{
}
}
void ProgressAccumulator
::PrintSelf(std::ostream &os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
if (m_MiniPipelineFilter)
{
os << indent << m_MiniPipelineFilter << std::endl;
}
os << indent << m_AccumulatedProgress << std::endl;
os << indent << m_BaseAccumulatedProgress << std::endl;
}
} // End namespace itk
|