GDCM 3.0.24
gdcmStrictScanner.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: GDCM (Grassroots DICOM). A DICOM library
4
5 Copyright (c) 2006-2011 Mathieu Malaterre
6 All rights reserved.
7 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the above copyright notice for more information.
12
13=========================================================================*/
14#ifndef GDCMSTRICTSCANNER_H
15#define GDCMSTRICTSCANNER_H
16
17#include "gdcmDirectory.h"
18#include "gdcmSubject.h"
19#include "gdcmTag.h"
20#include "gdcmPrivateTag.h"
21#include "gdcmSmartPointer.h"
22
23#include <map>
24#include <set>
25#include <string>
26
27#include <string.h> // strcmp
28
29namespace gdcm
30{
31class StringFilter;
32
56{
57 friend std::ostream& operator<<(std::ostream &_os, const StrictScanner &s);
58public:
59 StrictScanner():Values(),Filenames(),Mappings() {}
60 ~StrictScanner() override;
61
68 typedef std::map<Tag, const char*> TagToValue;
69 //typedef std::map<Tag, ConstCharWrapper> TagToValue; //StringMap;
70 //typedef TagToStringMap TagToValue;
71 typedef TagToValue::value_type TagToValueValueType;
72
74 void AddTag( Tag const & t );
75 void ClearTags();
76
77 // Work in progress do not use:
78 void AddPrivateTag( PrivateTag const & t );
79
81 void AddSkipTag( Tag const & t );
83
85 bool Scan( Directory::FilenamesType const & filenames );
86
87 Directory::FilenamesType const &GetFilenames() const { return Filenames; }
88
90 void Print( std::ostream & os ) const override;
91
92 void PrintTable( std::ostream & os ) const;
93
97 bool IsKey( const char * filename ) const;
98
102
103 // struct to store all the values found:
104 typedef std::set< std::string > ValuesType;
105
107 ValuesType const & GetValues() const { return Values; }
108
110 ValuesType GetValues(Tag const &t) const;
111
116
117 /* ltstr is CRITICAL, otherwise pointers value are used to do the key comparison */
118 struct ltstr
119 {
120 bool operator()(const char* s1, const char* s2) const
121 {
122 assert( s1 && s2 );
123 return strcmp(s1, s2) < 0;
124 }
125 };
126 typedef std::map<const char *,TagToValue, ltstr> MappingType;
127 typedef MappingType::const_iterator ConstIterator;
128 ConstIterator Begin() const { return Mappings.begin(); }
129 ConstIterator End() const { return Mappings.end(); }
130
132 MappingType const & GetMappings() const { return Mappings; }
133
135 TagToValue const & GetMapping(const char *filename) const;
136
139 const char *GetFilenameFromTagToValue(Tag const &t, const char *valueref) const;
140
143 Directory::FilenamesType GetAllFilenamesFromTagToValue(Tag const &t, const char *valueref) const;
144
146 // by a call to GetMapping()
147 TagToValue const & GetMappingFromTagToValue(Tag const &t, const char *value) const;
148
154 const char* GetValue(const char *filename, Tag const &t) const;
155
158
159protected:
160 void ProcessPublicTag(StringFilter &sf, const char *filename);
161private:
162 // struct to store all uniq tags in ascending order:
163 typedef std::set< Tag > TagsType;
164 typedef std::set< PrivateTag > PrivateTagsType;
165 std::set< Tag > Tags;
166 std::set< PrivateTag > PrivateTags;
167 std::set< Tag > SkipTags;
168 ValuesType Values;
169 Directory::FilenamesType Filenames;
170
171 // Main struct that will hold all mapping:
172 MappingType Mappings;
173
174 double Progress;
175};
176//-----------------------------------------------------------------------------
177inline std::ostream& operator<<(std::ostream &os, const StrictScanner &s)
178{
179 s.Print( os );
180 return os;
181}
182
183} // end namespace gdcm
184
185#endif //GDCMSTRICTSCANNER_H
std::vector< FilenameType > FilenamesType
Definition gdcmDirectory.h:49
Class to represent a Private DICOM Data Element (Attribute) Tag (Group, Element, Owner)
Definition gdcmPrivateTag.h:39
Class for Smart Pointer.
Definition gdcmSmartPointer.h:40
StrictScanner.
Definition gdcmStrictScanner.h:56
TagToValue const & GetMappingFromTagToValue(Tag const &t, const char *value) const
See GetFilenameFromTagToValue(). This is simply GetFilenameFromTagToValue followed.
void AddTag(Tag const &t)
Add a tag that will need to be read. Those are root level skip tags.
Directory::FilenamesType GetOrderedValues(Tag const &t) const
ValuesType const & GetValues() const
Get all the values found (in lexicographic order)
Definition gdcmStrictScanner.h:107
void ProcessPublicTag(StringFilter &sf, const char *filename)
std::map< const char *, TagToValue, ltstr > MappingType
Definition gdcmStrictScanner.h:126
TagToValue::value_type TagToValueValueType
Definition gdcmStrictScanner.h:71
bool IsKey(const char *filename) const
Directory::FilenamesType GetAllFilenamesFromTagToValue(Tag const &t, const char *valueref) const
void Print(std::ostream &os) const override
Print result.
StrictScanner()
Definition gdcmStrictScanner.h:59
std::set< std::string > ValuesType
Definition gdcmStrictScanner.h:104
TagToValue const & GetMapping(const char *filename) const
Get the std::map mapping filenames to value for file 'filename'.
void AddSkipTag(Tag const &t)
Add a tag that will need to be skipped. Those are root level skip tags.
static SmartPointer< StrictScanner > New()
for wrapped language: instantiate a reference counted object
Definition gdcmStrictScanner.h:157
~StrictScanner() override
Directory::FilenamesType const & GetFilenames() const
Definition gdcmStrictScanner.h:87
const char * GetFilenameFromTagToValue(Tag const &t, const char *valueref) const
void PrintTable(std::ostream &os) const
std::map< Tag, const char * > TagToValue
Definition gdcmStrictScanner.h:68
void AddPrivateTag(PrivateTag const &t)
const char * GetValue(const char *filename, Tag const &t) const
Directory::FilenamesType GetKeys() const
ConstIterator Begin() const
Definition gdcmStrictScanner.h:128
MappingType const & GetMappings() const
Mappings are the mapping from a particular tag to the map, mapping filename to value:
Definition gdcmStrictScanner.h:132
ValuesType GetValues(Tag const &t) const
Get all the values found (in lexicographic order) associated with Tag 't'.
bool Scan(Directory::FilenamesType const &filenames)
Start the scan !
MappingType::const_iterator ConstIterator
Definition gdcmStrictScanner.h:127
ConstIterator End() const
Definition gdcmStrictScanner.h:129
StringFilter.
Definition gdcmStringFilter.h:30
Subject.
Definition gdcmSubject.h:29
Class to represent a DICOM Data Element (Attribute) Tag (Group, Element).
Definition gdcmTag.h:39
#define GDCM_EXPORT
Definition gdcmWin32.h:34
Definition gdcmASN1.h:21
std::ostream & operator<<(std::ostream &os, const Directory &d)
Definition gdcmDirectory.h:88
Definition gdcmStrictScanner.h:119
bool operator()(const char *s1, const char *s2) const
Definition gdcmStrictScanner.h:120