/*************************************************************************** * 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_MODELMANAGERLOCAL_H #define MATERIAL_MODELMANAGERLOCAL_H #include #include #include #include "Exceptions.h" #include "FolderTree.h" #include "Model.h" #include "ModelLibrary.h" namespace Materials { class MaterialsExport ModelManagerLocal: public Base::BaseClass { TYPESYSTEM_HEADER_WITH_OVERRIDE(); public: ModelManagerLocal(); ~ModelManagerLocal() override = default; static void cleanup(); void refresh(); std::shared_ptr>> getLibraries(); void createLibrary(const QString& libraryName, const QString& directory, const QString& icon, bool readOnly = true); void renameLibrary(const QString& libraryName, const QString& newName); void changeIcon(const QString& libraryName, const QString& icon); void removeLibrary(const QString& libraryName); std::shared_ptr>> libraryModels(const QString& libraryName); std::shared_ptr>> getModels() { return _modelMap; } std::shared_ptr>> getModelTree(std::shared_ptr library, ModelFilter filter = ModelFilter_None) const { return library->getModelTree(filter); } std::shared_ptr getModel(const QString& uuid) const; std::shared_ptr getModelByPath(const QString& path) const; std::shared_ptr getModelByPath(const QString& path, const QString& lib) const; std::shared_ptr getLibrary(const QString& name) const; static bool isModel(const QString& file); private: static void initLibraries(); static std::shared_ptr>> _libraryList; static std::shared_ptr>> _modelMap; static QMutex _mutex; }; } // namespace Materials #endif // MATERIAL_MODELMANAGERLOCAL_H