12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*=============================================================================
- 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.
- =============================================================================*/
- // Qt includes
- #include <QtPlugin>
- #include <QStringList>
- // CTK includes
- #include "ctkDicomAppPlugin_p.h"
- #include "ctkDicomAppServer_p.h"
- #include "ctkDicomHostService_p.h"
- // STD includes
- #include <stdexcept>
- #include <iostream>
- ctkPluginContext* ctkDicomAppPlugin::Context = 0;
- //----------------------------------------------------------------------------
- ctkDicomAppPlugin::ctkDicomAppPlugin()
- : AppServer(0), HostInterface(0)
- {
- }
- //----------------------------------------------------------------------------
- ctkDicomAppPlugin::~ctkDicomAppPlugin()
- {
- delete this->AppServer;
- delete this->HostInterface;
- ctkDicomAppPlugin::Context = 0;
- }
- //----------------------------------------------------------------------------
- void ctkDicomAppPlugin::start(ctkPluginContext* context)
- {
- ctkDicomAppPlugin::Context = context;
- QUrl appURL(context->getProperty("dah.appURL").toString());
- if (!appURL.isValid())
- {
- throw std::runtime_error("The plugin framework does not contain a valid \"dah.appURL\" property");
- }
- QUrl hostURL(context->getProperty("dah.hostURL").toString());
- if (!hostURL.isValid())
- {
- throw std::runtime_error("The plugin framework does not contain a valid \"dah.hostURL\" property");
- }
- // start the application server
- this->AppServer = new ctkDicomAppServer(appURL.port());
- // register the host service, providing callbacks to the hosting application
- this->HostInterface = new ctkDicomHostService(QUrl(hostURL).port(), "/HostInterface");
- context->registerService<ctkDicomHostInterface>(HostInterface);
- }
- //----------------------------------------------------------------------------
- void ctkDicomAppPlugin::stop(ctkPluginContext* context)
- {
- Q_UNUSED(context)
- delete this->AppServer;
- delete this->HostInterface;
- this->AppServer = 0;
- this->HostInterface = 0;
- this->Context = 0;
- }
- //----------------------------------------------------------------------------
- ctkPluginContext* ctkDicomAppPlugin::getPluginContext()
- {
- return ctkDicomAppPlugin::Context;
- }
- Q_EXPORT_PLUGIN2(org_commontk_dah_app, ctkDicomAppPlugin)
|