/usr/share/pyshared/x2go/printqueue.py is in python-x2go 0.4.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | # -*- coding: utf-8 -*-
# Copyright (C) 2010-2013 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
#
# Python X2Go is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Python X2Go 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
"""\
L{X2GoPrintQueue} sets up a thread that listens for incoming print jobs.
For each incoming print job in an X2Go session's spool directory an
individual thread is started (L{X2GoPrintJob}) that handles the processing
of the incoming print job.
"""
__NAME__ = 'x2goprintqueue-pylib'
# modules
import os
import copy
import threading
import gevent
# Python X2Go modules
import defaults
import utils
import log
# we hide the default values from epydoc (that's why we transform them to _UNDERSCORE variables)
from backends.printing import X2GoClientPrinting as _X2GoClientPrinting
from defaults import X2GO_PRINTING_FILENAME as _X2GO_PRINTING_FILENAME
class X2GoPrintQueue(threading.Thread):
"""\
If X2Go printing is supported in a particular L{X2GoSession} instance
this class provides a sub-thread for handling incoming X2Go print jobs.
"""
print_action = None
spooldir = None
active_jobs = {}
job_history = []
def __init__(self,
profile_name='UNKNOWN',
session_name='UNKNOWN',
spool_dir=None,
print_action=None,
print_action_args={},
client_instance=None,
printing_backend=_X2GoClientPrinting,
logger=None,
loglevel=log.loglevel_DEFAULT):
"""\
@param profile_name: name of the session profile this print queue belongs to
@type profile_name: C{str}
@param spool_dir: local spool directory for incoming print job files
@type spool_dir: C{str}
@param print_action: name or instance of either of the possible X2Go print action classes
@type print_action: C{str} or instance
@param print_action_args: depending of the chosen C{print_action} this dictionary may contain different
values; the C{print_action_args} will be passed on to the X2Go print action instance constructor, so
refer to either of these: L{X2GoPrintActionPDFVIEW}, L{X2GoPrintActionPRINT} et al.
@param client_instance: the underlying L{X2GoClient} instance
@type client_instance: C{obj}
@param printing_backend: the client printing configuration backend class
@type printing_backend: C{obj}
@param logger: you can pass an L{X2GoLogger} object to the
L{X2GoPrintQueue} constructor
@type logger: C{obj}
@param loglevel: if no L{X2GoLogger} object has been supplied a new one will be
constructed with the given loglevel
@type loglevel: C{int}
"""
if logger is None:
self.logger = log.X2GoLogger(loglevel=loglevel)
else:
self.logger = copy.deepcopy(logger)
self.logger.tag = __NAME__
self.profile_name = profile_name
self.session_name = session_name
self.spool_dir = spool_dir
if self.spool_dir: self.spool_dir = os.path.normpath(self.spool_dir)
self.client_instance = client_instance
self.client_rootdir = client_instance.get_client_rootdir()
self.printing_backend = printing_backend
if print_action is not None:
self.set_print_action(print_action, client_instance=self.client_instance, logger=logger, **print_action_args)
threading.Thread.__init__(self)
self.daemon = True
self._accept_jobs = True
def __del__(self):
"""\
Class destructor.
"""
self.stop_thread()
def pause(self):
"""\
Prevent acceptance of new incoming print jobs. The processing of print jobs that
are currently still active will be completed, though.
"""
if self._accept_jobs == True:
self._accept_jobs = False
self.logger('paused thread: %s' % repr(self), loglevel=log.loglevel_DEBUG)
def resume(self):
"""\
Resume operation of the X2Go print spooler and continue accepting new incoming
print jobs.
"""
if self._accept_jobs == False:
self._accept_jobs = True
self.logger('resumed thread: %s' % repr(self), loglevel=log.loglevel_DEBUG)
def stop_thread(self):
"""\
Stops this L{X2GoPrintQueue} thread completely.
"""
self.pause()
self._keepalive = False
self.logger('stopping thread: %s' % repr(self), loglevel=log.loglevel_DEBUG)
@property
def _incoming_print_jobs(self):
if os.path.exists(self.spool_dir):
l = os.listdir(self.spool_dir)
job_files = [ jf for jf in l if jf.endswith('.ready') ]
jobs = []
for _job_file in job_files:
j = open(os.path.join(self.spool_dir, _job_file), 'r')
content = j.read()
try:
(pdf_filename, job_title) = content.split('\n')[0:2]
except ValueError:
pdf_filename = content
job_title = 'X2Go Print Job'
j.close()
jobs.append((_job_file, pdf_filename, job_title))
return [ j for j in jobs if j[1] not in self.active_jobs.keys() ]
else:
return []
def set_print_action(self, print_action, **kwargs):
"""\
Modify the print action of this L{X2GoPrintQueue} thread during runtime. The
change of print action will be valid for the next incoming print job.
As kwargs you can pass arguments for the print action class to be set. Refer
to the class descriptions of L{X2GoPrintActionDIALOG}, L{X2GoPrintActionPDFVIEW},
L{X2GoPrintActionPRINT}, etc.
@param print_action: new print action to be valid for incoming print jobs
@type print_action: C{str} or C{class}
@param kwargs: extra options for the specified print action
@type kwargs: C{dict}
"""
if print_action in defaults.X2GO_PRINT_ACTIONS.keys():
print_action = defaults.X2GO_PRINT_ACTIONS[print_action]
if print_action in defaults.X2GO_PRINT_ACTIONS.values():
self.print_action = eval ('printactions.%s(**kwargs)' % print_action)
def run(self):
"""\
Start this L{X2GoPrintQueue} thread...
"""
self.logger('starting print queue thread: %s' % repr(self), loglevel=log.loglevel_DEBUG)
self._keepalive = True
while self._keepalive:
while self._accept_jobs:
if self._incoming_print_jobs:
for _job in self._incoming_print_jobs:
self.logger('processing incoming X2Go print job: %s' % _job[1], loglevel=log.loglevel_NOTICE)
_new_printjob_thread = X2GoPrintJob(target=x2go_printjob_handler,
kwargs={
'job_file': _job[0],
'pdf_file': _job[1],
'job_title': _job[2],
'print_action': self.print_action,
'parent_thread': self,
'logger': self.logger,
}
)
self.active_jobs['%s' % _job[1]] = _new_printjob_thread
_new_printjob_thread.start()
gevent.sleep(3)
gevent.sleep(1)
def x2go_printjob_handler(job_file=None, pdf_file=None, job_title=None, print_action=None, parent_thread=None, logger=None, ):
"""\
This function is called as a handler function for each incoming X2Go print job
represented by the class L{X2GoPrintJob}.
The handler function will (re-)read the »printing« configuration file (if no
explicit C{print_action} is passed to this function...). It then will
execute the C{<print_action>.do_print()} command.
@param pdf_file: PDF file name as placed in to the X2Go spool directory
@type pdf_file: C{str}
@param job_title: human readable print job title
@type job_title: C{str}
@param print_action: an instance of either of the possible C{X2GoPrintActionXXX} classes
@type print_action: C{X2GoPrintActionXXX} nstance
@param parent_thread: the L{X2GoPrintQueue} thread that actually created this handler's L{X2GoPrintJob} instance
@type parent_thread: C{obj}
@param logger: the L{X2GoPrintQueue}'s logging instance
@type logger: C{obj}
"""
if print_action is None:
if parent_thread.client_instance is not None and parent_thread.client_instance.has_custom_client_rootdir:
_printing = parent_thread.printing_backend(config_files=[os.path.join(parent_thread.client_instance.get_client_rootdir(), _X2GO_PRINTING_FILENAME)],
client_instance=parent_thread.client_instance,
logger=logger
)
else:
_printing = parent_thread.printing_backend(client_instance=parent_thread.client_instance,
logger=logger
)
print_action = _printing.print_action
print_action.profile_name = parent_thread.profile_name
print_action.session_name = parent_thread.session_name
logger('action for printing is: %s' % print_action, loglevel=log.loglevel_DEBUG)
print_action.do_print(pdf_file=os.path.normpath(os.path.join(parent_thread.spool_dir, pdf_file)),
job_title=job_title,
spool_dir=parent_thread.spool_dir,
)
logger('removing print job files for %s' % pdf_file, loglevel=log.loglevel_DEBUG)
utils.patiently_remove_file(parent_thread.spool_dir, job_file)
logger('removed print job file %s' % job_file, loglevel=log.loglevel_DEBUG)
utils.patiently_remove_file(parent_thread.spool_dir, pdf_file)
logger('removed print pdf file %s' % pdf_file, loglevel=log.loglevel_DEBUG)
del parent_thread.active_jobs['%s' % pdf_file]
parent_thread.job_history.append(pdf_file)
# in case we print a lot we do not want to risk an endlessly growing
# print job history
if len(parent_thread.job_history) > 100:
parent_thread.job_history = parent_thread.job_history[-100:]
class X2GoPrintJob(threading.Thread):
"""\
For each X2Go print job we create a sub-thread that let's
the print job be processed in the background.
As a handler for this class the function L{x2go_printjob_handler()}
is used.
"""
def __init__(self, **kwargs):
"""\
Construct the X2Go print job thread...
All parameters (**kwargs) are passed through to the constructor
of C{threading.Thread()}.
"""
threading.Thread.__init__(self, **kwargs)
self.daemon = True
|