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 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
|
/*
*
* Copyright (C) 1996-2024, 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: dcmwlm
*
* Author: Thomas Wilkens
*
* Purpose: Activity manager class for basic worklist management service
* class providers.
*
*/
// ----------------------------------------------------------------------------
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofcond.h"
#include "dcmtk/ofstd/ofstrutl.h"
#include "dcmtk/dcmnet/dicom.h"
#include "dcmtk/dcmwlm/wltypdef.h"
#include "dcmtk/ofstd/oftypes.h"
#include "dcmtk/dcmdata/dcdatset.h"
#include "dcmtk/dcmdata/dcvrat.h"
#include "dcmtk/dcmdata/dcvrlo.h"
#include "dcmtk/dcmdata/dcdict.h"
#include "dcmtk/dcmdata/dcdeftag.h"
#include "dcmtk/dcmwlm/wlds.h"
#include "dcmtk/dcmnet/assoc.h"
#include "dcmtk/dcmnet/dimse.h"
#include "dcmtk/dcmnet/diutil.h"
#include "dcmtk/ofstd/ofstd.h"
#include "dcmtk/ofstd/ofdatime.h"
#include "dcmtk/dcmdata/dcdicent.h" // needed by MSVC5 with STL
#include "dcmtk/oflog/internal/env.h"
#include "dcmtk/dcmwlm/wlmactmg.h"
#include "dcmtk/ofstd/ofstdinc.h"
#include <ctime>
// ----------------------------------------------------------------------------
// We need three global functions, because we need to pass a function pointer for a callback function
// to a certain function in dcmnet. This function pointer cannot point to an element function of the
// above defined class, because dcmnet expects it to be a pointer to a global function. Hence, function
// FindCallback() needs to be global. Function AddStatusDetail() and storeRequestFile() are used in
// FindCallback() that's why they are also defined as global.
static void FindCallback( void *callbackData, OFBool cancelled, T_DIMSE_C_FindRQ * /*request*/, DcmDataset *requestIdentifiers, int responseCount, T_DIMSE_C_FindRSP *response, DcmDataset **responseIdentifiers, DcmDataset **statusDetail );
// Task : This function will try to select another record from a database which matches the
// search mask that was passed. In certain circumstances, the selected information
// will be dumped to stdout.
// Parameters : callbackData - [in] data for this callback function
// cancelled - [in] Specifies if we encountered a C-CANCEL-RQ. In such a case
// the search shall be cancelled.
// request - [in] The original C-FIND-RQ message.
// requestIdentifiers - [in] Contains the search mask.
// responseCount - [in] If we labelled C-FIND-RSP messages consecutively, starting
// at label "1", this number would provide the label's number.
// response - [inout] the C-FIND-RSP message (will be sent after the call to
// this function). The status field will be set in this function.
// responseIdentifiers - [inout] Will in the end contain the next record that matches the
// search mask (captured in requestIdentifiers)
// statusDetail - [inout] This variable can be used to capture detailed information
// with regard to the status information which is captured in the
// status element (0000,0900) of the C-FIND-RSP message.
// Return Value : OFCondition value denoting success or error.
static OFString AddStatusDetail( DcmDataset **statusDetail, const DcmElement *elem );
// Task : This function adds information to the status detail information container.
// Parameters : statusDetail - [inout] This variable can be used to capture detailed information
// with regard to the status information which is captured in the
// status element (0000,0900) of the C-FIND-RSP message.
// elem - [in] Element that shall be added to the status detail information
// container.
// Return Value : none.
static void storeRequestToFile(DcmDataset& request, const OFString& callingAE, const OFString& calledAE, const OFString& reqFilePath, const OFString& reqFileFormat);
// Task : Store request to file using the directory and file name format
// Parameters : request - [in] The incoming C-FIND request
// callingAE - [in] The peer's Calling AE Title
// calledAE - [in] Our AE Title
// reqFilePath - [in] The request file directory to write to
// reqFileFormat - [in] The request file name format to use
// Return Value: none
// ----------------------------------------------------------------------------
WlmActivityManager::WlmActivityManager(
WlmDataSource *dataSourcev,
OFCmdUnsignedInt opt_portv,
OFBool opt_refuseAssociationv,
OFBool opt_rejectWithoutImplementationUIDv,
OFCmdUnsignedInt opt_sleepBeforeFindReqv,
OFCmdUnsignedInt opt_sleepAfterFindv,
OFCmdUnsignedInt opt_sleepDuringFindv,
OFCmdUnsignedInt opt_maxPDUv,
E_TransferSyntax opt_networkTransferSyntaxv,
OFBool opt_failInvalidQueryv,
OFBool opt_singleProcessv,
int opt_maxAssociationsv,
T_DIMSE_BlockingMode opt_blockModev,
int opt_dimse_timeoutv,
int opt_acse_timeoutv,
OFBool opt_forkedChildv,
int argcv,
char *argvv[] )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : Constructor.
// Parameters : dataSourcev - [in] Pointer to the data source which shall be used.
// opt_portv - [in] The port on which the application is supposed to listen.
// opt_refuseAssociationv - [in] Specifies if an association shall always be refused by the SCP.
// opt_rejectWithoutImplementationUIDv - [in] Specifies if the application shall reject an association if no implementation class UID is provided by the calling SCU.
// opt_sleepBeforeFindReqv - [in] Specifies how many seconds the application is supposed to sleep before handling a C-FIND-Req.
// opt_sleepAfterFindv - [in] Specifies how many seconds the application is supposed to sleep after having handled a C-FIND-Rsp.
// opt_sleepDuringFindv - [in] Specifies how many seconds the application is supposed to sleep during the handling of a C-FIND-Rsp.
// opt_maxPDUv - [in] Maximum length of a PDU that can be received in bytes.
// opt_networkTransferSyntaxv - [in] Specifies the preferred network transfer syntaxes.
// opt_failInvalidQueryv - [in] Specifies if the application shall fail on an invalid query.
// opt_singleProcessv - [in] Specifies if the application shall run in a single process.
// opt_maxAssociationsv - [in] Specifies many concurrent associations the application shall be able to handle.
// opt_forkedChildv - [in] Indicates, whether this process was "forked" from a parent process, default: false
// argcv - [in] Number of arguments in command line
// argvv - [in/out] Holds complete commandline
// Return Value : none.
: dataSource( dataSourcev ), opt_port( opt_portv ), opt_refuseAssociation( opt_refuseAssociationv ),
opt_rejectWithoutImplementationUID( opt_rejectWithoutImplementationUIDv ), opt_sleepBeforeFindReq( opt_sleepBeforeFindReqv ),
opt_sleepAfterFind( opt_sleepAfterFindv ), opt_sleepDuringFind( opt_sleepDuringFindv ),
opt_maxPDU( opt_maxPDUv ), opt_networkTransferSyntax( opt_networkTransferSyntaxv ),
opt_failInvalidQuery( opt_failInvalidQueryv ),
opt_singleProcess( opt_singleProcessv ), opt_forkedChild( opt_forkedChildv ), cmd_argc( argcv ),
cmd_argv( argvv ), opt_maxAssociations( opt_maxAssociationsv ),
opt_blockMode(opt_blockModev), opt_dimse_timeout(opt_dimse_timeoutv), opt_acse_timeout(opt_acse_timeoutv),
supportedAbstractSyntaxes( NULL ), numberOfSupportedAbstractSyntaxes( 0 ),
processTable( )
{
// initialize supported abstract transfer syntaxes.
supportedAbstractSyntaxes = new char*[2];
size_t buflen = strlen( UID_VerificationSOPClass ) + 1;
supportedAbstractSyntaxes[0] = new char[buflen];
OFStandard::strlcpy( supportedAbstractSyntaxes[0], UID_VerificationSOPClass, buflen );
buflen = strlen( UID_FINDModalityWorklistInformationModel ) + 1;
supportedAbstractSyntaxes[1] = new char[buflen];
OFStandard::strlcpy( supportedAbstractSyntaxes[1], UID_FINDModalityWorklistInformationModel, buflen );
numberOfSupportedAbstractSyntaxes = 2;
// make sure not to let dcmdata remove trailing blank padding or perform other
// manipulations. We want to see the real data.
dcmEnableAutomaticInputDataCorrection.set( OFFalse );
if (!opt_forkedChild)
DCMWLM_WARN("(notice: dcmdata auto correction disabled.)");
OFStandard::initializeNetwork();
}
// ----------------------------------------------------------------------------
WlmActivityManager::~WlmActivityManager()
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : Destructor.
// Parameters : none.
// Return Value : none.
{
// free memory
delete[] supportedAbstractSyntaxes[0];
delete[] supportedAbstractSyntaxes[1];
delete[] supportedAbstractSyntaxes;
OFStandard::shutdownNetwork();
}
// ----------------------------------------------------------------------------
OFBool WlmActivityManager::setRequestFilePath(const OFString& path, const OFString& format)
// Date : March 08, 2019
// Author : Michael Onken
// Task : Set the directory where to store request files to.
// Parameters : path - [in] The directory to store request files to.
// format - [in] the format for the request file names.
// Return Value : OFTrue if directory and format is accepted, OFFalse otherwise.
{
if (!path.empty())
{
if (OFStandard::dirExists(path) && OFStandard::isWriteable(path))
{
opt_requestFilePath = path;
opt_requestFileFormat = format;
}
else
{
return OFFalse;
}
}
else
{
// disables option
opt_requestFilePath = path;
opt_requestFileFormat = format;
}
return OFTrue;
}
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::StartProvidingService()
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : Starts providing the implemented service for calling SCUs.
// After having created an instance of this class, this function
// shall be called from main.
// Parameters : none.
// Return Value : Return value that is supposed to be returned from main().
{
OFCondition cond = EC_Normal;
T_ASC_Network *net = NULL;
// Make sure data dictionary is loaded.
if( !dcmDataDict.isDictionaryLoaded() )
{
DCMWLM_WARN("no data dictionary loaded, check environment variable: " << DCM_DICT_ENVIRONMENT_VARIABLE);
}
#ifndef DISABLE_PORT_PERMISSION_CHECK
#ifdef HAVE_GETEUID
// If port is privileged we must be as well.
if( opt_port < 1024 && geteuid() != 0 )
return( WLM_EC_InsufficientPortPrivileges );
#endif
#endif
#ifdef _WIN32
/* if this process was started by CreateProcess, opt_forkedChild is set */
if (opt_forkedChild)
{
// we are a child process in multi-process mode
if (DUL_readSocketHandleAsForkedChild().bad()) exit(10);
}
else
{
// parent process
if (!opt_singleProcess)
DUL_requestForkOnTransportConnectionReceipt(cmd_argc, cmd_argv);
}
#endif
// Initialize network, i.e. create an instance of T_ASC_Network*.
cond = ASC_initializeNetwork( NET_ACCEPTOR, OFstatic_cast(int, opt_port), opt_acse_timeout, &net );
if( cond.bad() ) return( WLM_EC_InitializationOfNetworkConnectionFailed );
/* drop root privileges now and revert to the calling user id (if we are running as setuid root) */
cond = OFStandard::dropPrivileges();
if (cond.bad())
{
DCMWLM_ERROR("setuid() failed, maximum number of processes/threads for uid already running.");
return cond;
}
// If we get to this point, the entire initialization process has been completed
// successfully. Now, we want to start handling all incoming requests. Since
// this activity is supposed to represent a server process, we do not want to
// terminate this activity. Hence, create an endless while-loop.
while( cond.good() )
{
// Wait for an association and handle the requests of
// the calling applications correspondingly.
cond = WaitForAssociation( net );
// Clean up any child processes if the execution is not limited to a single process.
// (On windows platform, children are not handled via the process table,
// so there's no need to clean up children)
#ifdef HAVE_FORK
if( !opt_singleProcess )
CleanChildren();
#elif defined(_WIN32)
// if running in multi-process mode, always terminate child after one association
// for unix, this is done in WaitForAssociation() with exit()
if (DUL_processIsForkedChild()) break;
#endif
}
// Drop the network, i.e. free memory of T_ASC_Network* structure. This call
// is the counterpart of ASC_initializeNetwork(...) which was called above.
cond = ASC_dropNetwork( &net );
if( cond.bad() ) return( WLM_EC_TerminationOfNetworkConnectionFailed );
// return ok
return( EC_Normal );
}
// ----------------------------------------------------------------------------
void WlmActivityManager::RefuseAssociation( T_ASC_Association **assoc, WlmRefuseReasonType reason )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function takes care of refusing an association request.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// reason - [in] The reason why the association request will be refused.
// Return Value : none.
{
T_ASC_RejectParameters rej;
// Dump some information if required.
switch( reason )
{
case WLM_TOO_MANY_ASSOCIATIONS: DCMWLM_INFO("Refusing Association (too many associations)"); break;
case WLM_CANNOT_FORK: DCMWLM_INFO("Refusing Association (cannot fork)"); break;
case WLM_BAD_APP_CONTEXT: DCMWLM_INFO("Refusing Association (bad application context)"); break;
case WLM_BAD_AE_SERVICE: DCMWLM_INFO("Refusing Association (bad application entity service)"); break;
case WLM_FORCED: DCMWLM_INFO("Refusing Association (forced via command line)"); break;
case WLM_NO_IC_UID: DCMWLM_INFO("Refusing Association (no implementation class UID provided)"); break;
default: DCMWLM_INFO("Refusing Association (unknown reason)"); break;
}
// Set some values in the reject message depending on the reason.
switch( reason )
{
case WLM_TOO_MANY_ASSOCIATIONS:
rej.result = ASC_RESULT_REJECTEDTRANSIENT;
rej.source = ASC_SOURCE_SERVICEPROVIDER_PRESENTATION_RELATED;
rej.reason = ASC_REASON_SP_PRES_LOCALLIMITEXCEEDED;
break;
case WLM_CANNOT_FORK:
rej.result = ASC_RESULT_REJECTEDPERMANENT;
rej.source = ASC_SOURCE_SERVICEPROVIDER_PRESENTATION_RELATED;
rej.reason = ASC_REASON_SP_PRES_TEMPORARYCONGESTION;
break;
case WLM_BAD_APP_CONTEXT:
rej.result = ASC_RESULT_REJECTEDTRANSIENT;
rej.source = ASC_SOURCE_SERVICEUSER;
rej.reason = ASC_REASON_SU_APPCONTEXTNAMENOTSUPPORTED;
break;
case WLM_BAD_AE_SERVICE:
rej.result = ASC_RESULT_REJECTEDPERMANENT;
rej.source = ASC_SOURCE_SERVICEUSER;
rej.reason = ASC_REASON_SU_CALLEDAETITLENOTRECOGNIZED;
break;
case WLM_FORCED:
case WLM_NO_IC_UID:
default:
rej.result = ASC_RESULT_REJECTEDPERMANENT;
rej.source = ASC_SOURCE_SERVICEUSER;
rej.reason = ASC_REASON_SU_NOREASON;
break;
}
// Reject the association request.
ASC_rejectAssociation( *assoc, &rej );
// Drop the association.
ASC_dropAssociation( *assoc );
// Destroy the association.
ASC_destroyAssociation( assoc );
}
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::WaitForAssociation( T_ASC_Network * net )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function takes care of receiving, negotiating and accepting/refusing an
// association request. Additionally, it handles the request the association
// requesting application transmits after a connection is established.
// Parameters : net - [in] Contains network parameters.
// Return Value : Indicator which shows if function was executed successfully.
{
T_ASC_Association *assoc = NULL;
char buf[BUFSIZ];
int timeout;
// Depending on if the execution is limited to one single process
// or not we need to set the timeout value correspondingly.
// for WIN32, child processes cannot be counted (always 0) -> timeout=1000
if( opt_singleProcess )
timeout = 1000;
else
{
if( processTable.size() > 0 )
timeout = 1;
else
timeout = 1000;
}
// Listen to a socket for timeout seconds and wait for an association request.
OFCondition cond = ASC_receiveAssociation( net, &assoc, opt_maxPDU, NULL, NULL, OFFalse, DUL_NOBLOCK, timeout );
// just return, if timeout occurred (DUL_NOASSOCIATIONREQUEST)
// or (WIN32) if dcmnet has started a child for us, to handle this
// association (signaled by "DULC_FORKEDCHILD") -> return to "event loop"
if ( ( cond.code() == DULC_FORKEDCHILD ) || ( cond == DUL_NOASSOCIATIONREQUEST ) )
return EC_Normal;
// if error occurs and we're not in single process mode, close association and return
if( cond.bad() && !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
return EC_Normal;
}
// Dump some information if required
DCMWLM_INFO("Association Received ("
<< assoc->params->DULparams.callingPresentationAddress
<< ":" << assoc->params->DULparams.callingAPTitle
<< " -> " << assoc->params->DULparams.calledAPTitle << ")");
// Dump more information if required
OFString temp_str;
DCMWLM_DEBUG("Parameters:" << OFendl << ASC_dumpParameters(temp_str, assoc->params, ASC_ASSOC_RQ));
// Now we have to figure out if we might have to refuse the association request.
// This is the case if at least one of five conditions is met:
// Condition 1: if option "--refuse" is set we want to refuse the association request.
if( opt_refuseAssociation )
{
RefuseAssociation( &assoc, WLM_FORCED );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Condition 2: determine the application context name. If an error occurred or if the
// application context name is not supported we want to refuse the association request.
cond = ASC_getApplicationContextName( assoc->params, buf, sizeof(buf) );
if( cond.bad() || strcmp( buf, DICOM_STDAPPLICATIONCONTEXT ) != 0 )
{
RefuseAssociation( &assoc, WLM_BAD_APP_CONTEXT );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Condition 3: if option "--reject" is set and the caller did not provide an
// implementation class UID we want to refuse the association request
if( opt_rejectWithoutImplementationUID && strlen( assoc->params->theirImplementationClassUID ) == 0 )
{
RefuseAssociation( &assoc, WLM_NO_IC_UID );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Condition 4: if there are too many concurrent associations
// we want to refuse the association request
if( (int)processTable.size() >= opt_maxAssociations )
{
RefuseAssociation( &assoc, WLM_TOO_MANY_ASSOCIATIONS );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Condition 5: if the called application entity title is not supported
// within the data source we want to refuse the association request
dataSource->SetCalledApplicationEntityTitle( assoc->params->DULparams.calledAPTitle );
if( !dataSource->IsCalledApplicationEntityTitleSupported() )
{
RefuseAssociation( &assoc, WLM_BAD_AE_SERVICE );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// If we get to this point the association shall be negotiated.
cond = NegotiateAssociation( assoc );
if( cond.bad() )
{
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Reject association if no presentation context was negotiated
if( ASC_countAcceptedPresentationContexts( assoc->params ) == 0 )
{
DCMWLM_INFO("No Acceptable Presentation Contexts");
RefuseAssociation( &assoc, WLM_FORCED );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// If the negotiation was successful, accept the association request.
cond = ASC_acknowledgeAssociation( assoc );
if( cond.bad() )
{
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
// Dump some information if required.
DCMWLM_INFO("Association Acknowledged (Max Send PDV: " << assoc->sendPDVLength << ")");
// Dump some more information if required.
DCMWLM_DEBUG(ASC_dumpParameters(temp_str, assoc->params, ASC_ASSOC_AC));
// Depending on if this execution shall be limited to one process or not, spawn a sub-
// process to handle the association or don't. (Note: For windows dcmnet is handling
// the creation for a new subprocess, so we can call HandleAssociation directly, too)
if( opt_singleProcess || opt_forkedChild )
{
// Go ahead and handle the association (i.e. handle the callers requests) in this process.
HandleAssociation( assoc );
}
#ifdef HAVE_FORK
else
{
// Spawn a sub-process to handle the association (i.e. handle the callers requests)
int pid = (int)(fork());
if( pid < 0 )
{
RefuseAssociation( &assoc, WLM_CANNOT_FORK );
if( !opt_singleProcess )
{
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
return( EC_Normal );
}
else if( pid > 0 )
{
// Fork returns a positive process id if this is the parent process.
// If this is the case, remember the process in a table and go ahead.
AddProcessToTable( pid, assoc );
// the child will handle the association, we can drop it
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
}
else
{
// If the process id is not positive, this must be the child process.
// We want to handle the association, i.e. the callers requests.
HandleAssociation( assoc );
// When everything is finished, terminate the child process.
exit(0);
}
}
#endif // HAVE_FORK
return( EC_Normal );
}
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::NegotiateAssociation( T_ASC_Association *assoc )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function negotiates a presentation context which will be used by this application
// and the other DICOM application that requests an association.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// Return Value : OFCondition value denoting success or error.
{
const char* transferSyntaxes[] = { NULL, NULL, NULL, NULL };
int numTransferSyntaxes = 0;
switch( opt_networkTransferSyntax )
{
case EXS_LittleEndianImplicit:
// we only support Little Endian Implicit
transferSyntaxes[0] = UID_LittleEndianImplicitTransferSyntax;
numTransferSyntaxes = 1;
break;
case EXS_LittleEndianExplicit:
// we prefer Little Endian Explicit
transferSyntaxes[0] = UID_LittleEndianExplicitTransferSyntax;
transferSyntaxes[1] = UID_BigEndianExplicitTransferSyntax;
transferSyntaxes[2] = UID_LittleEndianImplicitTransferSyntax;
numTransferSyntaxes = 3;
break;
case EXS_BigEndianExplicit:
// we prefer Big Endian Explicit
transferSyntaxes[0] = UID_BigEndianExplicitTransferSyntax;
transferSyntaxes[1] = UID_LittleEndianExplicitTransferSyntax;
transferSyntaxes[2] = UID_LittleEndianImplicitTransferSyntax;
numTransferSyntaxes = 3;
break;
#ifdef WITH_ZLIB
case EXS_DeflatedLittleEndianExplicit:
// we prefer Deflated Little Endian Explicit
transferSyntaxes[0] = UID_DeflatedExplicitVRLittleEndianTransferSyntax;
transferSyntaxes[1] = UID_LittleEndianExplicitTransferSyntax;
transferSyntaxes[2] = UID_BigEndianExplicitTransferSyntax;
transferSyntaxes[3] = UID_LittleEndianImplicitTransferSyntax;
numTransferSyntaxes = 4;
break;
#endif
default:
// We prefer explicit transfer syntaxes.
// If we are running on a Little Endian machine we prefer
// LittleEndianExplicitTransferSyntax to BigEndianTransferSyntax.
if (gLocalByteOrder == EBO_LittleEndian) //defined in dcxfer.h
{
transferSyntaxes[0] = UID_LittleEndianExplicitTransferSyntax;
transferSyntaxes[1] = UID_BigEndianExplicitTransferSyntax;
}
else
{
transferSyntaxes[0] = UID_BigEndianExplicitTransferSyntax;
transferSyntaxes[1] = UID_LittleEndianExplicitTransferSyntax;
}
transferSyntaxes[2] = UID_LittleEndianImplicitTransferSyntax;
numTransferSyntaxes = 3;
break;
}
// accept any of the supported abstract syntaxes
OFCondition cond = ASC_acceptContextsWithPreferredTransferSyntaxes( assoc->params, (const char**)supportedAbstractSyntaxes, numberOfSupportedAbstractSyntaxes, (const char**)transferSyntaxes, numTransferSyntaxes);
return cond;
}
// ----------------------------------------------------------------------------
void WlmActivityManager::HandleAssociation( T_ASC_Association *assoc )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function takes care of handling the other DICOM application's request. After
// having accomplished all necessary steps, the association will be dropped and destroyed.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// Return Value : none.
{
// Receive a DIMSE command and perform all the necessary actions. (Note that ReceiveAndHandleCommands()
// will always return a value 'cond' for which 'cond.bad()' will be true. This value indicates that either
// some kind of error occurred, or that the peer aborted the association (DUL_PEERABORTEDASSOCIATION),
// or that the peer requested the release of the association (DUL_PEERREQUESTEDRELEASE).) (Also note
// that ReceiveAndHandleCommands() will never return EC_Normal.)
OFCondition cond = ReceiveAndHandleCommands( assoc );
// Clean up on association termination.
if( cond == DUL_PEERREQUESTEDRELEASE )
{
DCMWLM_INFO("Association Release");
ASC_acknowledgeRelease( assoc );
ASC_dropSCPAssociation( assoc );
}
else if( cond == DUL_PEERABORTEDASSOCIATION )
{
DCMWLM_INFO("Association Aborted");
}
else
{
OFString temp_str;
DCMWLM_ERROR("DIMSE failure (aborting association): " << DimseCondition::dump(temp_str, cond));
ASC_abortAssociation( assoc );
}
// Drop and destroy the association.
ASC_dropAssociation( assoc );
ASC_destroyAssociation( &assoc );
// Dump some information if required.
DCMWLM_INFO("+++++++++++++++++++++++++++++");
}
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::ReceiveAndHandleCommands( T_ASC_Association *assoc )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function takes care of handling the other DICOM application's request.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// Return Value : An OFCondition value 'cond' for which 'cond.bad()' will always be set
// indicating that either some kind of error occurred, or that the peer aborted
// the association (DUL_PEERABORTEDASSOCIATION), or that the peer requested the
// release of the association (DUL_PEERREQUESTEDRELEASE).
{
OFCondition cond = EC_Normal;
T_DIMSE_Message msg;
T_ASC_PresentationContextID presID;
// Tell object that manages the data source if it should fail on an invalid query or not.
dataSource->SetFailOnInvalidQuery( opt_failInvalidQuery );
// start a loop to be able to receive more than one DIMSE command
while( cond.good() )
{
// receive a DIMSE command over the network
cond = DIMSE_receiveCommand( assoc, DIMSE_BLOCKING, 0, &presID, &msg, NULL );
// check if peer did release or abort, or if we have a valid message
if( cond.good() )
{
// in case we received a valid message, process this command
// note that we can only process a C-ECHO-RQ, a C-FIND-RQ and a C-CANCEL-RQ
switch( msg.CommandField )
{
case DIMSE_C_ECHO_RQ:
// Process C-ECHO-Request
cond = HandleEchoSCP( assoc, &msg.msg.CEchoRQ, presID );
break;
case DIMSE_C_FIND_RQ:
// Process C-FIND-Request
cond = HandleFindSCP( assoc, &msg.msg.CFindRQ, presID );
break;
case DIMSE_C_CANCEL_RQ:
// Process C-CANCEL-Request
// This is a late cancel request, just ignore it
DCMWLM_WARN("Received late Cancel Request, ignoring");
break;
default:
// We cannot handle this kind of message.
// (Note that the condition will be returned and that the caller will abort the association.)
cond = DIMSE_BADCOMMANDTYPE;
break;
}
}
}
// return result
return( cond );
}
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::HandleEchoSCP( T_ASC_Association *assoc, T_DIMSE_C_EchoRQ *req, T_ASC_PresentationContextID presId )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : Having received a DIMSE C-ECHO-RQ message, this function takes care of sending a
// DIMSE C-ECHO-RSP message over the network connection.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// request - [in] The DIMSE C-ECHO-RQ message that was received.
// presID - [in] The ID of the presentation context which was specified in the PDV
// which contained the DIMSE command.
// Return Value : OFCondition value denoting success or error.
{
OFString temp_str;
// Dump information if required
DCMWLM_INFO("Received Echo Request");
DCMWLM_DEBUG(DIMSE_dumpMessage(temp_str, *req, DIMSE_INCOMING, NULL, presId));
// Send an echo response
OFCondition cond = DIMSE_sendEchoResponse( assoc, presId, req, STATUS_Success, NULL );
if( cond.bad() )
DCMWLM_ERROR("Echo SCP Failed: " << DimseCondition::dump(temp_str, cond));
// return return value
return cond;
}
// ----------------------------------------------------------------------------
struct WlmFindContextType
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This struct will be used in the following method to pass information
// from the class to the callback method. (Note that it cannot be defined
// in wltypdef.h because it makes use of class WlmDataSource which is
// unknown in wltypdef.h.)
{
WlmFindContextType() :
dataSource(NULL),
priorStatus(WLM_SUCCESS),
opt_sleepBeforeFindReq(0),
opt_sleepDuringFind(0),
opt_reqFilePath(),
opt_reqFileFormat("#t.dump")
{
ourAETitle[0] = '\0';
theirAETitle[0] = '\0';
};
WlmDataSource *dataSource;
WlmDataSourceStatusType priorStatus;
DIC_AE ourAETitle;
DIC_AE theirAETitle;
OFCmdUnsignedInt opt_sleepBeforeFindReq;
OFCmdUnsignedInt opt_sleepDuringFind;
/// directory to store request files to (if enabled, otherwise empty)
OFString opt_reqFilePath;
/// request file name format:
/// Several placeholder can be used by(denoted by #) :
/// #a: calling application entity title of the peer Storage SCU
/// #c: called application entity title used by the peer Storage SCU to address storescp
/// #p: patient ID if present, otherwise empty string
/// #t: timestamp in the format YYYYMMDDhhmmssffffff
/// Default is #t.dump
OFString opt_reqFileFormat;
};
// ----------------------------------------------------------------------------
OFCondition WlmActivityManager::HandleFindSCP( T_ASC_Association *assoc, T_DIMSE_C_FindRQ *request, T_ASC_PresentationContextID presID )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function processes a DIMSE C-FIND-RQ command that was
// received over the network connection.
// Parameters : assoc - [in] The association (network connection to another DICOM application).
// request - [in] The DIMSE C-FIND-RQ message that was received.
// presID - [in] The ID of the presentation context which was specified in the PDV
// which contained the DIMSE command.
// Return Value : OFCondition value denoting success or error.
{
// Create callback data which needs to be passed to DIMSE_findProvider later.
OFString temp_str;
WlmFindContextType context;
context.dataSource = dataSource;
context.priorStatus = WLM_PENDING;
ASC_getAPTitles( assoc->params, context.theirAETitle, sizeof(context.theirAETitle), context.ourAETitle, sizeof(context.ourAETitle), NULL, 0);
context.opt_sleepDuringFind = opt_sleepDuringFind;
context.opt_sleepBeforeFindReq = opt_sleepBeforeFindReq;
context.opt_reqFilePath = opt_requestFilePath;
context.opt_reqFileFormat = opt_requestFileFormat;
// Dump some information if required.
DCMWLM_INFO(DIMSE_dumpMessage(temp_str, *request, DIMSE_INCOMING, NULL, presID));
// Handle a C-FIND-Request on the provider side: receive the data set that represents the search mask
// over the network, try to select corresponding records that match the search mask from some data source
// (this is done within the callback function FindCallback() that will be passed) and send corresponding
// C-FIND-RSP messages to the other DICOM application this application is connected with. In the end,
// also send the C-FIND-RSP message that indicates that there are no more search results.
OFCondition cond = DIMSE_findProvider( assoc, presID, request, FindCallback, &context, opt_blockMode, opt_dimse_timeout );
if( cond.bad() )
DCMWLM_ERROR("Find SCP Failed: " << DimseCondition::dump(temp_str, cond));
// If option "--sleep-after" is set we need to sleep opt_sleepAfterFind
// seconds after having processed one C-FIND-Request message.
if( opt_sleepAfterFind > 0 )
{
DCMWLM_INFO("Sleeping (after find): " << opt_sleepAfterFind << " secs");
OFStandard::forceSleep( (unsigned int)opt_sleepAfterFind );
}
// return result
return cond;
}
// ----------------------------------------------------------------------------
void WlmActivityManager::AddProcessToTable( int pid, T_ASC_Association *assoc )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function adds a process to the table that stores process information.
// Parameters : pid - [in] the process id of the sub-process which was just started.
// assoc - [in] The association (network connection to another DICOM application).
// Return Value : none.
{
WlmProcessSlotType *ps;
// Allocate some memory for a new item in the list of processes.
ps = new WlmProcessSlotType ();
// Remember process information in the new item.
ASC_getPresentationAddresses( assoc->params, ps->peerName, sizeof(ps->peerName), NULL, 0 );
ASC_getAPTitles( assoc->params, ps->callingAETitle, sizeof(ps->callingAETitle), ps->calledAETitle, sizeof(ps->calledAETitle), NULL, 0);
ps->processId = pid;
ps->startTime = time(NULL);
ps->hasStorageAbility = OFFalse;
// Add new item to the beginning of the list.
processTable.push_back(ps);
}
// ----------------------------------------------------------------------------
void WlmActivityManager::RemoveProcessFromTable( int pid )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function removes one particular item from the table which stores all subprocess
// information. The item which shall be deleted will be identified by its process id.
// Parameters : pid - [in] process id.
// Return Value : none.
{
WlmProcessSlotType *ps = NULL;
// try to find item that corresponds to the given process id
OFListIterator(WlmProcessSlotType*) it = processTable.begin();
while ( it != processTable.end() )
{
ps = *it;
// if process can be found, delete it from list and free memory
if ( ps->processId == pid )
{
processTable.erase(it);
delete ps;
return;
}
it++;
}
// dump a warning if process could not be found in process table
DCMWLM_WARN("WlmActivityManager::RemoveProcessFromTable: Could not find process " << pid);
}
// ----------------------------------------------------------------------------
void WlmActivityManager::CleanChildren()
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function takes care of removing items referring to (terminated) subprocess
// from the table which stores all subprocess information. Three different versions
// for three different platforms are implemented.
// Parameters : none.
// Return Value : none.
{
#ifdef HAVE_WAITPID // PLATFORMS THAT HAVE waitpid()
int options = WNOHANG;
int stat_loc;
int child=1;
while( child > 0 )
{
// determine status for child processes
child = (int)(waitpid(-1, &stat_loc, options));
if( child == 0 )
{
// child not yet finished
}
else if( child < 0 )
{
if( errno == ECHILD )
{
// no children
}
else
{
DCMWLM_WARN("WlmActivityManager::CleanChildren: Wait for child failed");
}
}
else if( child > 0 )
{
// dump some information if required
DCMWLM_INFO("Cleaned up after child (" << child << ")");
// remove item from process table
RemoveProcessFromTable( child );
}
}
#else
// for other platforms without waitpid() and without wait3() we
// don't know how to cleanup after children. Dump an error message.
DCMWLM_WARN("WlmActivityManager::CleanChildren: Cannot wait for child processes");
#endif
}
// ----------------------------------------------------------------------------
static OFString AddStatusDetail( DcmDataset **statusDetail, const DcmElement *elem )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function adds information to the status detail information container.
// Parameters : statusDetail - [inout] This variable can be used to capture detailed information
// with regard to the status information which is captured in the
// status element (0000,0900) of the C-FIND-RSP message.
// elem - [in] Element that shall be added to the status detail information
// container.
// Return Value : none.
{
// If no element was passed, return to the caller.
if( elem == NULL )
return "";
OFOStringStream log;
DcmAttributeTag *at;
DcmLongString *lo;
// Create the container object if necessary
if( *statusDetail == NULL )
*statusDetail = new DcmDataset();
// Determine the element's data type
DcmVR vr( elem->ident() );
// Dump some information
log << "Status Detail:" << OFendl;
// Depending on the element's identification, insert different
// types of objects into the container.
switch( elem->ident() )
{
case EVR_LO:
lo = new DcmLongString( *((DcmLongString*)elem) );
if( lo->getLength() > vr.getMaxValueLength() )
{
log << "AddStatusDetail: INTERNAL ERROR: value too large (max " << (unsigned long)(vr.getMaxValueLength())
<< ") for " << vr.getVRName() << ": " << OFendl;
}
(*statusDetail)->insert( lo, OFTrue /*replaceOld*/ );
lo->print(log);
break;
case EVR_AT:
at = new DcmAttributeTag( *((DcmAttributeTag*)elem) );
if( at->getLength() > vr.getMaxValueLength() )
{
log << "AddStatusDetail: INTERNAL ERROR: value too large (max " << (unsigned long)(vr.getMaxValueLength())
<< ") for " << vr.getVRName() << ": " << OFendl;
}
(*statusDetail)->insert( at, OFTrue /*replaceOld*/ );
at->print(log);
break;
default:
// other status detail is not supported
log << "AddStatusDetail: unsupported status detail type: " << vr.getVRName() << OFendl;
break;
}
log << OFStringStream_ends;
OFSTRINGSTREAM_GETOFSTRING(log, ret)
return ret;
}
// ----------------------------------------------------------------------------
static void FindCallback( void *callbackData, OFBool cancelled, T_DIMSE_C_FindRQ * /*request*/, DcmDataset *requestIdentifiers, int responseCount, T_DIMSE_C_FindRSP *response, DcmDataset **responseIdentifiers, DcmDataset **statusDetail )
// Date : December 10, 2001
// Author : Thomas Wilkens
// Task : This function will try to select another record from a database which matches the
// search mask that was passed. In certain circumstances, the selected information
// will be dumped to stdout.
// Parameters : callbackData - [in] data for this callback function
// cancelled - [in] Specifies if we encountered a C-CANCEL-RQ. In such a case
// the search shall be cancelled.
// request - [in] The original C-FIND-RQ message.
// requestIdentifiers - [in] Contains the search mask.
// responseCount - [in] If we labelled C-FIND-RSP messages consecutively, starting
// at label "1", this number would provide the label's number.
// response - [inout] the C-FIND-RSP message (will be sent after the call to
// this function). The status field will be set in this function.
// responseIdentifiers - [inout] Will in the end contain the next record that matches the
// search mask (captured in requestIdentifiers)
// statusDetail - [inout] This variable can be used to capture detailed information
// with regard to the status information which is captured in the
// status element (0000,0900) of the C-FIND-RSP message.
// Return Value : OFCondition value denoting success or error.
{
WlmDataSourceStatusType dbstatus;
WlmFindContextType *context = NULL;
WlmDataSource *dataSource = NULL;
OFCmdUnsignedInt opt_sleepDuringFind = 0;
OFCmdUnsignedInt opt_sleepBeforeFindReq = 0;
// Recover contents of context.
context = (WlmFindContextType*)callbackData;
dataSource = context->dataSource;
opt_sleepDuringFind = context->opt_sleepDuringFind;
opt_sleepBeforeFindReq = context->opt_sleepBeforeFindReq;
// Determine the data source's current status.
dbstatus = context->priorStatus;
// If this is the first time this callback function is called, we need to do something special
if( responseCount == 1 )
{
// Dump some information if required
DCMWLM_INFO("Find SCP Request Identifiers:" << OFendl
<< DcmObject::PrintHelper(*requestIdentifiers) << OFendl
<< "=============================");
// If desired, dump request to file
if (!context->opt_reqFilePath.empty())
{
DCMWLM_INFO("Storing request dataset to file");
storeRequestToFile(*requestIdentifiers, context->theirAETitle, context->ourAETitle, context->opt_reqFilePath, context->opt_reqFileFormat);
}
// If desired, sleep before actually trying to get answer for FIND request
if (opt_sleepBeforeFindReq > 0)
{
DCMWLM_INFO("SLEEPING (before evaluating find request): " << opt_sleepBeforeFindReq << " secs");
OFStandard::forceSleep((unsigned int)opt_sleepBeforeFindReq);
}
// Determine the records that match the search mask. After this call, the
// matching records will be available through dataSource->nextFindResponse(...).)
dbstatus = dataSource->StartFindRequest( *requestIdentifiers );
if( !( dbstatus == WLM_PENDING || dbstatus == WLM_PENDING_WARNING || dbstatus == WLM_SUCCESS) )
DCMWLM_DEBUG("Worklist Database: StartFindRequest() Failed (" << DU_cfindStatusString((Uint16)dbstatus) << ")");
DCMWLM_INFO("=============================");
}
// If opt_sleepDuringFind is set the application is supposed
// to sleep n seconds during the find process.
if( opt_sleepDuringFind > 0 )
{
DCMWLM_INFO("SLEEPING (during find): " << opt_sleepDuringFind << " secs");
OFStandard::forceSleep((unsigned int)opt_sleepDuringFind);
}
// If we encountered a C-CANCEL-RQ and if we have pending
// responses, the search shall be cancelled
if( cancelled && ( dbstatus == WLM_PENDING || dbstatus == WLM_PENDING_WARNING ) )
dbstatus = dataSource->CancelFindRequest();
// If the dbstatus is "pending" try to select another matching record.
if( dbstatus == WLM_PENDING || dbstatus == WLM_PENDING_WARNING )
{
// Get the next matching record/data set
*responseIdentifiers = dataSource->NextFindResponse( dbstatus );
}
// Dump some information if required
if (DCM_dcmwlmLogger.isEnabledFor(OFLogger::INFO_LOG_LEVEL))
{
DCMWLM_INFO("Worklist Find SCP Response " << responseCount << " (" << DU_cfindStatusString((Uint16)dbstatus) << ")");
if( *responseIdentifiers != NULL && (*responseIdentifiers)->card() > 0 )
{
DCMWLM_INFO(DcmObject::PrintHelper(**responseIdentifiers) << OFendl << "-----------------------------");
}
}
// Set response status
response->DimseStatus = OFstatic_cast(DIC_US, dbstatus);
// Delete status detail information if there is some
if( *statusDetail != NULL )
{
delete *statusDetail;
*statusDetail = NULL;
}
// Depending on the data source's current status, we may have to
// return status detail information.
switch( dbstatus )
{
case WLM_FAILED_IDENTIFIER_DOES_NOT_MATCH_SOP_CLASS:
case WLM_FAILED_UNABLE_TO_PROCESS:
DCMWLM_WARN(AddStatusDetail( statusDetail, dataSource->GetOffendingElements()));
DCMWLM_WARN(AddStatusDetail( statusDetail, dataSource->GetErrorComments()));
break;
case WLM_REFUSED_OUT_OF_RESOURCES:
// out of resources may only have error comment detail
DCMWLM_WARN(AddStatusDetail( statusDetail, dataSource->GetErrorComments()));
break;
default:
// other status codes may not have any status detail
break;
}
}
// ----------------------------------------------------------------------------
static void storeRequestToFile(DcmDataset& request, const OFString& callingAE, const OFString& calledAE, const OFString& reqFilePath, const OFString& reqFileFormat)
{
OFString fileName = reqFileFormat;
// Called Application Entity Title
OFStringUtil::replace_all(fileName, WLM_CALLED_AETITLE_PLACEHOLDER, calledAE);
// Calling Application Entity Title
OFStringUtil::replace_all(fileName, WLM_CALLING_AETITLE_PLACEHOLDER, callingAE);
// Process ID
int processID = dcmtk::log4cplus::internal::get_process_id();
OFOStringStream convInt;
convInt << processID;
OFStringUtil::replace_all(fileName, WLM_PROCESS_ID_PLACEHOLDER, convInt.str().c_str());
// Timestamp
if (reqFileFormat.find("#t") != OFString_npos)
{
OFString ts;
OFDateTime dt;
dt.setCurrentDateTime();
dt.getISOFormattedDateTime(ts, OFTrue /* seconds */, OFTrue /* fraction */, OFFalse /* no tz */, OFFalse /* no delimiters */, "" /* no date / time separator */);
OFStringUtil::replace_all(ts, ".", "");
OFStringUtil::replace_all(fileName, WLM_TIMESTAMP_PLACEHOLDER, ts);
}
// Patient ID goes last since it might contain placeholders again (".#x...)"
OFString patientID;
request.findAndGetOFStringArray(DCM_PatientID, patientID);
OFStringUtil::replace_all(fileName, WLM_PATIENT_ID_PLACEHOLDER, patientID);
// Finally store file
STD_NAMESPACE ofstream outputStream;
OFString fullPath;
OFStandard::combineDirAndFilename(fullPath, reqFilePath, fileName, OFFalse /* no empty dir name, shouldnt happen anyway...*/);
outputStream.open(fullPath.c_str());
if (outputStream.good())
{
DcmObject::PrintHelper printer(request);
outputStream << printer;
outputStream.close();
}
if (!outputStream)
{
/* report details on file i/o error */
DCMWLM_ERROR("Could not write request to file: " << fileName << ": " << OFStandard::getLastSystemErrorCode().message());
}
}
|