]> Creatis software - gdcm.git/blob - src/gdcmDictSet.h
* src/gdcmDictSet.h : set the default output to the os variable
[gdcm.git] / src / gdcmDictSet.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDictSet.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/13 16:35:37 $
7   Version:   $Revision: 1.35 $
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 #ifndef GDCMDICTSET_H
20 #define GDCMDICTSET_H
21
22 #include "gdcmBase.h"
23 #include "gdcmDict.h"
24
25 #include <map>
26 #include <list>
27
28 namespace gdcm 
29 {
30 typedef std::map<DictKey, Dict*> DictSetHT;
31
32 //-----------------------------------------------------------------------------
33 /**
34  * \ingroup DictSet
35  * \brief  Container for managing a set of loaded dictionaries (Dict).
36  * \note   Hopefully, sharing dictionaries should avoid
37  * \par    reloading an already loaded dictionary (saving time)
38  * \par    having many in memory representations of the same dictionary
39  *        (saving memory).
40  */
41 class GDCM_EXPORT DictSet : public Base
42 {
43 public:
44    DictSet();
45    ~DictSet();
46
47    void Print(std::ostream &os = std::cout);
48
49    // Probabely useless !
50    //EntryNamesList *GetPubDictEntryNames();
51    //EntryNamesByCatMap* GetPubDictEntryNamesByCategory();
52
53    Dict *LoadDictFromFile( std::string const &fileName,
54                            DictKey const &name );
55
56    Dict *GetDict( DictKey const &DictName );
57
58    /// \brief   Retrieve the default reference DICOM V3 public dictionary.
59    Dict* GetDefaultPubDict() { return GetDict(PUB_DICT_NAME); };
60
61    // \brief   Retrieve the virtual reference DICOM dictionary.
62    // \warning : not end user intended
63    // Dict *GetVirtualDict() { return &VirtualEntry; };
64
65    DictEntry *NewVirtualDictEntry(uint16_t group, uint16_t element,
66                                   TagName vr     = GDCM_UNKNOWN,
67                                   TagName vm     = GDCM_UNKNOWN,
68                                   TagName name   = GDCM_UNKNOWN);
69
70    static std::string BuildDictPath();
71
72 protected:
73    bool AppendDict(Dict *NewDict, DictKey const &name);
74
75 private:
76    /// Hash table of all dictionaries contained in this DictSet
77    DictSetHT Dicts;
78
79    /// Directory path to dictionaries
80    std::string DictPath;
81
82    /// H table for the on the fly created DictEntries  
83    TagKeyHT VirtualEntry; 
84 };
85 } // end namespace gdcm
86
87 //-----------------------------------------------------------------------------
88 #endif