| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 | 
							- /*=============================================================================
 
-   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 "ctkDicomAppService.h"
 
- #include "ctkDicomAbstractHost.h"
 
- #include "ctkDicomHostServer.h"
 
- #include <ctkDicomObjectLocatorCache.h>
 
- class ctkDicomAbstractHostPrivate
 
- {
 
- public:
 
-   ctkDicomAbstractHostPrivate(ctkDicomAbstractHost* hostInterface, int HostPort, int AppPort);
 
-   ~ctkDicomAbstractHostPrivate();
 
-   int HostPort;
 
-   int AppPort;
 
-   ctkDicomHostServer* Server;
 
-   ctkDicomAppInterface* AppService;
 
-   ctkDicomObjectLocatorCache ObjectLocatorCache;
 
-   // ctkDicomAppHosting::Status
 
- };
 
- //----------------------------------------------------------------------------
 
- // ctkDicomAbstractHostPrivate methods
 
- //----------------------------------------------------------------------------
 
- ctkDicomAbstractHostPrivate::ctkDicomAbstractHostPrivate(
 
-   ctkDicomAbstractHost* hostInterface, int hostPort, int appPort) : HostPort(hostPort), AppPort(appPort)
 
- {
 
-   // start server
 
-   if (this->HostPort == 0)
 
-     {
 
-     this->HostPort = 8080;
 
-     }
 
-   if (this->AppPort == 0)
 
-     {
 
-     this->AppPort = 8081;
 
-     }
 
-   this->Server = new ctkDicomHostServer(hostInterface,hostPort);
 
-   this->AppService = new ctkDicomAppService(appPort, "/ApplicationInterface");
 
- }
 
- //----------------------------------------------------------------------------
 
- ctkDicomAbstractHostPrivate::~ctkDicomAbstractHostPrivate()
 
- {
 
-   delete this->Server;
 
-   this->Server = 0;
 
-   //do not delete AppService, deleted somewhere else before?
 
-   //delete  this->AppService;
 
-   //this->AppService = 0;
 
- }
 
- //----------------------------------------------------------------------------
 
- // ctkDicomAbstractHost methods
 
- //----------------------------------------------------------------------------
 
- ctkDicomAbstractHost::ctkDicomAbstractHost(int hostPort, int appPort) :
 
-   d_ptr(new ctkDicomAbstractHostPrivate(this, hostPort, appPort))
 
- {
 
- }
 
- //----------------------------------------------------------------------------
 
- ctkDicomAbstractHost::~ctkDicomAbstractHost()
 
- {
 
- }
 
- //----------------------------------------------------------------------------
 
- int ctkDicomAbstractHost::getHostPort() const
 
- {
 
-   Q_D(const ctkDicomAbstractHost);
 
-   return d->HostPort;
 
- }
 
- //----------------------------------------------------------------------------
 
- int ctkDicomAbstractHost::getAppPort() const
 
- {
 
-   Q_D(const ctkDicomAbstractHost);
 
-   return d->AppPort;
 
- }
 
- //----------------------------------------------------------------------------
 
- ctkDicomAppInterface* ctkDicomAbstractHost::getDicomAppService() const
 
- {
 
-   Q_D(const ctkDicomAbstractHost);
 
-   return d->AppService;
 
- }
 
- //----------------------------------------------------------------------------
 
- QList<ctkDicomAppHosting::ObjectLocator> ctkDicomAbstractHost::getData(
 
-   const QList<QUuid>& objectUUIDs,
 
-   const QList<QString>& acceptableTransferSyntaxUIDs,
 
-   bool includeBulkData)
 
- {
 
-   Q_UNUSED(acceptableTransferSyntaxUIDs);
 
-   Q_UNUSED(includeBulkData);
 
-   return this->objectLocatorCache()->getData(objectUUIDs);
 
- }
 
- //----------------------------------------------------------------------------
 
- ctkDicomObjectLocatorCache* ctkDicomAbstractHost::objectLocatorCache()const
 
- {
 
-   Q_D(const ctkDicomAbstractHost);
 
-   return const_cast<ctkDicomObjectLocatorCache*>(&d->ObjectLocatorCache);
 
- }
 
- //----------------------------------------------------------------------------
 
- bool ctkDicomAbstractHost::publishData(const ctkDicomAppHosting::AvailableData& availableData, bool lastData)
 
- {
 
-   if (!this->objectLocatorCache()->isCached(availableData))
 
-     {
 
-     return false;
 
-     }
 
-   bool success = this->getDicomAppService()->notifyDataAvailable(availableData, lastData);
 
-   if(!success)
 
-     {
 
-     return false;
 
-     }
 
-   return true;
 
- }
 
 
  |