X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestSerieHelper.cxx;h=77bd81d4d4da819a6150b9d541abc078c4f59567;hb=b4c2328075505f0a7e95763848fa57a0337fe8b4;hp=5ab5a289a121c8b0c80a4f2c5cf8402153c7dd26;hpb=99527f7d2edc2714942c0837cb56ff333b9fbb92;p=gdcm.git diff --git a/Testing/TestSerieHelper.cxx b/Testing/TestSerieHelper.cxx index 5ab5a289..77bd81d4 100644 --- a/Testing/TestSerieHelper.cxx +++ b/Testing/TestSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2005/07/08 13:39:57 $ - Version: $Revision: 1.5 $ + Date: $Date: 2005/11/14 15:56:55 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -35,20 +35,24 @@ int TestSerieHelper(int argc, char *argv[]) //if (argc > 2) // gdcm::Debug::DebugOn(); + std::cout << "Dir Name :[" << dirName << "]" << std::endl; - s = new gdcm::SerieHelper(); + s = gdcm::SerieHelper::New(); + s->SetLoadMode(gdcm::LD_ALL); // Load everything for each File + //s->AddRestriction(tagKey, valueToCheck); // Keep only files where + // restriction is true s->SetDirectory(dirName, true); // true : recursive exploration - std::cout << " -------------------------------------------Finish parsing :[" + std::cout << " ---------------------------------------- Finish parsing :[" << dirName << "]" << std::endl; s->Print(); - std::cout << " -----------------------------------------Finish printing (1)" + std::cout << " ---------------------------------------- Finish printing (1)" << std::endl; int nbFiles; - // For all the Coherent Files lists of the gdcm::Serie - gdcm::FileList *l = s->GetFirstCoherentFileList(); + // For all the SingleSerieUID filesets of the gdcm::Serie + gdcm::FileList *l = s->GetFirstSingleSerieUIDFileSet(); while (l) { nbFiles = l->size() ; @@ -57,15 +61,33 @@ int TestSerieHelper(int argc, char *argv[]) std::cout << "Sort list : " << nbFiles << " long" << std::endl; s->OrderFileList(l); // sort the list } - l = s->GetNextCoherentFileList(); + l = s->GetNextSingleSerieUIDFileSet(); } - std::cout << " ----------------------------------------------Finish sorting" + std::cout << " -------------------------------------------- Finish sorting" << std::endl; - s->Print(); // Prints all the Coherent Files lists (sorted or not) - std::cout << " ---------------------------------------------Finish printing" + s->Print(); // Prints all the SingleSerieUID filesets (sorted or not) + std::cout << " -------------------------------------------- Finish printing" << std::endl; - delete s; + + // Only for the first SingleSerieUID fileset + // ( Why not ? Just an example, for testing ) + // Display all the file names + + std::string fileName; + l = s->GetFirstSingleSerieUIDFileSet(); + for (std::vector::iterator it = l->begin(); + it != l->end(); + ++it) + { + fileName = (*it)->GetFileName(); + std::cout << fileName << std::endl; + // Remark : vtkGdcmReader users can use this loop to AddFileName(fileName) + // in the right order + } + + + s->Delete(); return 0; }