📄 gdcmdocentryset.cxx
字号:
/*=========================================================================
Program: gdcm
Module: $RCSfile: gdcmDocEntrySet.cxx,v $
Language: C++
Date: $Date: 2006-07-10 20:08:21 $
Version: $Revision: 1.5 $
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 "gdcmDocEntrySet.h"
#include "gdcmDebug.h"
#include "gdcmCommon.h"
#include "gdcmDictSet.h"
#include "gdcmGlobal.h"
#include "gdcmDocEntry.h"
#include "gdcmSeqEntry.h"
#include "gdcmValEntry.h"
#include "gdcmBinEntry.h"
#include "gdcmUtil.h"
#if defined(__BORLANDC__)
#include <mem.h> // for memset
#endif
namespace gdcm
{
//-----------------------------------------------------------------------------
// Constructor / Destructor
DocEntrySet::DocEntrySet()
{
PreviousDocEntry = 0;
}
//-----------------------------------------------------------------------------
// Public
/**
* \brief Get the "std::string representable" value of the Dicom entry
* @param group Group number of the searched tag.
* @param elem Element number of the searched tag.
* @return Corresponding element value when it exists,
* and the string GDCM_UNFOUND otherwise.
*/
std::string DocEntrySet::GetEntryValue(uint16_t group, uint16_t elem)
{
ContentEntry *entry = dynamic_cast<ContentEntry *>(GetDocEntry(group,elem));
if ( entry )
return entry->GetValue();
return GDCM_UNFOUND;
}
/**
* \brief Gets (from Header) a 'non string' element value
* @param group group number of the Entry
* @param elem element number of the Entry
* @return Pointer to the 'non string' area
*/
void *DocEntrySet::GetEntryBinArea(uint16_t group, uint16_t elem)
{
BinEntry *entry = GetBinEntry(group, elem);
if ( entry )
return entry->GetBinArea();
return 0;
}
/**
* \brief Return the value of the BinEntry if it's "std::string representable"
* @param group Group number of the searched tag.
* @param elem Element number of the searched tag.
* @return Corresponding element value when it's "std::string representable"
* and the string GDCM_NOTASCII otherwise.
*/
std::string DocEntrySet::GetEntryForcedAsciiValue(uint16_t group, uint16_t elem)
{
DocEntry *d = GetDocEntry(group,elem);
if ( !d )
return GDCM_UNFOUND;
if (ValEntry *v = dynamic_cast<ValEntry *>(d))
return v->GetValue();
if (BinEntry *b = dynamic_cast<BinEntry *>(d))
{
uint8_t *a = b->GetBinArea();
if (!b)
return GDCM_NOTLOADED;
// TODO : unify those two methods.
if (Util::IsCleanArea(a, b->GetLength()) )
return Util::CreateCleanString(a, b->GetLength());
}
return GDCM_NOTASCII;
}
/**
* \brief Searches within Header Entries (Dicom Elements) parsed with
* the public and private dictionaries
* for the value length of a given tag..
* @param group Group number of the searched tag.
* @param elem Element number of the searched tag.
* @return Corresponding element length; -1 if not found
*/
int DocEntrySet::GetEntryLength(uint16_t group, uint16_t elem)
{
DocEntry *entry = GetDocEntry(group, elem);
if ( entry )
return entry->GetLength();
return -1;
}
/**
* \brief Searches within Header Entries (Dicom Elements) parsed with
* the public [and private dictionaries]
* for the element value representation of a given tag..
* Obtaining the VR (Value Representation) might be needed by caller
* to convert the string typed content to caller's native type
* (think of C++ vs Python). The VR is actually of a higher level
* of semantics than just the native C++ type.
* @param group Group number of the searched tag.
* @param elem Element number of the searched tag.
* @return Corresponding element value representation when it exists,
* and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
*/
std::string DocEntrySet::GetEntryVR(uint16_t group, uint16_t elem)
{
DocEntry *entry = GetDocEntry(group, elem);
if ( entry )
return entry->GetVR();
return GDCM_UNFOUND;
}
/**
* \brief Same as \ref Document::GetDocEntry except it only
* returns a result when the corresponding entry is of type
* ValEntry.
* @param group Group number of the searched Dicom Element
* @param elem Element number of the searched Dicom Element
* @return When present, the corresponding ValEntry.
*/
ValEntry *DocEntrySet::GetValEntry(uint16_t group, uint16_t elem)
{
DocEntry *currentEntry = GetDocEntry(group, elem);
if ( !currentEntry )
return NULL;
return dynamic_cast<ValEntry*>(currentEntry);
}
/**
* \brief Same as \ref Document::GetDocEntry except it only
* returns a result when the corresponding entry is of type
* BinEntry.
* @param group Group number of the searched Dicom Element
* @param elem Element number of the searched Dicom Element
* @return When present, the corresponding BinEntry.
*/
BinEntry *DocEntrySet::GetBinEntry(uint16_t group, uint16_t elem)
{
DocEntry *currentEntry = GetDocEntry(group, elem);
if ( !currentEntry )
{
gdcmWarningMacro( "No corresponding BinEntry " << std::hex << group <<
"," << elem);
return NULL;
}
return dynamic_cast<BinEntry*>(currentEntry);
}
/**
* \brief Same as \ref Document::GetDocEntry except it only
* returns a result when the corresponding entry is of type
* SeqEntry.
* @param group Group number of the searched Dicom Element
* @param elem Element number of the searched Dicom Element
* @return When present, the corresponding SeqEntry.
*/
SeqEntry *DocEntrySet::GetSeqEntry(uint16_t group, uint16_t elem)
{
DocEntry *currentEntry = GetDocEntry(group, elem);
if ( !currentEntry )
{
gdcmWarningMacro( "No corresponding SeqEntry " << std::hex << group <<
"," << elem);
return NULL;
}
return dynamic_cast<SeqEntry*>(currentEntry);
}
/**
* \brief Accesses an existing DocEntry (i.e. a Dicom Element)
* through it's (group, element) and modifies it's content with
* the given value.
* @param content new value (string) to substitute with
* @param group group number of the Dicom Element to modify
* @param elem element number of the Dicom Element to modify
*/
bool DocEntrySet::SetValEntry(std::string const &content,
uint16_t group, uint16_t elem)
{
ValEntry *entry = GetValEntry(group, elem);
if (!entry )
{
gdcmWarningMacro( "No corresponding ValEntry " << std::hex << group <<
"," << elem << " element (try promotion first).");
return false;
}
return SetValEntry(content,entry);
}
/**
* \brief Accesses an existing DocEntry (i.e. a Dicom Element)
* through it's (group, element) and modifies it's content with
* the given value.
* @param content new value (void* -> uint8_t*) to substitute with
* @param lgth new value length
* @param group group number of the Dicom Element to modify
* @param elem element number of the Dicom Element to modify
*/
bool DocEntrySet::SetBinEntry(uint8_t *content, int lgth,
uint16_t group, uint16_t elem)
{
BinEntry *entry = GetBinEntry(group, elem);
if (!entry )
{
gdcmWarningMacro( "No corresponding ValEntry " << std::hex << group <<
"," << elem << " element (try promotion first).");
return false;
}
return SetBinEntry(content,lgth,entry);
}
/**
* \brief Accesses an existing DocEntry (i.e. a Dicom Element)
* and modifies it's content with the given value.
* @param content new value (string) to substitute with
* @param entry Entry to be modified
*/
bool DocEntrySet::SetValEntry(std::string const &content, ValEntry *entry)
{
if (entry)
{
entry->SetValue(content);
return true;
}
return false;
}
/**
* \brief Accesses an existing BinEntry (i.e. a Dicom Element)
* and modifies it's content with the given value.
* @param content new value (void* -> uint8_t*) to substitute with
* @param entry Entry to be modified
* @param lgth new value length
*/
bool DocEntrySet::SetBinEntry(uint8_t *content, int lgth, BinEntry *entry)
{
if (entry)
{
entry->SetBinArea(content);
entry->SetLength(lgth);
entry->SetValue(GDCM_BINLOADED);
return true;
}
return false;
}
/**
* \brief Modifies the value of a given Doc Entry (Dicom Element)
* when it exists. Create it with the given value when unexistant.
* @param value (string) Value to be set
* @param group Group number of the Entry
* @param elem Element number of the Entry
* @param vr V(alue) R(epresentation) of the Entry -if private Entry-
* \return pointer to the modified/created Header Entry (NULL when creation
* failed).
*/
ValEntry *DocEntrySet::InsertValEntry(std::string const &value,
uint16_t group, uint16_t elem,
TagName const &vr )
{
ValEntry *valEntry = 0;
DocEntry *currentEntry = GetDocEntry( group, elem );
if (currentEntry)
{
valEntry = dynamic_cast<ValEntry *>(currentEntry);
// Verify the VR
if ( valEntry )
if ( valEntry->GetVR()!=vr )
valEntry = NULL;
// if currentEntry doesn't correspond to the requested valEntry
if ( !valEntry)
{
if ( !RemoveEntry(currentEntry) )
{
gdcmWarningMacro( "Removal of previous DocEntry failed.");
return NULL;
}
}
}
// Create a new valEntry if necessary
if ( !valEntry )
{
valEntry = NewValEntry( group, elem, vr );
if ( !AddEntry(valEntry) )
{
gdcmWarningMacro("AddEntry failed although this is a creation.");
delete valEntry;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -