123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*=============================================================================
- 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 <ctkDicomHostInterface.h>
- #include <ctkDicomObjectLocatorCache.h>
- #include <ctkPluginContext.h>
- #include <ctkServiceTracker.h>
- #include <ctkDicomAppHostingTypesHelper.h>
- class ctkDicomAbstractAppPrivate
- {
- public:
- ctkDicomAbstractAppPrivate(ctkPluginContext* context);
- ctkServiceTracker<ctkDicomHostInterface*> 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<int>(newState) <<
- "Current state is:" << static_cast<int>(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;
- }
|