/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDict.cxx,v $ Language: C++ Date: $Date: 2005/10/18 12:58:27 $ Version: $Revision: 1.80 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "gdcmDict.h" #include "gdcmUtil.h" #include "gdcmDebug.h" #include #include #include namespace gdcm { //----------------------------------------------------------------------------- /// \brief auto generated function, to fill up the Dicom Dictionnary, /// if relevant file is not found on user's disk void FillDefaultDataDict(Dict *d); //----------------------------------------------------------------------------- // Constructor / Destructor /** * \brief Constructor */ Dict::Dict( ) { Filename=""; } /** * \brief Constructor * @param filename from which to build the dictionary. */ Dict::Dict(std::string const &filename) { std::ifstream from( filename.c_str() ); if ( !from ) { gdcmWarningMacro( "Can't open dictionary" << filename.c_str()); // Using default embeded one: FillDefaultDataDict( this ); } else { DoTheLoadingJob(from); Filename = filename; } } /** * \brief Destructor */ Dict::~Dict() { ClearEntry(); } //----------------------------------------------------------------------------- // Public /** * \brief Add a all the entries held in a source dictionary * \note it concerns only Private Dictionnary * @param filename from which to build the dictionary. */ bool Dict::AddDict(std::string const &filename) { std::ifstream from( filename.c_str() ); if ( !from ) { gdcmWarningMacro( "Can't open dictionary" << filename.c_str()); return false; } else { DoTheLoadingJob(from); return true; } } /** * \brief Removes from the current Dicom Dict all the entries held in a source dictionary * \note it concerns only Private Dictionnary * @param filename from which we read the entries to remove. */ bool Dict::RemoveDict(std::string const &filename) { std::ifstream from( filename.c_str() ); if ( !from ) { gdcmWarningMacro( "Can't open dictionary" << filename.c_str()); return false; } else { uint16_t group; uint16_t elem; TagName vr; TagName vm; TagName name; while (!from.eof() && from) { from >> std::hex; from >> group; from >> elem; from >> vr; from >> vm; // from >> std::ws; //remove white space std::getline(from, name); RemoveEntry(DictEntry::TranslateToKey(group, elem)); } from.close(); return true; } } /** * \brief adds a new Dicom Dictionary Entry * @param newEntry entry to add * @return false if Dicom Element already exists */ bool Dict::AddEntry(DictEntry const &newEntry) { const TagKey &key = newEntry.GetKey(); if ( KeyHt.count(key) == 1 ) { gdcmErrorMacro( "Already present:" << key ); return false; } else { KeyHt.insert( TagKeyHT::value_type(newEntry.GetKey(), newEntry)); return true; } } /** * \brief replaces an already existing Dicom Element by a new one * @param newEntry new entry (overwrites any previous one with same tag) * @return false if Dicom Element doesn't exist */ bool Dict::ReplaceEntry(DictEntry const &newEntry) { if ( RemoveEntry(newEntry.GetKey()) ) { KeyHt.insert( TagKeyHT::value_type(newEntry.GetKey(), newEntry)); return true; } return false; } /** * \brief removes an already existing Dicom Dictionary Entry, * identified by its Tag * @param key (group|element) * @return false if Dicom Dictionary Entry doesn't exist */ bool Dict::RemoveEntry(TagKey const &key) { TagKeyHT::const_iterator it = KeyHt.find(key); if ( it != KeyHt.end() ) { KeyHt.erase(key); return true; } else { gdcmWarningMacro( "Unfound entry" << key ); return false; } } /** * \brief removes an already existing Dicom Dictionary Entry, * identified by its group,element number * @param group Dicom group number of the Dicom Element * @param elem Dicom element number of the Dicom Element * @return false if Dicom Dictionary Entry doesn't exist */ bool Dict::RemoveEntry(uint16_t group, uint16_t elem) { return RemoveEntry(DictEntry::TranslateToKey(group, elem)); } /** * \brief Remove all Dicom Dictionary Entries */ void Dict::ClearEntry() { // we assume all the pointed DictEntries are already cleaned-up // when we clean KeyHt. KeyHt.clear(); } /** * \brief Get the dictionary entry identified by a given tag ("group|element") * @param key tag of the entry to be found * @return the corresponding dictionary entry when existing, NULL otherwise */ DictEntry *Dict::GetEntry(TagKey const &key) { TagKeyHT::iterator it = KeyHt.find(key); if ( it == KeyHt.end() ) { return 0; } return &(it->second); } DictEntry *Dict::GetEntry(uint16_t group, uint16_t elem) { TagKey key = DictEntry::TranslateToKey(group, elem); TagKeyHT::iterator it = KeyHt.find(key); if ( it == KeyHt.end() ) { return 0; } return &(it->second); } /** * \brief Get the first entry while visiting the Dict entries * \return The first DicEntry if found, otherwhise NULL */ DictEntry *Dict::GetFirstEntry() { ItKeyHt = KeyHt.begin(); if ( ItKeyHt != KeyHt.end() ) return &(ItKeyHt->second); return NULL; } /** * \brief Get the next entry while visiting the Hash table (KeyHt) * \note : meaningfull only if GetFirstEntry already called * \return The next DictEntry if found, otherwhise NULL */ DictEntry *Dict::GetNextEntry() { gdcmAssertMacro (ItKeyHt != KeyHt.end()); ++ItKeyHt; if (ItKeyHt != KeyHt.end()) return &(ItKeyHt->second); return NULL; } //----------------------------------------------------------------------------- // Protected //----------------------------------------------------------------------------- // Private /** * \brief Add all the dictionary entries from an already open source file * @param from input stream to read from. */ void Dict::DoTheLoadingJob(std::ifstream &from) { uint16_t group; uint16_t elem; VRKey vr; TagName vm; TagName name; while (!from.eof() && from) { from >> std::hex; from >> group; from >> elem; from >> vr; from >> vm; from >> std::ws; //remove white space std::getline(from, name); DictEntry newEntry(group, elem, vr, vm, name); AddEntry(newEntry); } from.close(); } //----------------------------------------------------------------------------- // Print /** * \brief Print all the dictionary entries contained in this dictionary. * Entries will be sorted by tag i.e. the couple (group, element). * @param os The output stream to be written to. * @param indent Indentation string to be prepended during printing */ void Dict::Print(std::ostream &os, std::string const & ) { os << "Dict file name : " << Filename << std::endl; std::ostringstream s; for (TagKeyHT::iterator tag = KeyHt.begin(); tag != KeyHt.end(); ++tag) { s << "Entry : "; s << "(" << std::hex << std::setw(4) << tag->second.GetGroup() << ','; s << std::hex << std::setw(4) << tag->second.GetElement() << ") = " << std::dec; s << tag->second.GetVR() << ", "; s << tag->second.GetVM() << ", "; s << tag->second.GetName() << "." << std::endl; } os << s.str(); } //----------------------------------------------------------------------------- } // end namespace gdcm