USBPrinterOutputDevice.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. # Copyright (c) 2019 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import os
  4. from UM.i18n import i18nCatalog
  5. from UM.Logger import Logger
  6. from UM.Mesh.MeshWriter import MeshWriter #To get the g-code output.
  7. from UM.Message import Message #Show an error when already printing.
  8. from UM.PluginRegistry import PluginRegistry #To get the g-code output.
  9. from UM.Qt.Duration import DurationFormat
  10. from cura.CuraApplication import CuraApplication
  11. from cura.PrinterOutput.PrinterOutputDevice import PrinterOutputDevice, ConnectionState, ConnectionType
  12. from cura.PrinterOutput.Models.PrinterOutputModel import PrinterOutputModel
  13. from cura.PrinterOutput.Models.PrintJobOutputModel import PrintJobOutputModel
  14. from cura.PrinterOutput.GenericOutputController import GenericOutputController
  15. from .AutoDetectBaudJob import AutoDetectBaudJob
  16. from .AvrFirmwareUpdater import AvrFirmwareUpdater
  17. from io import StringIO #To write the g-code output.
  18. from queue import Queue
  19. from serial import Serial, SerialException, SerialTimeoutException
  20. from threading import Thread, Event
  21. from time import time
  22. from typing import Union, Optional, List, cast, TYPE_CHECKING
  23. import re
  24. import functools # Used for reduce
  25. if TYPE_CHECKING:
  26. from UM.FileHandler.FileHandler import FileHandler
  27. from UM.Scene.SceneNode import SceneNode
  28. catalog = i18nCatalog("cura")
  29. class USBPrinterOutputDevice(PrinterOutputDevice):
  30. def __init__(self, serial_port: str, baud_rate: Optional[int] = None) -> None:
  31. super().__init__(serial_port, connection_type = ConnectionType.UsbConnection)
  32. self.setName(catalog.i18nc("@item:inmenu", "USB printing"))
  33. self.setShortDescription(catalog.i18nc("@action:button Preceded by 'Ready to'.", "Print via USB"))
  34. self.setDescription(catalog.i18nc("@info:tooltip", "Print via USB"))
  35. self.setIconName("print")
  36. self._serial = None # type: Optional[Serial]
  37. self._serial_port = serial_port
  38. self._address = serial_port
  39. self._timeout = 3
  40. # List of gcode lines to be printed
  41. self._gcode = [] # type: List[str]
  42. self._gcode_position = 0
  43. self._use_auto_detect = True
  44. self._baud_rate = baud_rate
  45. self._all_baud_rates = [115200, 250000, 500000, 230400, 57600, 38400, 19200, 9600]
  46. # Instead of using a timer, we really need the update to be as a thread, as reading from serial can block.
  47. self._update_thread = Thread(target = self._update, daemon = True, name = "USBPrinterUpdate")
  48. self._last_temperature_request = None # type: Optional[int]
  49. self._firmware_idle_count = 0
  50. self._is_printing = False # A print is being sent.
  51. ## Set when print is started in order to check running time.
  52. self._print_start_time = None # type: Optional[float]
  53. self._print_estimated_time = None # type: Optional[int]
  54. self._accepts_commands = True
  55. self._paused = False
  56. self._printer_busy = False # When printer is preheating and waiting (M190/M109), or when waiting for action on the printer
  57. self.setConnectionText(catalog.i18nc("@info:status", "Connected via USB"))
  58. # Queue for commands that need to be sent.
  59. self._command_queue = Queue() # type: Queue
  60. # Event to indicate that an "ok" was received from the printer after sending a command.
  61. self._command_received = Event()
  62. self._command_received.set()
  63. self._firmware_name_requested = False
  64. self._firmware_updater = AvrFirmwareUpdater(self)
  65. plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath("USBPrinting"))
  66. self._monitor_view_qml_path = os.path.join(plugin_path, "MonitorItem.qml")
  67. CuraApplication.getInstance().getOnExitCallbackManager().addCallback(self._checkActivePrintingUponAppExit)
  68. # This is a callback function that checks if there is any printing in progress via USB when the application tries
  69. # to exit. If so, it will show a confirmation before
  70. def _checkActivePrintingUponAppExit(self) -> None:
  71. application = CuraApplication.getInstance()
  72. if not self._is_printing:
  73. # This USB printer is not printing, so we have nothing to do. Call the next callback if exists.
  74. application.triggerNextExitCheck()
  75. return
  76. application.setConfirmExitDialogCallback(self._onConfirmExitDialogResult)
  77. application.showConfirmExitDialog.emit(catalog.i18nc("@label", "A USB print is in progress, closing Cura will stop this print. Are you sure?"))
  78. def _onConfirmExitDialogResult(self, result: bool) -> None:
  79. if result:
  80. application = CuraApplication.getInstance()
  81. application.triggerNextExitCheck()
  82. ## Reset USB device settings
  83. #
  84. def resetDeviceSettings(self) -> None:
  85. self._firmware_name = None
  86. ## Request the current scene to be sent to a USB-connected printer.
  87. #
  88. # \param nodes A collection of scene nodes to send. This is ignored.
  89. # \param file_name A suggestion for a file name to write.
  90. # \param filter_by_machine Whether to filter MIME types by machine. This
  91. # is ignored.
  92. # \param kwargs Keyword arguments.
  93. def requestWrite(self, nodes: List["SceneNode"], file_name: Optional[str] = None, limit_mimetypes: bool = False,
  94. file_handler: Optional["FileHandler"] = None, filter_by_machine: bool = False, **kwargs) -> None:
  95. if self._is_printing:
  96. message = Message(text = catalog.i18nc("@message", "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."), title = catalog.i18nc("@message", "Print in Progress"))
  97. message.show()
  98. return # Already printing
  99. self.writeStarted.emit(self)
  100. # cancel any ongoing preheat timer before starting a print
  101. controller = cast(GenericOutputController, self._printers[0].getController())
  102. controller.stopPreheatTimers()
  103. CuraApplication.getInstance().getController().setActiveStage("MonitorStage")
  104. #Find the g-code to print.
  105. gcode_textio = StringIO()
  106. gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter"))
  107. success = gcode_writer.write(gcode_textio, None)
  108. if not success:
  109. return
  110. self._printGCode(gcode_textio.getvalue())
  111. ## Start a print based on a g-code.
  112. # \param gcode The g-code to print.
  113. def _printGCode(self, gcode: str):
  114. self._gcode.clear()
  115. self._paused = False
  116. self._gcode.extend(gcode.split("\n"))
  117. # Reset line number. If this is not done, first line is sometimes ignored
  118. self._gcode.insert(0, "M110")
  119. self._gcode_position = 0
  120. self._print_start_time = time()
  121. self._print_estimated_time = int(CuraApplication.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.Seconds))
  122. for i in range(0, 4): # Push first 4 entries before accepting other inputs
  123. self._sendNextGcodeLine()
  124. self._is_printing = True
  125. self.writeFinished.emit(self)
  126. def _autoDetectFinished(self, job: AutoDetectBaudJob):
  127. result = job.getResult()
  128. if result is not None:
  129. self.setBaudRate(result)
  130. self.connect() # Try to connect (actually create serial, etc)
  131. def setBaudRate(self, baud_rate: int):
  132. if baud_rate not in self._all_baud_rates:
  133. Logger.log("w", "Not updating baudrate to {baud_rate} as it's an unknown baudrate".format(baud_rate=baud_rate))
  134. return
  135. self._baud_rate = baud_rate
  136. def connect(self):
  137. self._firmware_name = None # after each connection ensure that the firmware name is removed
  138. if self._baud_rate is None:
  139. if self._use_auto_detect:
  140. auto_detect_job = AutoDetectBaudJob(self._serial_port)
  141. auto_detect_job.start()
  142. auto_detect_job.finished.connect(self._autoDetectFinished)
  143. return
  144. if self._serial is None:
  145. try:
  146. self._serial = Serial(str(self._serial_port), self._baud_rate, timeout=self._timeout, writeTimeout=self._timeout)
  147. except SerialException:
  148. Logger.log("w", "An exception occurred while trying to create serial connection")
  149. return
  150. CuraApplication.getInstance().globalContainerStackChanged.connect(self._onGlobalContainerStackChanged)
  151. self._onGlobalContainerStackChanged()
  152. self.setConnectionState(ConnectionState.Connected)
  153. self._update_thread.start()
  154. def _onGlobalContainerStackChanged(self):
  155. container_stack = CuraApplication.getInstance().getGlobalContainerStack()
  156. num_extruders = container_stack.getProperty("machine_extruder_count", "value")
  157. # Ensure that a printer is created.
  158. controller = GenericOutputController(self)
  159. controller.setCanUpdateFirmware(True)
  160. self._printers = [PrinterOutputModel(output_controller = controller, number_of_extruders = num_extruders)]
  161. self._printers[0].updateName(container_stack.getName())
  162. def close(self):
  163. super().close()
  164. if self._serial is not None:
  165. self._serial.close()
  166. # Re-create the thread so it can be started again later.
  167. self._update_thread = Thread(target=self._update, daemon=True, name = "USBPrinterUpdate")
  168. self._serial = None
  169. ## Send a command to printer.
  170. def sendCommand(self, command: Union[str, bytes]):
  171. if not self._command_received.is_set():
  172. self._command_queue.put(command)
  173. else:
  174. self._sendCommand(command)
  175. def _sendCommand(self, command: Union[str, bytes]):
  176. if self._serial is None or self._connection_state != ConnectionState.Connected:
  177. return
  178. new_command = cast(bytes, command) if type(command) is bytes else cast(str, command).encode() # type: bytes
  179. if not new_command.endswith(b"\n"):
  180. new_command += b"\n"
  181. try:
  182. self._command_received.clear()
  183. self._serial.write(new_command)
  184. except SerialTimeoutException:
  185. Logger.log("w", "Timeout when sending command to printer via USB.")
  186. self._command_received.set()
  187. except SerialException:
  188. Logger.logException("w", "An unexpected exception occurred while writing to the serial.")
  189. self.setConnectionState(ConnectionState.Error)
  190. def _update(self):
  191. while self._connection_state == ConnectionState.Connected and self._serial is not None:
  192. try:
  193. line = self._serial.readline()
  194. except:
  195. continue
  196. if not self._firmware_name_requested:
  197. self._firmware_name_requested = True
  198. self.sendCommand("M115")
  199. if b"FIRMWARE_NAME:" in line:
  200. self._setFirmwareName(line)
  201. if self._last_temperature_request is None or time() > self._last_temperature_request + self._timeout:
  202. # Timeout, or no request has been sent at all.
  203. if not self._printer_busy: # Don't flood the printer with temperature requests while it is busy
  204. self.sendCommand("M105")
  205. self._last_temperature_request = time()
  206. if re.search(b"[B|T\d*]: ?\d+\.?\d*", line): # Temperature message. 'T:' for extruder and 'B:' for bed
  207. extruder_temperature_matches = re.findall(b"T(\d*): ?(\d+\.?\d*)\s*\/?(\d+\.?\d*)?", line)
  208. # Update all temperature values
  209. matched_extruder_nrs = []
  210. for match in extruder_temperature_matches:
  211. extruder_nr = 0
  212. if match[0] != b"":
  213. extruder_nr = int(match[0])
  214. if extruder_nr in matched_extruder_nrs:
  215. continue
  216. matched_extruder_nrs.append(extruder_nr)
  217. if extruder_nr >= len(self._printers[0].extruders):
  218. Logger.log("w", "Printer reports more temperatures than the number of configured extruders")
  219. continue
  220. extruder = self._printers[0].extruders[extruder_nr]
  221. if match[1]:
  222. extruder.updateHotendTemperature(float(match[1]))
  223. if match[2]:
  224. extruder.updateTargetHotendTemperature(float(match[2]))
  225. bed_temperature_matches = re.findall(b"B: ?(\d+\.?\d*)\s*\/?(\d+\.?\d*)?", line)
  226. if bed_temperature_matches:
  227. match = bed_temperature_matches[0]
  228. if match[0]:
  229. self._printers[0].updateBedTemperature(float(match[0]))
  230. if match[1]:
  231. self._printers[0].updateTargetBedTemperature(float(match[1]))
  232. if line == b"":
  233. # An empty line means that the firmware is idle
  234. # Multiple empty lines probably means that the firmware and Cura are waiting
  235. # for eachother due to a missed "ok", so we keep track of empty lines
  236. self._firmware_idle_count += 1
  237. else:
  238. self._firmware_idle_count = 0
  239. if line.startswith(b"ok") or self._firmware_idle_count > 1:
  240. self._printer_busy = False
  241. self._command_received.set()
  242. if not self._command_queue.empty():
  243. self._sendCommand(self._command_queue.get())
  244. elif self._is_printing:
  245. if self._paused:
  246. pass # Nothing to do!
  247. else:
  248. self._sendNextGcodeLine()
  249. if line.startswith(b"echo:busy:"):
  250. self._printer_busy = True
  251. if self._is_printing:
  252. if line.startswith(b'!!'):
  253. Logger.log('e', "Printer signals fatal error. Cancelling print. {}".format(line))
  254. self.cancelPrint()
  255. elif line.lower().startswith(b"resend") or line.startswith(b"rs"):
  256. # A resend can be requested either by Resend, resend or rs.
  257. try:
  258. self._gcode_position = int(line.replace(b"N:", b" ").replace(b"N", b" ").replace(b":", b" ").split()[-1])
  259. except:
  260. if line.startswith(b"rs"):
  261. # In some cases of the RS command it needs to be handled differently.
  262. self._gcode_position = int(line.split()[1])
  263. def _setFirmwareName(self, name):
  264. new_name = re.findall(r"FIRMWARE_NAME:(.*);", str(name))
  265. if new_name:
  266. self._firmware_name = new_name[0]
  267. Logger.log("i", "USB output device Firmware name: %s", self._firmware_name)
  268. else:
  269. self._firmware_name = "Unknown"
  270. Logger.log("i", "Unknown USB output device Firmware name: %s", str(name))
  271. def getFirmwareName(self):
  272. return self._firmware_name
  273. def pausePrint(self):
  274. self._paused = True
  275. def resumePrint(self):
  276. self._paused = False
  277. self._sendNextGcodeLine() #Send one line of g-code next so that we'll trigger an "ok" response loop even if we're not polling temperatures.
  278. def cancelPrint(self):
  279. self._gcode_position = 0
  280. self._gcode.clear()
  281. self._printers[0].updateActivePrintJob(None)
  282. self._is_printing = False
  283. self._paused = False
  284. # Turn off temperatures, fan and steppers
  285. self._sendCommand("M140 S0")
  286. self._sendCommand("M104 S0")
  287. self._sendCommand("M107")
  288. # Home XY to prevent nozzle resting on aborted print
  289. # Don't home bed because it may crash the printhead into the print on printers that home on the bottom
  290. self.printers[0].homeHead()
  291. self._sendCommand("M84")
  292. def _sendNextGcodeLine(self):
  293. if self._gcode_position >= len(self._gcode):
  294. self._printers[0].updateActivePrintJob(None)
  295. self._is_printing = False
  296. return
  297. line = self._gcode[self._gcode_position]
  298. if ";" in line:
  299. line = line[:line.find(";")]
  300. line = line.strip()
  301. # Don't send empty lines. But we do have to send something, so send M105 instead.
  302. # Don't send the M0 or M1 to the machine, as M0 and M1 are handled as an LCD menu pause.
  303. if line == "" or line == "M0" or line == "M1":
  304. line = "M105"
  305. checksum = functools.reduce(lambda x, y: x ^ y, map(ord, "N%d%s" % (self._gcode_position, line)))
  306. self._sendCommand("N%d%s*%d" % (self._gcode_position, line, checksum))
  307. print_job = self._printers[0].activePrintJob
  308. try:
  309. progress = self._gcode_position / len(self._gcode)
  310. except ZeroDivisionError:
  311. # There is nothing to send!
  312. if print_job is not None:
  313. print_job.updateState("error")
  314. return
  315. elapsed_time = int(time() - self._print_start_time)
  316. if print_job is None:
  317. controller = GenericOutputController(self)
  318. controller.setCanUpdateFirmware(True)
  319. print_job = PrintJobOutputModel(output_controller=controller, name=CuraApplication.getInstance().getPrintInformation().jobName)
  320. print_job.updateState("printing")
  321. self._printers[0].updateActivePrintJob(print_job)
  322. print_job.updateTimeElapsed(elapsed_time)
  323. estimated_time = self._print_estimated_time
  324. if progress > .1:
  325. estimated_time = self._print_estimated_time * (1 - progress) + elapsed_time
  326. print_job.updateTimeTotal(estimated_time)
  327. self._gcode_position += 1