ThreeMFWorkspaceWriter.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # Copyright (c) 2020 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import configparser
  4. from io import StringIO
  5. import zipfile
  6. from UM.Application import Application
  7. from UM.Logger import Logger
  8. from UM.Preferences import Preferences
  9. from UM.Settings.ContainerRegistry import ContainerRegistry
  10. from UM.Workspace.WorkspaceWriter import WorkspaceWriter
  11. from cura.Utils.Threading import call_on_qt_thread
  12. class ThreeMFWorkspaceWriter(WorkspaceWriter):
  13. def __init__(self):
  14. super().__init__()
  15. @call_on_qt_thread
  16. def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode):
  17. application = Application.getInstance()
  18. machine_manager = application.getMachineManager()
  19. mesh_writer = application.getMeshFileHandler().getWriter("3MFWriter")
  20. if not mesh_writer: # We need to have the 3mf mesh writer, otherwise we can't save the entire workspace
  21. Logger.error("3MF Writer class is unavailable. Can't write workspace.")
  22. return False
  23. # Indicate that the 3mf mesh writer should not close the archive just yet (we still need to add stuff to it).
  24. mesh_writer.setStoreArchive(True)
  25. mesh_writer.write(stream, nodes, mode)
  26. archive = mesh_writer.getArchive()
  27. if archive is None: # This happens if there was no mesh data to write.
  28. archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED)
  29. global_stack = machine_manager.activeMachine
  30. # Add global container stack data to the archive.
  31. self._writeContainerToArchive(global_stack, archive)
  32. # Also write all containers in the stack to the file
  33. for container in global_stack.getContainers():
  34. self._writeContainerToArchive(container, archive)
  35. # Check if the machine has extruders and save all that data as well.
  36. for extruder_stack in global_stack.extruders.values():
  37. self._writeContainerToArchive(extruder_stack, archive)
  38. for container in extruder_stack.getContainers():
  39. self._writeContainerToArchive(container, archive)
  40. # Write preferences to archive
  41. original_preferences = Application.getInstance().getPreferences() #Copy only the preferences that we use to the workspace.
  42. temp_preferences = Preferences()
  43. for preference in {"general/visible_settings", "cura/active_mode", "cura/categories_expanded"}:
  44. temp_preferences.addPreference(preference, None)
  45. temp_preferences.setValue(preference, original_preferences.getValue(preference))
  46. preferences_string = StringIO()
  47. temp_preferences.writeToFile(preferences_string)
  48. preferences_file = zipfile.ZipInfo("Cura/preferences.cfg")
  49. try:
  50. archive.writestr(preferences_file, preferences_string.getvalue())
  51. # Save Cura version
  52. version_file = zipfile.ZipInfo("Cura/version.ini")
  53. version_config_parser = configparser.ConfigParser(interpolation = None)
  54. version_config_parser.add_section("versions")
  55. version_config_parser.set("versions", "cura_version", application.getVersion())
  56. version_config_parser.set("versions", "build_type", application.getBuildType())
  57. version_config_parser.set("versions", "is_debug_mode", str(application.getIsDebugMode()))
  58. version_file_string = StringIO()
  59. version_config_parser.write(version_file_string)
  60. archive.writestr(version_file, version_file_string.getvalue())
  61. self._writePluginMetadataToArchive(archive)
  62. # Close the archive & reset states.
  63. archive.close()
  64. except PermissionError:
  65. Logger.error("No permission to write workspace to this stream.")
  66. return False
  67. mesh_writer.setStoreArchive(False)
  68. return True
  69. @staticmethod
  70. def _writePluginMetadataToArchive(archive: zipfile.ZipFile) -> None:
  71. file_name_template = "%s/plugin_metadata.json"
  72. for plugin_id, metadata in Application.getInstance().getWorkspaceMetadataStorage().getAllData().items():
  73. file_name = file_name_template % plugin_id
  74. file_in_archive = zipfile.ZipInfo(file_name)
  75. # We have to set the compress type of each file as well (it doesn't keep the type of the entire archive)
  76. file_in_archive.compress_type = zipfile.ZIP_DEFLATED
  77. import json
  78. archive.writestr(file_in_archive, json.dumps(metadata, separators = (", ", ": "), indent = 4, skipkeys = True))
  79. ## Helper function that writes ContainerStacks, InstanceContainers and DefinitionContainers to the archive.
  80. # \param container That follows the \type{ContainerInterface} to archive.
  81. # \param archive The archive to write to.
  82. @staticmethod
  83. def _writeContainerToArchive(container, archive):
  84. if isinstance(container, type(ContainerRegistry.getInstance().getEmptyInstanceContainer())):
  85. return # Empty file, do nothing.
  86. file_suffix = ContainerRegistry.getMimeTypeForContainer(type(container)).preferredSuffix
  87. # Some containers have a base file, which should then be the file to use.
  88. if "base_file" in container.getMetaData():
  89. base_file = container.getMetaDataEntry("base_file")
  90. if base_file != container.getId():
  91. container = ContainerRegistry.getInstance().findContainers(id = base_file)[0]
  92. file_name = "Cura/%s.%s" % (container.getId(), file_suffix)
  93. if file_name in archive.namelist():
  94. return # File was already saved, no need to do it again. Uranium guarantees unique ID's, so this should hold.
  95. file_in_archive = zipfile.ZipInfo(file_name)
  96. # For some reason we have to set the compress type of each file as well (it doesn't keep the type of the entire archive)
  97. file_in_archive.compress_type = zipfile.ZIP_DEFLATED
  98. # Do not include the network authentication keys
  99. ignore_keys = {"network_authentication_id", "network_authentication_key", "octoprint_api_key"}
  100. serialized_data = container.serialize(ignored_metadata_keys = ignore_keys)
  101. archive.writestr(file_in_archive, serialized_data)