// gdcmDictSet.h #ifndef GDCMDICTSET_H #define GDCMDICTSET_H #include #include #include "gdcmDict.h" typedef string DictKey; typedef map DictSetHT; /* * \defgroup gdcmDictSet * \brief Container for managing a set of loaded dictionaries. * \note Hopefully, sharing dictionaries should avoid * \par reloading an allready loaded dictionary (saving time) * \par having many in memory representations of the same dictionary * (saving memory). */ class GDCM_EXPORT gdcmDictSet { private: DictSetHT dicts; int AppendDict(gdcmDict* NewDict); void LoadDictFromFile(string filename, DictKey); private: /// Directory path to dictionaries static string DictPath; static string BuildDictPath(void); static gdcmDict* DefaultPubDict; public: static list * GetPubDictTagNames(void); static map >* GetPubDictTagNamesByCategory(void); static gdcmDict* LoadDefaultPubDict(void); // TODO Swig int LoadDictFromFile(string filename); // QUESTION: the following function might not be thread safe !? Maybe // we need some mutex here, to avoid concurent creation of // the same dictionary !?!?! // TODO Swig int LoadDictFromName(string filename); // TODO Swig int LoadAllDictFromDirectory(string DirectoryName); // TODO Swig string* GetAllDictNames(); gdcmDictSet(void); ~gdcmDictSet(void); void Print(ostream&); gdcmDict* GetDict(DictKey DictName); gdcmDict* GetDefaultPubDict(void); }; #endif