CuraContainerStack.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from typing import Any, cast, List, Optional
  4. from PyQt5.QtCore import pyqtProperty, pyqtSignal, QObject
  5. from UM.Application import Application
  6. from UM.Decorators import override
  7. from UM.FlameProfiler import pyqtSlot
  8. from UM.Logger import Logger
  9. from UM.Settings.ContainerStack import ContainerStack, InvalidContainerStackError
  10. from UM.Settings.InstanceContainer import InstanceContainer
  11. from UM.Settings.DefinitionContainer import DefinitionContainer
  12. from UM.Settings.ContainerRegistry import ContainerRegistry
  13. from UM.Settings.Interfaces import ContainerInterface, DefinitionContainerInterface
  14. from cura.Settings import cura_empty_instance_containers
  15. from . import Exceptions
  16. class CuraContainerStack(ContainerStack):
  17. """Base class for Cura related stacks that want to enforce certain containers are available.
  18. This class makes sure that the stack has the following containers set: user changes, quality
  19. changes, quality, material, variant, definition changes and finally definition. Initially,
  20. these will be equal to the empty instance container.
  21. The container types are determined based on the following criteria:
  22. - user: An InstanceContainer with the metadata entry "type" set to "user".
  23. - quality changes: An InstanceContainer with the metadata entry "type" set to "quality_changes".
  24. - quality: An InstanceContainer with the metadata entry "type" set to "quality".
  25. - material: An InstanceContainer with the metadata entry "type" set to "material".
  26. - variant: An InstanceContainer with the metadata entry "type" set to "variant".
  27. - definition changes: An InstanceContainer with the metadata entry "type" set to "definition_changes".
  28. - definition: A DefinitionContainer.
  29. Internally, this class ensures the mentioned containers are always there and kept in a specific order.
  30. This also means that operations on the stack that modifies the container ordering is prohibited and
  31. will raise an exception.
  32. """
  33. def __init__(self, container_id: str) -> None:
  34. super().__init__(container_id)
  35. self._empty_instance_container = cura_empty_instance_containers.empty_container #type: InstanceContainer
  36. self._empty_quality_changes = cura_empty_instance_containers.empty_quality_changes_container #type: InstanceContainer
  37. self._empty_quality = cura_empty_instance_containers.empty_quality_container #type: InstanceContainer
  38. self._empty_material = cura_empty_instance_containers.empty_material_container #type: InstanceContainer
  39. self._empty_variant = cura_empty_instance_containers.empty_variant_container #type: InstanceContainer
  40. self._containers = [self._empty_instance_container for i in range(len(_ContainerIndexes.IndexTypeMap))] #type: List[ContainerInterface]
  41. self._containers[_ContainerIndexes.QualityChanges] = self._empty_quality_changes
  42. self._containers[_ContainerIndexes.Quality] = self._empty_quality
  43. self._containers[_ContainerIndexes.Material] = self._empty_material
  44. self._containers[_ContainerIndexes.Variant] = self._empty_variant
  45. self.containersChanged.connect(self._onContainersChanged)
  46. import cura.CuraApplication #Here to prevent circular imports.
  47. self.setMetaDataEntry("setting_version", cura.CuraApplication.CuraApplication.SettingVersion)
  48. # This is emitted whenever the containersChanged signal from the ContainerStack base class is emitted.
  49. pyqtContainersChanged = pyqtSignal()
  50. def setUserChanges(self, new_user_changes: InstanceContainer) -> None:
  51. """Set the user changes container.
  52. :param new_user_changes: The new user changes container. It is expected to have a "type" metadata entry with the value "user".
  53. """
  54. self.replaceContainer(_ContainerIndexes.UserChanges, new_user_changes)
  55. @pyqtProperty(InstanceContainer, fset = setUserChanges, notify = pyqtContainersChanged)
  56. def userChanges(self) -> InstanceContainer:
  57. """Get the user changes container.
  58. :return: The user changes container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  59. """
  60. return cast(InstanceContainer, self._containers[_ContainerIndexes.UserChanges])
  61. def setQualityChanges(self, new_quality_changes: InstanceContainer, postpone_emit = False) -> None:
  62. """Set the quality changes container.
  63. :param new_quality_changes: The new quality changes container. It is expected to have a "type" metadata entry with the value "quality_changes".
  64. """
  65. self.replaceContainer(_ContainerIndexes.QualityChanges, new_quality_changes, postpone_emit = postpone_emit)
  66. @pyqtProperty(InstanceContainer, fset = setQualityChanges, notify = pyqtContainersChanged)
  67. def qualityChanges(self) -> InstanceContainer:
  68. """Get the quality changes container.
  69. :return: The quality changes container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  70. """
  71. return cast(InstanceContainer, self._containers[_ContainerIndexes.QualityChanges])
  72. def setIntent(self, new_intent: InstanceContainer, postpone_emit: bool = False) -> None:
  73. """Set the intent container.
  74. :param new_intent: The new intent container. It is expected to have a "type" metadata entry with the value "intent".
  75. """
  76. self.replaceContainer(_ContainerIndexes.Intent, new_intent, postpone_emit = postpone_emit)
  77. @pyqtProperty(InstanceContainer, fset = setIntent, notify = pyqtContainersChanged)
  78. def intent(self) -> InstanceContainer:
  79. """Get the quality container.
  80. :return: The intent container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  81. """
  82. return cast(InstanceContainer, self._containers[_ContainerIndexes.Intent])
  83. def setQuality(self, new_quality: InstanceContainer, postpone_emit: bool = False) -> None:
  84. """Set the quality container.
  85. :param new_quality: The new quality container. It is expected to have a "type" metadata entry with the value "quality".
  86. """
  87. self.replaceContainer(_ContainerIndexes.Quality, new_quality, postpone_emit = postpone_emit)
  88. @pyqtProperty(InstanceContainer, fset = setQuality, notify = pyqtContainersChanged)
  89. def quality(self) -> InstanceContainer:
  90. """Get the quality container.
  91. :return: The quality container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  92. """
  93. return cast(InstanceContainer, self._containers[_ContainerIndexes.Quality])
  94. def setMaterial(self, new_material: InstanceContainer, postpone_emit: bool = False) -> None:
  95. """Set the material container.
  96. :param new_material: The new material container. It is expected to have a "type" metadata entry with the value "material".
  97. """
  98. self.replaceContainer(_ContainerIndexes.Material, new_material, postpone_emit = postpone_emit)
  99. @pyqtProperty(InstanceContainer, fset = setMaterial, notify = pyqtContainersChanged)
  100. def material(self) -> InstanceContainer:
  101. """Get the material container.
  102. :return: The material container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  103. """
  104. return cast(InstanceContainer, self._containers[_ContainerIndexes.Material])
  105. def setVariant(self, new_variant: InstanceContainer) -> None:
  106. """Set the variant container.
  107. :param new_variant: The new variant container. It is expected to have a "type" metadata entry with the value "variant".
  108. """
  109. self.replaceContainer(_ContainerIndexes.Variant, new_variant)
  110. @pyqtProperty(InstanceContainer, fset = setVariant, notify = pyqtContainersChanged)
  111. def variant(self) -> InstanceContainer:
  112. """Get the variant container.
  113. :return: The variant container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  114. """
  115. return cast(InstanceContainer, self._containers[_ContainerIndexes.Variant])
  116. def setDefinitionChanges(self, new_definition_changes: InstanceContainer) -> None:
  117. """Set the definition changes container.
  118. :param new_definition_changes: The new definition changes container. It is expected to have a "type" metadata entry with the value "definition_changes".
  119. """
  120. self.replaceContainer(_ContainerIndexes.DefinitionChanges, new_definition_changes)
  121. @pyqtProperty(InstanceContainer, fset = setDefinitionChanges, notify = pyqtContainersChanged)
  122. def definitionChanges(self) -> InstanceContainer:
  123. """Get the definition changes container.
  124. :return: The definition changes container. Should always be a valid container, but can be equal to the empty InstanceContainer.
  125. """
  126. return cast(InstanceContainer, self._containers[_ContainerIndexes.DefinitionChanges])
  127. def setDefinition(self, new_definition: DefinitionContainerInterface) -> None:
  128. """Set the definition container.
  129. :param new_definition: The new definition container. It is expected to have a "type" metadata entry with the value "definition".
  130. """
  131. self.replaceContainer(_ContainerIndexes.Definition, new_definition)
  132. def getDefinition(self) -> "DefinitionContainer":
  133. return cast(DefinitionContainer, self._containers[_ContainerIndexes.Definition])
  134. definition = pyqtProperty(QObject, fget = getDefinition, fset = setDefinition, notify = pyqtContainersChanged)
  135. @override(ContainerStack)
  136. def getBottom(self) -> "DefinitionContainer":
  137. return self.definition
  138. @override(ContainerStack)
  139. def getTop(self) -> "InstanceContainer":
  140. return self.userChanges
  141. @pyqtSlot(str, result = bool)
  142. def hasUserValue(self, key: str) -> bool:
  143. """Check whether the specified setting has a 'user' value.
  144. A user value here is defined as the setting having a value in either
  145. the UserChanges or QualityChanges container.
  146. :return: True if the setting has a user value, False if not.
  147. """
  148. if self._containers[_ContainerIndexes.UserChanges].hasProperty(key, "value"):
  149. return True
  150. if self._containers[_ContainerIndexes.QualityChanges].hasProperty(key, "value"):
  151. return True
  152. return False
  153. def setProperty(self, key: str, property_name: str, property_value: Any, container: "ContainerInterface" = None, set_from_cache: bool = False) -> None:
  154. """Set a property of a setting.
  155. This will set a property of a specified setting. Since the container stack does not contain
  156. any settings itself, it is required to specify a container to set the property on. The target
  157. container is matched by container type.
  158. :param key: The key of the setting to set.
  159. :param property_name: The name of the property to set.
  160. :param new_value: The new value to set the property to.
  161. """
  162. container_index = _ContainerIndexes.UserChanges
  163. self._containers[container_index].setProperty(key, property_name, property_value, container, set_from_cache)
  164. @override(ContainerStack)
  165. def addContainer(self, container: ContainerInterface) -> None:
  166. """Overridden from ContainerStack
  167. Since we have a fixed order of containers in the stack and this method would modify the container
  168. ordering, we disallow this operation.
  169. """
  170. raise Exceptions.InvalidOperationError("Cannot add a container to Global stack")
  171. @override(ContainerStack)
  172. def insertContainer(self, index: int, container: ContainerInterface) -> None:
  173. """Overridden from ContainerStack
  174. Since we have a fixed order of containers in the stack and this method would modify the container
  175. ordering, we disallow this operation.
  176. """
  177. raise Exceptions.InvalidOperationError("Cannot insert a container into Global stack")
  178. @override(ContainerStack)
  179. def removeContainer(self, index: int = 0) -> None:
  180. """Overridden from ContainerStack
  181. Since we have a fixed order of containers in the stack and this method would modify the container
  182. ordering, we disallow this operation.
  183. """
  184. raise Exceptions.InvalidOperationError("Cannot remove a container from Global stack")
  185. @override(ContainerStack)
  186. def replaceContainer(self, index: int, container: ContainerInterface, postpone_emit: bool = False) -> None:
  187. """Overridden from ContainerStack
  188. Replaces the container at the specified index with another container.
  189. This version performs checks to make sure the new container has the expected metadata and type.
  190. :throws Exception.InvalidContainerError Raised when trying to replace a container with a container that has an incorrect type.
  191. """
  192. expected_type = _ContainerIndexes.IndexTypeMap[index]
  193. if expected_type == "definition":
  194. if not isinstance(container, DefinitionContainer):
  195. raise Exceptions.InvalidContainerError("Cannot replace container at index {index} with a container that is not a DefinitionContainer".format(index = index))
  196. elif container != self._empty_instance_container and container.getMetaDataEntry("type") != expected_type:
  197. raise Exceptions.InvalidContainerError("Cannot replace container at index {index} with a container that is not of {type} type, but {actual_type} type.".format(index = index, type = expected_type, actual_type = container.getMetaDataEntry("type")))
  198. current_container = self._containers[index]
  199. if current_container.getId() == container.getId():
  200. return
  201. super().replaceContainer(index, container, postpone_emit)
  202. @override(ContainerStack)
  203. def deserialize(self, serialized: str, file_name: Optional[str] = None) -> str:
  204. """Overridden from ContainerStack
  205. This deserialize will make sure the internal list of containers matches with what we expect.
  206. It will first check to see if the container at a certain index already matches with what we
  207. expect. If it does not, it will search for a matching container with the correct type. Should
  208. no container with the correct type be found, it will use the empty container.
  209. :raise InvalidContainerStackError: Raised when no definition can be found for the stack.
  210. """
  211. # update the serialized data first
  212. serialized = super().deserialize(serialized, file_name)
  213. new_containers = self._containers.copy()
  214. while len(new_containers) < len(_ContainerIndexes.IndexTypeMap):
  215. new_containers.append(self._empty_instance_container)
  216. # Validate and ensure the list of containers matches with what we expect
  217. for index, type_name in _ContainerIndexes.IndexTypeMap.items():
  218. container = None
  219. try:
  220. container = new_containers[index]
  221. except IndexError:
  222. pass
  223. if type_name == "definition":
  224. if not container or not isinstance(container, DefinitionContainer):
  225. definition = self.findContainer(container_type = DefinitionContainer)
  226. if not definition:
  227. raise InvalidContainerStackError("Stack {id} does not have a definition!".format(id = self.getId()))
  228. new_containers[index] = definition
  229. continue
  230. if not container or container.getMetaDataEntry("type") != type_name:
  231. actual_container = self.findContainer(type = type_name)
  232. if actual_container:
  233. new_containers[index] = actual_container
  234. else:
  235. new_containers[index] = self._empty_instance_container
  236. self._containers = new_containers
  237. # CURA-5281
  238. # Some stacks can have empty definition_changes containers which will cause problems.
  239. # Make sure that all stacks here have non-empty definition_changes containers.
  240. if isinstance(new_containers[_ContainerIndexes.DefinitionChanges], type(self._empty_instance_container)):
  241. from cura.Settings.CuraStackBuilder import CuraStackBuilder
  242. CuraStackBuilder.createDefinitionChangesContainer(self, self.getId() + "_settings")
  243. ## TODO; Deserialize the containers.
  244. return serialized
  245. def _onContainersChanged(self, container: Any) -> None:
  246. """Helper to make sure we emit a PyQt signal on container changes."""
  247. Application.getInstance().callLater(self.pyqtContainersChanged.emit)
  248. # Helper that can be overridden to get the "machine" definition, that is, the definition that defines the machine
  249. # and its properties rather than, for example, the extruder. Defaults to simply returning the definition property.
  250. def _getMachineDefinition(self) -> DefinitionContainer:
  251. return self.definition
  252. @classmethod
  253. def _findInstanceContainerDefinitionId(cls, machine_definition: DefinitionContainerInterface) -> str:
  254. """Find the ID that should be used when searching for instance containers for a specified definition.
  255. This handles the situation where the definition specifies we should use a different definition when
  256. searching for instance containers.
  257. :param machine_definition: The definition to find the "quality definition" for.
  258. :return: The ID of the definition container to use when searching for instance containers.
  259. """
  260. quality_definition = machine_definition.getMetaDataEntry("quality_definition")
  261. if not quality_definition:
  262. return machine_definition.id #type: ignore
  263. definitions = ContainerRegistry.getInstance().findDefinitionContainers(id = quality_definition)
  264. if not definitions:
  265. Logger.log("w", "Unable to find parent definition {parent} for machine {machine}", parent = quality_definition, machine = machine_definition.id) #type: ignore
  266. return machine_definition.id #type: ignore
  267. return cls._findInstanceContainerDefinitionId(definitions[0])
  268. def getExtruderPositionValueWithDefault(self, key):
  269. """getProperty for extruder positions, with translation from -1 to default extruder number"""
  270. value = self.getProperty(key, "value")
  271. if value == -1:
  272. value = int(Application.getInstance().getMachineManager().defaultExtruderPosition)
  273. return value
  274. class _ContainerIndexes:
  275. """Private helper class to keep track of container positions and their types."""
  276. UserChanges = 0
  277. QualityChanges = 1
  278. Intent = 2
  279. Quality = 3
  280. Material = 4
  281. Variant = 5
  282. DefinitionChanges = 6
  283. Definition = 7
  284. # Simple hash map to map from index to "type" metadata entry
  285. IndexTypeMap = {
  286. UserChanges: "user",
  287. QualityChanges: "quality_changes",
  288. Intent: "intent",
  289. Quality: "quality",
  290. Material: "material",
  291. Variant: "variant",
  292. DefinitionChanges: "definition_changes",
  293. Definition: "definition",
  294. }
  295. # Reverse lookup: type -> index
  296. TypeIndexMap = dict([(v, k) for k, v in IndexTypeMap.items()])