UFPWriter.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # Copyright (c) 2020 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from typing import cast, List, Dict
  4. from Charon.VirtualFile import VirtualFile # To open UFP files.
  5. from Charon.OpenMode import OpenMode # To indicate that we want to write to UFP files.
  6. from io import StringIO # For converting g-code to bytes.
  7. from PyQt5.QtCore import QBuffer
  8. from UM.Logger import Logger
  9. from UM.Mesh.MeshWriter import MeshWriter # The writer we need to implement.
  10. from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
  11. from UM.PluginRegistry import PluginRegistry # To get the g-code writer.
  12. from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
  13. from UM.Scene.SceneNode import SceneNode
  14. from cura.CuraApplication import CuraApplication
  15. from cura.Utils.Threading import call_on_qt_thread
  16. from UM.i18n import i18nCatalog
  17. from plugins.CuraEngineBackend.CuraEngineBackend import CuraEngineBackend
  18. METADATA_OBJECTS_PATH = "metadata/objects"
  19. catalog = i18nCatalog("cura")
  20. class UFPWriter(MeshWriter):
  21. def __init__(self):
  22. super().__init__(add_to_recent_files = False)
  23. MimeTypeDatabase.addMimeType(
  24. MimeType(
  25. name = "application/x-ufp",
  26. comment = "Ultimaker Format Package",
  27. suffixes = ["ufp"]
  28. )
  29. )
  30. # This needs to be called on the main thread (Qt thread) because the serialization of material containers can
  31. # trigger loading other containers. Because those loaded containers are QtObjects, they must be created on the
  32. # Qt thread. The File read/write operations right now are executed on separated threads because they are scheduled
  33. # by the Job class.
  34. @call_on_qt_thread
  35. def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode):
  36. archive = VirtualFile()
  37. archive.openStream(stream, "application/x-ufp", OpenMode.WriteOnly)
  38. self._writeObjectList(archive)
  39. # Store the g-code from the scene.
  40. archive.addContentType(extension = "gcode", mime_type = "text/x-gcode")
  41. gcode_textio = StringIO() # We have to convert the g-code into bytes.
  42. gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter"))
  43. success = gcode_writer.write(gcode_textio, None)
  44. if not success: # Writing the g-code failed. Then I can also not write the gzipped g-code.
  45. self.setInformation(gcode_writer.getInformation())
  46. return False
  47. gcode = archive.getStream("/3D/model.gcode")
  48. gcode.write(gcode_textio.getvalue().encode("UTF-8"))
  49. archive.addRelation(virtual_path = "/3D/model.gcode", relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode")
  50. snapshot = None
  51. backend = CuraApplication.getInstance().getBackend()
  52. if isinstance(backend, CuraEngineBackend):
  53. snapshot = backend.getLatestSnapshot()
  54. # Store the thumbnail.
  55. if snapshot:
  56. archive.addContentType(extension = "png", mime_type = "image/png")
  57. thumbnail = archive.getStream("/Metadata/thumbnail.png")
  58. thumbnail_buffer = QBuffer()
  59. thumbnail_buffer.open(QBuffer.ReadWrite)
  60. snapshot.save(thumbnail_buffer, "PNG")
  61. thumbnail.write(thumbnail_buffer.data())
  62. archive.addRelation(virtual_path = "/Metadata/thumbnail.png",
  63. relation_type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail",
  64. origin = "/3D/model.gcode")
  65. else:
  66. Logger.log("w", "Thumbnail not created, cannot save it")
  67. # Store the material.
  68. application = CuraApplication.getInstance()
  69. machine_manager = application.getMachineManager()
  70. container_registry = application.getContainerRegistry()
  71. global_stack = machine_manager.activeMachine
  72. material_extension = "xml.fdm_material"
  73. material_mime_type = "application/x-ultimaker-material-profile"
  74. try:
  75. archive.addContentType(extension = material_extension, mime_type = material_mime_type)
  76. except:
  77. Logger.log("w", "The material extension: %s was already added", material_extension)
  78. added_materials = []
  79. for extruder_stack in global_stack.extruderList:
  80. material = extruder_stack.material
  81. try:
  82. material_file_name = material.getMetaData()["base_file"] + ".xml.fdm_material"
  83. except KeyError:
  84. Logger.log("w", "Unable to get base_file for the material %s", material.getId())
  85. continue
  86. material_file_name = "/Materials/" + material_file_name
  87. # The same material should not be added again.
  88. if material_file_name in added_materials:
  89. continue
  90. material_root_id = material.getMetaDataEntry("base_file")
  91. material_root_query = container_registry.findContainers(id = material_root_id)
  92. if not material_root_query:
  93. Logger.log("e", "Cannot find material container with root id {root_id}".format(root_id = material_root_id))
  94. return False
  95. material_container = material_root_query[0]
  96. try:
  97. serialized_material = material_container.serialize()
  98. except NotImplementedError:
  99. Logger.log("e", "Unable serialize material container with root id: %s", material_root_id)
  100. return False
  101. material_file = archive.getStream(material_file_name)
  102. material_file.write(serialized_material.encode("UTF-8"))
  103. archive.addRelation(virtual_path = material_file_name,
  104. relation_type = "http://schemas.ultimaker.org/package/2018/relationships/material",
  105. origin = "/3D/model.gcode")
  106. added_materials.append(material_file_name)
  107. try:
  108. archive.close()
  109. except OSError as e:
  110. error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
  111. self.setInformation(error_msg)
  112. Logger.error(error_msg)
  113. return False
  114. return True
  115. @staticmethod
  116. def _writeObjectList(archive):
  117. """Write a json list of object names to the METADATA_OBJECTS_PATH metadata field
  118. To retrieve, use: `archive.getMetadata(METADATA_OBJECTS_PATH)`
  119. """
  120. objects_model = CuraApplication.getInstance().getObjectsModel()
  121. object_metas = []
  122. for item in objects_model.items:
  123. object_metas.extend(UFPWriter._getObjectMetadata(item["node"]))
  124. data = {METADATA_OBJECTS_PATH: object_metas}
  125. archive.setMetadata(data)
  126. @staticmethod
  127. def _getObjectMetadata(node: SceneNode) -> List[Dict[str, str]]:
  128. """Get object metadata to write for a Node.
  129. :return: List of object metadata dictionaries.
  130. Might contain > 1 element in case of a group node.
  131. Might be empty in case of nonPrintingMesh
  132. """
  133. return [{"name": item.getName()}
  134. for item in DepthFirstIterator(node)
  135. if item.getMeshData() is not None and not item.callDecoration("isNonPrintingMesh")]