]> Creatis software - gdcm.git/blobdiff - Testing/TestAllVM.cxx
Speed up -a little bit- the Loading, avoiding to parse any Sequence, not only
[gdcm.git] / Testing / TestAllVM.cxx
index be2e7973fffc5cbbd4bd91b41a2af5f26b82342a..e0181e9cfb705ab29757085281ad7a9391bc9a9a 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestAllVM.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/10/21 14:51:36 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2005/10/21 16:32:10 $
+  Version:   $Revision: 1.6 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 //Generated file:
 #include "gdcmDataImages.h"
 
-int TestAllVM(int, char *[])
+int DoTheVMTest(std::string const &filename)
 {
-   int i = 0;
-
-   while( gdcmDataImages[i] != 0 )
-   {
-      std::string filename = GDCM_DATA_ROOT;
-      filename += "/";
-      filename += gdcmDataImages[i];
-
       gdcm::File file;
-      file.SetLoadMode( gdcm::LD_ALL );
+      // - Do not test unknow VM in shadow groups (in element 0x0000 is present
+      // - Skip Sequences (if they are 'True Length'); loading will be quicker
+      //                  (anyway, Sequences are skipped at processing time ...)
+      file.SetLoadMode( gdcm::LD_NOSHADOW | gdcm::LD_NOSEQ );
+
       file.SetFileName( filename );
       if( !file.Load() ) //would be really bad...
         return 1;
 
       gdcm::DocEntry *d = file.GetFirstEntry();
+      std::cerr << "Testing file : " << filename << std::endl;
       while(d)
       {
          if ( gdcm::DataEntry *de = dynamic_cast<gdcm::DataEntry *>(d) )
          {
-           if(! de->IsValueCountValid() )
-             std::cerr << "Filename:" << filename << std::endl;
+           if( !de->IsValueCountValid() )
+             {
+             std::cerr << "Element: " << de->GetKey() <<
+               " (" << de->GetName() << ") " <<
+               "Contains a wrong VM: " << de->GetValueCount() 
+               << " should be: " << de->GetVM() << std::endl;;
+             }
          }
          else
          {
@@ -54,8 +56,33 @@ int TestAllVM(int, char *[])
          d = file.GetNextEntry();
       }
 
+      return 0;
+}
+
+int TestAllVM(int argc, char *argv[])
+{
+   int i = 0;
+   if( argc >= 2 )
+     {
+     const char *filename = argv[1];
+     if( DoTheVMTest( filename ) )
+       return 1;
+     return 0;
+     }
+   // else
+
+   while( gdcmDataImages[i] != 0 )
+   {
+      std::string filename = GDCM_DATA_ROOT;
+      filename += "/";
+      filename += gdcmDataImages[i];
+
+      if( DoTheVMTest( filename ) )
+        return 1;
       i++;
+      std::cerr << std::endl; // skip a line after each file
    }
+
    return 0;
 }