ContainerManager.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. # Copyright (c) 2020 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import os
  4. import urllib.parse
  5. import uuid
  6. from typing import Any, cast, Dict, List, TYPE_CHECKING, Union
  7. from PyQt5.QtCore import QObject, QUrl
  8. from PyQt5.QtWidgets import QMessageBox
  9. from UM.i18n import i18nCatalog
  10. from UM.FlameProfiler import pyqtSlot
  11. from UM.Logger import Logger
  12. from UM.MimeTypeDatabase import MimeTypeDatabase, MimeTypeNotFoundError
  13. from UM.Platform import Platform
  14. from UM.SaveFile import SaveFile
  15. from UM.Settings.ContainerFormatError import ContainerFormatError
  16. from UM.Settings.ContainerRegistry import ContainerRegistry
  17. from UM.Settings.ContainerStack import ContainerStack
  18. from UM.Settings.DefinitionContainer import DefinitionContainer
  19. from UM.Settings.InstanceContainer import InstanceContainer
  20. import cura.CuraApplication
  21. from cura.Machines.ContainerTree import ContainerTree
  22. if TYPE_CHECKING:
  23. from cura.CuraApplication import CuraApplication
  24. from cura.Machines.ContainerNode import ContainerNode
  25. from cura.Machines.MaterialNode import MaterialNode
  26. from cura.Machines.QualityChangesGroup import QualityChangesGroup
  27. catalog = i18nCatalog("cura")
  28. class ContainerManager(QObject):
  29. """Manager class that contains common actions to deal with containers in Cura.
  30. This is primarily intended as a class to be able to perform certain actions
  31. from within QML. We want to be able to trigger things like removing a container
  32. when a certain action happens. This can be done through this class.
  33. """
  34. def __init__(self, application: "CuraApplication") -> None:
  35. if ContainerManager.__instance is not None:
  36. raise RuntimeError("Try to create singleton '%s' more than once" % self.__class__.__name__)
  37. ContainerManager.__instance = self
  38. try:
  39. super().__init__(parent = application)
  40. except TypeError:
  41. super().__init__()
  42. self._container_name_filters = {} # type: Dict[str, Dict[str, Any]]
  43. @pyqtSlot(str, str, result=str)
  44. def getContainerMetaDataEntry(self, container_id: str, entry_names: str) -> str:
  45. metadatas = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().findContainersMetadata(id = container_id)
  46. if not metadatas:
  47. Logger.log("w", "Could not get metadata of container %s because it was not found.", container_id)
  48. return ""
  49. entries = entry_names.split("/")
  50. result = metadatas[0]
  51. while entries:
  52. entry = entries.pop(0)
  53. result = result.get(entry, {})
  54. if not result:
  55. return ""
  56. return str(result)
  57. @pyqtSlot("QVariant", str, str)
  58. def setContainerMetaDataEntry(self, container_node: "ContainerNode", entry_name: str, entry_value: str) -> bool:
  59. """Set a metadata entry of the specified container.
  60. This will set the specified entry of the container's metadata to the specified
  61. value. Note that entries containing dictionaries can have their entries changed
  62. by using "/" as a separator. For example, to change an entry "foo" in a
  63. dictionary entry "bar", you can specify "bar/foo" as entry name.
  64. :param container_node: :type{ContainerNode}
  65. :param entry_name: :type{str} The name of the metadata entry to change.
  66. :param entry_value: The new value of the entry.
  67. TODO: This is ONLY used by MaterialView for material containers. Maybe refactor this.
  68. Update: In order for QML to use objects and sub objects, those (sub) objects must all be QObject. Is that what we want?
  69. """
  70. if container_node.container is None:
  71. Logger.log("w", "Container node {0} doesn't have a container.".format(container_node.container_id))
  72. return False
  73. root_material_id = container_node.getMetaDataEntry("base_file", "")
  74. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  75. if container_registry.isReadOnly(root_material_id):
  76. Logger.log("w", "Cannot set metadata of read-only container %s.", root_material_id)
  77. return False
  78. root_material_query = container_registry.findContainers(id = root_material_id)
  79. if not root_material_query:
  80. Logger.log("w", "Unable to find root material: {root_material}.".format(root_material = root_material_id))
  81. return False
  82. root_material = root_material_query[0]
  83. entries = entry_name.split("/")
  84. entry_name = entries.pop()
  85. sub_item_changed = False
  86. if entries:
  87. root_name = entries.pop(0)
  88. root = root_material.getMetaDataEntry(root_name)
  89. item = root
  90. for _ in range(len(entries)):
  91. item = item.get(entries.pop(0), {})
  92. if item[entry_name] != entry_value:
  93. sub_item_changed = True
  94. item[entry_name] = entry_value
  95. entry_name = root_name
  96. entry_value = root
  97. root_material.setMetaDataEntry(entry_name, entry_value)
  98. if sub_item_changed: #If it was only a sub-item that has changed then the setMetaDataEntry won't correctly notice that something changed, and we must manually signal that the metadata changed.
  99. root_material.metaDataChanged.emit(root_material)
  100. cura.CuraApplication.CuraApplication.getInstance().getMachineManager().updateUponMaterialMetadataChange()
  101. return True
  102. @pyqtSlot(str, result = str)
  103. def makeUniqueName(self, original_name: str) -> str:
  104. return cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().uniqueName(original_name)
  105. @pyqtSlot(str, result = "QStringList")
  106. def getContainerNameFilters(self, type_name: str) -> List[str]:
  107. """Get a list of string that can be used as name filters for a Qt File Dialog
  108. This will go through the list of available container types and generate a list of strings
  109. out of that. The strings are formatted as "description (*.extension)" and can be directly
  110. passed to a nameFilters property of a Qt File Dialog.
  111. :param type_name: Which types of containers to list. These types correspond to the "type"
  112. key of the plugin metadata.
  113. :return: A string list with name filters.
  114. """
  115. if not self._container_name_filters:
  116. self._updateContainerNameFilters()
  117. filters = []
  118. for filter_string, entry in self._container_name_filters.items():
  119. if not type_name or entry["type"] == type_name:
  120. filters.append(filter_string)
  121. filters.append("All Files (*)")
  122. return filters
  123. @pyqtSlot(str, str, QUrl, result = "QVariantMap")
  124. def exportContainer(self, container_id: str, file_type: str, file_url_or_string: Union[QUrl, str]) -> Dict[str, str]:
  125. """Export a container to a file
  126. :param container_id: The ID of the container to export
  127. :param file_type: The type of file to save as. Should be in the form of "description (*.extension, *.ext)"
  128. :param file_url_or_string: The URL where to save the file.
  129. :return: A dictionary containing a key "status" with a status code and a key "message" with a message
  130. explaining the status. The status code can be one of "error", "cancelled", "success"
  131. """
  132. if not container_id or not file_type or not file_url_or_string:
  133. return {"status": "error", "message": "Invalid arguments"}
  134. if isinstance(file_url_or_string, QUrl):
  135. file_url = file_url_or_string.toLocalFile()
  136. else:
  137. file_url = file_url_or_string
  138. if not file_url:
  139. return {"status": "error", "message": "Invalid path"}
  140. if file_type not in self._container_name_filters:
  141. try:
  142. mime_type = MimeTypeDatabase.getMimeTypeForFile(file_url)
  143. except MimeTypeNotFoundError:
  144. return {"status": "error", "message": "Unknown File Type"}
  145. else:
  146. mime_type = self._container_name_filters[file_type]["mime"]
  147. containers = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().findContainers(id = container_id)
  148. if not containers:
  149. return {"status": "error", "message": "Container not found"}
  150. container = containers[0]
  151. if Platform.isOSX() and "." in file_url:
  152. file_url = file_url[:file_url.rfind(".")]
  153. for suffix in mime_type.suffixes:
  154. if file_url.endswith(suffix):
  155. break
  156. else:
  157. file_url += "." + mime_type.preferredSuffix
  158. if not Platform.isWindows():
  159. if os.path.exists(file_url):
  160. result = QMessageBox.question(None, catalog.i18nc("@title:window", "File Already Exists"),
  161. catalog.i18nc("@label Don't translate the XML tag <filename>!", "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?").format(file_url))
  162. if result == QMessageBox.No:
  163. return {"status": "cancelled", "message": "User cancelled"}
  164. try:
  165. contents = container.serialize()
  166. except NotImplementedError:
  167. return {"status": "error", "message": "Unable to serialize container"}
  168. if contents is None:
  169. return {"status": "error", "message": "Serialization returned None. Unable to write to file"}
  170. try:
  171. with SaveFile(file_url, "w") as f:
  172. f.write(contents)
  173. except OSError:
  174. return {"status": "error", "message": "Unable to write to this location.", "path": file_url}
  175. return {"status": "success", "message": "Successfully exported container", "path": file_url}
  176. @pyqtSlot(QUrl, result = "QVariantMap")
  177. def importMaterialContainer(self, file_url_or_string: Union[QUrl, str]) -> Dict[str, str]:
  178. """Imports a profile from a file
  179. :param file_url: A URL that points to the file to import.
  180. :return: :type{Dict} dict with a 'status' key containing the string 'success' or 'error', and a 'message' key
  181. containing a message for the user
  182. """
  183. if not file_url_or_string:
  184. return {"status": "error", "message": "Invalid path"}
  185. if isinstance(file_url_or_string, QUrl):
  186. file_url = file_url_or_string.toLocalFile()
  187. else:
  188. file_url = file_url_or_string
  189. if not file_url or not os.path.exists(file_url):
  190. return {"status": "error", "message": "Invalid path"}
  191. try:
  192. mime_type = MimeTypeDatabase.getMimeTypeForFile(file_url)
  193. except MimeTypeNotFoundError:
  194. return {"status": "error", "message": "Could not determine mime type of file"}
  195. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  196. container_type = container_registry.getContainerForMimeType(mime_type)
  197. if not container_type:
  198. return {"status": "error", "message": "Could not find a container to handle the specified file."}
  199. if not issubclass(container_type, InstanceContainer):
  200. return {"status": "error", "message": "This is not a material container, but another type of file."}
  201. container_id = urllib.parse.unquote_plus(mime_type.stripExtension(os.path.basename(file_url)))
  202. container_id = container_registry.uniqueName(container_id)
  203. container = container_type(container_id)
  204. try:
  205. with open(file_url, "rt", encoding = "utf-8") as f:
  206. container.deserialize(f.read(), file_url)
  207. except PermissionError:
  208. return {"status": "error", "message": "Permission denied when trying to read the file."}
  209. except ContainerFormatError:
  210. return {"status": "error", "Message": "The material file appears to be corrupt."}
  211. except Exception as ex:
  212. return {"status": "error", "message": str(ex)}
  213. container.setDirty(True)
  214. container_registry.addContainer(container)
  215. return {"status": "success", "message": "Successfully imported container {0}".format(container.getName())}
  216. @pyqtSlot(result = bool)
  217. def updateQualityChanges(self) -> bool:
  218. """Update the current active quality changes container with the settings from the user container.
  219. This will go through the active global stack and all active extruder stacks and merge the changes from the user
  220. container into the quality_changes container. After that, the user container is cleared.
  221. :return: :type{bool} True if successful, False if not.
  222. """
  223. application = cura.CuraApplication.CuraApplication.getInstance()
  224. global_stack = application.getMachineManager().activeMachine
  225. if not global_stack:
  226. return False
  227. application.getMachineManager().blurSettings.emit()
  228. current_quality_changes_name = global_stack.qualityChanges.getName()
  229. current_quality_type = global_stack.quality.getMetaDataEntry("quality_type")
  230. extruder_stacks = global_stack.extruderList
  231. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  232. machine_definition_id = ContainerTree.getInstance().machines[global_stack.definition.getId()].quality_definition
  233. for stack in [global_stack] + extruder_stacks:
  234. # Find the quality_changes container for this stack and merge the contents of the top container into it.
  235. quality_changes = stack.qualityChanges
  236. if quality_changes.getId() == "empty_quality_changes":
  237. quality_changes = InstanceContainer(container_registry.uniqueName((stack.getId() + "_" + current_quality_changes_name).lower().replace(" ", "_")))
  238. quality_changes.setName(current_quality_changes_name)
  239. quality_changes.setMetaDataEntry("type", "quality_changes")
  240. quality_changes.setMetaDataEntry("quality_type", current_quality_type)
  241. if stack.getMetaDataEntry("position") is not None: # Extruder stacks.
  242. quality_changes.setMetaDataEntry("position", stack.getMetaDataEntry("position"))
  243. quality_changes.setMetaDataEntry("intent_category", stack.quality.getMetaDataEntry("intent_category", "default"))
  244. quality_changes.setMetaDataEntry("setting_version", application.SettingVersion)
  245. quality_changes.setDefinition(machine_definition_id)
  246. container_registry.addContainer(quality_changes)
  247. stack.qualityChanges = quality_changes
  248. if not quality_changes or container_registry.isReadOnly(quality_changes.getId()):
  249. Logger.log("e", "Could not update quality of a nonexistant or read only quality profile in stack %s", stack.getId())
  250. continue
  251. self._performMerge(quality_changes, stack.getTop())
  252. cura.CuraApplication.CuraApplication.getInstance().getMachineManager().activeQualityChangesGroupChanged.emit()
  253. return True
  254. @pyqtSlot()
  255. def clearUserContainers(self) -> None:
  256. """Clear the top-most (user) containers of the active stacks."""
  257. machine_manager = cura.CuraApplication.CuraApplication.getInstance().getMachineManager()
  258. machine_manager.blurSettings.emit()
  259. send_emits_containers = []
  260. # Go through global and extruder stacks and clear their topmost container (the user settings).
  261. global_stack = machine_manager.activeMachine
  262. for stack in [global_stack] + global_stack.extruderList:
  263. container = stack.userChanges
  264. container.clear()
  265. send_emits_containers.append(container)
  266. # user changes are possibly added to make the current setup match the current enabled extruders
  267. machine_manager.correctExtruderSettings()
  268. # The Print Sequence should be changed to match the current setup
  269. machine_manager.correctPrintSequence()
  270. for container in send_emits_containers:
  271. container.sendPostponedEmits()
  272. @pyqtSlot("QVariant", bool, result = "QStringList")
  273. def getLinkedMaterials(self, material_node: "MaterialNode", exclude_self: bool = False) -> List[str]:
  274. """Get a list of materials that have the same GUID as the reference material
  275. :param material_node: The node representing the material for which to get
  276. the same GUID.
  277. :param exclude_self: Whether to include the name of the material you provided.
  278. :return: A list of names of materials with the same GUID.
  279. """
  280. same_guid = ContainerRegistry.getInstance().findInstanceContainersMetadata(GUID = material_node.guid)
  281. if exclude_self:
  282. return list({meta["name"] for meta in same_guid if meta["base_file"] != material_node.base_file})
  283. else:
  284. return list({meta["name"] for meta in same_guid})
  285. @pyqtSlot("QVariant")
  286. def unlinkMaterial(self, material_node: "MaterialNode") -> None:
  287. """Unlink a material from all other materials by creating a new GUID
  288. :param material_id: :type{str} the id of the material to create a new GUID for.
  289. """
  290. # Get the material group
  291. if material_node.container is None: # Failed to lazy-load this container.
  292. return
  293. root_material_query = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().findInstanceContainers(id = material_node.getMetaDataEntry("base_file", ""))
  294. if not root_material_query:
  295. Logger.log("w", "Unable to find material group for %s", material_node)
  296. return
  297. root_material = root_material_query[0]
  298. # Generate a new GUID
  299. new_guid = str(uuid.uuid4())
  300. # Update the GUID
  301. # NOTE: We only need to set the root material container because XmlMaterialProfile.setMetaDataEntry() will
  302. # take care of the derived containers too
  303. root_material.setMetaDataEntry("GUID", new_guid)
  304. def _performMerge(self, merge_into: InstanceContainer, merge: InstanceContainer, clear_settings: bool = True) -> None:
  305. if merge == merge_into:
  306. return
  307. for key in merge.getAllKeys():
  308. merge_into.setProperty(key, "value", merge.getProperty(key, "value"))
  309. if clear_settings:
  310. merge.clear()
  311. def _updateContainerNameFilters(self) -> None:
  312. self._container_name_filters = {}
  313. plugin_registry = cura.CuraApplication.CuraApplication.getInstance().getPluginRegistry()
  314. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  315. for plugin_id, container_type in container_registry.getContainerTypes():
  316. # Ignore default container types since those are not plugins
  317. if container_type in (InstanceContainer, ContainerStack, DefinitionContainer):
  318. continue
  319. serialize_type = ""
  320. try:
  321. plugin_metadata = plugin_registry.getMetaData(plugin_id)
  322. if plugin_metadata:
  323. serialize_type = plugin_metadata["settings_container"]["type"]
  324. else:
  325. continue
  326. except KeyError as e:
  327. continue
  328. mime_type = container_registry.getMimeTypeForContainer(container_type)
  329. if mime_type is None:
  330. continue
  331. entry = {
  332. "type": serialize_type,
  333. "mime": mime_type,
  334. "container": container_type
  335. }
  336. suffix = mime_type.preferredSuffix
  337. if Platform.isOSX() and "." in suffix:
  338. # OSX's File dialog is stupid and does not allow selecting files with a . in its name
  339. suffix = suffix[suffix.index(".") + 1:]
  340. suffix_list = "*." + suffix
  341. for suffix in mime_type.suffixes:
  342. if suffix == mime_type.preferredSuffix:
  343. continue
  344. if Platform.isOSX() and "." in suffix:
  345. # OSX's File dialog is stupid and does not allow selecting files with a . in its name
  346. suffix = suffix[suffix.index("."):]
  347. suffix_list += ", *." + suffix
  348. name_filter = "{0} ({1})".format(mime_type.comment, suffix_list)
  349. self._container_name_filters[name_filter] = entry
  350. @pyqtSlot(QUrl, result = "QVariantMap")
  351. def importProfile(self, file_url: QUrl) -> Dict[str, str]:
  352. """Import single profile, file_url does not have to end with curaprofile"""
  353. if not file_url.isValid():
  354. return {"status": "error", "message": catalog.i18nc("@info:status", "Invalid file URL:") + " " + str(file_url)}
  355. path = file_url.toLocalFile()
  356. if not path:
  357. return {"status": "error", "message": catalog.i18nc("@info:status", "Invalid file URL:") + " " + str(file_url)}
  358. return cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().importProfile(path)
  359. @pyqtSlot(QObject, QUrl, str)
  360. def exportQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup", file_url: QUrl, file_type: str) -> None:
  361. if not file_url.isValid():
  362. return
  363. path = file_url.toLocalFile()
  364. if not path:
  365. return
  366. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  367. container_list = [cast(InstanceContainer, container_registry.findContainers(id = quality_changes_group.metadata_for_global["id"])[0])] # type: List[InstanceContainer]
  368. for metadata in quality_changes_group.metadata_per_extruder.values():
  369. container_list.append(cast(InstanceContainer, container_registry.findContainers(id = metadata["id"])[0]))
  370. cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry().exportQualityProfile(container_list, path, file_type)
  371. __instance = None # type: ContainerManager
  372. @classmethod
  373. def getInstance(cls, *args, **kwargs) -> "ContainerManager":
  374. return cls.__instance