PostProcessingPlugin.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. # Copyright (c) 2018 Jaime van Kessel, Ultimaker B.V.
  2. # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
  3. from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot
  4. from typing import Dict, Type, TYPE_CHECKING, List, Optional, cast
  5. from UM.PluginRegistry import PluginRegistry
  6. from UM.Resources import Resources
  7. from UM.Application import Application
  8. from UM.Extension import Extension
  9. from UM.Logger import Logger
  10. import configparser # The script lists are stored in metadata as serialised config files.
  11. import io # To allow configparser to write to a string.
  12. import os.path
  13. import pkgutil
  14. import sys
  15. import importlib.util
  16. from UM.i18n import i18nCatalog
  17. from cura.CuraApplication import CuraApplication
  18. i18n_catalog = i18nCatalog("cura")
  19. if TYPE_CHECKING:
  20. from .Script import Script
  21. ## The post processing plugin is an Extension type plugin that enables pre-written scripts to post process generated
  22. # g-code files.
  23. class PostProcessingPlugin(QObject, Extension):
  24. def __init__(self, parent = None) -> None:
  25. QObject.__init__(self, parent)
  26. Extension.__init__(self)
  27. self.addMenuItem(i18n_catalog.i18n("Modify G-Code"), self.showPopup)
  28. self._view = None
  29. # Loaded scripts are all scripts that can be used
  30. self._loaded_scripts = {} # type: Dict[str, Type[Script]]
  31. self._script_labels = {} # type: Dict[str, str]
  32. # Script list contains instances of scripts in loaded_scripts.
  33. # There can be duplicates, which will be executed in sequence.
  34. self._script_list = [] # type: List[Script]
  35. self._selected_script_index = -1
  36. Application.getInstance().getOutputDeviceManager().writeStarted.connect(self.execute)
  37. Application.getInstance().globalContainerStackChanged.connect(self._onGlobalContainerStackChanged) # When the current printer changes, update the list of scripts.
  38. CuraApplication.getInstance().mainWindowChanged.connect(self._createView) # When the main window is created, create the view so that we can display the post-processing icon if necessary.
  39. selectedIndexChanged = pyqtSignal()
  40. @pyqtProperty(str, notify = selectedIndexChanged)
  41. def selectedScriptDefinitionId(self) -> Optional[str]:
  42. try:
  43. return self._script_list[self._selected_script_index].getDefinitionId()
  44. except:
  45. return ""
  46. @pyqtProperty(str, notify=selectedIndexChanged)
  47. def selectedScriptStackId(self) -> Optional[str]:
  48. try:
  49. return self._script_list[self._selected_script_index].getStackId()
  50. except:
  51. return ""
  52. ## Execute all post-processing scripts on the gcode.
  53. def execute(self, output_device) -> None:
  54. scene = Application.getInstance().getController().getScene()
  55. # If the scene does not have a gcode, do nothing
  56. if not hasattr(scene, "gcode_dict"):
  57. return
  58. gcode_dict = getattr(scene, "gcode_dict")
  59. if not gcode_dict:
  60. return
  61. # get gcode list for the active build plate
  62. active_build_plate_id = CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate
  63. gcode_list = gcode_dict[active_build_plate_id]
  64. if not gcode_list:
  65. return
  66. if ";POSTPROCESSED" not in gcode_list[0]:
  67. for script in self._script_list:
  68. try:
  69. gcode_list = script.execute(gcode_list)
  70. except Exception:
  71. Logger.logException("e", "Exception in post-processing script.")
  72. if len(self._script_list): # Add comment to g-code if any changes were made.
  73. gcode_list[0] += ";POSTPROCESSED\n"
  74. gcode_dict[active_build_plate_id] = gcode_list
  75. setattr(scene, "gcode_dict", gcode_dict)
  76. else:
  77. Logger.log("e", "Already post processed")
  78. @pyqtSlot(int)
  79. def setSelectedScriptIndex(self, index: int) -> None:
  80. if self._selected_script_index != index:
  81. self._selected_script_index = index
  82. self.selectedIndexChanged.emit()
  83. @pyqtProperty(int, notify = selectedIndexChanged)
  84. def selectedScriptIndex(self) -> int:
  85. return self._selected_script_index
  86. @pyqtSlot(int, int)
  87. def moveScript(self, index: int, new_index: int) -> None:
  88. if new_index < 0 or new_index > len(self._script_list) - 1:
  89. return # nothing needs to be done
  90. else:
  91. # Magical switch code.
  92. self._script_list[new_index], self._script_list[index] = self._script_list[index], self._script_list[new_index]
  93. self.scriptListChanged.emit()
  94. self.selectedIndexChanged.emit() #Ensure that settings are updated
  95. self._propertyChanged()
  96. ## Remove a script from the active script list by index.
  97. @pyqtSlot(int)
  98. def removeScriptByIndex(self, index: int) -> None:
  99. self._script_list.pop(index)
  100. if len(self._script_list) - 1 < self._selected_script_index:
  101. self._selected_script_index = len(self._script_list) - 1
  102. self.scriptListChanged.emit()
  103. self.selectedIndexChanged.emit() # Ensure that settings are updated
  104. self._propertyChanged()
  105. ## Load all scripts from all paths where scripts can be found.
  106. #
  107. # This should probably only be done on init.
  108. def loadAllScripts(self) -> None:
  109. if self._loaded_scripts: # Already loaded.
  110. return
  111. # The PostProcessingPlugin path is for built-in scripts.
  112. # The Resources path is where the user should store custom scripts.
  113. # The Preferences path is legacy, where the user may previously have stored scripts.
  114. for root in [PluginRegistry.getInstance().getPluginPath("PostProcessingPlugin"), Resources.getStoragePath(Resources.Resources), Resources.getStoragePath(Resources.Preferences)]:
  115. if root is None:
  116. continue
  117. path = os.path.join(root, "scripts")
  118. if not os.path.isdir(path):
  119. try:
  120. os.makedirs(path)
  121. except OSError:
  122. Logger.log("w", "Unable to create a folder for scripts: " + path)
  123. continue
  124. self.loadScripts(path)
  125. ## Load all scripts from provided path.
  126. # This should probably only be done on init.
  127. # \param path Path to check for scripts.
  128. def loadScripts(self, path: str) -> None:
  129. ## Load all scripts in the scripts folders
  130. scripts = pkgutil.iter_modules(path = [path])
  131. for loader, script_name, ispkg in scripts:
  132. # Iterate over all scripts.
  133. if script_name not in sys.modules:
  134. try:
  135. spec = importlib.util.spec_from_file_location(__name__ + "." + script_name, os.path.join(path, script_name + ".py"))
  136. loaded_script = importlib.util.module_from_spec(spec)
  137. if spec.loader is None:
  138. continue
  139. spec.loader.exec_module(loaded_script)
  140. sys.modules[script_name] = loaded_script #TODO: This could be a security risk. Overwrite any module with a user-provided name?
  141. loaded_class = getattr(loaded_script, script_name)
  142. temp_object = loaded_class()
  143. Logger.log("d", "Begin loading of script: %s", script_name)
  144. try:
  145. setting_data = temp_object.getSettingData()
  146. if "name" in setting_data and "key" in setting_data:
  147. self._script_labels[setting_data["key"]] = setting_data["name"]
  148. self._loaded_scripts[setting_data["key"]] = loaded_class
  149. else:
  150. Logger.log("w", "Script %s.py has no name or key", script_name)
  151. self._script_labels[script_name] = script_name
  152. self._loaded_scripts[script_name] = loaded_class
  153. except AttributeError:
  154. Logger.log("e", "Script %s.py is not a recognised script type. Ensure it inherits Script", script_name)
  155. except NotImplementedError:
  156. Logger.log("e", "Script %s.py has no implemented settings", script_name)
  157. except Exception as e:
  158. Logger.logException("e", "Exception occurred while loading post processing plugin: {error_msg}".format(error_msg = str(e)))
  159. loadedScriptListChanged = pyqtSignal()
  160. @pyqtProperty("QVariantList", notify = loadedScriptListChanged)
  161. def loadedScriptList(self) -> List[str]:
  162. return sorted(list(self._loaded_scripts.keys()))
  163. @pyqtSlot(str, result = str)
  164. def getScriptLabelByKey(self, key: str) -> Optional[str]:
  165. return self._script_labels.get(key)
  166. scriptListChanged = pyqtSignal()
  167. @pyqtProperty("QStringList", notify = scriptListChanged)
  168. def scriptList(self) -> List[str]:
  169. script_list = [script.getSettingData()["key"] for script in self._script_list]
  170. return script_list
  171. @pyqtSlot(str)
  172. def addScriptToList(self, key: str) -> None:
  173. Logger.log("d", "Adding script %s to list.", key)
  174. new_script = self._loaded_scripts[key]()
  175. new_script.initialize()
  176. self._script_list.append(new_script)
  177. self.setSelectedScriptIndex(len(self._script_list) - 1)
  178. self.scriptListChanged.emit()
  179. self._propertyChanged()
  180. ## When the global container stack is changed, swap out the list of active
  181. # scripts.
  182. def _onGlobalContainerStackChanged(self) -> None:
  183. self.loadAllScripts()
  184. new_stack = Application.getInstance().getGlobalContainerStack()
  185. if new_stack is None:
  186. return
  187. self._script_list.clear()
  188. if not new_stack.getMetaDataEntry("post_processing_scripts"): # Missing or empty.
  189. self.scriptListChanged.emit() # Even emit this if it didn't change. We want it to write the empty list to the stack's metadata.
  190. return
  191. self._script_list.clear()
  192. scripts_list_strs = new_stack.getMetaDataEntry("post_processing_scripts")
  193. for script_str in scripts_list_strs.split("\n"): # Encoded config files should never contain three newlines in a row. At most 2, just before section headers.
  194. if not script_str: # There were no scripts in this one (or a corrupt file caused more than 3 consecutive newlines here).
  195. continue
  196. script_str = script_str.replace(r"\\\n", "\n").replace(r"\\\\", "\\\\") # Unescape escape sequences.
  197. script_parser = configparser.ConfigParser(interpolation = None)
  198. script_parser.optionxform = str # type: ignore # Don't transform the setting keys as they are case-sensitive.
  199. script_parser.read_string(script_str)
  200. for script_name, settings in script_parser.items(): # There should only be one, really! Otherwise we can't guarantee the order or allow multiple uses of the same script.
  201. if script_name == "DEFAULT": # ConfigParser always has a DEFAULT section, but we don't fill it. Ignore this one.
  202. continue
  203. if script_name not in self._loaded_scripts: # Don't know this post-processing plug-in.
  204. Logger.log("e", "Unknown post-processing script {script_name} was encountered in this global stack.".format(script_name = script_name))
  205. continue
  206. new_script = self._loaded_scripts[script_name]()
  207. new_script.initialize()
  208. for setting_key, setting_value in settings.items(): # Put all setting values into the script.
  209. if new_script._instance is not None:
  210. new_script._instance.setProperty(setting_key, "value", setting_value)
  211. self._script_list.append(new_script)
  212. self.setSelectedScriptIndex(0)
  213. self.scriptListChanged.emit()
  214. @pyqtSlot()
  215. def writeScriptsToStack(self) -> None:
  216. script_list_strs = [] # type: List[str]
  217. for script in self._script_list:
  218. parser = configparser.ConfigParser(interpolation = None) # We'll encode the script as a config with one section. The section header is the key and its values are the settings.
  219. parser.optionxform = str # type: ignore # Don't transform the setting keys as they are case-sensitive.
  220. script_name = script.getSettingData()["key"]
  221. parser.add_section(script_name)
  222. for key in script.getSettingData()["settings"]:
  223. value = script.getSettingValueByKey(key)
  224. parser[script_name][key] = str(value)
  225. serialized = io.StringIO() # ConfigParser can only write to streams. Fine.
  226. parser.write(serialized)
  227. serialized.seek(0)
  228. script_str = serialized.read()
  229. script_str = script_str.replace("\\\\", r"\\\\").replace("\n", r"\\\n") # Escape newlines because configparser sees those as section delimiters.
  230. script_list_strs.append(script_str)
  231. script_list_string = "\n".join(script_list_strs) # ConfigParser should never output three newlines in a row when serialised, so it's a safe delimiter.
  232. global_stack = Application.getInstance().getGlobalContainerStack()
  233. if global_stack is None:
  234. return
  235. if "post_processing_scripts" not in global_stack.getMetaData():
  236. global_stack.setMetaDataEntry("post_processing_scripts", "")
  237. global_stack.setMetaDataEntry("post_processing_scripts", script_list_string)
  238. ## Creates the view used by show popup. The view is saved because of the fairly aggressive garbage collection.
  239. def _createView(self) -> None:
  240. Logger.log("d", "Creating post processing plugin view.")
  241. self.loadAllScripts()
  242. # Create the plugin dialog component
  243. path = os.path.join(cast(str, PluginRegistry.getInstance().getPluginPath("PostProcessingPlugin")), "PostProcessingPlugin.qml")
  244. self._view = CuraApplication.getInstance().createQmlComponent(path, {"manager": self})
  245. if self._view is None:
  246. Logger.log("e", "Not creating PostProcessing button near save button because the QML component failed to be created.")
  247. return
  248. Logger.log("d", "Post processing view created.")
  249. # Create the save button component
  250. CuraApplication.getInstance().addAdditionalComponent("saveButton", self._view.findChild(QObject, "postProcessingSaveAreaButton"))
  251. ## Show the (GUI) popup of the post processing plugin.
  252. def showPopup(self) -> None:
  253. if self._view is None:
  254. self._createView()
  255. if self._view is None:
  256. Logger.log("e", "Not creating PostProcessing window since the QML component failed to be created.")
  257. return
  258. self._view.show()
  259. ## Property changed: trigger re-slice
  260. # To do this we use the global container stack propertyChanged.
  261. # Re-slicing is necessary for setting changes in this plugin, because the changes
  262. # are applied only once per "fresh" gcode
  263. def _propertyChanged(self) -> None:
  264. global_container_stack = Application.getInstance().getGlobalContainerStack()
  265. if global_container_stack is not None:
  266. global_container_stack.propertyChanged.emit("post_processing_plugin", "value")