ThreeMFWorkspaceReader.py 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245
  1. # Copyright (c) 2021 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from configparser import ConfigParser
  4. import zipfile
  5. import os
  6. import json
  7. from typing import cast, Dict, List, Optional, Tuple, Any, Set
  8. import xml.etree.ElementTree as ET
  9. from UM.Workspace.WorkspaceReader import WorkspaceReader
  10. from UM.Application import Application
  11. from UM.Logger import Logger
  12. from UM.Message import Message
  13. from UM.i18n import i18nCatalog
  14. from UM.Settings.ContainerFormatError import ContainerFormatError
  15. from UM.Settings.ContainerStack import ContainerStack
  16. from UM.Settings.DefinitionContainer import DefinitionContainer
  17. from UM.Settings.InstanceContainer import InstanceContainer
  18. from UM.Settings.ContainerRegistry import ContainerRegistry
  19. from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
  20. from UM.Job import Job
  21. from UM.Preferences import Preferences
  22. from cura.Machines.ContainerTree import ContainerTree
  23. from cura.Settings.CuraStackBuilder import CuraStackBuilder
  24. from cura.Settings.ExtruderManager import ExtruderManager
  25. from cura.Settings.ExtruderStack import ExtruderStack
  26. from cura.Settings.GlobalStack import GlobalStack
  27. from cura.Settings.IntentManager import IntentManager
  28. from cura.Settings.CuraContainerStack import _ContainerIndexes
  29. from cura.CuraApplication import CuraApplication
  30. from cura.Utils.Threading import call_on_qt_thread
  31. from PyQt6.QtCore import QCoreApplication
  32. from .WorkspaceDialog import WorkspaceDialog
  33. i18n_catalog = i18nCatalog("cura")
  34. _ignored_machine_network_metadata = {
  35. "um_cloud_cluster_id",
  36. "um_network_key",
  37. "um_linked_to_account",
  38. "host_guid",
  39. "removal_warning",
  40. "group_name",
  41. "group_size",
  42. "connection_type",
  43. "capabilities",
  44. "octoprint_api_key",
  45. } # type: Set[str]
  46. class ContainerInfo:
  47. def __init__(self, file_name: Optional[str], serialized: Optional[str], parser: Optional[ConfigParser]) -> None:
  48. self.file_name = file_name
  49. self.serialized = serialized
  50. self.parser = parser
  51. self.container = None
  52. self.definition_id = None
  53. class QualityChangesInfo:
  54. def __init__(self) -> None:
  55. self.name = None
  56. self.global_info = None
  57. self.extruder_info_dict = {} # type: Dict[str, ContainerInfo]
  58. class MachineInfo:
  59. def __init__(self) -> None:
  60. self.container_id = None
  61. self.name = None
  62. self.definition_id = None
  63. self.metadata_dict = {} # type: Dict[str, str]
  64. self.quality_type = None
  65. self.intent_category = None
  66. self.custom_quality_name = None
  67. self.quality_changes_info = None
  68. self.variant_info = None
  69. self.definition_changes_info = None
  70. self.user_changes_info = None
  71. self.extruder_info_dict = {} # type: Dict[str, ExtruderInfo]
  72. class ExtruderInfo:
  73. def __init__(self) -> None:
  74. self.position = None
  75. self.enabled = True
  76. self.variant_info = None
  77. self.root_material_id = None
  78. self.definition_changes_info = None
  79. self.user_changes_info = None
  80. self.intent_info = None
  81. class ThreeMFWorkspaceReader(WorkspaceReader):
  82. """Base implementation for reading 3MF workspace files."""
  83. def __init__(self) -> None:
  84. super().__init__()
  85. self._supported_extensions = [".3mf"]
  86. self._dialog = WorkspaceDialog()
  87. self._3mf_mesh_reader = None
  88. self._container_registry = ContainerRegistry.getInstance()
  89. # suffixes registered with the MimeTypes don't start with a dot '.'
  90. self._definition_container_suffix = "." + cast(MimeType, ContainerRegistry.getMimeTypeForContainer(DefinitionContainer)).preferredSuffix
  91. self._material_container_suffix = None # We have to wait until all other plugins are loaded before we can set it
  92. self._instance_container_suffix = "." + cast(MimeType, ContainerRegistry.getMimeTypeForContainer(InstanceContainer)).preferredSuffix
  93. self._container_stack_suffix = "." + cast(MimeType, ContainerRegistry.getMimeTypeForContainer(ContainerStack)).preferredSuffix
  94. self._extruder_stack_suffix = "." + cast(MimeType, ContainerRegistry.getMimeTypeForContainer(ExtruderStack)).preferredSuffix
  95. self._global_stack_suffix = "." + cast(MimeType, ContainerRegistry.getMimeTypeForContainer(GlobalStack)).preferredSuffix
  96. # Certain instance container types are ignored because we make the assumption that only we make those types
  97. # of containers. They are:
  98. # - quality
  99. # - variant
  100. self._ignored_instance_container_types = {"quality", "variant"}
  101. self._resolve_strategies = {} # type: Dict[str, str]
  102. self._id_mapping = {} # type: Dict[str, str]
  103. # In Cura 2.5 and 2.6, the empty profiles used to have those long names
  104. self._old_empty_profile_id_dict = {"empty_%s" % k: "empty" for k in ["material", "variant"]}
  105. self._old_new_materials = {} # type: Dict[str, str]
  106. self._machine_info = None
  107. def _clearState(self):
  108. self._id_mapping = {}
  109. self._old_new_materials = {}
  110. self._machine_info = None
  111. def getNewId(self, old_id: str):
  112. """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results.
  113. This has nothing to do with speed, but with getting consistent new naming for instances & objects.
  114. """
  115. if old_id not in self._id_mapping:
  116. self._id_mapping[old_id] = self._container_registry.uniqueName(old_id)
  117. return self._id_mapping[old_id]
  118. def _determineGlobalAndExtruderStackFiles(self, project_file_name: str, file_list: List[str]) -> Tuple[str, List[str]]:
  119. """Separates the given file list into a list of GlobalStack files and a list of ExtruderStack files.
  120. In old versions, extruder stack files have the same suffix as container stack files ".stack.cfg".
  121. """
  122. archive = zipfile.ZipFile(project_file_name, "r")
  123. global_stack_file_list = [name for name in file_list if name.endswith(self._global_stack_suffix)]
  124. extruder_stack_file_list = [name for name in file_list if name.endswith(self._extruder_stack_suffix)]
  125. # separate container stack files and extruder stack files
  126. files_to_determine = [name for name in file_list if name.endswith(self._container_stack_suffix)]
  127. for file_name in files_to_determine:
  128. # FIXME: HACK!
  129. # We need to know the type of the stack file, but we can only know it if we deserialize it.
  130. # The default ContainerStack.deserialize() will connect signals, which is not desired in this case.
  131. # Since we know that the stack files are INI files, so we directly use the ConfigParser to parse them.
  132. serialized = archive.open(file_name).read().decode("utf-8")
  133. stack_config = ConfigParser(interpolation = None)
  134. stack_config.read_string(serialized)
  135. # sanity check
  136. if not stack_config.has_option("metadata", "type"):
  137. Logger.log("e", "%s in %s doesn't seem to be valid stack file", file_name, project_file_name)
  138. continue
  139. stack_type = stack_config.get("metadata", "type")
  140. if stack_type == "extruder_train":
  141. extruder_stack_file_list.append(file_name)
  142. elif stack_type == "machine":
  143. global_stack_file_list.append(file_name)
  144. else:
  145. Logger.log("w", "Unknown container stack type '%s' from %s in %s",
  146. stack_type, file_name, project_file_name)
  147. if len(global_stack_file_list) > 1:
  148. Logger.log("e", "More than one global stack file found: [{file_list}]".format(file_list = global_stack_file_list))
  149. #But we can recover by just getting the first global stack file.
  150. if len(global_stack_file_list) == 0:
  151. Logger.log("e", "No global stack file found!")
  152. raise FileNotFoundError("No global stack file found!")
  153. return global_stack_file_list[0], extruder_stack_file_list
  154. def preRead(self, file_name, show_dialog=True, *args, **kwargs):
  155. """Read some info so we can make decisions
  156. :param file_name:
  157. :param show_dialog: In case we use preRead() to check if a file is a valid project file,
  158. we don't want to show a dialog.
  159. """
  160. self._clearState()
  161. self._3mf_mesh_reader = Application.getInstance().getMeshFileHandler().getReaderForFile(file_name)
  162. if self._3mf_mesh_reader and self._3mf_mesh_reader.preRead(file_name) == WorkspaceReader.PreReadResult.accepted:
  163. pass
  164. else:
  165. Logger.log("w", "Could not find reader that was able to read the scene data for 3MF workspace")
  166. return WorkspaceReader.PreReadResult.failed
  167. self._machine_info = MachineInfo()
  168. machine_type = ""
  169. variant_type_name = i18n_catalog.i18nc("@label", "Nozzle")
  170. # Check if there are any conflicts, so we can ask the user.
  171. archive = zipfile.ZipFile(file_name, "r")
  172. cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")]
  173. resolve_strategy_keys = ["machine", "material", "quality_changes"]
  174. self._resolve_strategies = {k: None for k in resolve_strategy_keys}
  175. containers_found_dict = {k: False for k in resolve_strategy_keys}
  176. #
  177. # Read definition containers
  178. #
  179. machine_definition_id = None
  180. updatable_machines = []
  181. machine_definition_container_count = 0
  182. extruder_definition_container_count = 0
  183. definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)]
  184. for definition_container_file in definition_container_files:
  185. container_id = self._stripFileToId(definition_container_file)
  186. definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id)
  187. serialized = archive.open(definition_container_file).read().decode("utf-8")
  188. if not definitions:
  189. definition_container = DefinitionContainer.deserializeMetadata(serialized, container_id)[0]
  190. else:
  191. definition_container = definitions[0]
  192. definition_container_type = definition_container.get("type")
  193. if definition_container_type == "machine":
  194. machine_definition_id = container_id
  195. machine_definition_containers = self._container_registry.findDefinitionContainers(id = machine_definition_id)
  196. if machine_definition_containers:
  197. updatable_machines = [machine for machine in self._container_registry.findContainerStacks(type = "machine") if machine.definition == machine_definition_containers[0]]
  198. machine_type = definition_container["name"]
  199. variant_type_name = definition_container.get("variants_name", variant_type_name)
  200. machine_definition_container_count += 1
  201. elif definition_container_type == "extruder":
  202. extruder_definition_container_count += 1
  203. else:
  204. Logger.log("w", "Unknown definition container type %s for %s",
  205. definition_container_type, definition_container_file)
  206. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  207. Job.yieldThread()
  208. if machine_definition_container_count != 1:
  209. return WorkspaceReader.PreReadResult.failed # Not a workspace file but ordinary 3MF.
  210. material_ids_to_names_map = {}
  211. material_conflict = False
  212. xml_material_profile = self._getXmlProfileClass()
  213. reverse_material_id_dict = {}
  214. if self._material_container_suffix is None:
  215. self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).preferredSuffix
  216. if xml_material_profile:
  217. material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)]
  218. for material_container_file in material_container_files:
  219. container_id = self._stripFileToId(material_container_file)
  220. serialized = archive.open(material_container_file).read().decode("utf-8")
  221. metadata_list = xml_material_profile.deserializeMetadata(serialized, container_id)
  222. reverse_map = {metadata["id"]: container_id for metadata in metadata_list}
  223. reverse_material_id_dict.update(reverse_map)
  224. material_ids_to_names_map[container_id] = self._getMaterialLabelFromSerialized(serialized)
  225. if self._container_registry.findContainersMetadata(id = container_id): #This material already exists.
  226. containers_found_dict["material"] = True
  227. if not self._container_registry.isReadOnly(container_id): # Only non readonly materials can be in conflict
  228. material_conflict = True
  229. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  230. Job.yieldThread()
  231. # Check if any quality_changes instance container is in conflict.
  232. instance_container_files = [name for name in cura_file_names if name.endswith(self._instance_container_suffix)]
  233. quality_name = ""
  234. custom_quality_name = ""
  235. intent_name = ""
  236. intent_category = ""
  237. num_settings_overridden_by_quality_changes = 0 # How many settings are changed by the quality changes
  238. num_user_settings = 0
  239. quality_changes_conflict = False
  240. self._machine_info.quality_changes_info = QualityChangesInfo()
  241. quality_changes_info_list = []
  242. instance_container_info_dict = {} # id -> parser
  243. for instance_container_file_name in instance_container_files:
  244. container_id = self._stripFileToId(instance_container_file_name)
  245. serialized = archive.open(instance_container_file_name).read().decode("utf-8")
  246. # Qualities and variants don't have upgrades, so don't upgrade them
  247. parser = ConfigParser(interpolation = None, comment_prefixes = ())
  248. parser.read_string(serialized)
  249. container_type = parser["metadata"]["type"]
  250. if container_type not in ("quality", "variant"):
  251. serialized = InstanceContainer._updateSerialized(serialized, instance_container_file_name)
  252. parser = ConfigParser(interpolation = None, comment_prefixes = ())
  253. parser.read_string(serialized)
  254. container_info = ContainerInfo(instance_container_file_name, serialized, parser)
  255. instance_container_info_dict[container_id] = container_info
  256. container_type = parser["metadata"]["type"]
  257. if container_type == "quality_changes":
  258. quality_changes_info_list.append(container_info)
  259. if not parser.has_option("metadata", "position"):
  260. self._machine_info.quality_changes_info.name = parser["general"]["name"]
  261. self._machine_info.quality_changes_info.global_info = container_info
  262. else:
  263. position = parser["metadata"]["position"]
  264. self._machine_info.quality_changes_info.extruder_info_dict[position] = container_info
  265. custom_quality_name = parser["general"]["name"]
  266. values = parser["values"] if parser.has_section("values") else dict()
  267. num_settings_overridden_by_quality_changes += len(values)
  268. # Check if quality changes already exists.
  269. quality_changes = self._container_registry.findInstanceContainers(name = custom_quality_name,
  270. type = "quality_changes")
  271. if quality_changes:
  272. containers_found_dict["quality_changes"] = True
  273. # Check if there really is a conflict by comparing the values
  274. instance_container = InstanceContainer(container_id)
  275. try:
  276. instance_container.deserialize(serialized, file_name = instance_container_file_name)
  277. except ContainerFormatError:
  278. Logger.logException("e", "Failed to deserialize InstanceContainer %s from project file %s",
  279. instance_container_file_name, file_name)
  280. return ThreeMFWorkspaceReader.PreReadResult.failed
  281. if quality_changes[0] != instance_container:
  282. quality_changes_conflict = True
  283. elif container_type == "quality":
  284. if not quality_name:
  285. quality_name = parser["general"]["name"]
  286. elif container_type == "intent":
  287. if not intent_name:
  288. intent_name = parser["general"]["name"]
  289. intent_category = parser["metadata"]["intent_category"]
  290. elif container_type == "user":
  291. num_user_settings += len(parser["values"])
  292. elif container_type in self._ignored_instance_container_types:
  293. # Ignore certain instance container types
  294. Logger.log("w", "Ignoring instance container [%s] with type [%s]", container_id, container_type)
  295. continue
  296. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  297. Job.yieldThread()
  298. if self._machine_info.quality_changes_info.global_info is None:
  299. self._machine_info.quality_changes_info = None
  300. # Load ContainerStack files and ExtruderStack files
  301. try:
  302. global_stack_file, extruder_stack_files = self._determineGlobalAndExtruderStackFiles(
  303. file_name, cura_file_names)
  304. except FileNotFoundError:
  305. return WorkspaceReader.PreReadResult.failed
  306. machine_conflict = False
  307. # Because there can be cases as follows:
  308. # - the global stack exists but some/all of the extruder stacks DON'T exist
  309. # - the global stack DOESN'T exist but some/all of the extruder stacks exist
  310. # To simplify this, only check if the global stack exists or not
  311. global_stack_id = self._stripFileToId(global_stack_file)
  312. serialized = archive.open(global_stack_file).read().decode("utf-8")
  313. serialized = GlobalStack._updateSerialized(serialized, global_stack_file)
  314. machine_name = self._getMachineNameFromSerializedStack(serialized)
  315. self._machine_info.metadata_dict = self._getMetaDataDictFromSerializedStack(serialized)
  316. # Check if the definition has been changed (this usually happens due to an upgrade)
  317. id_list = self._getContainerIdListFromSerialized(serialized)
  318. if id_list[7] != machine_definition_id:
  319. machine_definition_id = id_list[7]
  320. stacks = self._container_registry.findContainerStacks(name = machine_name, type = "machine")
  321. existing_global_stack = None
  322. global_stack = None
  323. if stacks:
  324. global_stack = stacks[0]
  325. existing_global_stack = global_stack
  326. containers_found_dict["machine"] = True
  327. # Check if there are any changes at all in any of the container stacks.
  328. for index, container_id in enumerate(id_list):
  329. # take into account the old empty container IDs
  330. container_id = self._old_empty_profile_id_dict.get(container_id, container_id)
  331. if global_stack.getContainer(index).getId() != container_id:
  332. machine_conflict = True
  333. break
  334. if updatable_machines and not containers_found_dict["machine"]:
  335. containers_found_dict["machine"] = True
  336. # Get quality type
  337. parser = ConfigParser(interpolation = None)
  338. parser.read_string(serialized)
  339. quality_container_id = parser["containers"][str(_ContainerIndexes.Quality)]
  340. quality_type = "empty_quality"
  341. if quality_container_id not in ("empty", "empty_quality"):
  342. if quality_container_id in instance_container_info_dict:
  343. quality_type = instance_container_info_dict[quality_container_id].parser["metadata"]["quality_type"]
  344. else: # If a version upgrade changed the quality profile in the stack, we'll need to look for it in the built-in profiles instead of the workspace.
  345. quality_matches = ContainerRegistry.getInstance().findContainersMetadata(id = quality_container_id)
  346. if quality_matches: # If there's no profile with this ID, leave it empty_quality.
  347. quality_type = quality_matches[0]["quality_type"]
  348. # Get machine info
  349. serialized = archive.open(global_stack_file).read().decode("utf-8")
  350. serialized = GlobalStack._updateSerialized(serialized, global_stack_file)
  351. parser = ConfigParser(interpolation = None)
  352. parser.read_string(serialized)
  353. definition_changes_id = parser["containers"][str(_ContainerIndexes.DefinitionChanges)]
  354. if definition_changes_id not in ("empty", "empty_definition_changes"):
  355. self._machine_info.definition_changes_info = instance_container_info_dict[definition_changes_id]
  356. user_changes_id = parser["containers"][str(_ContainerIndexes.UserChanges)]
  357. if user_changes_id not in ("empty", "empty_user_changes"):
  358. self._machine_info.user_changes_info = instance_container_info_dict[user_changes_id]
  359. # Also check variant and material in case it doesn't have extruder stacks
  360. if not extruder_stack_files:
  361. position = "0"
  362. extruder_info = ExtruderInfo()
  363. extruder_info.position = position
  364. variant_id = parser["containers"][str(_ContainerIndexes.Variant)]
  365. material_id = parser["containers"][str(_ContainerIndexes.Material)]
  366. if variant_id not in ("empty", "empty_variant"):
  367. extruder_info.variant_info = instance_container_info_dict[variant_id]
  368. if material_id not in ("empty", "empty_material"):
  369. root_material_id = reverse_material_id_dict[material_id]
  370. extruder_info.root_material_id = root_material_id
  371. self._machine_info.extruder_info_dict[position] = extruder_info
  372. else:
  373. variant_id = parser["containers"][str(_ContainerIndexes.Variant)]
  374. if variant_id not in ("empty", "empty_variant"):
  375. self._machine_info.variant_info = instance_container_info_dict[variant_id]
  376. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  377. Job.yieldThread()
  378. materials_in_extruders_dict = {} # Which material is in which extruder
  379. # if the global stack is found, we check if there are conflicts in the extruder stacks
  380. for extruder_stack_file in extruder_stack_files:
  381. serialized = archive.open(extruder_stack_file).read().decode("utf-8")
  382. serialized = ExtruderStack._updateSerialized(serialized, extruder_stack_file)
  383. parser = ConfigParser(interpolation = None)
  384. parser.read_string(serialized)
  385. # The check should be done for the extruder stack that's associated with the existing global stack,
  386. # and those extruder stacks may have different IDs.
  387. # So we check according to the positions
  388. position = parser["metadata"]["position"]
  389. variant_id = parser["containers"][str(_ContainerIndexes.Variant)]
  390. material_id = parser["containers"][str(_ContainerIndexes.Material)]
  391. extruder_info = ExtruderInfo()
  392. extruder_info.position = position
  393. if parser.has_option("metadata", "enabled"):
  394. extruder_info.enabled = parser["metadata"]["enabled"]
  395. if variant_id not in ("empty", "empty_variant"):
  396. if variant_id in instance_container_info_dict:
  397. extruder_info.variant_info = instance_container_info_dict[variant_id]
  398. if material_id not in ("empty", "empty_material"):
  399. root_material_id = reverse_material_id_dict[material_id]
  400. extruder_info.root_material_id = root_material_id
  401. materials_in_extruders_dict[position] = material_ids_to_names_map[reverse_material_id_dict[material_id]]
  402. definition_changes_id = parser["containers"][str(_ContainerIndexes.DefinitionChanges)]
  403. if definition_changes_id not in ("empty", "empty_definition_changes"):
  404. extruder_info.definition_changes_info = instance_container_info_dict[definition_changes_id]
  405. user_changes_id = parser["containers"][str(_ContainerIndexes.UserChanges)]
  406. if user_changes_id not in ("empty", "empty_user_changes"):
  407. extruder_info.user_changes_info = instance_container_info_dict[user_changes_id]
  408. self._machine_info.extruder_info_dict[position] = extruder_info
  409. intent_id = parser["containers"][str(_ContainerIndexes.Intent)]
  410. if intent_id not in ("empty", "empty_intent"):
  411. extruder_info.intent_info = instance_container_info_dict[intent_id]
  412. if not machine_conflict and containers_found_dict["machine"] and global_stack:
  413. if int(position) >= len(global_stack.extruderList):
  414. continue
  415. existing_extruder_stack = global_stack.extruderList[int(position)]
  416. # check if there are any changes at all in any of the container stacks.
  417. id_list = self._getContainerIdListFromSerialized(serialized)
  418. for index, container_id in enumerate(id_list):
  419. # take into account the old empty container IDs
  420. container_id = self._old_empty_profile_id_dict.get(container_id, container_id)
  421. if existing_extruder_stack.getContainer(index).getId() != container_id:
  422. machine_conflict = True
  423. break
  424. # Now we know which material is in which extruder. Let's use that to sort the material_labels according to
  425. # their extruder position
  426. material_labels = [material_name for pos, material_name in sorted(materials_in_extruders_dict.items())]
  427. machine_extruder_count = self._getMachineExtruderCount()
  428. if machine_extruder_count:
  429. material_labels = material_labels[:machine_extruder_count]
  430. num_visible_settings = 0
  431. try:
  432. temp_preferences = Preferences()
  433. serialized = archive.open("Cura/preferences.cfg").read().decode("utf-8")
  434. temp_preferences.deserialize(serialized)
  435. visible_settings_string = temp_preferences.getValue("general/visible_settings")
  436. has_visible_settings_string = visible_settings_string is not None
  437. if visible_settings_string is not None:
  438. num_visible_settings = len(visible_settings_string.split(";"))
  439. active_mode = temp_preferences.getValue("cura/active_mode")
  440. if not active_mode:
  441. active_mode = Application.getInstance().getPreferences().getValue("cura/active_mode")
  442. except KeyError:
  443. # If there is no preferences file, it's not a workspace, so notify user of failure.
  444. Logger.log("w", "File %s is not a valid workspace.", file_name)
  445. return WorkspaceReader.PreReadResult.failed
  446. # Check if the machine definition exists. If not, indicate failure because we do not import definition files.
  447. def_results = self._container_registry.findDefinitionContainersMetadata(id = machine_definition_id)
  448. if not def_results:
  449. message = Message(i18n_catalog.i18nc("@info:status Don't translate the XML tags <filename> or <message>!",
  450. "Project file <filename>{0}</filename> contains an unknown machine type"
  451. " <message>{1}</message>. Cannot import the machine."
  452. " Models will be imported instead.", file_name, machine_definition_id),
  453. title = i18n_catalog.i18nc("@info:title", "Open Project File"),
  454. message_type = Message.MessageType.WARNING)
  455. message.show()
  456. Logger.log("i", "Could unknown machine definition %s in project file %s, cannot import it.",
  457. self._machine_info.definition_id, file_name)
  458. return WorkspaceReader.PreReadResult.failed
  459. # In case we use preRead() to check if a file is a valid project file, we don't want to show a dialog.
  460. if not show_dialog:
  461. return WorkspaceReader.PreReadResult.accepted
  462. # prepare data for the dialog
  463. num_extruders = extruder_definition_container_count
  464. if num_extruders == 0:
  465. num_extruders = 1 # No extruder stacks found, which means there is one extruder
  466. extruders = num_extruders * [""]
  467. quality_name = custom_quality_name if custom_quality_name else quality_name
  468. self._machine_info.container_id = global_stack_id
  469. self._machine_info.name = machine_name
  470. self._machine_info.definition_id = machine_definition_id
  471. self._machine_info.quality_type = quality_type
  472. self._machine_info.custom_quality_name = quality_name
  473. self._machine_info.intent_category = intent_category
  474. is_printer_group = False
  475. if machine_conflict:
  476. group_name = existing_global_stack.getMetaDataEntry("group_name")
  477. if group_name is not None:
  478. is_printer_group = True
  479. machine_name = group_name
  480. # Show the dialog, informing the user what is about to happen.
  481. self._dialog.setMachineConflict(machine_conflict)
  482. self._dialog.setIsPrinterGroup(is_printer_group)
  483. self._dialog.setQualityChangesConflict(quality_changes_conflict)
  484. self._dialog.setMaterialConflict(material_conflict)
  485. self._dialog.setHasVisibleSettingsField(has_visible_settings_string)
  486. self._dialog.setNumVisibleSettings(num_visible_settings)
  487. self._dialog.setQualityName(quality_name)
  488. self._dialog.setQualityType(quality_type)
  489. self._dialog.setIntentName(intent_name)
  490. self._dialog.setNumSettingsOverriddenByQualityChanges(num_settings_overridden_by_quality_changes)
  491. self._dialog.setNumUserSettings(num_user_settings)
  492. self._dialog.setActiveMode(active_mode)
  493. self._dialog.setUpdatableMachines(updatable_machines)
  494. self._dialog.setMachineName(machine_name)
  495. self._dialog.setMaterialLabels(material_labels)
  496. self._dialog.setMachineType(machine_type)
  497. self._dialog.setExtruders(extruders)
  498. self._dialog.setVariantType(variant_type_name)
  499. self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity)
  500. self._dialog.show()
  501. # Block until the dialog is closed.
  502. self._dialog.waitForClose()
  503. if self._dialog.getResult() == {}:
  504. return WorkspaceReader.PreReadResult.cancelled
  505. self._resolve_strategies = self._dialog.getResult()
  506. #
  507. # There can be 3 resolve strategies coming from the dialog:
  508. # - new: create a new container
  509. # - override: override the existing container
  510. # - None: There is no conflict, which means containers with the same IDs may or may not be there already.
  511. # If there is an existing container, there is no conflict between them, and default to "override"
  512. # If there is no existing container, default to "new"
  513. #
  514. # Default values
  515. for key, strategy in self._resolve_strategies.items():
  516. if key not in containers_found_dict or strategy is not None:
  517. continue
  518. self._resolve_strategies[key] = "override" if containers_found_dict[key] else "new"
  519. return WorkspaceReader.PreReadResult.accepted
  520. @call_on_qt_thread
  521. def read(self, file_name):
  522. """Read the project file
  523. Add all the definitions / materials / quality changes that do not exist yet. Then it loads
  524. all the stacks into the container registry. In some cases it will reuse the container for the global stack.
  525. It handles old style project files containing .stack.cfg as well as new style project files
  526. containing global.cfg / extruder.cfg
  527. :param file_name:
  528. """
  529. application = CuraApplication.getInstance()
  530. try:
  531. archive = zipfile.ZipFile(file_name, "r")
  532. except EnvironmentError as e:
  533. message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags <filename> or <message>!",
  534. "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>.", file_name, str(e)),
  535. title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"),
  536. message_type = Message.MessageType.ERROR)
  537. message.show()
  538. self.setWorkspaceName("")
  539. return [], {}
  540. except zipfile.BadZipFile as e:
  541. message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags <filename> or <message>!",
  542. "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>.", file_name, str(e)),
  543. title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"),
  544. message_type = Message.MessageType.ERROR)
  545. message.show()
  546. self.setWorkspaceName("")
  547. return [], {}
  548. cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")]
  549. # Create a shadow copy of the preferences (we don't want all of the preferences, but we do want to re-use its
  550. # parsing code.
  551. temp_preferences = Preferences()
  552. serialized = archive.open("Cura/preferences.cfg").read().decode("utf-8")
  553. temp_preferences.deserialize(serialized)
  554. # Copy a number of settings from the temp preferences to the global
  555. global_preferences = application.getInstance().getPreferences()
  556. visible_settings = temp_preferences.getValue("general/visible_settings")
  557. if visible_settings is None:
  558. Logger.log("w", "Workspace did not contain visible settings. Leaving visibility unchanged")
  559. else:
  560. global_preferences.setValue("general/visible_settings", visible_settings)
  561. global_preferences.setValue("cura/active_setting_visibility_preset", "custom")
  562. categories_expanded = temp_preferences.getValue("cura/categories_expanded")
  563. if categories_expanded is None:
  564. Logger.log("w", "Workspace did not contain expanded categories. Leaving them unchanged")
  565. else:
  566. global_preferences.setValue("cura/categories_expanded", categories_expanded)
  567. application.expandedCategoriesChanged.emit() # Notify the GUI of the change
  568. # If there are no machines of the same type, create a new machine.
  569. if self._resolve_strategies["machine"] != "override" or self._dialog.updatableMachinesModel.count <= 1:
  570. # We need to create a new machine
  571. machine_name = self._container_registry.uniqueName(self._machine_info.name)
  572. # Printers with modifiable number of extruders (such as CFFF) will specify a machine_extruder_count in their
  573. # quality_changes file. If that's the case, take the extruder count into account when creating the machine
  574. # or else the extruderList will return only the first extruder, leading to missing non-global settings in
  575. # the other extruders.
  576. machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
  577. global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
  578. if global_stack: # Only switch if creating the machine was successful.
  579. extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)}
  580. self._container_registry.addContainer(global_stack)
  581. else:
  582. # Find the machine which will be overridden
  583. global_stacks = self._container_registry.findContainerStacks(id = self._dialog.getMachineToOverride(), type = "machine")
  584. if not global_stacks:
  585. message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag <filename>!",
  586. "Project file <filename>{0}</filename> is made using profiles that"
  587. " are unknown to this version of Ultimaker Cura.", file_name),
  588. message_type = Message.MessageType.ERROR)
  589. message.show()
  590. self.setWorkspaceName("")
  591. return [], {}
  592. global_stack = global_stacks[0]
  593. extruder_stacks = self._container_registry.findContainerStacks(machine = global_stack.getId(),
  594. type = "extruder_train")
  595. extruder_stack_dict = {stack.getMetaDataEntry("position"): stack for stack in extruder_stacks}
  596. # Make sure that those extruders have the global stack as the next stack or later some value evaluation
  597. # will fail.
  598. for stack in extruder_stacks:
  599. stack.setNextStack(global_stack, connect_signals = False)
  600. Logger.log("d", "Workspace loading is checking definitions...")
  601. # Get all the definition files & check if they exist. If not, add them.
  602. definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)]
  603. for definition_container_file in definition_container_files:
  604. container_id = self._stripFileToId(definition_container_file)
  605. definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id)
  606. if not definitions:
  607. definition_container = DefinitionContainer(container_id)
  608. try:
  609. definition_container.deserialize(archive.open(definition_container_file).read().decode("utf-8"),
  610. file_name = definition_container_file)
  611. except ContainerFormatError:
  612. # We cannot just skip the definition file because everything else later will just break if the
  613. # machine definition cannot be found.
  614. Logger.logException("e", "Failed to deserialize definition file %s in project file %s",
  615. definition_container_file, file_name)
  616. definition_container = self._container_registry.findDefinitionContainers(id = "fdmprinter")[0] #Fall back to defaults.
  617. self._container_registry.addContainer(definition_container)
  618. Job.yieldThread()
  619. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  620. Logger.log("d", "Workspace loading is checking materials...")
  621. # Get all the material files and check if they exist. If not, add them.
  622. xml_material_profile = self._getXmlProfileClass()
  623. if self._material_container_suffix is None:
  624. self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).suffixes[0]
  625. if xml_material_profile:
  626. material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)]
  627. for material_container_file in material_container_files:
  628. to_deserialize_material = False
  629. container_id = self._stripFileToId(material_container_file)
  630. need_new_name = False
  631. materials = self._container_registry.findInstanceContainers(id = container_id)
  632. if not materials:
  633. # No material found, deserialize this material later and add it
  634. to_deserialize_material = True
  635. else:
  636. material_container = materials[0]
  637. old_material_root_id = material_container.getMetaDataEntry("base_file")
  638. if old_material_root_id is not None and not self._container_registry.isReadOnly(old_material_root_id): # Only create new materials if they are not read only.
  639. to_deserialize_material = True
  640. if self._resolve_strategies["material"] == "override":
  641. # Remove the old materials and then deserialize the one from the project
  642. root_material_id = material_container.getMetaDataEntry("base_file")
  643. application.getContainerRegistry().removeContainer(root_material_id)
  644. elif self._resolve_strategies["material"] == "new":
  645. # Note that we *must* deserialize it with a new ID, as multiple containers will be
  646. # auto created & added.
  647. container_id = self.getNewId(container_id)
  648. self._old_new_materials[old_material_root_id] = container_id
  649. need_new_name = True
  650. if to_deserialize_material:
  651. material_container = xml_material_profile(container_id)
  652. try:
  653. material_container.deserialize(archive.open(material_container_file).read().decode("utf-8"),
  654. file_name = container_id + "." + self._material_container_suffix)
  655. except ContainerFormatError:
  656. Logger.logException("e", "Failed to deserialize material file %s in project file %s",
  657. material_container_file, file_name)
  658. continue
  659. if need_new_name:
  660. new_name = ContainerRegistry.getInstance().uniqueName(material_container.getName())
  661. material_container.setName(new_name)
  662. material_container.setDirty(True)
  663. self._container_registry.addContainer(material_container)
  664. Job.yieldThread()
  665. QCoreApplication.processEvents() # Ensure that the GUI does not freeze.
  666. if global_stack:
  667. # Handle quality changes if any
  668. self._processQualityChanges(global_stack)
  669. # Prepare the machine
  670. self._applyChangesToMachine(global_stack, extruder_stack_dict)
  671. Logger.log("d", "Workspace loading is notifying rest of the code of changes...")
  672. # Actually change the active machine.
  673. #
  674. # This is scheduled for later is because it depends on the Variant/Material/Qualitiy Managers to have the latest
  675. # data, but those managers will only update upon a container/container metadata changed signal. Because this
  676. # function is running on the main thread (Qt thread), although those "changed" signals have been emitted, but
  677. # they won't take effect until this function is done.
  678. # To solve this, we schedule _updateActiveMachine() for later so it will have the latest data.
  679. self._updateActiveMachine(global_stack)
  680. # Load all the nodes / mesh data of the workspace
  681. nodes = self._3mf_mesh_reader.read(file_name)
  682. if nodes is None:
  683. nodes = []
  684. base_file_name = os.path.basename(file_name)
  685. self.setWorkspaceName(base_file_name)
  686. return nodes, self._loadMetadata(file_name)
  687. @staticmethod
  688. def _loadMetadata(file_name: str) -> Dict[str, Dict[str, Any]]:
  689. result = dict() # type: Dict[str, Dict[str, Any]]
  690. try:
  691. archive = zipfile.ZipFile(file_name, "r")
  692. except zipfile.BadZipFile:
  693. Logger.logException("w", "Unable to retrieve metadata from {fname}: 3MF archive is corrupt.".format(fname = file_name))
  694. return result
  695. except EnvironmentError as e:
  696. Logger.logException("w", "Unable to retrieve metadata from {fname}: File is inaccessible. Error: {err}".format(fname = file_name, err = str(e)))
  697. return result
  698. metadata_files = [name for name in archive.namelist() if name.endswith("plugin_metadata.json")]
  699. for metadata_file in metadata_files:
  700. try:
  701. plugin_id = metadata_file.split("/")[0]
  702. result[plugin_id] = json.loads(archive.open("%s/plugin_metadata.json" % plugin_id).read().decode("utf-8"))
  703. except Exception:
  704. Logger.logException("w", "Unable to retrieve metadata for %s", metadata_file)
  705. return result
  706. def _processQualityChanges(self, global_stack):
  707. if self._machine_info.quality_changes_info is None:
  708. return
  709. # If we have custom profiles, load them
  710. quality_changes_name = self._machine_info.quality_changes_info.name
  711. if self._machine_info.quality_changes_info is not None:
  712. Logger.log("i", "Loading custom profile [%s] from project file",
  713. self._machine_info.quality_changes_info.name)
  714. # Get the correct extruder definition IDs for quality changes
  715. machine_definition_id_for_quality = ContainerTree.getInstance().machines[global_stack.definition.getId()].quality_definition
  716. machine_definition_for_quality = self._container_registry.findDefinitionContainers(id = machine_definition_id_for_quality)[0]
  717. quality_changes_info = self._machine_info.quality_changes_info
  718. quality_changes_quality_type = quality_changes_info.global_info.parser["metadata"]["quality_type"]
  719. # quality changes container may not be present for every extruder. Prepopulate the dict with default values.
  720. quality_changes_intent_category_per_extruder = {position: "default" for position in self._machine_info.extruder_info_dict}
  721. for position, info in quality_changes_info.extruder_info_dict.items():
  722. quality_changes_intent_category_per_extruder[position] = info.parser["metadata"].get("intent_category", "default")
  723. quality_changes_name = quality_changes_info.name
  724. create_new = self._resolve_strategies.get("quality_changes") != "override"
  725. if create_new:
  726. container_info_dict = {None: self._machine_info.quality_changes_info.global_info}
  727. container_info_dict.update(quality_changes_info.extruder_info_dict)
  728. quality_changes_name = self._container_registry.uniqueName(quality_changes_name)
  729. for position, container_info in container_info_dict.items():
  730. extruder_stack = None
  731. intent_category = None # type: Optional[str]
  732. if position is not None:
  733. try:
  734. extruder_stack = global_stack.extruderList[int(position)]
  735. except IndexError:
  736. continue
  737. intent_category = quality_changes_intent_category_per_extruder[position]
  738. container = self._createNewQualityChanges(quality_changes_quality_type, intent_category, quality_changes_name, global_stack, extruder_stack)
  739. container_info.container = container
  740. self._container_registry.addContainer(container)
  741. Logger.log("d", "Created new quality changes container [%s]", container.getId())
  742. else:
  743. # Find the existing containers
  744. quality_changes_containers = self._container_registry.findInstanceContainers(name = quality_changes_name,
  745. type = "quality_changes")
  746. for container in quality_changes_containers:
  747. extruder_position = container.getMetaDataEntry("position")
  748. if extruder_position is None:
  749. quality_changes_info.global_info.container = container
  750. else:
  751. if extruder_position not in quality_changes_info.extruder_info_dict:
  752. quality_changes_info.extruder_info_dict[extruder_position] = ContainerInfo(None, None, None)
  753. container_info = quality_changes_info.extruder_info_dict[extruder_position]
  754. container_info.container = container
  755. # If there is no quality changes for any extruder, create one.
  756. if not quality_changes_info.extruder_info_dict:
  757. container_info = ContainerInfo(None, None, None)
  758. quality_changes_info.extruder_info_dict["0"] = container_info
  759. # If the global stack we're "targeting" has never been active, but was updated from Cura 3.4,
  760. # it might not have its extruders set properly.
  761. if len(global_stack.extruderList) == 0:
  762. ExtruderManager.getInstance().fixSingleExtrusionMachineExtruderDefinition(global_stack)
  763. try:
  764. extruder_stack = global_stack.extruderList[0]
  765. except IndexError:
  766. extruder_stack = None
  767. intent_category = quality_changes_intent_category_per_extruder["0"]
  768. container = self._createNewQualityChanges(quality_changes_quality_type, intent_category, quality_changes_name, global_stack, extruder_stack)
  769. container_info.container = container
  770. self._container_registry.addContainer(container)
  771. Logger.log("d", "Created new quality changes container [%s]", container.getId())
  772. # Clear all existing containers
  773. quality_changes_info.global_info.container.clear()
  774. for container_info in quality_changes_info.extruder_info_dict.values():
  775. if container_info.container:
  776. container_info.container.clear()
  777. # Loop over everything and override the existing containers
  778. global_info = quality_changes_info.global_info
  779. global_info.container.clear() # Clear all
  780. for key, value in global_info.parser["values"].items():
  781. if not machine_definition_for_quality.getProperty(key, "settable_per_extruder"):
  782. global_info.container.setProperty(key, "value", value)
  783. else:
  784. quality_changes_info.extruder_info_dict["0"].container.setProperty(key, "value", value)
  785. for position, container_info in quality_changes_info.extruder_info_dict.items():
  786. if container_info.parser is None:
  787. continue
  788. if container_info.container is None:
  789. try:
  790. extruder_stack = global_stack.extruderList[int(position)]
  791. except IndexError:
  792. continue
  793. intent_category = quality_changes_intent_category_per_extruder[position]
  794. container = self._createNewQualityChanges(quality_changes_quality_type, intent_category, quality_changes_name, global_stack, extruder_stack)
  795. container_info.container = container
  796. self._container_registry.addContainer(container)
  797. for key, value in container_info.parser["values"].items():
  798. container_info.container.setProperty(key, "value", value)
  799. self._machine_info.quality_changes_info.name = quality_changes_name
  800. def _getMachineExtruderCount(self) -> Optional[int]:
  801. """
  802. Extracts the machine extruder count from the definition_changes file of the printer. If it is not specified in
  803. the file, None is returned instead.
  804. :return: The count of the machine's extruders
  805. """
  806. machine_extruder_count = None
  807. if self._machine_info \
  808. and self._machine_info.definition_changes_info \
  809. and "values" in self._machine_info.definition_changes_info.parser \
  810. and "machine_extruder_count" in self._machine_info.definition_changes_info.parser["values"]:
  811. try:
  812. # Theoretically, if the machine_extruder_count is a setting formula (e.g. "=3"), this will produce a
  813. # value error and the project file loading will load the settings in the first extruder only.
  814. # This is not expected to happen though, since all machine definitions define the machine_extruder_count
  815. # as an integer.
  816. machine_extruder_count = int(self._machine_info.definition_changes_info.parser["values"]["machine_extruder_count"])
  817. except ValueError:
  818. Logger.log("w", "'machine_extruder_count' in file '{file_name}' is not a number."
  819. .format(file_name = self._machine_info.definition_changes_info.file_name))
  820. return machine_extruder_count
  821. def _createNewQualityChanges(self, quality_type: str, intent_category: Optional[str], name: str, global_stack: GlobalStack, extruder_stack: Optional[ExtruderStack]) -> InstanceContainer:
  822. """Helper class to create a new quality changes profile.
  823. This will then later be filled with the appropriate data.
  824. :param quality_type: The quality type of the new profile.
  825. :param intent_category: The intent category of the new profile.
  826. :param name: The name for the profile. This will later be made unique so
  827. it doesn't need to be unique yet.
  828. :param global_stack: The global stack showing the configuration that the
  829. profile should be created for.
  830. :param extruder_stack: The extruder stack showing the configuration that
  831. the profile should be created for. If this is None, it will be created
  832. for the global stack.
  833. """
  834. container_registry = CuraApplication.getInstance().getContainerRegistry()
  835. base_id = global_stack.definition.getId() if extruder_stack is None else extruder_stack.getId()
  836. new_id = base_id + "_" + name
  837. new_id = new_id.lower().replace(" ", "_")
  838. new_id = container_registry.uniqueName(new_id)
  839. # Create a new quality_changes container for the quality.
  840. quality_changes = InstanceContainer(new_id)
  841. quality_changes.setName(name)
  842. quality_changes.setMetaDataEntry("type", "quality_changes")
  843. quality_changes.setMetaDataEntry("quality_type", quality_type)
  844. if intent_category is not None:
  845. quality_changes.setMetaDataEntry("intent_category", intent_category)
  846. # If we are creating a container for an extruder, ensure we add that to the container.
  847. if extruder_stack is not None:
  848. quality_changes.setMetaDataEntry("position", extruder_stack.getMetaDataEntry("position"))
  849. # If the machine specifies qualities should be filtered, ensure we match the current criteria.
  850. machine_definition_id = ContainerTree.getInstance().machines[global_stack.definition.getId()].quality_definition
  851. quality_changes.setDefinition(machine_definition_id)
  852. quality_changes.setMetaDataEntry("setting_version", CuraApplication.getInstance().SettingVersion)
  853. quality_changes.setDirty(True)
  854. return quality_changes
  855. @staticmethod
  856. def _clearStack(stack):
  857. application = CuraApplication.getInstance()
  858. stack.definitionChanges.clear()
  859. stack.variant = application.empty_variant_container
  860. stack.material = application.empty_material_container
  861. stack.quality = application.empty_quality_container
  862. stack.qualityChanges = application.empty_quality_changes_container
  863. stack.userChanges.clear()
  864. def _applyDefinitionChanges(self, global_stack, extruder_stack_dict):
  865. values_to_set_for_extruders = {}
  866. if self._machine_info.definition_changes_info is not None:
  867. parser = self._machine_info.definition_changes_info.parser
  868. for key, value in parser["values"].items():
  869. if global_stack.getProperty(key, "settable_per_extruder"):
  870. values_to_set_for_extruders[key] = value
  871. else:
  872. global_stack.definitionChanges.setProperty(key, "value", value)
  873. for position, extruder_stack in extruder_stack_dict.items():
  874. if position not in self._machine_info.extruder_info_dict:
  875. continue
  876. extruder_info = self._machine_info.extruder_info_dict[position]
  877. if extruder_info.definition_changes_info is None:
  878. continue
  879. parser = extruder_info.definition_changes_info.parser
  880. for key, value in values_to_set_for_extruders.items():
  881. extruder_stack.definitionChanges.setProperty(key, "value", value)
  882. if parser is not None:
  883. for key, value in parser["values"].items():
  884. extruder_stack.definitionChanges.setProperty(key, "value", value)
  885. def _applyUserChanges(self, global_stack, extruder_stack_dict):
  886. values_to_set_for_extruder_0 = {}
  887. if self._machine_info.user_changes_info is not None:
  888. parser = self._machine_info.user_changes_info.parser
  889. for key, value in parser["values"].items():
  890. if global_stack.getProperty(key, "settable_per_extruder"):
  891. values_to_set_for_extruder_0[key] = value
  892. else:
  893. global_stack.userChanges.setProperty(key, "value", value)
  894. for position, extruder_stack in extruder_stack_dict.items():
  895. if position not in self._machine_info.extruder_info_dict:
  896. continue
  897. extruder_info = self._machine_info.extruder_info_dict[position]
  898. if extruder_info.user_changes_info is not None:
  899. parser = self._machine_info.extruder_info_dict[position].user_changes_info.parser
  900. if position == "0":
  901. for key, value in values_to_set_for_extruder_0.items():
  902. extruder_stack.userChanges.setProperty(key, "value", value)
  903. if parser is not None:
  904. for key, value in parser["values"].items():
  905. extruder_stack.userChanges.setProperty(key, "value", value)
  906. def _applyVariants(self, global_stack, extruder_stack_dict):
  907. machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()]
  908. # Take the global variant from the machine info if available.
  909. if self._machine_info.variant_info is not None:
  910. variant_name = self._machine_info.variant_info.parser["general"]["name"]
  911. if variant_name in machine_node.variants:
  912. global_stack.variant = machine_node.variants[variant_name].container
  913. else:
  914. Logger.log("w", "Could not find global variant '{0}'.".format(variant_name))
  915. for position, extruder_stack in extruder_stack_dict.items():
  916. if position not in self._machine_info.extruder_info_dict:
  917. continue
  918. extruder_info = self._machine_info.extruder_info_dict[position]
  919. if extruder_info.variant_info is None:
  920. # If there is no variant_info, try to use the default variant. Otherwise, any available variant.
  921. node = machine_node.variants.get(machine_node.preferred_variant_name, next(iter(machine_node.variants.values())))
  922. else:
  923. variant_name = extruder_info.variant_info.parser["general"]["name"]
  924. node = ContainerTree.getInstance().machines[global_stack.definition.getId()].variants[variant_name]
  925. extruder_stack.variant = node.container
  926. def _applyMaterials(self, global_stack, extruder_stack_dict):
  927. machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()]
  928. for position, extruder_stack in extruder_stack_dict.items():
  929. if position not in self._machine_info.extruder_info_dict:
  930. continue
  931. extruder_info = self._machine_info.extruder_info_dict[position]
  932. if extruder_info.root_material_id is None:
  933. continue
  934. root_material_id = extruder_info.root_material_id
  935. root_material_id = self._old_new_materials.get(root_material_id, root_material_id)
  936. material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id]
  937. extruder_stack.material = material_node.container # type: InstanceContainer
  938. def _applyChangesToMachine(self, global_stack, extruder_stack_dict):
  939. # Clear all first
  940. self._clearStack(global_stack)
  941. for extruder_stack in extruder_stack_dict.values():
  942. self._clearStack(extruder_stack)
  943. self._applyDefinitionChanges(global_stack, extruder_stack_dict)
  944. self._applyUserChanges(global_stack, extruder_stack_dict)
  945. self._applyVariants(global_stack, extruder_stack_dict)
  946. self._applyMaterials(global_stack, extruder_stack_dict)
  947. # prepare the quality to select
  948. self._quality_changes_to_apply = None
  949. self._quality_type_to_apply = None
  950. self._intent_category_to_apply = None
  951. if self._machine_info.quality_changes_info is not None:
  952. self._quality_changes_to_apply = self._machine_info.quality_changes_info.name
  953. else:
  954. self._quality_type_to_apply = self._machine_info.quality_type
  955. self._intent_category_to_apply = self._machine_info.intent_category
  956. # Set enabled/disabled for extruders
  957. for position, extruder_stack in extruder_stack_dict.items():
  958. extruder_info = self._machine_info.extruder_info_dict.get(position)
  959. if not extruder_info:
  960. continue
  961. if "enabled" not in extruder_stack.getMetaData():
  962. extruder_stack.setMetaDataEntry("enabled", "True")
  963. extruder_stack.setMetaDataEntry("enabled", str(extruder_info.enabled))
  964. # Set metadata fields that are missing from the global stack
  965. for key, value in self._machine_info.metadata_dict.items():
  966. if key not in _ignored_machine_network_metadata:
  967. global_stack.setMetaDataEntry(key, value)
  968. def _updateActiveMachine(self, global_stack):
  969. # Actually change the active machine.
  970. machine_manager = Application.getInstance().getMachineManager()
  971. container_tree = ContainerTree.getInstance()
  972. machine_manager.setActiveMachine(global_stack.getId())
  973. # Set metadata fields that are missing from the global stack
  974. for key, value in self._machine_info.metadata_dict.items():
  975. if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata:
  976. global_stack.setMetaDataEntry(key, value)
  977. if self._quality_changes_to_apply:
  978. quality_changes_group_list = container_tree.getCurrentQualityChangesGroups()
  979. quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None)
  980. if not quality_changes_group:
  981. Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply)
  982. return
  983. machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True)
  984. else:
  985. self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None
  986. quality_group_dict = container_tree.getCurrentQualityGroups()
  987. if self._quality_type_to_apply in quality_group_dict:
  988. quality_group = quality_group_dict[self._quality_type_to_apply]
  989. else:
  990. Logger.log("i", "Could not find quality type [%s], switch to default", self._quality_type_to_apply)
  991. preferred_quality_type = global_stack.getMetaDataEntry("preferred_quality_type")
  992. quality_group = quality_group_dict.get(preferred_quality_type)
  993. if quality_group is None:
  994. Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type)
  995. if quality_group is not None:
  996. machine_manager.setQualityGroup(quality_group, no_dialog = True)
  997. # Also apply intent if available
  998. available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories()
  999. if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list:
  1000. machine_manager.setIntentByCategory(self._intent_category_to_apply)
  1001. # Notify everything/one that is to notify about changes.
  1002. global_stack.containersChanged.emit(global_stack.getTop())
  1003. @staticmethod
  1004. def _stripFileToId(file):
  1005. mime_type = MimeTypeDatabase.getMimeTypeForFile(file)
  1006. file = mime_type.stripExtension(file)
  1007. return file.replace("Cura/", "")
  1008. def _getXmlProfileClass(self):
  1009. return self._container_registry.getContainerForMimeType(MimeTypeDatabase.getMimeType("application/x-ultimaker-material-profile"))
  1010. @staticmethod
  1011. def _getContainerIdListFromSerialized(serialized):
  1012. """Get the list of ID's of all containers in a container stack by partially parsing it's serialized data."""
  1013. parser = ConfigParser(interpolation = None, empty_lines_in_values = False)
  1014. parser.read_string(serialized)
  1015. container_ids = []
  1016. if "containers" in parser:
  1017. for index, container_id in parser.items("containers"):
  1018. container_ids.append(container_id)
  1019. elif parser.has_option("general", "containers"):
  1020. container_string = parser["general"].get("containers", "")
  1021. container_list = container_string.split(",")
  1022. container_ids = [container_id for container_id in container_list if container_id != ""]
  1023. # HACK: there used to be 6 containers numbering from 0 to 5 in a stack,
  1024. # now we have 7: index 5 becomes "definition_changes"
  1025. if len(container_ids) == 6:
  1026. # Hack; We used to not save the definition changes. Fix this.
  1027. container_ids.insert(5, "empty")
  1028. return container_ids
  1029. @staticmethod
  1030. def _getMachineNameFromSerializedStack(serialized):
  1031. parser = ConfigParser(interpolation = None, empty_lines_in_values = False)
  1032. parser.read_string(serialized)
  1033. return parser["general"].get("name", "")
  1034. @staticmethod
  1035. def _getMetaDataDictFromSerializedStack(serialized: str) -> Dict[str, str]:
  1036. parser = ConfigParser(interpolation = None, empty_lines_in_values = False)
  1037. parser.read_string(serialized)
  1038. return dict(parser["metadata"])
  1039. @staticmethod
  1040. def _getMaterialLabelFromSerialized(serialized):
  1041. data = ET.fromstring(serialized)
  1042. metadata = data.iterfind("./um:metadata/um:name/um:label", {"um": "http://www.ultimaker.com/material"})
  1043. for entry in metadata:
  1044. return entry.text