Program: gdcm
Module: $RCSfile: gdcmDict.cxx,v $
Language: C++
- Date: $Date: 2005/01/06 20:03:27 $
- Version: $Revision: 1.54 $
+ Date: $Date: 2005/01/07 09:03:52 $
+ Version: $Revision: 1.55 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
*/
Dict::~Dict()
{
- // Since AddNewEntry adds symetrical in both KeyHt and NameHT we can
- // assume all the pointed DictEntries are already cleaned-up when
- // we cleaned KeyHt.
+ // we assume all the pointed DictEntries are already cleaned-up
+ // when we clean KeyHt.
KeyHt.clear();
- NameHt.clear();
}
//-----------------------------------------------------------------------------
os << s.str();
}
-/**
- * \brief Print all the dictionary entries contained in this dictionary.
- * Entries will be sorted by the name of the dictionary entries.
- * \warning AVOID USING IT : the name IS NOT an identifier;
- * unpredictable result
- * @param os The output stream to be written to.
- */
-void Dict::PrintByName(std::ostream &os)
-{
- std::ostringstream s;
-
- for (TagNameHT::iterator tag = NameHt.begin(); tag != NameHt.end(); ++tag)
- {
- s << "Entry : ";
- s << tag->second.GetName() << ",";
- s << tag->second.GetVR() << ", ";
- s << tag->second.GetFourth() << ", ";
- s << "(" << std::hex << std::setw(4) << tag->second.GetGroup() << ',';
- s << std::hex << std::setw(4) << tag->second.GetElement() << ") = ";
- s << std::dec << std::endl;
- }
- os << s.str();
-}
-
//-----------------------------------------------------------------------------
// Public
/**
else
{
KeyHt.insert( TagKeyHT::value_type(newEntry.GetKey(), newEntry));
- NameHt.insert( TagNameHT::value_type(newEntry.GetName(), newEntry ));
return true;
}
}
if ( RemoveEntry(newEntry.GetKey()) )
{
KeyHt.insert( TagKeyHT::value_type(newEntry.GetKey(), newEntry));
- NameHt.insert( TagNameHT::value_type(newEntry.GetName(), newEntry ));
return true;
}
return false;
if(it != KeyHt.end())
{
const DictEntry& entryToDelete = it->second;
- NameHt.erase(entryToDelete.GetName());
KeyHt.erase(key);
return true;
return RemoveEntry(DictEntry::TranslateToKey(group, elem));
}
-/**
- * \brief Get the dictionnary entry identified by it's name.
- * @param name element of the ElVal to modify
- * \warning : NEVER use it !
- * the 'name' IS NOT an identifier within the Dicom Dictionary
- * the name MAY CHANGE between two versions !
- * @return the corresponding dictionnary entry when existing, NULL otherwise
- */
-DictEntry *Dict::GetDictEntryByName(TagName const &name)
-{
- TagNameHT::iterator it = NameHt.find(name);
- if ( it == NameHt.end() )
- {
- return 0;
- }
- return &(it->second);
-}
-
/**
* \brief Get the dictionnary entry identified by a given tag (group,element)
* @param group group of the entry to be found
Program: gdcm
Module: $RCSfile: gdcmDict.h,v $
Language: C++
- Date: $Date: 2005/01/07 08:46:17 $
- Version: $Revision: 1.27 $
+ Date: $Date: 2005/01/07 09:03:52 $
+ Version: $Revision: 1.28 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//-----------------------------------------------------------------------------
typedef std::string DictKey;
typedef std::map<TagKey, DictEntry> TagKeyHT;
-typedef std::map<TagName, DictEntry> TagNameHT;
typedef std::list<std::string> EntryNamesList;
typedef std::map<std::string,
std::list<std::string> > EntryNamesByCatMap;
// Print
void Print(std::ostream &os = std::cout);
void PrintByKey(std::ostream &os = std::cout);
- void PrintByName(std::ostream &os = std::cout);
// Entries
bool AddNewEntry (DictEntry const &newEntry);
bool RemoveEntry (uint16_t group, uint16_t element);
// Tag
- DictEntry *GetDictEntryByName(TagName const &name);
DictEntry *GetDictEntryByNumber(uint16_t group, uint16_t element);
EntryNamesList *GetDictEntryNames();
/// \brief Returns a ref to the Dicom Dictionary H table (map)
/// @return the Dicom Dictionary H table
- const TagNameHT & GetEntriesByName() const { return NameHt; }
private:
/// ASCII file holding the Dictionnary
std::string Filename;
- /// Access through TagKey (see alternate access with NameHt)
+ /// Access through TagKey
TagKeyHT KeyHt;
- /// Access through TagName (see alternate access with KeyHt)
- TagNameHT NameHt;
};
} // end namespace gdcm