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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/*
Copyright (C) 1993, 1994, RSNA and Washington University
The software and supporting documentation for the Radiological
Society of North America (RSNA) 1993, 1994 Digital Imaging and
Communications in Medicine (DICOM) Demonstration were developed
at the
Electronic Radiology Laboratory
Mallinckrodt Institute of Radiology
Washington University School of Medicine
510 S. Kingshighway Blvd.
St. Louis, MO 63110
as part of the 1993, 1994 DICOM Central Test Node project for, and
under contract with, the Radiological Society of North America.
THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND NEITHER RSNA NOR
WASHINGTON UNIVERSITY MAKE ANY WARRANTY ABOUT THE SOFTWARE, ITS
PERFORMANCE, ITS MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
USE, FREEDOM FROM ANY COMPUTER DISEASES OR ITS CONFORMITY TO ANY
SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND PERFORMANCE OF
THE SOFTWARE IS WITH THE USER.
Copyright of the software and supporting documentation is
jointly owned by RSNA and Washington University, and free access
is hereby granted as a license to use this software, copy this
software and prepare derivative works based upon this software.
However, any distribution of this software source code or
supporting documentation or derivative works (source code and
supporting documentation) must include the three paragraphs of
the copyright notice.
*/
/* Copyright marker. Copyright will be inserted above. Do not remove */
/*
** DICOM 94
** Electronic Radiology Laboratory
** Mallinckrodt Institute of Radiology
** Washington University School of Medicine
**
** Module Name(s):
** Author, Date: Stephen Moore, 11-Feb-94
** Intent:
** Last Update: $Author: smm $, $Date: 2001-12-21 16:37:35 $
** Source File: $RCSfile: requests.c,v $
** Revision: $Revision: 1.10 $
** Status: $State: Exp $
*/
static char rcsid[] = "$Revision: 1.10 $ $RCSfile: requests.c,v $";
#include "ctn_os.h"
#if 0
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#ifdef MACH
#include <unistd.h>
#endif
#endif
#include "dicom.h"
#include "condition.h"
#include "tbl.h"
#include "lst.h"
#include "dicom_uids.h"
#include "dulprotocol.h"
#include "dicom_objects.h"
#include "dicom_ie.h"
#include "dicom_messages.h"
#include "dicom_services.h"
#include "tbl.h"
#include "manage.h"
#include "fis.h"
#include "fis_server.h"
#include "services.h"
extern char *controlDatabase;
typedef struct {
DUL_NETWORKKEY **network;
DUL_ASSOCIATESERVICEPARAMETERS *params;
} MOVE_PARAMS;
typedef struct {
char *fileName;
char *transferSyntax;
DMAN_HANDLE **handle;
} STORAGE_PARAMS;
static FIS_HANDLE
* FISHandle;
static CONDITION
serviceThisCommand(DUL_NETWORKKEY ** network, DUL_ASSOCIATIONKEY ** association,
DUL_PRESENTATIONCONTEXT * ctx, MSG_TYPE messageType,
void **message, DUL_ASSOCIATESERVICEPARAMETERS * params,
DMAN_HANDLE ** handle);
static CONDITION
echoRequest(DUL_ASSOCIATIONKEY ** association,
DUL_PRESENTATIONCONTEXT * ctx, MSG_C_ECHO_REQ ** message);
static CONDITION
echoCallback(MSG_C_ECHO_REQ * echoRequest,
MSG_C_ECHO_RESP * echoResponse, void *ctx, DUL_PRESENTATIONCONTEXT * pci);
static CTNBOOLEAN silent = FALSE;
/* serviceRequests
**
** Purpose:
** This function reads requests from the network and services those
** requests.
**
** Parameter Dictionary:
** network The key which is used to access the network.
** association They key which is used to access the association
** on which requests are received.
** service The parameter list which describes the association.
** This list includes the list of presentation contexts
** for the association.
** abortFlag A test flag which tells this function to abort the
** Association after it receives one image.
** releaseDelay Amount of time to delay (sleep) after release
** is requested before acknowledging release.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
CONDITION
serviceRequests(DUL_NETWORKKEY ** network, DUL_ASSOCIATIONKEY ** association,
DUL_ASSOCIATESERVICEPARAMETERS * service)
{
CONDITION
cond;
DUL_PRESENTATIONCONTEXT
* ctx;
DUL_PRESENTATIONCONTEXTID
ctxID;
void
*message;
MSG_TYPE
messageType;
CTNBOOLEAN
networkLink = TRUE,
commandServiced;
DMAN_HANDLE
* handle;
DMAN_FISACCESS
access;
cond = DMAN_Open(controlDatabase, service->callingAPTitle,
service->calledAPTitle, &handle);
if (cond == DMAN_NORMAL) {
cond = DMAN_LookupFISAccess(&handle, service->calledAPTitle,
&access);
}
if (cond == DMAN_NORMAL)
cond = FIS_Open(access.DbKey, &FISHandle);
while ((networkLink == TRUE) && !CTN_ERROR(cond)) {
cond = SRV_ReceiveCommand(association, service, DUL_BLOCK, 0, &ctxID,
NULL, &messageType, &message);
if (cond == SRV_PEERREQUESTEDRELEASE) {
networkLink = FALSE;
(void) DUL_AcknowledgeRelease(association);
(void) DUL_DropAssociation(association);
} else if (cond == SRV_PEERABORTEDASSOCIATION) {
networkLink = FALSE;
(void) DUL_DropAssociation(association);
} else if (cond != SRV_NORMAL) {
(void) DUL_DropAssociation(association);
COND_DumpConditions();
cond = 0;
} else {
ctx = LST_Head(&service->acceptedPresentationContext);
if (ctx != NULL)
(void) LST_Position(&service->acceptedPresentationContext, ctx);
commandServiced = FALSE;
while (ctx != NULL) {
if (ctx->presentationContextID == ctxID) {
if (commandServiced) {
fprintf(stderr,
"Context ID Repeat in serviceRequests (%d)\n",
ctxID);
} else {
cond = serviceThisCommand(network, association, ctx,
messageType, &message, service,
&handle);
if (cond == SRV_OPERATIONCANCELLED) {
printf("Operation cancelled\n");
(void) COND_PopCondition(TRUE);
} else if (cond != SRV_NORMAL)
COND_DumpConditions();
commandServiced = TRUE;
}
}
ctx = LST_Next(&service->acceptedPresentationContext);
}
COND_DumpConditions(); /* In case there is anything around */
if (!commandServiced) {
fprintf(stderr, "In serviceRequests, context ID %d not found\n",
ctxID);
(void) DUL_DropAssociation(association);
networkLink = FALSE;
}
}
}
(void) DMAN_Close(&handle);
(void) FIS_Close(&FISHandle);
return cond;
}
/* serviceThisCommand
**
** Purpose:
** This function serves as a dispatch routine for the commands
** that can be received from the network. It uses a case statement
** to identify the command and call the function which will
** respond to the request.
**
** Parameter Dictionary:
** association They key which is used to access the association
** on which requests are received.
** ctx Pointer to the presentation context for this command
** messageType The type of message that we are to recognize.
** message Pointer to a structure which contains the message.
** We will use "messageType" to get the proper type.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static CONDITION
serviceThisCommand(DUL_NETWORKKEY ** network, DUL_ASSOCIATIONKEY ** association,
DUL_PRESENTATIONCONTEXT * ctx, MSG_TYPE messageType,
void **message, DUL_ASSOCIATESERVICEPARAMETERS * params,
DMAN_HANDLE ** handle)
{
CONDITION
cond;
MSG_GENERAL
* general;
general = *(MSG_GENERAL **) message;
MSG_DumpMessage((void *) general, stdout);
switch (messageType) {
case MSG_K_C_ECHO_REQ:
cond = echoRequest(association, ctx, (MSG_C_ECHO_REQ **) message);
break;
case MSG_K_N_GET_REQ:
cond = ngetRequest(params, association, handle, ctx,
(MSG_N_GET_REQ **) message, &FISHandle);
break;
case MSG_K_N_SET_REQ:
cond = nsetRequest(params, association, handle, ctx,
(MSG_N_SET_REQ **) message, &FISHandle);
break;
case MSG_K_N_CREATE_REQ:
cond = ncreateRequest(params, association, handle, ctx,
(MSG_N_CREATE_REQ **) message, &FISHandle);
break;
default:
fprintf(stderr, "Unimplemented message type: %d\n", messageType);
cond = 1;
break;
}
return cond;
}
/* echoRequest
**
** Purpose:
** This function responds to an echo request from the network.
** It creates an echo response message with a status of success
** and sends the message to the peer application.
**
** Parameter Dictionary:
** association They key which is used to access the association
** on which requests are received.
** ctx Pointer to the presentation context for this command
** message Pointer to the MSG_C_ECHO_REQ message that was
** received by the server.
**
** Return Values:
**
** SRV_CALLBACKABORTEDSERVICE
** SRV_ILLEGALPARAMETER
** SRV_NOCALLBACK
** SRV_NORMAL
** SRV_OBJECTBUILDFAILED
** SRV_RESPONSEFAILED
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static CONDITION
echoRequest(DUL_ASSOCIATIONKEY ** association,
DUL_PRESENTATIONCONTEXT * ctx, MSG_C_ECHO_REQ ** echoReq)
{
MSG_C_ECHO_RESP
echoResponse = {
MSG_K_C_ECHO_RESP, 0, 0, DCM_CMDDATANULL, 0, ""
};
return SRV_CEchoResponse(association, ctx, echoReq,
&echoResponse, echoCallback, NULL, "");
}
/* echoCallback
**
** Purpose:
** Call back routine provided by the service provider. It is invoked
** by the SRV Echo Response function.
**
** Parameter Dictionary:
** request Pointer to C-Echo Request Message
** response Pointer to C-Echo Response Message
** ctx Context value, which we ignore
**
** Return Values:
** SRV_NORMAL
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static CONDITION
echoCallback(MSG_C_ECHO_REQ * request,
MSG_C_ECHO_RESP * response, void *ctx, DUL_PRESENTATIONCONTEXT * pci)
{
if (!silent)
printf("Echo Request Received/Acknowledged\n");
response->dataSetType = DCM_CMDDATANULL;
response->messageIDRespondedTo = request->messageID;
response->status = MSG_K_SUCCESS;
strcpy(response->classUID, request->classUID);
return SRV_NORMAL;
}
|