]> Creatis software - gdcm.git/blob - src/gdcmDictSet.h
- guint16 and guint32 removed. Use ISO C uint16_t, uint32_t instead.
[gdcm.git] / src / gdcmDictSet.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDictSet.h,v $
5   Language:  C++
6   Date:      $Date: 2004/07/02 13:55:27 $
7   Version:   $Revision: 1.21 $
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.htm 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 #ifndef GDCMDICTSET_H
20 #define GDCMDICTSET_H
21
22 #include "gdcmDict.h"
23 #include <map>
24 #include <list>
25
26 typedef std::string DictKey;
27 typedef std::map<DictKey, gdcmDict*> DictSetHT;
28
29 //-----------------------------------------------------------------------------
30 /*
31  * \defgroup gdcmDictSet
32  * \brief  Container for managing a set of loaded dictionaries.
33  * \note   Hopefully, sharing dictionaries should avoid
34  * \par    reloading an already loaded dictionary (saving time)
35  * \par    having many in memory representations of the same dictionary
36  *        (saving memory).
37  */
38 class GDCM_EXPORT gdcmDictSet {
39 public:
40    // TODO Swig int LoadDictFromFile(std::string filename);
41    // QUESTION: the following function might not be thread safe !? Maybe
42    //           we need some mutex here, to avoid concurent creation of
43    //           the same dictionary !?!?!
44    // TODO Swig int LoadDictFromName(std::string filename);
45    // TODO Swig int LoadAllDictFromDirectory(std::string DirectoryName);
46    // TODO Swig std::string* GetAllDictNames();
47    gdcmDictSet(void);
48    ~gdcmDictSet(void);
49
50    void Print(std::ostream& os);
51
52    std::list<std::string> *GetPubDictEntryNames(void);
53    std::map<std::string, std::list<std::string> > *
54        GetPubDictEntryNamesByCategory(void);
55
56    gdcmDict *LoadDictFromFile(std::string FileName, DictKey Name);
57
58    gdcmDict *GetDict(DictKey DictName);
59    gdcmDict *GetDefaultPubDict(void);
60
61    gdcmDictEntry *NewVirtualDictEntry(uint16_t group, uint16_t element,
62                                       std::string vr     = "Unknown",
63                                       std::string fourth = "Unknown",
64                                       std::string name   = "Unknown");
65
66    static std::string BuildDictPath(void);
67
68 protected:
69    bool AppendDict(gdcmDict *NewDict,DictKey Name);
70
71 private:
72    /// Hash table of all dictionaries contained in this gdcmDictSet
73    DictSetHT Dicts;
74    /// Directory path to dictionaries
75    std::string DictPath;
76    /// H table for the on the fly created gdcmDictEntries  
77    std::map<std::string,gdcmDictEntry *> virtualEntry;
78 };
79
80 //-----------------------------------------------------------------------------
81 #endif