MaterialManagementModel.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. # Copyright (c) 2021 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import copy # To duplicate materials.
  4. from PyQt6.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl
  5. from typing import Any, Dict, Optional, TYPE_CHECKING
  6. import uuid # To generate new GUIDs for new materials.
  7. import zipfile # To export all materials in a .zip archive.
  8. from UM.i18n import i18nCatalog
  9. from UM.Logger import Logger
  10. from UM.Signal import postponeSignals, CompressTechnique
  11. import cura.CuraApplication # Imported like this to prevent circular imports.
  12. from cura.Machines.ContainerTree import ContainerTree
  13. from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To find the sets of materials belonging to each other, and currently loaded extruder stacks.
  14. if TYPE_CHECKING:
  15. from cura.Machines.MaterialNode import MaterialNode
  16. catalog = i18nCatalog("cura")
  17. class MaterialManagementModel(QObject):
  18. favoritesChanged = pyqtSignal(str)
  19. """Triggered when a favorite is added or removed.
  20. :param The base file of the material is provided as parameter when this emits
  21. """
  22. @pyqtSlot("QVariant", result = bool)
  23. def canMaterialBeRemoved(self, material_node: "MaterialNode") -> bool:
  24. """Can a certain material be deleted, or is it still in use in one of the container stacks anywhere?
  25. We forbid the user from deleting a material if it's in use in any stack. Deleting it while it's in use can
  26. lead to corrupted stacks. In the future we might enable this functionality again (deleting the material from
  27. those stacks) but for now it is easier to prevent the user from doing this.
  28. :param material_node: The ContainerTree node of the material to check.
  29. :return: Whether or not the material can be removed.
  30. """
  31. container_registry = CuraContainerRegistry.getInstance()
  32. ids_to_remove = {metadata.get("id", "") for metadata in container_registry.findInstanceContainersMetadata(base_file = material_node.base_file)}
  33. for extruder_stack in container_registry.findContainerStacks(type = "extruder_train"):
  34. if extruder_stack.material.getId() in ids_to_remove:
  35. return False
  36. return True
  37. @pyqtSlot("QVariant", str)
  38. def setMaterialName(self, material_node: "MaterialNode", name: str) -> None:
  39. """Change the user-visible name of a material.
  40. :param material_node: The ContainerTree node of the material to rename.
  41. :param name: The new name for the material.
  42. """
  43. container_registry = CuraContainerRegistry.getInstance()
  44. root_material_id = material_node.base_file
  45. if container_registry.isReadOnly(root_material_id):
  46. Logger.log("w", "Cannot set name of read-only container %s.", root_material_id)
  47. return
  48. return container_registry.findContainers(id = root_material_id)[0].setName(name)
  49. @pyqtSlot("QVariant")
  50. def removeMaterial(self, material_node: "MaterialNode") -> None:
  51. """Deletes a material from Cura.
  52. This function does not do any safety checking any more. Please call this function only if:
  53. - The material is not read-only.
  54. - The material is not used in any stacks.
  55. If the material was not lazy-loaded yet, this will fully load the container. When removing this material
  56. node, all other materials with the same base fill will also be removed.
  57. :param material_node: The material to remove.
  58. """
  59. Logger.info(f"Removing material {material_node.container_id}")
  60. container_registry = CuraContainerRegistry.getInstance()
  61. materials_this_base_file = container_registry.findContainersMetadata(base_file = material_node.base_file)
  62. # The material containers belonging to the same material file are supposed to work together. This postponeSignals()
  63. # does two things:
  64. # - optimizing the signal emitting.
  65. # - making sure that the signals will only be emitted after all the material containers have been removed.
  66. with postponeSignals(container_registry.containerRemoved, compress = CompressTechnique.CompressPerParameterValue):
  67. # CURA-6886: Some containers may not have been loaded. If remove one material container, its material file
  68. # will be removed. If later we remove a sub-material container which hasn't been loaded previously, it will
  69. # crash because removeContainer() requires to load the container first, but the material file was already
  70. # gone.
  71. for material_metadata in materials_this_base_file:
  72. container_registry.findInstanceContainers(id = material_metadata["id"])
  73. for material_metadata in materials_this_base_file:
  74. container_registry.removeContainer(material_metadata["id"])
  75. def duplicateMaterialByBaseFile(self, base_file: str, new_base_id: Optional[str] = None,
  76. new_metadata: Optional[Dict[str, Any]] = None) -> Optional[str]:
  77. """Creates a duplicate of a material with the same GUID and base_file metadata
  78. :param base_file: The base file of the material to duplicate.
  79. :param new_base_id: A new material ID for the base material. The IDs of the submaterials will be based off this
  80. one. If not provided, a material ID will be generated automatically.
  81. :param new_metadata: Metadata for the new material. If not provided, this will be duplicated from the original
  82. material.
  83. :return: The root material ID of the duplicate material.
  84. """
  85. container_registry = CuraContainerRegistry.getInstance()
  86. root_materials = container_registry.findContainers(id = base_file)
  87. if not root_materials:
  88. Logger.log("i", "Unable to duplicate the root material with ID {root_id}, because it doesn't exist.".format(root_id = base_file))
  89. return None
  90. root_material = root_materials[0]
  91. # Ensure that all settings are saved.
  92. application = cura.CuraApplication.CuraApplication.getInstance()
  93. application.saveSettings()
  94. # Create a new ID and container to hold the data.
  95. if new_base_id is None:
  96. new_base_id = container_registry.uniqueName(root_material.getId())
  97. new_root_material = copy.deepcopy(root_material)
  98. new_root_material.getMetaData()["id"] = new_base_id
  99. new_root_material.getMetaData()["base_file"] = new_base_id
  100. if new_metadata is not None:
  101. new_root_material.getMetaData().update(new_metadata)
  102. new_containers = [new_root_material]
  103. # Clone all submaterials.
  104. for container_to_copy in container_registry.findInstanceContainers(base_file = base_file):
  105. if container_to_copy.getId() == base_file:
  106. continue # We already have that one. Skip it.
  107. new_id = new_base_id
  108. definition = container_to_copy.getMetaDataEntry("definition")
  109. if definition != "fdmprinter":
  110. new_id += "_" + definition
  111. variant_name = container_to_copy.getMetaDataEntry("variant_name")
  112. if variant_name:
  113. new_id += "_" + variant_name.replace(" ", "_")
  114. new_container = copy.deepcopy(container_to_copy)
  115. new_container.getMetaData()["id"] = new_id
  116. new_container.getMetaData()["base_file"] = new_base_id
  117. if new_metadata is not None:
  118. new_container.getMetaData().update(new_metadata)
  119. new_containers.append(new_container)
  120. # CURA-6863: Nodes in ContainerTree will be updated upon ContainerAdded signals, one at a time. It will use the
  121. # best fit material container at the time it sees one. For example, if you duplicate and get generic_pva #2,
  122. # if the node update function sees the containers in the following order:
  123. #
  124. # - generic_pva #2
  125. # - generic_pva #2_um3_aa04
  126. #
  127. # It will first use "generic_pva #2" because that's the best fit it has ever seen, and later "generic_pva #2_um3_aa04"
  128. # once it sees that. Because things run in the Qt event loop, they don't happen at the same time. This means if
  129. # between those two events, the ContainerTree will have nodes that contain invalid data.
  130. #
  131. # This sort fixes the problem by emitting the most specific containers first.
  132. new_containers = sorted(new_containers, key = lambda x: x.getId(), reverse = True)
  133. # Optimization. Serving the same purpose as the postponeSignals() in removeMaterial()
  134. # postpone the signals emitted when duplicating materials. This is easier on the event loop; changes the
  135. # behavior to be like a transaction. Prevents concurrency issues.
  136. with postponeSignals(container_registry.containerAdded, compress=CompressTechnique.CompressPerParameterValue):
  137. for container_to_add in new_containers:
  138. container_to_add.setDirty(True)
  139. container_registry.addContainer(container_to_add)
  140. # If the duplicated material was favorite then the new material should also be added to the favorites.
  141. favorites_set = set(application.getPreferences().getValue("cura/favorite_materials").split(";"))
  142. if base_file in favorites_set:
  143. favorites_set.add(new_base_id)
  144. application.getPreferences().setValue("cura/favorite_materials", ";".join(favorites_set))
  145. return new_base_id
  146. @pyqtSlot("QVariant", result = str)
  147. def duplicateMaterial(self, material_node: "MaterialNode", new_base_id: Optional[str] = None,
  148. new_metadata: Optional[Dict[str, Any]] = None) -> Optional[str]:
  149. """Creates a duplicate of a material with the same GUID and base_file metadata
  150. :param material_node: The node representing the material to duplicate.
  151. :param new_base_id: A new material ID for the base material. The IDs of the submaterials will be based off this
  152. one. If not provided, a material ID will be generated automatically.
  153. :param new_metadata: Metadata for the new material. If not provided, this will be duplicated from the original
  154. material.
  155. :return: The root material ID of the duplicate material.
  156. """
  157. Logger.info(f"Duplicating material {material_node.base_file} to {new_base_id}")
  158. return self.duplicateMaterialByBaseFile(material_node.base_file, new_base_id, new_metadata)
  159. @pyqtSlot(result = str)
  160. def createMaterial(self) -> str:
  161. """Create a new material by cloning the preferred material for the current material diameter and generate a new
  162. GUID.
  163. The material type is explicitly left to be the one from the preferred material, since this allows the user to
  164. still have SOME profiles to work with.
  165. :return: The ID of the newly created material.
  166. """
  167. # Ensure all settings are saved.
  168. application = cura.CuraApplication.CuraApplication.getInstance()
  169. application.saveSettings()
  170. # Find the preferred material.
  171. extruder_stack = application.getMachineManager().activeStack
  172. active_variant_name = extruder_stack.variant.getName()
  173. approximate_diameter = int(extruder_stack.approximateMaterialDiameter)
  174. global_container_stack = application.getGlobalContainerStack()
  175. if not global_container_stack:
  176. return ""
  177. machine_node = ContainerTree.getInstance().machines[global_container_stack.definition.getId()]
  178. preferred_material_node = machine_node.variants[active_variant_name].preferredMaterial(approximate_diameter)
  179. # Create a new ID & new metadata for the new material.
  180. new_id = CuraContainerRegistry.getInstance().uniqueName("custom_material")
  181. new_metadata = {"name": catalog.i18nc("@label", "Custom Material"),
  182. "brand": catalog.i18nc("@label", "Custom"),
  183. "GUID": str(uuid.uuid4()),
  184. }
  185. self.duplicateMaterial(preferred_material_node, new_base_id = new_id, new_metadata = new_metadata)
  186. return new_id
  187. @pyqtSlot(str)
  188. def addFavorite(self, material_base_file: str) -> None:
  189. """Adds a certain material to the favorite materials.
  190. :param material_base_file: The base file of the material to add.
  191. """
  192. application = cura.CuraApplication.CuraApplication.getInstance()
  193. favorites = application.getPreferences().getValue("cura/favorite_materials").split(";")
  194. if material_base_file not in favorites:
  195. favorites.append(material_base_file)
  196. application.getPreferences().setValue("cura/favorite_materials", ";".join(favorites))
  197. application.saveSettings()
  198. self.favoritesChanged.emit(material_base_file)
  199. @pyqtSlot(str)
  200. def removeFavorite(self, material_base_file: str) -> None:
  201. """Removes a certain material from the favorite materials.
  202. If the material was not in the favorite materials, nothing happens.
  203. """
  204. application = cura.CuraApplication.CuraApplication.getInstance()
  205. favorites = application.getPreferences().getValue("cura/favorite_materials").split(";")
  206. try:
  207. favorites.remove(material_base_file)
  208. application.getPreferences().setValue("cura/favorite_materials", ";".join(favorites))
  209. application.saveSettings()
  210. self.favoritesChanged.emit(material_base_file)
  211. except ValueError: # Material was not in the favorites list.
  212. Logger.log("w", "Material {material_base_file} was already not a favorite material.".format(material_base_file = material_base_file))
  213. @pyqtSlot(result = QUrl)
  214. def getPreferredExportAllPath(self) -> QUrl:
  215. """
  216. Get the preferred path to export materials to.
  217. If there is a removable drive, that should be the preferred path. Otherwise it should be the most recent local
  218. file path.
  219. :return: The preferred path to export all materials to.
  220. """
  221. cura_application = cura.CuraApplication.CuraApplication.getInstance()
  222. device_manager = cura_application.getOutputDeviceManager()
  223. devices = device_manager.getOutputDevices()
  224. for device in devices:
  225. if device.__class__.__name__ == "RemovableDriveOutputDevice":
  226. return QUrl.fromLocalFile(device.getId())
  227. else: # No removable drives? Use local path.
  228. return cura_application.getDefaultPath("dialog_material_path")
  229. @pyqtSlot(QUrl)
  230. def exportAll(self, file_path: QUrl) -> None:
  231. """
  232. Export all materials to a certain file path.
  233. :param file_path: The path to export the materials to.
  234. """
  235. registry = CuraContainerRegistry.getInstance()
  236. archive = zipfile.ZipFile(file_path.toLocalFile(), "w", compression = zipfile.ZIP_DEFLATED)
  237. for metadata in registry.findInstanceContainersMetadata(type = "material"):
  238. if metadata["base_file"] != metadata["id"]: # Only process base files.
  239. continue
  240. if metadata["id"] == "empty_material": # Don't export the empty material.
  241. continue
  242. material = registry.findContainers(id = metadata["id"])[0]
  243. suffix = registry.getMimeTypeForContainer(type(material)).preferredSuffix
  244. filename = metadata["id"] + "." + suffix
  245. try:
  246. archive.writestr(filename, material.serialize())
  247. except OSError as e:
  248. Logger.log("e", f"An error has occurred while writing the material \'{metadata['id']}\' in the file \'{filename}\': {e}.")