CuraContainerStack.py 18 KB

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