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
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "gdcmULConnectionManager.h"
#include "gdcmUserInformation.h"
#include "gdcmULEvent.h"
#include "gdcmPDUFactory.h"
#include "gdcmReader.h"
#include "gdcmAAssociateRQPDU.h"
#include "gdcmAttribute.h"
#include "gdcmBaseRootQuery.h"
#include "gdcmDataSetEvent.h"
#include "gdcmAReleaseRPPDU.h"
#include "gdcmULBasicCallback.h"
#include <vector>
#include <socket++/echo.h>//for setting up the local socket
#include "gdcmTrace.h"
#include "gdcmPrinter.h"
namespace gdcm
{
namespace network
{
ULConnectionManager::ULConnectionManager()
{
mConnection = nullptr;
mSecondaryConnection = nullptr;
}
ULConnectionManager::~ULConnectionManager()
{
if (mConnection != nullptr)
{
delete mConnection;
mConnection = nullptr;
}
if (mSecondaryConnection != nullptr)
{
delete mSecondaryConnection;
mSecondaryConnection = nullptr;
}
}
bool ULConnectionManager::EstablishConnection(const std::string& inAETitle,
const std::string& inConnectAETitle,
const std::string& inComputerName, long inIPAddress,
unsigned short inConnectPort, double inTimeout,
std::vector<PresentationContext> const & pcVector)
{
//generate a ULConnectionInfo object
UserInformation userInfo;
ULConnectionInfo connectInfo;
if (inConnectAETitle.size() > 16)
return false;//too long an AETitle, probably need better failure message
if (inAETitle.size() > 16) return false; //as above
if (!connectInfo.Initialize(userInfo, inConnectAETitle.c_str(),
inAETitle.c_str(), inIPAddress, inConnectPort, inComputerName))
{
return false;
}
if (mConnection != nullptr)
{
delete mConnection;
}
mConnection = new ULConnection(connectInfo);
mConnection->GetTimer().SetTimeout(inTimeout);
// Warning PresentationContextID is important
// this is a sort of uniq key used by the receiver. Eg.
// if one push_pack
// (1, Secondary)
// (1, Verification)
// Then the last one is preferred (DCMTK 3.5.5)
// The following only works for C-STORE / C-ECHO
// however it does not make much sense to add a lot of abstract syntax
// when doing only C-ECHO.
// FIXME is there a way to know here if we are in C-ECHO ?
//there is now!
//the presentation context will now be part of the connection, so that this
//initialization for the association-rq will use parameters from the connection
#if 0
AbstractSyntax as;
std::vector<PresentationContextRQ> pcVector;
PresentationContextRQ pc;
TransferSyntaxSub ts;
ts.SetNameFromUID( UIDs::ImplicitVRLittleEndianDefaultTransferSyntaxforDICOM );
pc.AddTransferSyntax( ts );
ts.SetNameFromUID( UIDs::ExplicitVRLittleEndian );
//ts.SetNameFromUID( UIDs::JPEGLosslessNonHierarchicalFirstOrderPredictionProcess14SelectionValue1DefaultTransferSyntaxforLosslessJPEGImageCompression);
//pc.AddTransferSyntax( ts ); // we do not support explicit (mm)
switch (inConnectionType){
case eEcho:
pc.SetPresentationContextID( eVerificationSOPClass );
as.SetNameFromUID( UIDs::VerificationSOPClass );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
break;
case eFind:
pc.SetPresentationContextID( ePatientRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::PatientRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID(eStudyRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::StudyRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( ePatientStudyOnlyQueryRetrieveInformationModelFINDRetired );
as.SetNameFromUID( UIDs::PatientStudyOnlyQueryRetrieveInformationModelFINDRetired );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eModalityWorklistInformationModelFIND );
as.SetNameFromUID( UIDs::ModalityWorklistInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eGeneralPurposeWorklistInformationModelFIND );
as.SetNameFromUID( UIDs::GeneralPurposeWorklistInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
break;
//our spec does not require C-GET support
// case eGet:
// break;
/* case eMove:
// should we also send stuff from FIND ?
// E: Move PresCtx but no Find (accepting for now)
pc.SetPresentationContextID( ePatientRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::PatientRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
// move
pc.SetPresentationContextID( ePatientRootQueryRetrieveInformationModelMOVE );
as.SetNameFromUID( UIDs::PatientRootQueryRetrieveInformationModelMOVE );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eStudyRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::StudyRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eStudyRootQueryRetrieveInformationModelMOVE );
as.SetNameFromUID( UIDs::StudyRootQueryRetrieveInformationModelMOVE );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
break;*/
case eStore:
std::string uidName;
pc.SetPresentationContextID( PresentationContextRQ::AssignPresentationContextID(inDS, uidName) );
if (pc.GetPresentationContextID() != eVerificationSOPClass){
as.SetNameFromUIDString( uidName );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
}
break;
}
if (pcVector.empty()){
gdcmWarningMacro("Unable to establish presentation context; ensure that dataset has tags 0x8,0x16 and 0x8,0x18 defined." <<std::endl);
return false;
}
#endif
mConnection->SetPresentationContexts(pcVector);
//now, try to establish a connection by starting the transition table and the event loop.
//here's the thing
//if there's nothing on the event loop, assume that it's done & the function can exit.
//otherwise, keep rolling the event loop
ULEvent theEvent(eAASSOCIATERequestLocalUser, nullptr);
//no callback, assume that no data is transferred back, because there shouldn't be any
EStateID theState = RunEventLoop(theEvent, mConnection, nullptr, false);
if(theState != eSta6TransferReady)
{
std::vector<BasePDU*> const & thePDUs = theEvent.GetPDUs();
for( std::vector<BasePDU*>::const_iterator itor
= thePDUs.begin(); itor != thePDUs.end(); itor++)
{
//assert(*itor);
if (*itor == nullptr) continue; //can have a nulled pdu, apparently
(*itor)->Print(Trace::GetErrorStream());
}
}
else if (Trace::GetDebugFlag())
{
std::vector<BasePDU*> const & thePDUs = theEvent.GetPDUs();
for( std::vector<BasePDU*>::const_iterator itor
= thePDUs.begin(); itor != thePDUs.end(); itor++)
{
assert(*itor);
if (*itor == nullptr) continue; //can have a nulled pdu, apparently
(*itor)->Print(Trace::GetDebugStream());
}
}
return (theState == eSta6TransferReady);//ie, finished the transitions
}
/// returns true for above reasons, but contains the special 'move' port
bool ULConnectionManager::EstablishConnectionMove(const std::string& inAETitle,
const std::string& inConnectAETitle,
const std::string& inComputerName, long inIPAddress,
uint16_t inConnectPort, double inTimeout,
uint16_t inReturnPort,
std::vector<PresentationContext> const & pcVector)
{
gdcmDebugMacro( "Start EstablishConnectionMove" );
//generate a ULConnectionInfo object
UserInformation userInfo;
ULConnectionInfo connectInfo;
if (inConnectAETitle.size() > 16) return false;//too long an AETitle, probably need better failure message
if (inAETitle.size() > 16) return false; //as above
if (!connectInfo.Initialize(userInfo,inAETitle.c_str(), inConnectAETitle.c_str(),
inIPAddress, inReturnPort, inComputerName))
{
gdcmDebugMacro( "Could not Initialize connectInfo" );
return false;
}
gdcmDebugMacro( "SCP: First connection established on port " << inReturnPort );
if (mSecondaryConnection != nullptr)
{
gdcmDebugMacro( "delete mSecondaryConnection" );
delete mSecondaryConnection;
}
mSecondaryConnection = new ULConnection(connectInfo);
mSecondaryConnection->GetTimer().SetTimeout(inTimeout);
//generate a ULConnectionInfo object
UserInformation userInfo2;
ULConnectionInfo connectInfo2;
if (inConnectAETitle.size() > 16) return false;//too long an AETitle, probably need better failure message
if (inAETitle.size() > 16) return false; //as above
if (!connectInfo2.Initialize(userInfo2, inConnectAETitle.c_str(),
inAETitle.c_str(), inIPAddress, inConnectPort, inComputerName))
{
gdcmDebugMacro( "Could not Initialize connectInfo2" );
return false;
}
gdcmDebugMacro( "SCU: Second connection established on port " << inConnectPort );
if (mConnection!= nullptr)
{
gdcmDebugMacro( "delete mConnection" );
delete mConnection;
}
mConnection = new ULConnection(connectInfo2);
mConnection->GetTimer().SetTimeout(inTimeout);
// Warning PresentationContextID is important
// this is a sort of uniq key used by the receiver. Eg.
// if one push_pack
// (1, Secondary)
// (1, Verification)
// Then the last one is preferred (DCMTK 3.5.5)
// The following only works for C-STORE / C-ECHO
// however it does not make much sense to add a lot of abstract syntax
// when doing only C-ECHO.
// FIXME is there a way to know here if we are in C-ECHO ?
//there is now!
//the presentation context will now be part of the connection, so that this
//initialization for the association-rq will use parameters from the connection
AbstractSyntax as;
#if 0
std::vector<PresentationContextRQ> pcVector;
PresentationContextRQ pc;
TransferSyntaxSub ts;
ts.SetNameFromUID( UIDs::ImplicitVRLittleEndianDefaultTransferSyntaxforDICOM );
pc.AddTransferSyntax( ts );
ts.SetNameFromUID( UIDs::ExplicitVRLittleEndian );
//pc.AddTransferSyntax( ts ); // we do not support explicit (mm)
// should we also send stuff from FIND ?
// E: Move PresCtx but no Find (accepting for now)
pc.SetPresentationContextID( ePatientRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::PatientRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
// move
pc.SetPresentationContextID( ePatientRootQueryRetrieveInformationModelMOVE );
as.SetNameFromUID( UIDs::PatientRootQueryRetrieveInformationModelMOVE );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eStudyRootQueryRetrieveInformationModelFIND );
as.SetNameFromUID( UIDs::StudyRootQueryRetrieveInformationModelFIND );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
pc.SetPresentationContextID( eStudyRootQueryRetrieveInformationModelMOVE );
as.SetNameFromUID( UIDs::StudyRootQueryRetrieveInformationModelMOVE );
pc.SetAbstractSyntax( as );
pcVector.push_back(pc);
#endif
mConnection->SetPresentationContexts(pcVector);
//now, try to establish a connection by starting the transition table and the event loop.
//here's the thing
//if there's nothing on the event loop, assume that it's done & the function can exit.
//otherwise, keep rolling the event loop
ULEvent theEvent(eAASSOCIATERequestLocalUser, nullptr);
std::vector<DataSet> empty;
//No data should be returned when connections are established
EStateID theState = RunEventLoop(theEvent, mConnection, nullptr, false);
if (Trace::GetDebugFlag())
{
std::vector<BasePDU*> thePDUs = theEvent.GetPDUs();
std::vector<BasePDU*>::iterator itor;
for (itor = thePDUs.begin(); itor != thePDUs.end(); itor++)
{
if (*itor == NULL) continue; //can have a nulled pdu, apparently
(*itor)->Print(Trace::GetStream());
}
}
return (theState == eSta6TransferReady);//ie, finished the transitions
}
//send the Data PDU associated with Echo (ie, a default DataPDU)
//this lets the user confirm that the connection is alive.
//the user should look to cout to see the response of the echo command
std::vector<PresentationDataValue> ULConnectionManager::SendEcho(){
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateCEchoPDU(*mConnection);//pass NULL for C-Echo
ULEvent theEvent(ePDATArequest, theDataPDU);
EStateID theState = RunEventLoop(theEvent, mConnection, nullptr, false);
//theEvent should contain the PDU for the echo!
if (theState == eSta6TransferReady){//ie, finished the transitions
return PDUFactory::GetPDVs(theEvent.GetPDUs());
} else {
std::vector<PresentationDataValue> empty;
return empty;
}
}
std::vector<DataSet> ULConnectionManager::SendMove(const BaseRootQuery* inRootQuery)
{
ULBasicCallback theCallback;
SendMove(inRootQuery, &theCallback);
return theCallback.GetDataSets();
}
bool ULConnectionManager::SendMove(const BaseRootQuery* inRootQuery,
ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
gdcmErrorMacro( "mConnection is NULL" );
return false;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateCMovePDU( *mConnection, inRootQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
EStateID stateid = RunMoveEventLoop(theEvent, inCallback);
gdcmDebugMacro( "Final StateID: " << (int) stateid );
return stateid == gdcm::network::eSta6TransferReady;
}
std::vector<DataSet> ULConnectionManager::SendFind(const BaseRootQuery* inRootQuery)
{
ULBasicCallback theCallback;
SendFind(inRootQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendFind(const BaseRootQuery* inRootQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateCFindPDU( *mConnection, inRootQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendStore(const File &file, std::istream * pStream /*= NULL*/, std::streampos dataSetOffset/*=0*/ )
{
ULBasicCallback theCallback;
SendStore(file, &theCallback, pStream, dataSetOffset );
return theCallback.GetResponses();
}
void ULConnectionManager::SendStore(const File & file, ULConnectionCallback* inCallback, std::istream * pStream /*= NULL*/, std::streampos dataSetOffset/*=0*/ )
{
if (mConnection == nullptr)
{
return;
}
bool writeDataSet = pStream == nullptr ;
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateCStoreRQPDU(*mConnection, file, writeDataSet);
const DataSet* inDataSet = &file.GetDataSet();
DataSetEvent dse( inDataSet );
this->InvokeEvent( dse );
ULEvent theEvent(ePDATArequest, theDataPDU, pStream, dataSetOffset );
EStateID theState = RunEventLoop(theEvent, mConnection, inCallback, false);
assert( theState == eSta6TransferReady || theState == eStaDoesNotExist ); (void)theState;
}
std::vector<DataSet> ULConnectionManager::SendNEventReport (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNEventReport(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNEventReport (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNEventReportPDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendNGet (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNGet(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNGet (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNGetPDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendNSet (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNSet(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNSet (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNSetPDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendNAction (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNAction(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNAction (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNActionPDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendNCreate (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNCreate(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNCreate (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNCreatePDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
std::vector<DataSet> ULConnectionManager::SendNDelete (const BaseQuery* inQuery)
{
ULBasicCallback theCallback;
SendNDelete(inQuery, &theCallback);
return theCallback.GetDataSets();
}
void ULConnectionManager::SendNDelete (const BaseQuery* inQuery, ULConnectionCallback* inCallback)
{
if (mConnection == nullptr)
{
return;
}
std::vector<BasePDU*> theDataPDU = PDUFactory::CreateNDeletePDU( *mConnection, inQuery );
ULEvent theEvent(ePDATArequest, theDataPDU);
RunEventLoop(theEvent, mConnection, inCallback, false);
}
bool ULConnectionManager::BreakConnection(const double& inTimeOut){
std::vector<DataSet> theResult;
if (mConnection == nullptr){
return false;
}
BasePDU* thePDU = PDUFactory::ConstructReleasePDU();
ULEvent theEvent(eARELEASERequest, thePDU);
mConnection->GetTimer().SetTimeout(inTimeOut);
//assume no data coming back when dying, no need for callback
EStateID theState = RunEventLoop(theEvent, mConnection, nullptr, false);
return (theState == eSta1Idle);//ie, finished the transitions
}
void ULConnectionManager::BreakConnectionNow(){
BasePDU* thePDU = PDUFactory::ConstructAbortPDU();
ULEvent theEvent(eAABORTRequest, thePDU);
//assume no data coming back when dying, no need for callback
EStateID theState = RunEventLoop(theEvent, mConnection, nullptr, false);
(void)theState;
}
//event handler loop for move-- will interweave the two event loops,
//one for storescp and the other for movescu. Perhaps complicated, but
//avoids starting a second process.
EStateID ULConnectionManager::RunMoveEventLoop(ULEvent& currentEvent, ULConnectionCallback* inCallback){
gdcmDebugMacro( "Start RunMoveEventLoop" );
EStateID theState = eStaDoesNotExist;
bool waitingForEvent;
EEventID raisedEvent;
bool receivingData = false;
bool justWaiting = false;
//when receiving data from a find, etc, then justWaiting is true and only receiving is done
//eventually, could add cancel into the mix... but that would be through a callback or something similar
do {
gdcmDebugMacro( "Before mTransitions.HandleEvent" );
if (!justWaiting){
mTransitions.HandleEvent(this,currentEvent, *mConnection, waitingForEvent, raisedEvent);
}
theState = mConnection->GetState();
std::istream &is = *mConnection->GetProtocol();
//std::ostream &os = *mConnection->GetProtocol();
//When doing a C-MOVE we receive the Requested DataSet over
//another channel (technically this is send to an SCP)
//in our case we use another port to receive it.
EStateID theCStoreStateID = eSta6TransferReady;
bool secondConnectionEstablished = false;
gdcmDebugMacro( "Before mSecondaryConnection.GetProtocol" );
if (mSecondaryConnection->GetProtocol() == nullptr){
//establish the connection
//can fail if is_readready doesn't return true, ie, the connection
//wasn't opened on the other side because the other side isn't sending data yet
//for whatever reason (maybe there's nothing to get?)
gdcmDebugMacro( "Before mSecondaryConnection.InitializeIncomingConnection" );
secondConnectionEstablished =
mSecondaryConnection->InitializeIncomingConnection();
}
gdcmDebugMacro( "After mSecondaryConnection.InitializeIncomingConnection: " <<
"secondConnectionEstablished=" << secondConnectionEstablished <<
" GetState() =" << (int)mSecondaryConnection->GetState()
);
if (!secondConnectionEstablished )
{
gdcmErrorMacro( "Could not establish 2nd connection" );
//return eStaDoesNotExist;
}
if (secondConnectionEstablished &&
(mSecondaryConnection->GetState()== eSta1Idle ||
mSecondaryConnection->GetState() == eSta2Open)){
ULEvent theCStoreEvent(eEventDoesNotExist, nullptr);//have to fill this in, we're in passive mode now
theCStoreStateID = RunEventLoop(theCStoreEvent, mSecondaryConnection, inCallback, true);
}
gdcmDebugMacro( "After mSecondaryConnection / RunEventLoop: " << (int)theCStoreStateID );
//just as for the regular event loop, but we have to alternate between the connections.
//it may be that nothing comes back over the is connection, but lots over the
//isSCP connection. So, if is fails, meh. But if isSCP fails, that's not so meh.
//we care only about the datasets coming back from isSCP, ultimately, though the datasets
//from is will contain progress info.
std::vector<BasePDU*> incomingPDUs;
if (waitingForEvent){
while (waitingForEvent)
{//loop for reading in the events that come down the wire
uint8_t itemtype = 0x0;
gdcmDebugMacro( "Waiting for ItemType (#2)" );
is.read( (char*)&itemtype, 1 );
BasePDU* thePDU = PDUFactory::ConstructPDU(itemtype);
if (thePDU != nullptr)
{
incomingPDUs.push_back(thePDU);
thePDU->Read(is);
gdcmDebugMacro("PDU code: " << static_cast<int>(itemtype) << std::endl);
if (Trace::GetDebugFlag())
{
thePDU->Print(Trace::GetStream());
}
if (thePDU->IsLastFragment()) waitingForEvent = false;
}
else
{
waitingForEvent = false; //because no PDU means not waiting anymore
}
}
//now, we have to figure out the event that just happened based on the PDU that was received.
if (!incomingPDUs.empty())
{
currentEvent.SetEvent(PDUFactory::DetermineEventByPDU(incomingPDUs[0]));
currentEvent.SetPDU(incomingPDUs);
if (mConnection->GetTimer().GetHasExpired())
{
currentEvent.SetEvent(eARTIMTimerExpired);
}
if (theState == eSta6TransferReady){//ie, finished the transitions
//with find, the results now come down the wire.
//the pdu we already have from the event will tell us how many to expect.
uint32_t pendingDE1, pendingDE2, success, theVal;
pendingDE1 = 0xff01;
pendingDE2 = 0xff00;
success = 0x0000;
theVal = pendingDE1;
uint32_t theNumLeft = 0; // the number of pending sub operations left.
//so here's the thing: dcmtk responds with 'success' as it first cmove rsp
//which is retarded and, I think, wrong. However, dcm4chee responds with 'pending'
//so, we look either for pending, or for the number of operations left
// (tag 0000, 1020) if the value is success, and that number should be 0.
DataSet theRSP = PresentationDataValue::ConcatenatePDVBlobs(PDUFactory::GetPDVs(currentEvent.GetPDUs()));
if (Trace::GetDebugFlag())
{
Printer thePrinter;
Trace::GetStream() << "Response: " << std::endl;
thePrinter.PrintDataSet(theRSP, Trace::GetStream());
Trace::GetStream() << std::endl;
}
if (theRSP.FindDataElement(Tag(0x0, 0x0800))){
DataElement const & de = theRSP.GetDataElement(Tag(0x0,0x0800));
Attribute<0x0,0x0800> at;
at.SetFromDataElement( de );
unsigned short datasettype = at.GetValue();
assert( datasettype == 0x0101 || datasettype == 0x1 ); (void)datasettype;
}
if (theRSP.FindDataElement(Tag(0x0, 0x0900))){
DataElement const & de = theRSP.GetDataElement(Tag(0x0,0x0900));
Attribute<0x0,0x0900> at;
at.SetFromDataElement( de );
theVal = at.GetValues()[0];
//if theVal is Pending or Success, then we need to enter the loop below,
//because we need the data PDUs.
//so, the loop below is a do/while loop; there should be at least a second packet
//with the dataset, even if the status is 'success'
//success == 0000H
}
uint32_t theCommandCode = 0;
if (theRSP.FindDataElement(Tag(0x0,0x0100))){
DataElement const & de = theRSP.GetDataElement(Tag(0x0,0x0100));
Attribute<0x0,0x0100> at;
at.SetFromDataElement( de );
theCommandCode = at.GetValues()[0];
}
if (theRSP.FindDataElement(Tag(0x0, 0x1020))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x1020));
Attribute<0x0,0x1020> at;
at.SetFromDataElement( de );
theNumLeft = at.GetValues()[0];
//if theVal is Pending or Success, then we need to enter the loop below,
//because we need the data PDUs.
//so, the loop below is a do/while loop; there should be at least a second packet
//with the dataset, even if the status is 'success'
//success == 0000H
}
if (theVal != pendingDE1 && theVal != pendingDE2 && theVal != success){
//check for other error fields
const ByteValue *err1 = nullptr, *err2 = nullptr;
gdcmErrorMacro( "Transfer failed with code " << theVal << std::endl);
switch (theVal){
case 0xA701:
gdcmErrorMacro( "Refused: Out of Resources Unable to calculate number of matches" << std::endl);
break;
case 0xA702:
gdcmErrorMacro( "Refused: Out of Resources Unable to perform sub-operations" << std::endl);
break;
case 0xA801:
gdcmErrorMacro( "Refused: Move Destination unknown" << std::endl);
break;
case 0xA900:
gdcmErrorMacro( "Identifier does not match SOP Class" << std::endl);
break;
case 0xAA00:
gdcmErrorMacro( "None of the frames requested were found in the SOP Instance" << std::endl);
break;
case 0xAA01:
gdcmErrorMacro( "Unable to create new object for this SOP class" << std::endl);
break;
case 0xAA02:
gdcmErrorMacro( "Unable to extract frames" << std::endl);
break;
case 0xAA03:
gdcmErrorMacro( "Time-based request received for a non-time-based original SOP Instance. " << std::endl);
break;
case 0xAA04:
gdcmErrorMacro( "Invalid Request" << std::endl);
break;
case 0xFE00:
gdcmErrorMacro( "Sub-operations terminated due to Cancel Indication" << std::endl);
break;
case 0xB000:
gdcmErrorMacro( "Sub-operations Complete One or more Failures or Warnings" << std::endl);
break;
default:
gdcmErrorMacro( "Unable to process" << std::endl);
break;
}
if (theRSP.FindDataElement(Tag(0x0,0x0901))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x0901));
err1 = de.GetByteValue();
gdcmErrorMacro( " Tag 0x0,0x901 reported as " << *err1 << std::endl); (void)err1;
}
if (theRSP.FindDataElement(Tag(0x0,0x0902))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x0902));
err2 = de.GetByteValue();
gdcmErrorMacro( " Tag 0x0,0x902 reported as " << *err2 << std::endl); (void)err2;
}
}
receivingData = false;
justWaiting = false;
if (theVal == pendingDE1 || theVal == pendingDE2 || (theVal == success && theNumLeft != 0)) {
receivingData = true; //wait for more data as more PDUs (findrsps, for instance)
justWaiting = true;
waitingForEvent = true;
//ok, if we're pending, then let's open the cstorescp connection here
//(if it's not already open), and then from here start a storescp event loop.
//just don't listen to the cmove event loop until this is done.
//could cause a pileup on the main connection, I suppose.
//could also report the progress here, if we liked.
if (theCommandCode == 0x8021){//cmove response, so prep the retrieval loop on the back connection
bool dataSetCountIncremented = true;//false once the number of incoming datasets doesn't change.
if (mSecondaryConnection->GetProtocol() == nullptr){
//establish the connection
//can fail if is_readready doesn't return true, ie, the connection
//wasn't opened on the other side because the other side isn't sending data yet
//for whatever reason (maybe there's nothing to get?)
secondConnectionEstablished =
mSecondaryConnection->InitializeIncomingConnection();
if (secondConnectionEstablished &&
(mSecondaryConnection->GetState()== eSta1Idle ||
mSecondaryConnection->GetState() == eSta2Open)){
ULEvent theCStoreEvent(eEventDoesNotExist, nullptr);//have to fill this in, we're in passive mode now
theCStoreStateID = RunEventLoop(theCStoreEvent, mSecondaryConnection, inCallback, true);
} else {//something broke, can't establish secondary move connection here
gdcmErrorMacro( "Unable to establish secondary connection with server, aborting." << std::endl);
return eStaDoesNotExist;
}
}
if (secondConnectionEstablished){
while (theCStoreStateID == eSta6TransferReady && dataSetCountIncremented){
ULEvent theCStoreEvent(eEventDoesNotExist, nullptr);//have to fill this in, we're in passive mode now
//now, get data from across the network
theCStoreStateID = RunEventLoop(theCStoreEvent, mSecondaryConnection, inCallback, true);
if (inCallback){
dataSetCountIncremented = true;
inCallback->ResetHandledDataSet();
} else {
dataSetCountIncremented = false;
}
}
}
//force the abort from our side
// ULEvent theCStoreEvent(eAABORTRequest, NULL);//have to fill this in, we're in passive mode now
// theCStoreStateID = RunEventLoop(theCStoreEvent, outDataSet, mSecondaryConnection, true);
} else {//not dealing with cmove progress updates, apparently
//keep looping if we haven't succeeded or failed; these are the values for 'pending'
//first, dynamically cast that pdu in the event
//should be a data pdu
//then, look for tag 0x0,0x900
//only add datasets that are _not_ part of the network response
std::vector<DataSet> final;
std::vector<BasePDU*> theData;
BasePDU* thePDU;//outside the loop for the do/while stopping condition
bool interrupted = false;
do {
uint8_t itemtype = 0x0;
is.read( (char*)&itemtype, 1 );
//what happens if nothing's read?
thePDU = PDUFactory::ConstructPDU(itemtype);
if (itemtype != 0x4 && thePDU != nullptr){ //ie, not a pdatapdu
std::vector<BasePDU*> interruptingPDUs;
currentEvent.SetEvent(PDUFactory::DetermineEventByPDU(interruptingPDUs[0]));
currentEvent.SetPDU(interruptingPDUs);
interrupted= true;
break;
}
if (thePDU != nullptr){
thePDU->Read(is);
theData.push_back(thePDU);
} else{
break;
}
//!!!need to handle incoming PDUs that are not data, ie, an abort
} while(/*!is.eof() &&*/ !thePDU->IsLastFragment());
if (!interrupted){//ie, if the remote server didn't hang up
DataSet theCompleteFindResponse =
PresentationDataValue::ConcatenatePDVBlobs(PDUFactory::GetPDVs(theData));
//note that it's the responsibility of the event to delete the PDU in theFindRSP
for (size_t i = 0; i < theData.size(); i++){
delete theData[i];
}
//outDataSet.push_back(theCompleteFindResponse);
if (inCallback){
inCallback->HandleDataSet(theCompleteFindResponse);
}
}
}
}
}
} else {
raisedEvent = eEventDoesNotExist;
waitingForEvent = false;
}
}
else {
currentEvent.SetEvent(raisedEvent);//actions that cause transitions in the state table
//locally just raise local events that will therefore cause the trigger to be pulled.
}
} while (currentEvent.GetEvent() != eEventDoesNotExist &&
theState != eStaDoesNotExist && theState != eSta13AwaitingClose && theState != eSta1Idle &&
(theState != eSta6TransferReady || (theState == eSta6TransferReady && receivingData )));
//stop when the AE is done, or when ready to transfer data (ie, the next PDU should be sent in),
//or when the connection is idle after a disconnection.
//or, if in state 6 and receiving data, until all data is received.
return theState;
}
//event handler loop.
//will just keep running until the current event is nonexistent.
//at which point, it will return the current state of the connection
//to do this, execute an event, and then see if there's a response on the
//incoming connection (with a reasonable amount of timeout).
//if no response, assume that the connection is broken.
//if there's a response, then yay.
//note that this is the ARTIM timeout event
EStateID ULConnectionManager::RunEventLoop(ULEvent& currentEvent, ULConnection* inWhichConnection,
ULConnectionCallback* inCallback, const bool& startWaiting = false){
gdcmDebugMacro( "Start RunEventLoop" );
EStateID theState = eStaDoesNotExist;
bool waitingForEvent = startWaiting;//overwritten if not starting waiting, but if waiting, then wait
EEventID raisedEvent;
bool receivingData = false;
//bool justWaiting = startWaiting;
//not sure justwaiting is useful; for now, go back to waiting for event
//when receiving data from a find, etc, then justWaiting is true and only receiving is done
//eventually, could add cancel into the mix... but that would be through a callback or something similar
do {
gdcmDebugMacro( "Before mTransitions.HandleEvent #2" );
raisedEvent = eEventDoesNotExist;
if (!waitingForEvent){//justWaiting){
mTransitions.HandleEvent(this, currentEvent, *inWhichConnection, waitingForEvent, raisedEvent);
//this gathering of the state is for scus that have just sent out a request
theState = inWhichConnection->GetState();
}
std::istream * tempProtocolStream = inWhichConnection->GetProtocol();
if(tempProtocolStream == nullptr)
{
throw Exception("ProtocolStream as nullptr is invalid");
}
std::istream &is = *tempProtocolStream;
//std::ostream &os = *inWhichConnection->GetProtocol();
BasePDU* theFirstPDU = nullptr;// the first pdu read in during this event loop,
//used to make sure the presentation context ID is correct
//read the connection, as that's an event as well.
//waiting for an object to come back across the connection, so that it can get handled.
//ie, accept, reject, timeout, etc.
//of course, if the connection is down, just leave the loop.
//also leave the loop if nothing's waiting.
//use the PDUFactory to create the appropriate pdu, which has its own
//internal mechanisms for handling itself (but will, of course, be put inside the event object).
//but, and here's the important thing, only read on the socket when we should.
std::vector<BasePDU*> incomingPDUs;
if (waitingForEvent){
while (waitingForEvent){//loop for reading in the events that come down the wire
uint8_t itemtype = 0x0;
try {
gdcmDebugMacro( "Waiting for ItemType" );
is.read( (char*)&itemtype, 1 );
gdcmDebugMacro( "Received ItemType #" << (int)itemtype );
//what happens if nothing's read?
theFirstPDU = PDUFactory::ConstructPDU(itemtype);
if (theFirstPDU != nullptr){
incomingPDUs.push_back(theFirstPDU);
theFirstPDU->Read(is);
gdcmDebugMacro("PDU code: " << static_cast<int>(itemtype) << std::endl);
if (Trace::GetDebugFlag())
{
theFirstPDU->Print(Trace::GetStream());
}
if (theFirstPDU->IsLastFragment()) waitingForEvent = false;
} else {
gdcmDebugMacro( "NULL theFirstPDU for ItemType" << (int)itemtype );
waitingForEvent = false; //because no PDU means not waiting anymore
return eStaDoesNotExist;
}
}
catch (...)
{
//handle the exception, which is basically that nothing came in over the pipe.
gdcmAssertAlwaysMacro( 0 );
}
}
//now, we have to figure out the event that just happened based on the PDU that was received.
//this state gathering is for scps, especially the cstore for cmove.
theState = inWhichConnection->GetState();
if (!incomingPDUs.empty()){
currentEvent.SetEvent(PDUFactory::DetermineEventByPDU(incomingPDUs[0]));
currentEvent.SetPDU(incomingPDUs);
//here's the scp handling code
if (mConnection->GetTimer().GetHasExpired()){
currentEvent.SetEvent(eARTIMTimerExpired);
}
switch(currentEvent.GetEvent()){
case ePDATATFPDU:
{
//if (theState == eSta6TransferReady){//ie, finished the transitions
//with find, the results now come down the wire.
//the pdu we already have from the event will tell us how many to expect.
uint32_t pendingDE1, pendingDE2, success, theVal;
pendingDE1 = 0xff01;
pendingDE2 = 0xff00;
success = 0x0000;
theVal = pendingDE1;
uint32_t theCommandCode = 0;//for now, a nothing value
DataSet theRSP =
PresentationDataValue::ConcatenatePDVBlobs(
PDUFactory::GetPDVs(currentEvent.GetPDUs()));
if (inCallback)
{
inCallback->HandleResponse(theRSP);
}
if (theRSP.FindDataElement(Tag(0x0, 0x0900))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x0900));
Attribute<0x0,0x0900> at;
at.SetFromDataElement( de );
theVal = at.GetValues()[0];
//if theVal is Pending or Success, then we need to enter the loop below,
//because we need the data PDUs.
//so, the loop below is a do/while loop; there should be at least a second packet
//with the dataset, even if the status is 'success'
//success == 0000H
}
if (Trace::GetDebugFlag())
{
Printer thePrinter;
thePrinter.PrintDataSet(theRSP, Trace::GetStream());
}
//check to see if this is a cstorerq
if (theRSP.FindDataElement(Tag(0x0, 0x0100)))
{
DataElement de2 = theRSP.GetDataElement(Tag(0x0,0x0100));
Attribute<0x0,0x0100> at2;
at2.SetFromDataElement( de2 );
theCommandCode = at2.GetValues()[0];
}
if (theVal != pendingDE1 && theVal != pendingDE2 && theVal != success)
{
//check for other error fields
const ByteValue *err1 = nullptr, *err2 = nullptr;
gdcmErrorMacro( "Transfer failed with code " << theVal << std::endl);
switch (theVal){
case 0xA701:
gdcmErrorMacro( "Refused: Out of Resources Unable to calculate number of matches" << std::endl);
break;
case 0xA702:
gdcmErrorMacro( "Refused: Out of Resources Unable to perform sub-operations" << std::endl);
break;
case 0xA801:
gdcmErrorMacro( "Refused: Move Destination unknown" << std::endl);
break;
case 0xA900:
gdcmErrorMacro( "Identifier does not match SOP Class" << std::endl);
break;
case 0xAA00:
gdcmErrorMacro( "None of the frames requested were found in the SOP Instance" << std::endl);
break;
case 0xAA01:
gdcmErrorMacro( "Unable to create new object for this SOP class" << std::endl);
break;
case 0xAA02:
gdcmErrorMacro( "Unable to extract frames" << std::endl);
break;
case 0xAA03:
gdcmErrorMacro( "Time-based request received for a non-time-based original SOP Instance. " << std::endl);
break;
case 0xAA04:
gdcmErrorMacro( "Invalid Request" << std::endl);
break;
case 0xFE00:
gdcmErrorMacro( "Sub-operations terminated due to Cancel Indication" << std::endl);
break;
case 0xB000:
gdcmErrorMacro( "Sub-operations Complete One or more Failures or Warnings" << std::endl);
break;
default:
gdcmErrorMacro( "Unable to process" << std::endl);
break;
}
if (theRSP.FindDataElement(Tag(0x0,0x0901))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x0901));
err1 = de.GetByteValue();
gdcmErrorMacro( " Tag 0x0,0x901 reported as " << *err1 << std::endl); (void)err1;
}
if (theRSP.FindDataElement(Tag(0x0,0x0902))){
DataElement de = theRSP.GetDataElement(Tag(0x0,0x0902));
err2 = de.GetByteValue();
gdcmErrorMacro( " Tag 0x0,0x902 reported as " << *err2 << std::endl); (void)err2;
}
}
receivingData = false;
//justWaiting = false;
if (theVal == pendingDE1 || theVal == pendingDE2) {
receivingData = true; //wait for more data as more PDUs (findrsps, for instance)
//justWaiting = true;
waitingForEvent = true;
}
if (theVal == pendingDE1 || theVal == pendingDE2 /*|| theVal == success*/){//keep looping if we haven't succeeded or failed; these are the values for 'pending'
//first, dynamically cast that pdu in the event
//should be a data pdu
//then, look for tag 0x0,0x900
//only add datasets that are _not_ part of the network response
std::vector<DataSet> final;
std::vector<BasePDU*> theData;
BasePDU* thePDU;//outside the loop for the do/while stopping condition
bool interrupted = false;
do {
uint8_t itemtype = 0x0;
is.read( (char*)&itemtype, 1 );
//what happens if nothing's read?
thePDU = PDUFactory::ConstructPDU(itemtype);
if (itemtype != 0x4 && thePDU != nullptr){ //ie, not a pdatapdu
std::vector<BasePDU*> interruptingPDUs;
interruptingPDUs.push_back(thePDU);
currentEvent.SetEvent(PDUFactory::DetermineEventByPDU(interruptingPDUs[0]));
currentEvent.SetPDU(interruptingPDUs);
interrupted= true;
break;
}
if (thePDU != nullptr){
thePDU->Read(is);
theData.push_back(thePDU);
} else{
break;
}
//!!!need to handle incoming PDUs that are not data, ie, an abort
} while(!thePDU->IsLastFragment());
if (!interrupted){//ie, if the remote server didn't hang up
bool useimplicit = true;
TransferSyntaxSub ts1;
ts1.SetNameFromUID( UIDs::ImplicitVRLittleEndianDefaultTransferSyntaxforDICOM );
if( mSecondaryConnection )
{
const TransferSyntaxSub & ts_ = mSecondaryConnection->GetCStoreTransferSyntax();
if( strcmp(ts_.GetName(), ts1.GetName()) != 0)
{
useimplicit = false;
}
}
DataSet theCompleteFindResponse;
if( useimplicit )
{
inCallback->SetImplicitFlag(true);
theCompleteFindResponse =
PresentationDataValue::ConcatenatePDVBlobs(PDUFactory::GetPDVs(theData));
}
else
{
inCallback->SetImplicitFlag(false);
theCompleteFindResponse =
PresentationDataValue::ConcatenatePDVBlobsAsExplicit(PDUFactory::GetPDVs(theData));
}
//note that it's the responsibility of the event to delete the PDU in theFindRSP
for (size_t i = 0; i < theData.size(); i++)
{
delete theData[i];
}
assert(inCallback);
{
inCallback->HandleDataSet(theCompleteFindResponse);
}
// DataSetEvent dse( &theCompleteFindResponse );
// this->InvokeEvent( dse );
if (theCommandCode == 1){//if we're doing cstore scp stuff, send information back along the connection.
std::vector<BasePDU*> theCStoreRSPPDU = PDUFactory::CreateCStoreRSPPDU(&theRSP, theFirstPDU);//pass NULL for C-Echo
//send them directly back over the connection
//ideall, should go through the transition table, but we know this should work
//and it won't change the state (unless something breaks?, but then an exception should throw)
std::vector<BasePDU*>::iterator itor;
for (itor = theCStoreRSPPDU.begin(); itor < theCStoreRSPPDU.end(); itor++){
(*itor)->Write(*inWhichConnection->GetProtocol());
}
inWhichConnection->GetProtocol()->flush();
// FIXME added MM / Oct 30 2010
//AReleaseRPPDU rel;
//rel.Write( *inWhichConnection->GetProtocol() );
//inWhichConnection->GetProtocol()->flush();
receivingData = false; //gotta get data on the other connection for a cmove
// cleanup
for (itor = theCStoreRSPPDU.begin(); itor < theCStoreRSPPDU.end(); itor++){
delete *itor;
}
}
}
}
}
break;
case eARELEASERequest://process this via the transition table
waitingForEvent = false;
break;
case eARELEASE_RQPDUReceivedOpen://process this via the transition table
waitingForEvent = false;
receivingData = true; //to continue the loop to process the release
break;
case eAABORTPDUReceivedOpen:
raisedEvent = eEventDoesNotExist;
theState = eStaDoesNotExist;
/* fall through */
case eAABORTRequest:
waitingForEvent = false;
inWhichConnection->StopProtocol();
break;
case eASSOCIATE_ACPDUreceived:
default:
waitingForEvent = false;
break;
}
}
//} else {
// raisedEvent = eEventDoesNotExist;
// waitingForEvent = false;
//}
}
else {
currentEvent.SetEvent(raisedEvent);//actions that cause transitions in the state table
//locally just raise local events that will therefore cause the trigger to be pulled.
}
} while (currentEvent.GetEvent() != eEventDoesNotExist &&
theState != eStaDoesNotExist && theState != eSta13AwaitingClose && theState != eSta1Idle &&
(theState != eSta6TransferReady || (theState == eSta6TransferReady && receivingData )));
//stop when the AE is done, or when ready to transfer data (ie, the next PDU should be sent in),
//or when the connection is idle after a disconnection.
//or, if in state 6 and receiving data, until all data is received.
return theState;
}
} // end namespace network
} // end namespace gdcm
|