ctkPluginStorage.cpp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*=============================================================================
  2. Library: CTK
  3. Copyright (c) German Cancer Research Center,
  4. Division of Medical and Biological Informatics
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. =============================================================================*/
  15. #include "ctkPluginStorage_p.h"
  16. #include <QPluginLoader>
  17. #include <QFileInfo>
  18. #include <QUrl>
  19. #include <QDir>
  20. // CTK includes
  21. #include "ctkPluginArchive_p.h"
  22. #include "ctkPluginFrameworkContext_p.h"
  23. #include "ctkPluginFrameworkUtil_p.h"
  24. #include "ctkPluginDatabaseException.h"
  25. //----------------------------------------------------------------------------
  26. ctkPluginStorage::ctkPluginStorage(ctkPluginFrameworkContext* framework)
  27. : framework(framework), pluginDatabase(this)
  28. {
  29. // See if we have a storage database
  30. QString path = ctkPluginFrameworkUtil::getFileStorage(framework, "").absoluteFilePath("plugins.db");
  31. pluginDatabase.setDatabasePath(path);
  32. pluginDatabase.open();
  33. archives << pluginDatabase.getPluginArchives();
  34. }
  35. //----------------------------------------------------------------------------
  36. ctkPluginArchive* ctkPluginStorage::insertPlugin(const QUrl& location, const QString& localPath)
  37. {
  38. ctkPluginArchive* pa = pluginDatabase.insertPlugin(location, localPath);
  39. archives.push_back(pa);
  40. return pa;
  41. }
  42. //----------------------------------------------------------------------------
  43. ctkPluginArchive* ctkPluginStorage::updatePluginArchive(ctkPluginArchive* old, const QString& localPath)
  44. {
  45. Q_UNUSED(old)
  46. Q_UNUSED(localPath)
  47. //TODO: updatePluginArchive
  48. //return new BundleArchiveImpl((BundleArchiveImpl)old, is);
  49. return 0;
  50. }
  51. //----------------------------------------------------------------------------
  52. void ctkPluginStorage::replacePluginArchive(ctkPluginArchive* oldPA, ctkPluginArchive* newPA)
  53. {
  54. Q_UNUSED(oldPA)
  55. Q_UNUSED(newPA)
  56. //TODO: replacePluginArchive
  57. // int pos;
  58. // long id = oldBA.getBundleId();
  59. // synchronized (archives) {
  60. // pos = find(id);
  61. // if (pos >= archives.size() || archives.get(pos) != oldBA) {
  62. // throw new Exception("replaceBundleJar: Old bundle archive not found, pos=" + pos);
  63. // }
  64. // archives.set(pos, newBA);
  65. // }
  66. }
  67. //----------------------------------------------------------------------------
  68. void ctkPluginStorage::setStartLevel(ctkPluginArchive* pa)
  69. {
  70. pluginDatabase.setStartLevel(pa->getPluginId(), pa->getStartLevel());
  71. }
  72. //----------------------------------------------------------------------------
  73. void ctkPluginStorage::setLastModified(ctkPluginArchive* pa)
  74. {
  75. pluginDatabase.setLastModified(pa->getPluginId(), pa->getLastModified());
  76. }
  77. //----------------------------------------------------------------------------
  78. void ctkPluginStorage::setAutostartSetting(ctkPluginArchive* pa)
  79. {
  80. pluginDatabase.setAutostartSetting(pa->getPluginId(), pa->getAutostartSetting());
  81. }
  82. //----------------------------------------------------------------------------
  83. QList<ctkPluginArchive*> ctkPluginStorage::getAllPluginArchives() const
  84. {
  85. return archives;
  86. }
  87. //----------------------------------------------------------------------------
  88. QList<QString> ctkPluginStorage::getStartOnLaunchPlugins()
  89. {
  90. QList<QString> res;
  91. QListIterator<ctkPluginArchive*> i(archives);
  92. while(i.hasNext())
  93. {
  94. ctkPluginArchive* pa = i.next();
  95. if (pa->getAutostartSetting() != -1)
  96. {
  97. res.push_back(pa->getPluginLocation().toString());
  98. }
  99. }
  100. return res;
  101. }
  102. //----------------------------------------------------------------------------
  103. ctkPluginStorage::~ctkPluginStorage()
  104. {
  105. close();
  106. // ctkPluginArchive pointers in archives list are deleted
  107. // in ~ctkPluginPrivate()
  108. }
  109. //----------------------------------------------------------------------------
  110. void ctkPluginStorage::close()
  111. {
  112. pluginDatabase.close();
  113. }
  114. //----------------------------------------------------------------------------
  115. bool ctkPluginStorage::removeArchive(ctkPluginArchive* pa)
  116. {
  117. QMutexLocker lock(&archivesLock);
  118. bool removed = false;
  119. try
  120. {
  121. pluginDatabase.removeArchive(pa);
  122. removed = archives.removeAll(pa);
  123. }
  124. catch (const ctkPluginDatabaseException& exc)
  125. {
  126. qDebug() << "Removing plugin archive failed:" << exc;
  127. removed = false;
  128. }
  129. return removed;
  130. }
  131. //----------------------------------------------------------------------------
  132. QByteArray ctkPluginStorage::getPluginResource(long pluginId, const QString& res) const
  133. {
  134. try
  135. {
  136. return pluginDatabase.getPluginResource(pluginId, res);
  137. }
  138. catch (const ctkPluginDatabaseException& exc)
  139. {
  140. qDebug() << QString("Getting plugin resource %1 failed:").arg(res) << exc;
  141. return QByteArray();
  142. }
  143. }
  144. //----------------------------------------------------------------------------
  145. QStringList ctkPluginStorage::findResourcesPath(long pluginId, const QString& path) const
  146. {
  147. try
  148. {
  149. return pluginDatabase.findResourcesPath(pluginId, path);
  150. }
  151. catch (const ctkPluginDatabaseException& exc)
  152. {
  153. qDebug() << QString("Getting plugin resource paths for %1 failed:").arg(path) << exc;
  154. return QStringList();
  155. }
  156. }