/*************************************************************************** * 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_EXTERNALMANAGER_H #define MATERIAL_EXTERNALMANAGER_H #include #include #include class QMutex; class QString; namespace Materials { class Library; class Material; class Model; class MaterialFilter; class MaterialFilterOptions; class MaterialsExport ExternalManager: public ParameterGrp::ObserverType { public: static ExternalManager* getManager(); /// Observer message from the ParameterGrp void OnChange(ParameterGrp::SubjectType& rCaller, ParameterGrp::MessageType Reason) override; // Library management std::shared_ptr>> libraries(); std::shared_ptr>> modelLibraries(); std::shared_ptr>> materialLibraries(); std::shared_ptr getLibrary(const QString& name); void createLibrary(const QString& libraryName, 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>> libraryMaterials(const QString& libraryName); std::shared_ptr>> libraryMaterials(const QString& libraryName, const std::shared_ptr& filter, const MaterialFilterOptions& options); // Model management std::shared_ptr getModel(const QString& uuid); void addModel(const QString& libraryName, const QString& path, const std::shared_ptr& model); void migrateModel(const QString& libraryName, const QString& path, const std::shared_ptr& model); // Material management std::shared_ptr getMaterial(const QString& uuid); void addMaterial(const QString& libraryName, const QString& path, const std::shared_ptr& material); void migrateMaterial(const QString& libraryName, const QString& path, const std::shared_ptr& material); private: ExternalManager(); ~ExternalManager() override; static void initManager(); void getConfiguration(); void instantiate(); void connect(); bool checkMaterialLibraryType(const Py::Object& entry); std::shared_ptr libraryFromObject(const Py::Object& entry); bool checkMaterialObjectType(const Py::Object& entry); std::tuple materialObjectTypeFromObject(const Py::Object& entry); static ExternalManager* _manager; static QMutex _mutex; // COnfiguration ParameterGrp::handle _hGrp; std::string _moduleName; std::string _className; bool _instantiated; Py::Object _managerObject; }; } // namespace Materials #endif // MATERIAL_EXTERNALMANAGER_H