File: gdcmAAssociateRJPDU.cxx

package info (click to toggle)
gdcm 2.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 32,868 kB
  • sloc: cpp: 188,481; ansic: 124,526; xml: 41,799; sh: 7,162; python: 3,667; cs: 2,128; java: 1,344; lex: 1,290; tcl: 677; php: 128; makefile: 116
file content (166 lines) | stat: -rw-r--r-- 3,785 bytes parent folder | download | duplicates (5)
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
/*=========================================================================

  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 "gdcmAAssociateRJPDU.h"
#include "gdcmSwapper.h"

namespace gdcm
{
namespace network
{
const uint8_t AAssociateRJPDU::ItemType = 0x03; // PDUType ?
const uint8_t AAssociateRJPDU::Reserved2 = 0x00;
const uint8_t AAssociateRJPDU::Reserved8 = 0x00;

AAssociateRJPDU::AAssociateRJPDU()
{
  ItemLength = 0;
  Result = 0;
  Source = 0;
  Reason = 0; // diag ?
}

std::istream &AAssociateRJPDU::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;
  uint8_t reserved8;
  is >> reserved8;
  uint8_t result;
  is >> result;
  Result = result;
  uint8_t source;
  is >> source;
  Source = source;
  uint8_t reason;
  is >> reason;
  Reason = reason;

  //assert( ItemLength + 4 + 1 + 1 == Size() );

  return is;
}

const std::ostream &AAssociateRJPDU::Write(std::ostream &os) const
{
  return os;
}

namespace {
static const char *PrintResultAsString( uint8_t result )
{
  switch( result )
    {
  case 0x1:
    return "rejected-permanent";
  case 0x2:
    return "rejected-transient";
    }
  assert( 0 );
  return NULL;
}

static const char *PrintSourceAsString( uint8_t source )
{
  switch( source )
    {
  case 0x0:
    return "DICOM UL service-user";
  case 0x1:
    return "DICOM UL service-provider (ACSE related function)";
  case 0x2:
    return "DICOM UL service-provider (Presentation related function)";
    }
  assert( 0 );
  return NULL;
}

static const char *PrintReasonAsString( uint8_t source, uint8_t reason )
{
  switch( source )
    {
  case 0x1:
    switch( reason )
      {
    case 0x1:
      return "1 - no-reason-given";
    case 0x2:
      return "2 - application-context-name-not-supported";
    case 0x3:
      return "3 - calling-AE-title-not-recognized";
    case 0x4:
    case 0x5:
    case 0x6:
      return "4-6 - reserved";
    case 0x7:
      return "7 - called-AE-title-not-recognized";
    case 0x8:
    case 0x9:
    case 0xa:
      return "8-10 - reserved";
      }
  case 0x2:
    switch( reason )
      {
    case 0x1:
      return "no-reason-given";
    case 0x2:
      return "protocol-version-not-supported";
      }
  case 0x3:
    switch( reason )
      {
    case 0x0:
      return "0 - reserved";
    case 0x1:
      return "1 - temporary-congestion";
    case 0x2:
      return "2 - local-limit-exceeded";
    case 0x3:
    case 0x4:
    case 0x5:
    case 0x6:
    case 0x7:
      return "3-7 - reserved";
      }
    }
  assert( 0 );
  return NULL;
}

}


void AAssociateRJPDU::Print(std::ostream &os) const
{
  os << "PDULength: " << ItemLength << std::endl;
  os << "Result: " << PrintResultAsString( Result ) << std::endl;
  os << "Source: " << PrintSourceAsString( Source ) << std::endl;
  os << "Reason: " << PrintReasonAsString( Source, Reason ) << std::endl;
}


size_t AAssociateRJPDU::Size() const{
  return sizeof(uint8_t) + sizeof(uint8_t) + sizeof(uint32_t)+
    sizeof(uint8_t) + sizeof(uint8_t) + sizeof(uint8_t) + sizeof(uint8_t);
}

} // end namespace network
} // end namespace gdcm