]> Creatis software - gdcm.git/blob - src/gdcmValidator.cxx
Comments
[gdcm.git] / src / gdcmValidator.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmValidator.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/11/05 13:25:26 $
7   Version:   $Revision: 1.9 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmValidator.h"
20 #include "gdcmElementSet.h"
21 #include "gdcmDataEntry.h"
22 #include "gdcmUtil.h"
23 #include <map>
24
25 #include <sstream>
26
27 namespace gdcm 
28 {
29 //-----------------------------------------------------------------------------
30 typedef std::map<uint16_t, int> GroupHT;    //  Hash Table
31 //-----------------------------------------------------------------------------
32
33 Validator::Validator()
34 {
35 }
36
37 Validator::~Validator()
38 {
39 }
40
41 // Function to compare the VM found while parsing d->GetString()
42 // compare to the one from the dictionary
43 bool CheckVM(DataEntry *entry)
44 {
45   // Don't waste time checking tags where VM is OB and OW, since we know
46   // it's allways 1, whatever the actual length (found on disc)
47   
48   if ( entry->GetVR() == "OB" ||  entry->GetVR() == "OW" )
49      return true;
50      
51   const std::string &s = entry->GetString();
52
53   unsigned int n = Util::CountSubstring( s , "\\");
54   
55   n++; // number of '\' + 1 == Value Multiplicity
56
57   std::string vmFromDict = entry->GetVM();
58   if ( vmFromDict == "1-n" || vmFromDict == "2-n" || vmFromDict == "3-n" )
59      return true;
60      
61   unsigned int m;
62   std::istringstream is;
63   is.str( vmFromDict );
64   is >> m;
65
66   return n == m;
67 }
68
69 void Validator::SetInput(ElementSet *input)
70 {
71 // First stage to check group length
72   GroupHT grHT;
73   DocEntry *d=input->GetFirstEntry();
74   while(d)
75   {
76     grHT[d->GetGroup()] = 0;
77     d=input->GetNextEntry();
78   }
79   for (GroupHT::iterator it = grHT.begin(); it != grHT.end(); ++it)  
80   {
81       std::cout << std::hex << it->first << std::endl; 
82   } 
83
84
85   // berk for now SetInput do two things at the same time
86   d=input->GetFirstEntry();
87   if (!d)
88   {
89      std::cout << "No Entry found" << std::endl;
90      return;
91   }
92   while(d)
93   { 
94     if ( DataEntry *v = dynamic_cast<DataEntry *>(d) )
95     { 
96       if ( v->GetVM() != gdcm::GDCM_UNKNOWN )
97          if ( !CheckVM(v) )
98          {
99            std::cout << "Tag (" <<  v->GetKey() 
100                      << ")-> [" << v->GetName() << "] contains an illegal VM. "
101                      << "value [" << v->GetString() << "] VR :"
102                      << v->GetVR() << ", Expected VM :" << v->GetVM() << " " 
103                      << std::endl;
104          }
105       
106       if ( v->GetReadLength() % 2 )
107       {
108         std::cout << "Tag (" <<  v->GetKey() 
109                   << ")-> [" << v->GetName() << "] has an uneven length :"
110                   << v->GetReadLength()
111                   << " [" << v->GetString() << "] " 
112                   << std::endl;         
113       }
114     }
115     else
116     {
117       // We skip pb of SQ recursive exploration
118     }
119     d=input->GetNextEntry();
120   }
121 }
122
123 } // end namespace gdcm