// SPDX-License-Identifier: LGPL-2.1-or-later /*************************************************************************** * Copyright (c) 2024 David Carter * * * * This file is part of FreeCAD. * * * * FreeCAD is free software: you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as * * published by the Free Software Foundation, either version 2.1 of the * * License, or (at your option) any later version. * * * * FreeCAD is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with FreeCAD. If not, see * * . * * * **************************************************************************/ #ifndef MATERIAL_MODELMANAGEREXTERNAL_H #define MATERIAL_MODELMANAGEREXTERNAL_H #include #include #include #include #include "Exceptions.h" #include "FolderTree.h" #include "Model.h" #include "ModelLibrary.h" namespace Materials { class MaterialsExport ModelManagerExternal: public Base::BaseClass { TYPESYSTEM_HEADER_WITH_OVERRIDE(); public: ModelManagerExternal(); ~ModelManagerExternal() override = default; static void cleanup(); void refresh(); static const int DEFAULT_CACHE_SIZE = 100; // Library management std::shared_ptr>> getLibraries(); std::shared_ptr getLibrary(const QString& name) const; void createLibrary(const QString& libraryName, const QByteArray& icon, bool readOnly = true); std::shared_ptr> libraryModels(const QString& libraryName); // Model management std::shared_ptr getModel(const QString& uuid); std::shared_ptr>> getModels(); void addModel(const QString& libraryName, const QString& path, const Model& model); void migrateModel(const QString& libraryName, const QString& path, const Model& model); // Cache functions void resetCache(); double modelHitRate(); private: static void initCache(); std::shared_ptr modelNotFound(const QString& uuid); static QMutex _mutex; // Older platforms (Ubuntu 20.04) can't use QString as the index // due to a lack of a move constructor static LRU::Cache> _cache; }; } // namespace Materials #endif // MATERIAL_MODELMANAGEREXTERNAL_H