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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.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 notice for more information.
=========================================================================*/
#include "gdcmAAssociateRQPDU.h"
#include "gdcmSwapper.h"
#include "gdcmAAssociateACPDU.h"
#include <string>
#include <locale>
namespace gdcm
{
/*
9.3.2 A-ASSOCIATE-RQ PDU STRUCTURE
An A-ASSOCIATE-RQ PDU shall be made of a sequence of mandatory fields followed by a variable
length field. Table 9-11 shows the sequence of the mandatory fields.
The variable field shall consist of one Application Context Item, one or more Presentation Context Items,
and one User Information Item. Sub-Items shall exist for the Presentation Context and User Information
Items.
*/
namespace network
{
const uint8_t AAssociateRQPDU::ItemType = 0x1; // PDUType ?
const uint8_t AAssociateRQPDU::Reserved2 = 0x0;
const uint16_t AAssociateRQPDU::ProtocolVersion = 0x1; // big - endian ?
const uint16_t AAssociateRQPDU::Reserved9_10 = 0x0;
//const uint8_t AAssociateRQPDU::Reserved43_74[32] = {};
AAssociateRQPDU::AAssociateRQPDU()
{
memset(CalledAETitle, ' ', sizeof(CalledAETitle));
//const char called[] = "ANY-SCP";
//strncpy(CalledAETitle, called, strlen(called) );
memset(CallingAETitle, ' ', sizeof(CallingAETitle));
//const char calling[] = "ECHOSCU";
//strncpy(CallingAETitle, calling, strlen(calling) );
memset(Reserved43_74, 0x0, sizeof(Reserved43_74));
//SetCallingAETitle( "MOVESCU" );
ItemLength = (uint32_t)Size() - 6;
assert( (ItemLength + 4 + 1 + 1) == Size() );
}
std::istream &AAssociateRQPDU::Read(std::istream &is)
{
//uint8_t itemtype = 0;
//is.read( (char*)&itemtype, sizeof(ItemType) );
//assert( itemtype == ItemType );
uint8_t reserved2;
is >> reserved2;
uint32_t itemlength;
is.read( (char*)&itemlength, sizeof(ItemLength) );
SwapperDoOp::SwapArray(&itemlength,1);
ItemLength = itemlength;
uint16_t protocolversion;
is.read( (char*)&protocolversion, sizeof(ProtocolVersion) );
SwapperDoOp::SwapArray(&protocolversion,1);
if( protocolversion != ProtocolVersion )
{
gdcmWarningMacro( "ProtocolVersion is: " << protocolversion );
}
uint16_t reserved9_10;
is.read( (char*)&reserved9_10, sizeof(Reserved9_10) );
SwapperDoOp::SwapArray(&reserved9_10,1);
//char calledaetitle[16];
is.read( (char*)&CalledAETitle, sizeof(CalledAETitle) ); // called
//char callingaetitle[16];
is.read( (char*)&CallingAETitle, sizeof(CallingAETitle) ); // calling
uint8_t reserved43_74[32] = { };
is.read( (char*)&reserved43_74, sizeof(Reserved43_74) ); // 0 (32 times)
memcpy( Reserved43_74, reserved43_74, sizeof(Reserved43_74) );
uint8_t itemtype2 = 0x0;
size_t curlen = 0;
while( curlen + 68 < ItemLength )
{
is.read( (char*)&itemtype2, sizeof(ItemType) );
switch ( itemtype2 )
{
case 0x10: // ApplicationContext ItemType
AppContext.Read( is );
curlen += AppContext.Size();
break;
case 0x20: // PresentationContextRQ ItemType
{
PresentationContextRQ pc;
pc.Read( is );
PresContext.push_back( pc );
curlen += pc.Size();
}
break;
case 0x50: // UserInformation ItemType
UserInfo.Read( is );
curlen += UserInfo.Size();
break;
default:
gdcmErrorMacro( "Unknown ItemType: " << std::hex << (int) itemtype2 );
curlen = ItemLength; // make sure to exit
break;
}
// WARNING: I cannot simply call Size() since UserInfo is initialized with GDCM
// own parameter, this will bias the computation. Instead compute relative
// length of remaining bytes to read.
//curlen = Size();
}
assert( curlen + 68 == ItemLength );
assert( ItemLength + 4 + 1 + 1 == Size() );
return is;
}
const std::ostream &AAssociateRQPDU::Write(std::ostream &os) const
{
assert( ItemLength + 4 + 1 + 1 == Size() );
#if 0
// Need to check all context Id are ordered ? and odd number ?
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
it->Write(os);
}
#endif
os.write( (const char*)&ItemType, sizeof(ItemType) );
os.write( (const char*)&Reserved2, sizeof(Reserved2) );
uint32_t copy = ItemLength;
SwapperDoOp::SwapArray(©,1);
os.write( (const char*)©, sizeof(ItemLength) );
uint16_t protocolversion = ProtocolVersion;
SwapperDoOp::SwapArray(&protocolversion,1);
os.write( (const char*)&protocolversion, sizeof(ProtocolVersion) );
os.write( (const char*)&Reserved9_10, sizeof(Reserved9_10) );
assert( AAssociateRQPDU::IsAETitleValid(CalledAETitle) );
os.write( CalledAETitle, 16 );
assert( AAssociateRQPDU::IsAETitleValid(CallingAETitle) );
os.write( CallingAETitle, 16 );
os.write( (const char*)&Reserved43_74, sizeof(Reserved43_74) );
AppContext.Write(os);
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
it->Write(os);
}
UserInfo.Write(os);
return os;
}
size_t AAssociateRQPDU::Size() const
{
size_t ret = 0;
ret += sizeof(ItemType);
ret += sizeof(Reserved2);
ret += sizeof(ItemLength);
ret += sizeof(ProtocolVersion);
ret += sizeof(Reserved9_10);
ret += sizeof(CalledAETitle);
ret += sizeof(CallingAETitle);
ret += sizeof(Reserved43_74);
ret += AppContext.Size();
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
ret += it->Size();
}
ret += UserInfo.Size();
return ret;
}
bool AAssociateRQPDU::IsAETitleValid(const char title[16])
{
if(!title) return false;
#if 0
std::string s ( title, 16 );
// check no \0 :
//size_t len = strlen( s.c_str() );
// FIXME:
// if( len != 16 ) return false;
std::locale loc;
std::string str = s;
for (size_t i=0; i < str.size(); ++i)
{
str[i] = std::toupper(str[i],loc);
}
if( str != s ) return false;
#else
const size_t reallen = strlen( title );
std::string s ( title, std::min(reallen, (size_t)16) );
// check no \0 :
size_t len = strlen( s.c_str() );
char OnlySpaces[16];
memset(OnlySpaces, ' ', sizeof(OnlySpaces));
if( strncmp( title, OnlySpaces, len ) == 0 )
{
return false;
}
#endif
return true;
}
void AAssociateRQPDU::AddPresentationContext( PresentationContextRQ const &pc )
{
PresContext.push_back( pc );
ItemLength = (uint32_t)Size() - 6;
assert( (ItemLength + 4 + 1 + 1) == Size() );
}
void AAssociateRQPDU::SetCalledAETitle(const char calledaetitle[16])
{
assert( AAssociateRQPDU::IsAETitleValid(calledaetitle) );
size_t len = strlen( calledaetitle );
if( len <= 16 )
{
memset(CalledAETitle, ' ', sizeof(CalledAETitle));
memcpy(CalledAETitle, calledaetitle, len );
}
// FIXME Need to check upper case
// FIXME cannot set to only whitespaces
}
void AAssociateRQPDU::SetCallingAETitle(const char callingaetitle[16])
{
assert( AAssociateRQPDU::IsAETitleValid(callingaetitle) );
size_t len = strlen( callingaetitle );
if( len <= 16 )
{
memset(CallingAETitle, ' ', sizeof(CallingAETitle));
memcpy(CallingAETitle, callingaetitle, len );
}
// FIXME Need to check upper case
// FIXME cannot set to only whitespaces
}
std::string AAssociateRQPDU::GetReserved43_74() const
{
return std::string(Reserved43_74,32);
}
void AAssociateRQPDU::Print(std::ostream &os) const
{
//static const uint8_t ItemType; // PDUType ?
//static const uint8_t Reserved2;
//uint32_t ItemLength; // PDU Length
//static const uint16_t ProtocolVersion;
//static const uint16_t Reserved9_10;
os << "CalledAETitle: ";
os << GetCalledAETitle() << std::endl;
os << "CallingAETitle: ";
os << GetCallingAETitle() << std::endl;
//static const uint8_t Reserved43_74[32]; // { 0 }
os << "ApplicationContext: ";
AppContext.Print( os );
os << std::endl;
//std::vector<PresentationContextRQ> PresContext;
os << "PresentationContext(s): ";
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
it->Print( os << std::endl );
}
os << "UserInformation: ";
UserInfo.Print( os );
os << std::endl;
}
const PresentationContextRQ *AAssociateRQPDU::GetPresentationContextByID(uint8_t id) const
{
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
if( it->GetPresentationContextID() == id )
{
return &*it;
}
}
return nullptr;
}
const PresentationContextRQ *AAssociateRQPDU::GetPresentationContextByAbstractSyntax(AbstractSyntax const & as ) const
{
std::vector<PresentationContextRQ>::const_iterator it = PresContext.begin();
for( ; it != PresContext.end(); ++it)
{
if( it->GetAbstractSyntax() == as )
{
return &*it;
}
}
return nullptr;
}
void AAssociateRQPDU::SetUserInformation( UserInformation const & ui )
{
UserInfo = ui;
ItemLength = (uint32_t)Size() - 6;
assert( (ItemLength + 4 + 1 + 1) == Size() );
}
} // end namespace network
} // end namespace gdcm
|