forked from RUB-NDS/PRET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcl.py
248 lines (217 loc) · 9.66 KB
/
pcl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# -*- coding: utf-8 -*-
# python standard library
import re, os, json, random
# local pret classes
from printer import printer
from helper import log, output, conv, item, const as c
class pcl(printer):
# --------------------------------------------------------------------
# send PCL command to printer, optionally receive response
def cmd(self, str_send, fb=True):
str_recv = "" # response buffer
token = str(random.randrange(2**8, 2**15) * -1) # -256..-32767
footer = c.ESC + '*s' + token + 'X' # echo delimiter
# send command to printer device
try:
cmd_send = c.UEL + c.PCL_HEADER + str_send + footer + c.UEL
# write to logfile
log().write(self.logfile, c.ESC + str_send + os.linesep)
# sent to printer
self.send(cmd_send)
# use random token as delimiter for PCL responses
str_recv = self.recv('ECHO ' + token + '.*$', fb)
# crop all PCL lines from received buffer
str_recv = re.sub(r"\x0d?\x0a?\x0c?PCL.*\x0a?", '', str_recv)
return str_recv
# handle CTRL+C and exceptions
except (KeyboardInterrupt, Exception) as e:
self.reconnect(str(e))
return ""
# --------------------------------------------------------------------
# remove functions not implemented in pcl
def __init__(self, args):
del printer.do_rmdir, printer.do_chvol, printer.do_pwd,
del printer.do_touch, printer.do_append, printer.do_cd,
del printer.do_traversal, printer.help_fuzz, printer.do_fuzz
return super(pcl, self).__init__(args)
# ====================================================================
'''
┌───────────────────────────────────────────────────────────────┐
│ `pclfs' specs // mosty implemented for the hack value │
├────────────┬──────────────┬───────────────────────────────────┤
│ macro ids │ 31337 │ superblock (serialized metadata) │
│ │ 10000..19999 │ file content (binary or ascii) │
├────────────┼──────────────┼───────────────────────────────────┤
│ echo codes │ 0..255 │ ascii encoding for file transfers │
│ │ -256..-32767 │ protocol delimiters for pcl jobs │
├────────────┴──────────────┴───────────────────────────────────┤
│ `superblock' format: JSON containing id, size and timestamp │
└───────────────────────────────────────────────────────────────┘
'''
# check if remote file exists
def file_exists(self, path):
pclfs = self.dirlist()
for name, (id, size, date) in pclfs.items():
if path == name: return int(size)
return c.NONEXISTENT
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# auto-complete dirlist for remote fs
options_rfiles = {}
def complete_rfiles(self, text, line, begidx, endidx):
return [cat for cat in self.options_rfiles if cat.startswith(text)]
# define alias
complete_delete = complete_rfiles # file_or_dir
complete_rm = complete_rfiles # file_or_dir
complete_get = complete_rfiles # file_or_dir
complete_cat = complete_rfiles # file_or_dir
complete_edit = complete_rfiles # file_or_dir
complete_vim = complete_rfiles # file_or_dir
# get list of macro ids on printer device
def idlist(self):
list = []
str_send = '*s4T' # set location type (downloaded)
str_send += c.ESC + '*s0U' # set location unit (all units)
str_send += c.ESC + '*s1I' # set inquire entity (macros)
str_recv = self.cmd(str_send)
idlist = re.findall('IDLIST="(.*),?"', str_recv) ### maybe this can
for id in item(idlist).split(","): ### be packed into
if id.startswith('1'): list.append(int(id)) ### a single regex
return list
# get list of files on virtual file system
def dirlist(self, pclfs={}):
superblock = self.retrieve_data(c.SUPERBLOCK)
if superblock: # de-serialize pclfs dictionary
try: pclfs = json.loads(superblock)
except: pass # non-existent or invalid superblock
self.options_rfiles = pclfs
return pclfs
# ------------------------[ ls ]--------------------------------------
def do_ls(self, arg):
"List contents of virtual file system: ls"
pclfs = self.dirlist()
if not pclfs: # no files have yet been uploaded
output().raw("This is a virtual pclfs. Use 'put' to upload files.")
# list files with syntax highlighting
for name, (id, size, date) in sorted(pclfs.items()):
output().pcldir(size, conv().lsdate(int(date)), id, name)
# ====================================================================
# ------------------------[ delete <file> ]---------------------------
def delete(self, arg):
pclfs = self.dirlist()
if arg in pclfs:
id = pclfs[arg][0]
# remove pclfs entry
del pclfs[arg]
self.update_superblock(pclfs)
# remove macro itself
self.delete_macro(id)
else:
print("File not found.")
# ------------------------[ get <file> ]------------------------------
def get(self, path, size=None):
pclfs = self.dirlist()
for name, (id, size, date) in pclfs.items():
if path == name:
str_recv = self.retrieve_data(id)
return (int(size), str_recv)
print("File not found.")
return c.NONEXISTENT
def retrieve_data(self, id):
str_send = '&f' + id + 'Y' # set macro id
str_send += c.ESC + '&f2X' # execute macro
return self.echo2data(self.cmd(str_send))
# ------------------------[ put <local file> ]------------------------
def put(self, path, data):
path = self.basename(path)
pclfs = self.dirlist()
# re-use macro id if file name already present
if path in pclfs: id = pclfs[path][0]
# find free macro id not already reserved for file
else: id = str(item(set(c.BLOCKRANGE).difference(self.idlist())))
# abort if we have used up the whole macro id space
if not id: return output().warning("Out of macro slots.")
self.chitchat("Using macro id #" + id)
# retrieve and update superblock
size = str(len(data))
date = str(conv().now())
pclfs[path] = [id, size, date]
self.update_superblock(pclfs)
# save data as pcl macro on printer
self.define_macro(id, data)
# ====================================================================
# define macro on printer device
def define_macro(self, id, data):
str_send = '&f' + id + 'Y' # set macro id
str_send += c.ESC + '&f0X' # start macro
str_send += self.data2echo(data) # echo commands
str_send += c.ESC + '&f1X' # end macro
str_send += c.ESC + '&f10X' # make permanent
self.cmd(str_send, False)
# delete macro from printer device
def delete_macro(self, id):
str_send = '&f' + id + 'Y' # set macro id
str_send += c.ESC + '&f8X' # delete macro
self.cmd(str_send, False)
# update information on virtual file system
def update_superblock(self, pclfs):
# serialize pclfs dictionary
pclfs = json.dumps(pclfs)
self.define_macro(c.SUPERBLOCK, pclfs)
# convert binary data to pcl echo commands
def data2echo(self, data):
echo = ''
for n in data:
echo += c.ESC + '*s' + str(ord(n)) + 'X'
return echo
# convert pcl echo commands to binary data
def echo2data(self, echo):
data = ''
echo = re.findall("ECHO (\d+)", echo)
for n in echo:
data += conv().chr(n)
return data
# ====================================================================
# ------------------------[ info <category> ]-------------------------
def do_info(self, arg):
if arg in self.entities:
entity, desc = self.entities[arg]
for location in self.locations:
output().raw(desc + " " + self.locations[location])
str_send = '*s' + location + 'T' # set location type
str_send += c.ESC + '*s0U' # set location unit
str_send += c.ESC + '*s' + entity + 'I' # set inquire entity
output().info(self.cmd(str_send))
else:
self.help_info()
def help_info(self):
print("Show information: info <category>")
print(" info fonts - Show installed fonts.")
print(" info macros - Show installed macros.")
print(" info patterns - Show user-defined patterns.")
print(" info symbols - Show symbol sets.")
print(" info extended - Show extended fonts.")
def complete_info(self, text, line, begidx, endidx):
return [cat for cat in self.entities if cat.startswith(text)]
entities = {
'fonts': ['0', 'Fonts'],
'macros': ['1', 'Macros'],
'patterns': ['2', 'User-defined Patterns'],
'symbols': ['3', 'Symbol Sets'],
'extended': ['4', 'Fonts Extended']
}
locations = {
# '1': '(Selected)',
# '2': '(All Locations)',
'3': '(Internal)',
'4': '(Downloaded)',
'5': '(Cartridge)',
'7': '(ROM/SIMMs)'
}
# ------------------------[ df ]--------------------------------------
def do_free(self, arg):
"Show available memory."
output().info(self.cmd('*s1M'))
# ------------------------[ selftest ]--------------------------------
def do_selftest(self, arg):
"Perform printer self-test."
output().info(self.cmd('z'))