/*============================================================================= Library: CTK Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics 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 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. =============================================================================*/ // CTK includes #include "ctkDicomAbstractApp.h" #include #include #include #include #include class ctkDicomAbstractAppPrivate { public: ctkDicomAbstractAppPrivate(ctkPluginContext* context); ctkServiceTracker HostTracker; ctkDicomAppHosting::State currentState; ctkDicomObjectLocatorCache ObjectLocatorCache; }; //---------------------------------------------------------------------------- // ctkDicomAbstractAppPrivate methods //---------------------------------------------------------------------------- ctkDicomAbstractAppPrivate::ctkDicomAbstractAppPrivate(ctkPluginContext * context):HostTracker(context),currentState(ctkDicomAppHosting::IDLE) { //perhaps notStarted or some dummy state instead of IDLE? } //---------------------------------------------------------------------------- // ctkDicomAbstractApp methods //---------------------------------------------------------------------------- ctkDicomAbstractApp::ctkDicomAbstractApp(ctkPluginContext* context) : d_ptr(new ctkDicomAbstractAppPrivate(context)) { d_ptr->HostTracker.open(); } //---------------------------------------------------------------------------- ctkDicomAbstractApp::~ctkDicomAbstractApp() { } //---------------------------------------------------------------------------- bool ctkDicomAbstractApp::setState(ctkDicomAppHosting::State newState) { qDebug()<<"treating new state: "<< ctkDicomSoapState::toStringValue(newState); bool result = false; //received a new state, switch (newState){ case ctkDicomAppHosting::IDLE: if (d_ptr->currentState == ctkDicomAppHosting::COMPLETED) { emit releaseResources(); //inform the host that now the app is idle getHostInterface()->notifyStateChanged(ctkDicomAppHosting::IDLE); //also change the internal state d_ptr->currentState = ctkDicomAppHosting::IDLE; result = true; } break; case ctkDicomAppHosting::INPROGRESS: if (d_ptr->currentState == ctkDicomAppHosting::IDLE) { emit startProgress(); result = true; } else if(d_ptr->currentState == ctkDicomAppHosting::SUSPENDED) { emit resumeProgress(); result = true; } break; case ctkDicomAppHosting::COMPLETED: qDebug() << "Hosting system shouldn't send completed"; break; case ctkDicomAppHosting::SUSPENDED: //suspend computation, release as much resource as possible with possible resuming of computation emit suspendProgress(); result = true; break; case ctkDicomAppHosting::CANCELED: //stop and release everything. if (d_ptr->currentState == ctkDicomAppHosting::INPROGRESS || d_ptr->currentState == ctkDicomAppHosting::SUSPENDED) { //special state, a transitional state, so we notify straight away the new state. getHostInterface()->notifyStateChanged(ctkDicomAppHosting::CANCELED); d_ptr->currentState = ctkDicomAppHosting::CANCELED; //releasing resources emit cancelProgress(); result = true; } break; case ctkDicomAppHosting::EXIT: //check if current state is IDLE if (d_ptr->currentState == ctkDicomAppHosting::IDLE) { //maybe not useful: //getHostInterface()->notifyStateChanged(ctkDicomAppHosting::EXIT); emit exitHostedApp(); result = true; } break; default: //should never happen qDebug() << "unexisting state Code, do nothing"; } if (!result) { qDebug()<<"illegal transition to: "<< static_cast(newState) << "Current state is:" << static_cast(d_ptr->currentState); qDebug()<<"illegal transition to: "<< ctkDicomSoapState::toStringValue(newState) << "Current state is:" << ctkDicomSoapState::toStringValue(d_ptr->currentState); } return result; } //---------------------------------------------------------------------------- ctkDicomHostInterface* ctkDicomAbstractApp::getHostInterface() const { ctkDicomHostInterface* host = d_ptr->HostTracker.getService(); if (!host) throw ctkRuntimeException("DICOM Host Interface not available"); return host; } //---------------------------------------------------------------------------- ctkDicomExchangeInterface* ctkDicomAbstractApp::getOtherSideExchangeService() const { return getHostInterface(); } //---------------------------------------------------------------------------- ctkDicomAppHosting::State ctkDicomAbstractApp::getState() { return d_ptr->currentState; } void ctkDicomAbstractApp::setInternalState(ctkDicomAppHosting::State state) { d_ptr->currentState = state; }