1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*
*
* Copyright (C) 2003-2022, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmnet
*
* Author: Marco Eichelberg
*
* Purpose:
* class DcmPresentationContextItem
* class DcmPresentationContextMap
*
*/
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmnet/dccfpcmp.h" /* for class DcmPresentationContextMap */
#include "dcmtk/dcmdata/dcerror.h" /* for EC_IllegalCall */
DcmPresentationContextItem::DcmPresentationContextItem(
const DcmUIDHandler& abstractSyntax,
const OFString& xferSyntaxGroup )
: uid_(abstractSyntax)
, xferSyntaxGroup_(xferSyntaxGroup)
{
}
DcmPresentationContextItem::DcmPresentationContextItem(const DcmPresentationContextItem& arg)
: uid_(arg.uid_)
, xferSyntaxGroup_(arg.xferSyntaxGroup_)
{
}
DcmPresentationContextItem::~DcmPresentationContextItem()
{
}
DcmPresentationContextItem& DcmPresentationContextItem::operator=(const DcmPresentationContextItem& arg)
{
uid_ = arg.uid_;
xferSyntaxGroup_ = arg.xferSyntaxGroup_;
return *this;
}
/* ========================================================= */
DcmPresentationContextMap::DcmPresentationContextMap()
: map_()
{
}
DcmPresentationContextMap::~DcmPresentationContextMap()
{
clear();
}
DcmPresentationContextMap::DcmPresentationContextMap(const DcmPresentationContextMap& arg)
{
/* Copy all map entries */
OFMap<OFString, DcmPresentationContextList *>::const_iterator first = arg.map_.begin();
OFMap<OFString, DcmPresentationContextList *>::const_iterator last = arg.map_.end();
while (first != last)
{
DcmPresentationContextList* copy = new DcmPresentationContextList( *(*first).second );
map_.insert( OFPair<const OFString, DcmPresentationContextList*>( (*first).first, copy ) );
++first;
}
}
DcmPresentationContextMap& DcmPresentationContextMap::operator=(const DcmPresentationContextMap& arg)
{
if (this != &arg )
{
/* Clear and copy all map entries */
this->clear();
OFMap<OFString, DcmPresentationContextList *>::const_iterator first = arg.map_.begin();
OFMap<OFString, DcmPresentationContextList *>::const_iterator last = arg.map_.end();
while (first != last)
{
DcmPresentationContextList* copy = new DcmPresentationContextList( *(*first).second );
map_.insert(OFPair<const OFString, DcmPresentationContextList*>( (*first).first, copy ) );
++first;
}
}
return *this;
}
void DcmPresentationContextMap::clear()
{
while (map_.size () != 0)
{
OFMap<OFString, DcmPresentationContextList *>::iterator first = map_.begin();
delete (*first).second;
map_.erase(first);
}
}
OFMap<OFString, DcmPresentationContextList*>::const_iterator DcmPresentationContextMap::begin()
{
return map_.begin();
}
OFMap<OFString, DcmPresentationContextList*>::const_iterator DcmPresentationContextMap::end()
{
return map_.end();
}
const DcmPresentationContextList* DcmPresentationContextMap::getPresentationContextList(const OFString& pcName)
{
OFMap<OFString,DcmPresentationContextList*>::const_iterator it = map_.find(pcName);
if ( it == map_.end() )
{
return NULL;
}
else
return (*it).second;
}
OFCondition DcmPresentationContextMap::add(
const OFString& key,
const OFString& abstractSyntaxUID,
const OFString& transferSyntaxKey,
OFBool scuMode)
{
if ((key.empty())||(abstractSyntaxUID.empty())||(transferSyntaxKey.empty())) return EC_IllegalCall;
// perform syntax check of UID
DcmUIDHandler uid(abstractSyntaxUID);
if (! uid.isValidUID())
{
OFString s("not a valid abstract syntax UID: ");
s += abstractSyntaxUID;
return makeOFCondition(OFM_dcmnet, 1025, OF_error, s.c_str());
}
DcmPresentationContextList* value = NULL;
OFString skey(key);
OFMap<OFString, DcmPresentationContextList*>::iterator it = map_.find(skey);
// create new value if not existing yet
if (it == map_.end())
{
DcmPresentationContextList *newentry = new DcmPresentationContextList;
map_.insert(OFPair<OFString, DcmPresentationContextList*>(skey, newentry));
value = newentry;
}
else // use existing value
value = ((*it).second);
// make sure list does not get longer than 128 entries if we are in SCU mode
if (scuMode && ((value)->size() > 127))
{
OFString s("presentation context list too long (> 128 entries): ");
s += key;
return makeOFCondition(OFM_dcmnet, 1032, OF_error, s.c_str());
}
// insert values into list.
(value)->push_back(DcmPresentationContextItem(uid, transferSyntaxKey));
return EC_Normal;
}
OFBool DcmPresentationContextMap::isKnownKey(const char *key) const
{
if (!key) return OFFalse;
if (map_.find(OFString(key)) != map_.end()) return OFTrue;
return OFFalse;
}
OFBool DcmPresentationContextMap::isKnownAbstractSyntax(
const char*key,
const DcmUIDHandler& abstractSyntax) const
{
if (!key) return OFFalse;
OFString skey(key);
DcmPresentationContextList * const *value = NULL;
OFMap<OFString, DcmPresentationContextList*>::const_iterator it = map_.find(OFString(skey));
if ( it != map_.end() )
value = & ((*it).second);
if (value)
{
// check if abstract syntax is in list
OFListIterator(DcmPresentationContextItem) first = (*value)->begin();
OFListIterator(DcmPresentationContextItem) last = (*value)->end();
while (first != last)
{
if ((*first).matches(abstractSyntax)) return OFTrue;
++first;
}
}
return OFFalse;
}
const DcmPresentationContextList *DcmPresentationContextMap::getPresentationContextList(const char *key) const
{
const DcmPresentationContextList *result = NULL;
if (key)
{
OFMap<OFString, DcmPresentationContextList*>::const_iterator it = map_.find(OFString(key));
if (it != map_.end())
result = (*it).second;
}
return result;
}
|