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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkArchetypeSeriesFileNames.cxx,v $
Language: C++
Date: $Date: 2008-01-24 21:02:07 $
Version: $Revision: 1.15 $
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.
=========================================================================*/
#ifndef _itkArchetypeSeriesFileNames_h
#define _itkArchetypeSeriesFileNames_h
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#endif
#include "itkArchetypeSeriesFileNames.h"
#include "itkRegularExpressionSeriesFileNames.h"
#include <itksys/SystemTools.hxx>
#include <stdio.h>
#include <algorithm>
namespace itk
{
ArchetypeSeriesFileNames
::ArchetypeSeriesFileNames() : m_Archetype("")
{
}
void
ArchetypeSeriesFileNames
::SetArchetype( const std::string &archetype )
{
if (archetype != m_Archetype)
{
m_Archetype = archetype;
this->Modified();
m_ArchetypeMTime.Modified();
}
}
ArchetypeSeriesFileNames::VectorSizeType
ArchetypeSeriesFileNames
::GetNumberOfGroupings()
{
if (m_ScanTime < m_ArchetypeMTime)
{
this->Scan();
}
return m_Groupings.size();
}
const std::vector<std::string> &
ArchetypeSeriesFileNames
::GetFileNames( VectorSizeType group)
{
if (m_ScanTime < m_ArchetypeMTime)
{
this->Scan();
}
if (group < m_Groupings.size())
{
m_FileNames = m_Groupings[group];
}
else
{
m_FileNames.clear();
}
return m_FileNames;
}
void
ArchetypeSeriesFileNames
::Scan()
{
// For each group of contiguous numbers in m_Archetype, create a
// regular expression that is identical to m_Archetype except that
// it replaces that group of numbers with the pattern ([0-9]+).
// Each of these new strings will then be passed into a
// RegularExpressionSeriesFileNames to generate the list of those
// files that fit that pattern.
m_Groupings.clear();
std::string unixArchetype = m_Archetype;
itksys::SystemTools::ConvertToUnixSlashes(unixArchetype);
if (itksys::SystemTools::FileIsDirectory( unixArchetype.c_str() ))
{
return;
}
// Parse the fileNameName and fileNamePath
std::string origFileName = itksys::SystemTools::GetFilenameName( unixArchetype.c_str() );
std::string fileNamePath = itksys::SystemTools::GetFilenamePath( unixArchetype.c_str() );
std::string pathPrefix;
// "Clean" the filename by escaping any special characters with backslashes.
// This allows us to pass in filenames that include these special characters.
std::string fileName;
for( unsigned int j = 0; j < origFileName.length(); j++ )
{
char oneChar = origFileName[j];
if( oneChar == '^' ||
oneChar == '$' ||
oneChar == '.' ||
oneChar == '[' ||
oneChar == ']' ||
oneChar == '-' ||
oneChar == '*' ||
oneChar == '+' ||
oneChar == '?' ||
oneChar == '(' ||
oneChar == ')' )
{
fileName += "\\";
}
fileName += oneChar;
}
// If there is no "/" in the name, the directory is not specified.
// In that case, use the default ".". This is necessary for the RegularExpressionSeriesFileNames.
if (fileNamePath == "")
{
fileNamePath = ".";
pathPrefix = "./";
}
else
{
pathPrefix = "";
}
StringVectorType regExpFileNameVector;
std::string regExpString = "([0-9]+)";
IntVectorType numGroupStart;
IntVectorType numGroupLength;
int sIndex;
std::string::iterator sit;
for (sit = fileName.begin(); sit < fileName.end(); sit++)
{
// If the element is a number, find its starting index and length.
if ((*sit) >= '0' && (*sit) <= '9')
{
sIndex = static_cast< int >( sit - fileName.begin() );
numGroupStart.push_back( sIndex );
// Loop to one past the end of the group of numbers.
while ( sit != fileName.end() && (*sit) >= '0' && (*sit) <= '9' )
{
++sit;
}
numGroupLength.push_back( static_cast< int >(sit - fileName.begin()) - sIndex );
if( sit == fileName.end() )
{
break;
}
}
}
// Create a set of regular expressions, one for each group of
// numbers in m_FileName. We walk the regular expression groups
// from right to left since numbers at the end of filenames are more
// likely to be image numbers.
// It is also necessary to walk backward so that the numGroupStart
// indices remain correct since the length of numbers we are replacing may
// be different from the length of regExpString.
IntVectorType::reverse_iterator numGroupLengthItr = numGroupLength.rbegin();
IntVectorType::reverse_iterator numGroupStartItr = numGroupStart.rbegin();
while( numGroupLengthItr != numGroupLength.rend() &&
numGroupStartItr != numGroupStart.rend() )
{
std::string regExpFileName = fileName;
regExpFileName.replace(*numGroupStartItr,*numGroupLengthItr,regExpString);
// Include only filenames that exactly match this regular expression. Don't
// match filenames that have this string as a substring (ie. that have extra
// prefixes or suffixes).
regExpFileName = "^" + regExpFileName + "$";
regExpFileNameVector.push_back( regExpFileName );
++numGroupLengthItr;
++numGroupStartItr;
}
// Use a RegularExpressionSeriesFileNames to find the files to return
StringVectorType names;
StringVectorType::const_iterator regExpFileNameVectorItr =
regExpFileNameVector.begin();
while( regExpFileNameVectorItr != regExpFileNameVector.end())
{
itk::RegularExpressionSeriesFileNames::Pointer fit = itk::RegularExpressionSeriesFileNames::New();
fit->SetDirectory( fileNamePath.c_str() );
fit->SetRegularExpression( regExpFileNameVectorItr->c_str() );
fit->SetSubMatch(1);
fit->NumericSortOn();
names = fit->GetFileNames();
std::vector<std::string>::iterator ait;
ait = std::find(names.begin(), names.end(), pathPrefix + unixArchetype);
// Accept the list if it contains the archetype and is not the
// "trivial" list (containing only the archetype)
if ( ait != names.end() && names.size() > 1)
{
m_Groupings.push_back(names);
}
++regExpFileNameVectorItr;
}
// If the group list is empty, create a single group containing the
// archetype.
if ( m_Groupings.size() == 0 && itksys::SystemTools::FileExists(unixArchetype.c_str()))
{
std::vector<std::string> tlist;
tlist.push_back( unixArchetype );
m_Groupings.push_back( tlist );
}
m_ScanTime.Modified();
}
void
ArchetypeSeriesFileNames
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Archetype: " << m_Archetype << std::endl;
os << indent << "Number of groupings: "
<< const_cast<ArchetypeSeriesFileNames*>(this)->GetNumberOfGroupings() << std::endl;
for (unsigned int j = 0; j < const_cast<ArchetypeSeriesFileNames*>(this)->GetNumberOfGroupings(); j++)
{
os << indent << "Grouping #" << j << std::endl;
StringVectorType group = const_cast<ArchetypeSeriesFileNames*>(this)->GetFileNames(j);
StringVectorType::const_iterator groupItr = group.begin();
unsigned int i = 0;
while( groupItr != group.end() )
{
os << indent << indent << "Filenames[" << i << "]: " << *groupItr << std::endl;
++i;
++groupItr;
}
}
}
} //namespace ITK
#endif
|