Printrun/printcore.py

374 lines
13 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2012-01-23 11:36:49 +00:00
# This file is part of the Printrun suite.
#
# Printrun is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Printrun is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
from serial import Serial, SerialException
from threading import Thread
from select import error as SelectError
import time, getopt, sys
2012-08-03 21:20:41 +00:00
import platform, os
def control_ttyhup(port, disable_hup):
"""Controls the HUPCL"""
if platform.system() == "Linux":
if disable_hup:
os.system("stty -F %s -hup" % port)
else:
os.system("stty -F %s hup" % port)
def enable_hup(port):
control_ttyhup(port, False)
def disable_hup(port):
control_ttyhup(port, True)
2011-05-23 13:39:24 +00:00
class printcore():
2012-08-03 21:25:51 +00:00
def __init__(self, port = None, baud = None):
"""Initializes a printcore instance. Pass the port and baud rate to connect immediately
"""
2012-08-03 21:25:51 +00:00
self.baud = None
self.port = None
self.printer = None #Serial instance connected to the printer, None when disconnected
self.clear = 0 #clear to send, enabled after responses
self.online = False #The printer has responded to the initial command and is active
self.printing = False #is a print currently running, true if printing, false if paused
self.mainqueue = []
self.priqueue = []
self.queueindex = 0
self.lineno = 0
self.resendfrom = -1
self.paused = False
self.sentlines = {}
self.log = []
self.sent = []
self.tempcb = None #impl (wholeline)
self.recvcb = None #impl (wholeline)
self.sendcb = None #impl (wholeline)
self.errorcb = None #impl (wholeline)
self.startcb = None #impl ()
self.endcb = None #impl ()
self.onlinecb = None #impl ()
self.loud = False #emit sent and received lines to terminal
self.greetings = ['start','Grbl ']
self.wait = 0 # default wait period for send(), send_now()
self.read_thread = None
self.stop_read_thread = False
2012-08-03 21:43:11 +00:00
self.print_thread = None
if port is not None and baud is not None:
self.connect(port, baud)
def disconnect(self):
"""Disconnects from printer and pauses the print
"""
2012-08-02 21:48:40 +00:00
if self.printer:
if self.read_thread:
self.stop_read_thread = True
self.read_thread.join()
self.read_thread = None
self.printer.close()
2012-08-03 21:25:51 +00:00
self.printer = None
self.online = False
self.printing = False
def connect(self,port=None,baud=None):
"""Set port and baudrate if given, then connect to printer
"""
2012-08-03 21:25:51 +00:00
if self.printer:
self.disconnect()
if port is not None:
2012-08-03 21:25:51 +00:00
self.port = port
if baud is not None:
2012-08-03 21:25:51 +00:00
self.baud = baud
if self.port is not None and self.baud is not None:
2012-08-03 21:20:41 +00:00
disable_hup(self.port)
2012-08-03 21:25:51 +00:00
self.printer = Serial(port = self.port, baudrate = self.baud, timeout = 1)
2012-08-02 21:48:40 +00:00
self.stop_read_thread = False
self.read_thread = Thread(target=self._listen)
self.read_thread.start()
def reset(self):
"""Reset the printer
"""
2012-08-02 21:48:40 +00:00
if self.printer:
self.printer.setDTR(1)
time.sleep(0.2)
self.printer.setDTR(0)
2012-08-03 21:54:35 +00:00
def _readline(self):
try:
line = self.printer.readline()
return line
except SelectError, e:
if 'Bad file descriptor' in e.args[1]:
print "Can't read from printer (disconnected?)."
return None
else:
raise
except SerialException, e:
print "Can't read from printer (disconnected?)."
return None
except OSError, e:
print "Can't read from printer (disconnected?)."
return None
def _listen(self):
"""This function acts on messages from the firmware
"""
2012-08-03 21:54:35 +00:00
self.clear = True
if not self.printing:
self._send("M105")
2012-08-03 21:54:35 +00:00
time.sleep(1)
while not self.stop_read_thread and self.printer and self.printer.isOpen():
line = self._readline()
if line == None:
break
2012-08-03 21:54:35 +00:00
if len(line) > 1:
self.log.append(line)
if self.recvcb:
try: self.recvcb(line)
except: pass
2012-08-03 22:02:16 +00:00
if self.loud: print "RECV: ", line.rstrip()
2012-08-03 21:54:35 +00:00
if line.startswith('DEBUG_'):
continue
2012-08-03 21:54:35 +00:00
if line.startswith(tuple(self.greetings)) or line.startswith('ok'):
self.clear = True
if line.startswith(tuple(self.greetings)) or line.startswith('ok') or "T:" in line:
if (not self.online or line.startswith(tuple(self.greetings))) and self.onlinecb is not None:
2012-08-03 21:54:35 +00:00
try: self.onlinecb()
except: pass
self.online = True
if line.startswith('ok'):
2011-06-26 00:47:39 +00:00
#self.resendfrom=-1
if "T:" in line and self.tempcb is not None:
2012-08-03 21:54:35 +00:00
#callback for temp, status, whatever
try: self.tempcb(line)
except: pass
elif line.startswith('Error'):
2011-05-26 22:16:26 +00:00
if self.errorcb is not None:
2012-08-03 21:54:35 +00:00
#callback for errors
try: self.errorcb(line)
except: pass
if line.lower().startswith("resend") or line.startswith("rs"):
try:
2012-08-03 22:02:16 +00:00
toresend = int(line.replace("N:", " ").replace("N", " ").replace(":", " ").split()[-1])
except:
if line.startswith("rs"):
2012-08-03 21:54:35 +00:00
toresend = int(line.split()[1])
self.resendfrom = toresend
self.clear = True
self.clear = True
2012-08-03 22:02:16 +00:00
def _checksum(self, command):
return reduce(lambda x,y:x^y, map(ord, command))
def startprint(self,data):
"""Start a print, data is an array of gcode commands.
returns True on success, False if already printing.
The print queue will be replaced with the contents of the data array, the next line will be set to 0 and the firmware notified.
Printing will then start in a parallel thread.
"""
2012-08-03 21:25:51 +00:00
if self.printing or not self.online or not self.printer:
return False
2012-08-03 22:02:16 +00:00
self.printing = True
self.mainqueue = [] + data
self.lineno = 0
self.queueindex = 0
self.resendfrom = -1
self._send("M110", -1, True)
if len(data) == 0:
2011-05-28 17:08:22 +00:00
return True
2012-08-03 22:02:16 +00:00
self.clear = False
2012-08-03 21:43:11 +00:00
self.print_thread = Thread(target = self._print)
self.print_thread.start()
return True
def pause(self):
"""Pauses the print, saving the current position.
"""
2012-08-03 21:26:47 +00:00
self.paused = True
self.printing = False
2012-08-03 21:43:11 +00:00
self.print_thread.join()
self.print_thread = None
def resume(self):
"""Resumes a paused print.
"""
2012-08-03 21:26:47 +00:00
self.paused = False
self.printing = True
2012-08-03 21:43:11 +00:00
self.print_thread = Thread(target = self._print)
self.print_thread.start()
2012-08-03 21:51:41 +00:00
def send(self, command, wait = 0):
"""Adds a command to the checksummed main command queue if printing, or sends the command immediately if not printing
"""
2012-08-03 21:51:41 +00:00
if self.online:
if self.printing:
self.mainqueue.append(command)
else:
2012-08-03 21:51:41 +00:00
while self.printer and self.printing and not self.clear:
time.sleep(0.001)
2012-08-03 21:51:41 +00:00
if wait == 0 and self.wait > 0:
wait = self.wait
2012-08-03 21:51:41 +00:00
if wait > 0:
self.clear = False
self._send(command, self.lineno, True)
2012-08-04 08:35:56 +00:00
self.lineno += 1
2012-08-03 21:51:41 +00:00
while (wait > 0) and self.printer and self.printing and not self.clear:
time.sleep(0.001)
2012-08-03 21:51:41 +00:00
wait -= 1
else:
print "Not connected to printer."
2012-08-03 21:51:41 +00:00
def send_now(self, command, wait = 0):
"""Sends a command to the printer ahead of the command queue, without a checksum
"""
2012-08-03 21:51:41 +00:00
if self.online or force:
if self.printing:
self.priqueue.append(command)
else:
2012-08-03 21:51:41 +00:00
while self.printer and self.printing and not self.clear:
time.sleep(0.001)
2012-08-03 21:51:41 +00:00
if wait == 0 and self.wait > 0:
wait = self.wait
2012-08-03 21:51:41 +00:00
if wait > 0:
self.clear = False
self._send(command)
2012-08-03 21:51:41 +00:00
while (wait > 0) and self.printer and self.printing and not self.clear:
time.sleep(0.001)
2012-08-03 21:51:41 +00:00
wait -= 1
2012-06-15 19:58:03 +00:00
else:
print "Not connected to printer."
def _print(self):
2011-05-26 22:16:26 +00:00
if self.startcb is not None:
2012-08-03 21:47:58 +00:00
#callback for printing started
try: self.startcb()
except: pass
while self.printing and self.printer and self.online:
self._sendnext()
2012-08-03 21:47:58 +00:00
self.sentlines = {}
self.log = []
self.sent = []
2011-05-26 22:16:26 +00:00
if self.endcb is not None:
2012-08-03 21:47:58 +00:00
#callback for printing done
try: self.endcb()
except: pass
def _sendnext(self):
2012-08-03 21:47:03 +00:00
if not self.printer:
return
2012-08-03 21:43:11 +00:00
while self.printer and self.printing and not self.clear:
time.sleep(0.001)
2012-08-03 21:47:03 +00:00
self.clear = False
if not (self.printing and self.printer and self.online):
2012-08-03 21:47:03 +00:00
self.clear = True
return
2012-08-03 21:47:03 +00:00
if self.resendfrom < self.lineno and self.resendfrom > -1:
self._send(self.sentlines[self.resendfrom],self.resendfrom,False)
2012-08-03 21:47:03 +00:00
self.resendfrom += 1
return
2012-08-03 21:47:03 +00:00
self.resendfrom = -1
for i in self.priqueue[:]:
self._send(i)
2012-08-03 21:47:03 +00:00
del self.priqueue[0]
return
2012-08-03 21:47:03 +00:00
if self.printing and self.queueindex < len(self.mainqueue):
tline = self.mainqueue[self.queueindex]
tline = tline.split(";")[0]
if len(tline) > 0:
self._send(tline, self.lineno, True)
self.lineno += 1
else:
2012-08-03 21:47:03 +00:00
self.clear = True
self.queueindex += 1
else:
2012-08-03 21:47:03 +00:00
self.printing = False
self.clear = True
if not self.paused:
self.queueindex = 0
self.lineno = 0
self._send("M110", -1, True)
2012-08-03 21:47:03 +00:00
def _send(self, command, lineno = 0, calcchecksum = False):
if calcchecksum:
prefix = "N" + str(lineno) + " " + command
command = prefix + "*" + str(self._checksum(prefix))
if "M110" not in command:
self.sentlines[lineno] = command
if self.printer:
self.sent.append(command)
2011-05-23 13:39:24 +00:00
if self.loud:
print "SENT: ",command
2011-05-26 22:16:26 +00:00
if self.sendcb is not None:
2012-08-03 21:47:03 +00:00
try: self.sendcb(command)
except: pass
try:
self.printer.write(str(command+"\n"))
except SerialException, e:
print "Can't write to printer (disconnected?)."
if __name__ == '__main__':
baud = 115200
loud = False
2012-08-04 08:40:44 +00:00
statusreport = False
try:
2012-08-04 08:40:44 +00:00
opts, args = getopt.getopt(sys.argv[1:], "h,b:,v,s",
["help", "baud", "verbose", "statusreport"])
except getopt.GetoptError,err:
2012-08-04 08:40:44 +00:00
print str(err)
print help
sys.exit(2)
for o, a in opts:
if o in ('-h', '--help'):
# FIXME: Fix help
print "Opts are: --help , -b --baud = baudrate, -v --verbose, -s --statusreport"
sys.exit(1)
if o in ('-b', '--baud'):
baud = int(a)
if o in ('-v','--verbose'):
loud = True
elif o in ('-s','--statusreport'):
2012-08-04 08:40:44 +00:00
statusreport = True
2012-08-04 08:40:44 +00:00
if len (args) > 1:
port = args[-2]
filename = args[-1]
print "Printing: %s on %s with baudrate %d" % (filename, port, baud)
else:
print "Usage: python [-h|-b|-v|-s] printcore.py /dev/tty[USB|ACM]x filename.gcode"
2011-12-16 20:46:24 +00:00
sys.exit(2)
2012-08-04 08:40:44 +00:00
p = printcore(port, baud)
p.loud = loud
time.sleep(2)
2012-08-04 08:40:44 +00:00
gcode = [i.replace("\n","") for i in open(filename)]
p.startprint(gcode)
try:
2011-05-23 13:39:24 +00:00
if statusreport:
p.loud=False
sys.stdout.write("Progress: 00.0%")
sys.stdout.flush()
2012-08-04 08:40:44 +00:00
while p.printing:
time.sleep(1)
2011-05-23 13:39:24 +00:00
if statusreport:
2012-08-04 08:40:44 +00:00
sys.stdout.write("\b\b\b\b%02.1f%%" % (100 * float(p.queueindex) / len(p.mainqueue),) )
2011-05-23 13:39:24 +00:00
sys.stdout.flush()
p.disconnect()
sys.exit(0)
except:
p.disconnect()