| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <QMutexLocker> |
|
|
| #include <App/Application.h> |
|
|
| #include "Exceptions.h" |
| #include "ExternalManager.h" |
| #include "MaterialLibrary.h" |
| #include "MaterialManagerExternal.h" |
|
|
|
|
| using namespace Materials; |
|
|
| |
|
|
| QMutex MaterialManagerExternal::_mutex; |
| LRU::Cache<std::string, std::shared_ptr<Material>> |
| MaterialManagerExternal::_cache(DEFAULT_CACHE_SIZE); |
|
|
| TYPESYSTEM_SOURCE(Materials::MaterialManagerExternal, Base::BaseClass) |
|
|
| MaterialManagerExternal::MaterialManagerExternal() |
| { |
| initCache(); |
| } |
|
|
| void MaterialManagerExternal::initCache() |
| { |
| QMutexLocker locker(&_mutex); |
|
|
| ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath( |
| "User parameter:BaseApp/Preferences/Mod/Material/ExternalInterface"); |
| auto cacheSize = hGrp->GetInt("MaterialCacheSize", DEFAULT_CACHE_SIZE); |
| _cache.capacity(cacheSize); |
|
|
| _cache.monitor(); |
| } |
|
|
| void MaterialManagerExternal::cleanup() |
| {} |
|
|
| void MaterialManagerExternal::refresh() |
| { |
| resetCache(); |
| } |
|
|
| |
| |
| |
| |
| |
|
|
| std::shared_ptr<std::list<std::shared_ptr<MaterialLibrary>>> MaterialManagerExternal::getLibraries() |
| { |
| auto libraryList = std::make_shared<std::list<std::shared_ptr<MaterialLibrary>>>(); |
| try { |
| auto externalLibraries = ExternalManager::getManager()->libraries(); |
| for (auto& entry : *externalLibraries) { |
| auto library = std::make_shared<MaterialLibrary>(*entry); |
| libraryList->push_back(library); |
| } |
| } |
| catch (const LibraryNotFound& e) { |
| } |
| catch (const ConnectionError& e) { |
| } |
|
|
| return libraryList; |
| } |
|
|
| std::shared_ptr<std::list<std::shared_ptr<MaterialLibrary>>> |
| MaterialManagerExternal::getMaterialLibraries() |
| { |
| auto libraryList = std::make_shared<std::list<std::shared_ptr<MaterialLibrary>>>(); |
| try { |
| auto externalLibraries = ExternalManager::getManager()->materialLibraries(); |
| for (auto& entry : *externalLibraries) { |
| auto library = std::make_shared<MaterialLibrary>(*entry); |
| libraryList->push_back(library); |
| } |
| } |
| catch (const LibraryNotFound& e) { |
| } |
| catch (const ConnectionError& e) { |
| } |
|
|
| return libraryList; |
| } |
|
|
| std::shared_ptr<MaterialLibrary> MaterialManagerExternal::getLibrary(const QString& name) const |
| { |
| try { |
| auto lib = ExternalManager::getManager()->getLibrary(name); |
| auto library = std::make_shared<MaterialLibrary>(*lib); |
| return library; |
| } |
| catch (const LibraryNotFound& e) { |
| throw LibraryNotFound(e); |
| } |
| catch (const ConnectionError& e) { |
| throw LibraryNotFound(e.what()); |
| } |
| catch (...) { |
| throw LibraryNotFound("Unknown exception"); |
| } |
| } |
|
|
| void MaterialManagerExternal::createLibrary(const QString& libraryName, |
| const QByteArray& icon, |
| bool readOnly) |
| { |
| ExternalManager::getManager()->createLibrary(libraryName, icon, readOnly); |
| } |
|
|
| void MaterialManagerExternal::renameLibrary(const QString& libraryName, const QString& newName) |
| { |
| ExternalManager::getManager()->renameLibrary(libraryName, newName); |
| } |
|
|
| void MaterialManagerExternal::changeIcon(const QString& libraryName, const QByteArray& icon) |
| { |
| ExternalManager::getManager()->changeIcon(libraryName, icon); |
| } |
|
|
| void MaterialManagerExternal::removeLibrary(const QString& libraryName) |
| { |
| ExternalManager::getManager()->removeLibrary(libraryName); |
| } |
|
|
| std::shared_ptr<std::vector<LibraryObject>> |
| MaterialManagerExternal::libraryMaterials(const QString& libraryName) |
| { |
| return ExternalManager::getManager()->libraryMaterials(libraryName); |
| } |
|
|
| std::shared_ptr<std::vector<LibraryObject>> |
| MaterialManagerExternal::libraryMaterials(const QString& libraryName, |
| const MaterialFilter& filter, |
| const MaterialFilterOptions& options) |
| { |
| return ExternalManager::getManager()->libraryMaterials(libraryName, filter, options); |
| } |
|
|
| |
| |
| |
| |
| |
|
|
| void MaterialManagerExternal::createFolder(const MaterialLibrary& library, |
| const QString& path) |
| { |
| ExternalManager::getManager()->createFolder(library.getName(), path); |
| } |
|
|
| void MaterialManagerExternal::renameFolder(const MaterialLibrary& library, |
| const QString& oldPath, |
| const QString& newPath) |
| { |
| ExternalManager::getManager()->renameFolder(library.getName(), oldPath, newPath); |
| } |
|
|
| void MaterialManagerExternal::deleteRecursive(const MaterialLibrary& library, |
| const QString& path) |
| { |
| ExternalManager::getManager()->deleteRecursive(library.getName(), path); |
| } |
|
|
| |
| |
| |
| |
| |
|
|
| std::shared_ptr<Material> MaterialManagerExternal::materialNotFound(const QString& uuid) const |
| { |
| |
| _cache.emplace(uuid.toStdString(), nullptr); |
| return nullptr; |
| } |
|
|
| std::shared_ptr<Material> MaterialManagerExternal::getMaterial(const QString& uuid) const |
| { |
| if (_cache.contains(uuid.toStdString())) { |
| return _cache.lookup(uuid.toStdString()); |
| } |
| try { |
| auto material = ExternalManager::getManager()->getMaterial(uuid); |
| _cache.emplace(uuid.toStdString(), material); |
| return material; |
| } |
| catch (const MaterialNotFound& e) { |
| return materialNotFound(uuid); |
| } |
| catch (const ConnectionError& e) { |
| return materialNotFound(uuid); |
| } |
| catch (...) { |
| return materialNotFound(uuid); |
| } |
| } |
|
|
| void MaterialManagerExternal::addMaterial(const QString& libraryName, |
| const QString& path, |
| const Material& material) |
| { |
| _cache.erase(material.getUUID().toStdString()); |
| ExternalManager::getManager()->addMaterial(libraryName, path, material); |
| } |
|
|
| void MaterialManagerExternal::migrateMaterial(const QString& libraryName, |
| const QString& path, |
| const Material& material) |
| { |
| _cache.erase(material.getUUID().toStdString()); |
| ExternalManager::getManager()->migrateMaterial(libraryName, path, material); |
| } |
|
|
| |
| |
| |
| |
| |
|
|
| void MaterialManagerExternal::resetCache() |
| { |
| _cache.clear(); |
| } |
|
|
| double MaterialManagerExternal::materialHitRate() |
| { |
| auto hitRate = _cache.stats().hit_rate(); |
| if (std::isnan(hitRate)) { |
| return 0; |
| } |
| return hitRate; |
| } |
|
|