123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /*=============================================================================
- Library: CTK
- Copyright (c) 2010 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.
- =============================================================================*/
- #include "ctkPluginBrowser.h"
- #include "ctkPluginTableModel.h"
- #include "ctkPluginResourcesTreeModel.h"
- #include "ctkQtResourcesTreeModel.h"
- #include "ctkServiceReference.h"
- #include "ctkPluginConstants.h"
- #include <ui_ctkPluginBrowserMainWindow.h>
- #include <ctkPluginException.h>
- #include <ctkPluginFramework.h>
- #include <QApplication>
- #include <QMainWindow>
- #include <QStringList>
- #include <QDirIterator>
- #include <QUrl>
- ctkPluginBrowser::ctkPluginBrowser(ctkPluginFramework* framework)
- : framework(framework)
- {
- framework->getPluginContext()->connectFrameworkListener(this, SLOT(frameworkEvent(ctkPluginFrameworkEvent)));
- QStringList pluginDirs;
- #ifdef CMAKE_INTDIR
- pluginDirs << qApp->applicationDirPath() + "/../plugins/" CMAKE_INTDIR "/";
- #else
- pluginDirs << qApp->applicationDirPath() + "/plugins/";
- #endif
- QStringListIterator dirIt(pluginDirs);
- while (dirIt.hasNext())
- {
- QApplication::addLibraryPath(dirIt.next());
- }
- QStringList libFilter;
- libFilter << "*.dll" << "*.so" << "*.dylib";
- QDirIterator dirIter(pluginDirs.at(0), libFilter, QDir::Files);
- while(dirIter.hasNext())
- {
- try
- {
- ctkPlugin* plugin = framework->getPluginContext()->installPlugin(QUrl::fromLocalFile(dirIter.next()).toString());
- plugin->start(ctkPlugin::START_ACTIVATION_POLICY);
- }
- catch (const ctkPluginException& e)
- {
- qCritical() << e.what();
- }
- }
- framework->start();
- ui.setupUi(this);
- editors = new ctkPluginBrowserEditors(ui.centralwidget);
- QAbstractItemModel* pluginTableModel = new ctkPluginTableModel(framework->getPluginContext(), this);
- ui.pluginsTableView->setModel(pluginTableModel);
- QAbstractItemModel* qtresourcesTreeModel = new ctkQtResourcesTreeModel(this);
- ui.qtResourcesTreeView->setModel(qtresourcesTreeModel);
- connect(ui.pluginsTableView, SIGNAL(clicked(QModelIndex)), this, SLOT(pluginSelected(QModelIndex)));
- connect(ui.pluginsTableView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(pluginDoubleClicked(QModelIndex)));
- connect(ui.pluginResourcesTreeView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(dbResourceDoubleClicked(QModelIndex)));
- connect(ui.qtResourcesTreeView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(qtResourceDoubleClicked(QModelIndex)));
- }
- void ctkPluginBrowser::pluginSelected(const QModelIndex &index)
- {
- QVariant v = index.data(Qt::UserRole);
- ctkPlugin* plugin = framework->getPluginContext()->getPlugin(v.toLongLong());
- if (!plugin) return;
- QAbstractItemModel* oldModel = ui.pluginResourcesTreeView->model();
- ui.pluginResourcesTreeView->setModel(new ctkPluginResourcesTreeModel(plugin, this));
- if (oldModel) oldModel->deleteLater();;
- }
- void ctkPluginBrowser::pluginDoubleClicked(const QModelIndex& index)
- {
- long pluginId = index.data(Qt::UserRole).toLongLong();
- ctkPlugin* plugin = framework->getPluginContext()->getPlugin(pluginId);
- QByteArray mfContent = plugin->getResource("/META-INF/MANIFEST.MF");
- QString location = QString("/") + plugin->getSymbolicName() + "/META-INF/MANIFEST.MF";
- editors->openEditor(location, mfContent, location + " [cached]");
- QList<ctkServiceReference*> serviceRefs = plugin->getPluginContext()->getServiceReferences("");
- QListIterator<ctkServiceReference*> it(serviceRefs);
- while (it.hasNext())
- {
- ctkServiceReference* ref = it.next();
- qDebug() << "Service from" << ref->getPlugin()->getSymbolicName() << ":" << ref->getPropertyKeys();
- qDebug() << "Object Classes:" << ref->getProperty(PluginConstants::OBJECTCLASS).toStringList();
- }
- ctkServiceReference* cliRef = plugin->getPluginContext()->getServiceReference("ctkICLIManager");
- QObject* cliService = plugin->getPluginContext()->getService(cliRef);
- if (cliService)
- qDebug() << "Got service object: " << cliService->metaObject()->className();
- else qDebug() << "Got null service";
- }
- void ctkPluginBrowser::qtResourceDoubleClicked(const QModelIndex& index)
- {
- }
- void ctkPluginBrowser::dbResourceDoubleClicked(const QModelIndex& index)
- {
- QString resPath = index.data(Qt::UserRole).toString();
- if (resPath.isEmpty() || resPath.endsWith('/')) return;
- qDebug() << "Trying to open: " << resPath;
- QModelIndex pluginIndex = ui.pluginsTableView->selectionModel()->selectedIndexes().first();
- long pluginId = pluginIndex.data(Qt::UserRole).toLongLong();
- ctkPlugin* plugin = framework->getPluginContext()->getPlugin(pluginId);
- QByteArray resContent = plugin->getResource(resPath);
- QString location = QString("/") + plugin->getSymbolicName() + resPath;
- editors->openEditor(location, resContent, location + " [cached]");
- }
- void ctkPluginBrowser::frameworkEvent(const ctkPluginFrameworkEvent& event)
- {
- qDebug() << "FrameworkEvent: [" << event.getPlugin()->getSymbolicName() << "]" << event.getErrorString();
- }
|