/usr/share/pyshared/sqlkit/misc/printing.py is in python-sqlkit 0.9.5-1ubuntu1.
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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | # Copyright (C) 2009-2010, Sandro Dentella <sandro@e-den.it>
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
"""
Sqlkit printing
--------------------
Each sqlwidget has a ``printing`` attribute that manages printer entries that is an instance
of ``PrintTool``.
A standard way should be as easy as just setting a directory where templates
should be found and adding menu entries via ``add_menu_entry``. The default
template dir is a subdir of the current directory named ``templates``.
Templates present in this directory -if named as the nick of the sqlwidget-
will be automatically added, but you will normally want to customize the context
or adding variable to it or adding formatting functions (e.g. to transform numbers
into monetary format), that can be easily done connecting to
:ref:`context-ready signal <psignals>`.
The default way of filling the context wraps each object into an :class:`ObjectProxy``
that uses :ref:`fields` to present each value in a human readable format, that means also that
it tries hard to follow foreign keys and substitute values retrieved by :ref:`description`.
Tables: iteration on records
----------------------------
Oootemplate offers a powerfull way to iterate over lines via the ``++`` syntax.
It requires you to define a table's name matching an entry in the context. For
SqlTables the default name for such table is Table1 and all records in the
table end up there.
For SqlMask the default behaviour is to add an entry in the context for
each related attribute (eg: *movies* for the *director*'s mask). Each such entry
holds all the related records as per sqlelchemy class definition. In the director/movie
example the default context would be::
context = {
'obj' : <Director: my displayed director>,
'movies' : [(<Movie: movie1>, <Movie: movie2>)]
}
It's up to you to prepare the openoffice file to be used as template with a
table named ``movies``: you do that interactively editing oowriter's table attributes.
If you prefere to have to have a different table's name or you need to customize
the content of the record, you simply connet to 'context-ready' signal and prepare the
context directly.
ObjProxy
--------
What stated above is only partially true... each object is wrapped in another object that
allows you to write ``direct_id`` but really returns what you would really want: a human
representation of the id exactly as returned by ``field.lookup_value(id)``.
API
---
.. autoclass:: PrintTool
:members: __init__, add_menu_entry, prepare_context, template_dir, server, port, output_dir,
remote_output_dir, pdf_viewer, odt_viewer, add_to_table, obj_proxy_class
.. autoclass:: ObjProxy
:members:
"""
import os
import re
import gtk
import urllib
import tempfile
import subprocess
import gobject
from sqlkit import _
from sqlkit.widgets.common import dialogs
from sqlkit.misc.utils import get_viewer
MENU_ENTRY = """
<menubar name="Main">
<menu action="File">
<placeholder name="Print-ph">
<menu action="Print">
<menuitem action="%s"/>
</menu>
</placeholder>
</menu>
</menubar>
"""
class PrintAbortException(Exception): pass
class DownloadException(Exception): pass
class PrintTool(gobject.GObject):
"""
A print obj that is able to create a default context to handle to
oootemplate.
"""
template_dir = None
"""The directory where templates are searched for. Default is cwd/templates.
It's a path significant for the openoffice server
"""
local_template_dir = None
"""The directory where templates are searched for locally in case
OpenOffice server is remote . The only need for this variable is to make
it possible to :meth:`automagically <__init__>` add templates that show
up in the menu entry. The templates that get used are clearly on the
machine where OpenOffice is runnning, it does not need to be visible to
the client. If defined, will be used just to add meny entry automatically.
"""
server = '127.0.0.1'
"""the openoffice server to connect to for printing"""
port = 8100
"""the port to use to connect to the server"""
output_dir = None
"""the output dir when server is remote as viewed from client (may be an URL)"""
remote_output_dir = None
"the output dir when server is remote as viewed from server (a local file for the server)"
pdf_viewer = get_viewer('pdf')
"""the preferred viewer for pdf files"""
odt_viewer = get_viewer('odt')
"""the preferred viewer for openoffice templates"""
server_dir_separator = '/'
"""The server dir separator / (default) or \\: determines how the remote path is built for
templates and output files. Only used if server is remote (not 127.0.0.1 nor localhost)"""
proxies = {}
"""the proxies passed to urllib.FancyURLopener (see urllib module documentation)"""
obj_proxy_class = None
"""The :class:`ObjProxy` to use to wrap objects. Can be changed any time. You can
customize it so that __getattr__ can return fancy personalization of the attributes"""
preserve_styles = False
"""Open the template with the ``preserve_styles`` option. It's mode that allows to have
a mix of styles in any singl cell. """
retrieve = True
"""Determine if the file must be retrieved so as to be opened locally or should be
be opened remotedly (default True)"""
__gsignals__ = {
'context-ready' : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_BOOLEAN,
# context, template_name, sqlwidget,
(gobject.TYPE_PYOBJECT , gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT ),
),
}
def __init__(self, master):
"""
Initializes the printing tool setting a default template dir and checks for
availability of module 'uno' from openoffice. If uno is missing the printing
capabilities are made invisible.
If templates are found with the name ``nick.odt`` where the nick is the nick of
the sqlwidget, entries are automatically added. This way you can generate templates
and use them w/o even the need for a single line of code (unless you need to
customize the context, of course)
:param master: the table or mask instance of which this is a printing tool
"""
gobject.GObject.__init__(self)
self.master = master
self.template_dir = self.template_dir or os.path.abspath(os.path.join(os.curdir, 'templates'))
try:
import uno
self.disabled = False
except ImportError:
self.master.sb(_('Disabling printing for lack of "uno" module'), seconds=20)
self.disabled = True
self.hide()
self.obj_proxy_class = ObjProxy
self.look_for_automatic_templates()
def hide(self):
"Hide the print meny entries"
self.master.actiongroup_print.set_visible(False)
def show(self):
"Show the print menu entries"
self.master.actiongroup_print.set_visible(True)
self.master.actiongroup_print.set_sensitive(True)
def add_menu_entry(self, description, template_name, server=None, port=None, mode='pdf',
output_name=None, accel=None, tip=None, action_name=None):
"""
Add menu entry with 'description' using 'template'
Both are fake printers in the sense that are 'printer to file'
:param description: the description that will appear in the menu entry
:param template_name: the template name to be used
:param mode: the mode of the printer: pdf or odt
:param output_name: the output name. Can be a callable that
will receive ``template_name`` as parameter. If ``self.output_dir`` is defined
``output_name`` will be joined with ``self.ouput_dir`` to retrieve it from the client
:param accel: accelerator to be used with this
:param tip: tip for the entry
:param action_name: action name (defaults to templ\_ + template_name)
"""
assert template_name is not None, "Template name must be defined"
output_name = output_name or "%s.%s" % ((os.path.splitext(os.path.split(template_name)[1])[0]), mode)
if not self.disabled:
self.show()
dir_name, template_name, template_path = self.split_template_name(template_name)
if not action_name:
action_name = 'templ_%s_%s' % (template_name, mode)
path = '/Main/File/Print-ph/Print/%s' % action_name
action = self.master.ui_manager.get_action(path)
if not action:
self.master.actiongroup_print.add_actions([
(action_name, None, description, accel, tip, self.use_template,),
], (template_path, mode, server, port, output_name))
self.master.ui_manager.add_ui_from_string(MENU_ENTRY % action_name)
def split_template_name(self, template_name):
"""
return a tuple (dir, template_name, template_path)
if templatename does not contain a path, self.template_dir is used if that leads
to an existent filename, otherwise it'd be set no None
:param template_name: a template name possibly with a complete path
"""
template_path = template_name
dirname, template_name = os.path.split(template_name)
if not dirname:
dirname = self.template_dir
template_path = os.path.join(dirname, template_name)
if not os.path.exists(template_path):
dirname = None
return dirname, template_name, template_path
def use_template(self, menuItem=None, template_path=None, mode='pdf',
server=None, port=None, output_path=None, preview=False,
template_name=None):
"""
create a context from master and call template
:param menuItem: the menu entry that was clicked. Not needed.
:param tempate_path: the template_path to be used on the server.
:param mode: currently ``pdf`` or ``odt``. Default: pdf.
:param server: the name or ip of the openoffice server. Default: self.server
:param port: the port on which the server runs. Default: self.port
:param output_path: the output name. It can be a callable that will receive 2 args:
* this PrintTool instance
* the template_path
:param preview: (Boolean) if ``True``, the local_output_path is a temporary one and
the user is not prompted for a position
:param template_name: template_name. If given the template_path is
"""
import oootemplate as oo
if template_name:
template_path = self.split_template_name(template_name)[2]
server = server or self.server
port = port or self.port
## Context
context = oo.Context({})
if self.master.is_mask():
context['obj'] = self.obj_proxy_class(self.master.current, self.master)
else:
self.add_to_table(context, 'Table1', self.master.records)
for rel in self.master.related.keys():
self.add_to_table(context, rel, self.master.related[rel].records,
master=self.master.related[rel])
self.emit('context-ready', context, os.path.split(template_path)[1], self.master)
## Template & output
templ = oo.Template(unicode(template_path), server=server, port=port,
preserve_styles=self.preserve_styles)
missing_keys = templ.render(self.prepare_context(context))
if missing_keys:
self.debug_missing(missing_keys, templ, context)
## Output
# when the server is remote, the output file is created remotely (remote_output_path)
# downloaded and saved (local_output_path) via http, and opened locally
if callable(output_path):
output_path = output_path(self, template_path)
if preview:
f, local_output_path = tempfile.mkstemp(suffix='.pdf')
if not os.name == 'mac':
os.close(f) # under windows if we don't close the file id AdobeReader won't
# open the file claiming it's used by others
remote_output_path = self.get_remote_output_path(
output_path or 'preview-%s.pdf' % template_name, server)
else:
local_output_path = self.get_local_output_path(template_path, mode, output_path)
remote_output_path = self.get_remote_output_path(output_path, server)
if not local_output_path:
return
if server in ('localhost', '127.0.0.1'):
if local_output_path == template_path:
self.master.message(_("Template name (%s) cannot be same as output_path (%s)") % (
template_path, output_path), type='ok')
return
remote_output_path = local_output_path
templ.save_as(remote_output_path)
templ.close()
## Show Result
self.show_result(remote_output_path, local_output_path, server)
def get_remote_output_path(self, output_path, server):
"""
return the name the remote server must use to save the file
"""
if self.remote_output_dir and not server in ('localhost', '127.0.0.1'):
return "%s%s%s" % (self.remote_output_dir, self.server_dir_separator, output_path)
return output_path
def show_result(self, remote_output_path, local_output_path, server):
"""
Open the resulting file with the best possible viewer/editor
"""
# check that the file exists both if remote...
if not server in ('localhost', '127.0.0.1') and \
self.output_dir and re.search('http://', self.output_dir):
remote_path = "%s/%s" % (self.output_dir, os.path.split(remote_output_path)[1])
opener = Opener(self.proxies)
try:
f = opener.open(remote_path)
except DownloadException:
self.master.dialog(text="Missing file %s" % remote_path, type="ok")
return
if self.retrieve:
opener.retrieve(remote_path, local_output_path)
# or local
elif not os.path.exists(local_output_path):
self.master.dialog(text="Missing file '%s'" % local_output_path, type="ok")
return
self.open_local_file(local_output_path)
def debug_missing(self, missing_keys, template, context):
"""
Communicate that some keys are missing
:param missing_keys: the dict of missing keys
:param template: the oootemplate.Template
:param context: the oootemplate.Context
"""
msg = _("The following variable are missing in the context")
# default table name has not been changed and is not present in the .odt file
# chances are that a localized .odt file names table in a localized way...
if 'Table1' in context and not 'Table1' in template.tables:
msg += _("\nA possible error is that I don't see 'Table1' in your template\n" \
+ "but I see %s" % " ".join(template.tables))
for key, where in missing_keys.iteritems():
if where:
msg += "\n'%s' (%s)" % (key, where or '')
else:
msg += "\n'%s'" % key
self.master.dialog(text=msg, type='ok')
def prepare_context(self, context):
"""
This function is meant to be overridden by a customized one
:param context: the automatically prepared ``oootemplate.Context``.
It contains 2 keys:
* 'obj': the current object for mask and normally *None* for tables
(unless an object was edited, in which case it will point to that object)
* 'Table1' : the list of record currently loaded in this sqlwidget
You can add any keys but remember to use the correct syntax for tables (a dict
with lists as <values).
This is normally used to set totals or arrange so that related table's record
are used in Tables. Read example 76.
"""
return context
def add_to_table(self, context, table_name, obj_list, master=None, reset=True, format=None):
"""
Add to an openoffice table a list of objects wrapped in ObjProxy
:param context: the context to be manipulated
:param table_name: the table_name where objects list must be added
:param master: the master where to retrieve fields
:param obj_list: the list of objects to be added
:param reset: boolean. If True the list becomes the only list, otherwise it's added.
Defaults to True
"""
new_list = [self.obj_proxy_class(o, master or self.master) for o in obj_list]
if reset:
context[table_name] = [new_list]
else:
context[table_name] += [new_list]
def get_local_output_path(self, template_path, mode, output_name):
"""
return the name of the output file on the local machine
"""
if output_name:
dir_name, file_name = os.path.split(output_name)
else:
dir_name, file_name = os.path.split(template_path)
base, ext = os.path.splitext(file_name)
default_filename = "%s.%s" % (output_name and base or base+'-output', mode)
dialog = PrintDialog(title=_('Print to file'), default_filename=default_filename,
run=False)
#dialog.CURRENT_FOLDER = self.remote_output_dir
dialog.run()
filename = dialog.filename
if filename and not filename.endswith('.%s' % mode):
filename = '%s.%s' % (filename, mode)
return filename
def look_for_automatic_templates(self):
"""
Look if some templates are available and add entries for them
"""
if not (os.path.exists(self.template_dir) or (
self.local_template_dir and os.path.exists(self.local_template_dir))):
return
for f in os.listdir(self.local_template_dir or self.template_dir):
if f == "%s.odt" % self.master.nick:
self.add_menu_entry(
"Print to pdf file", f, mode='pdf', action_name=self.master.nick)
self.add_menu_entry(
"Print to odt file", f, mode='odt', action_name=self.master.nick +'pdf')
def open_local_file(self, filename):
"""
Open file filename with the default application
:param filename: the name of the file to be opened
"""
if os.name in ('posix', 'mac'):
if filename.endswith('pdf'):
p = subprocess.call((self.pdf_viewer, filename))
else:
p = subprocess.call((self.odt_viewer, filename))
else:
# I made some test with call(('start', filename)) but in several
# occasion I coudn't get the start command to find the
# file. os.startfile() doesn't suffer the same problem.
os.startfile(filename)
class PrintDialog(dialogs.SaveDialog):
FILTER_FILES = (
( _('Pdf files'), '*.pdf'),
( _('Odt files'), '*.odt'),
( _('All files'), '*.*'),
)
def current_folder(self):
return getattr(self, 'CURRENT_FOLDER', None) or dialogs.SaveDialog.current_folder(self)
class ObjProxy(object):
"""
.. _obj_proxy:
A proxy that returns a "human value" for each attribute. The default behaviour
is to use the fields defined for
the object in the SqlWidget i.e.: field's ``get_human_value``. You can
customize ObjProxy changing ``__getattr__`` or simply adding methods whose
name is ``class_name__attribute_name`` as in::
class MyObjProxy(ObjProxy):
def Movie__director_id(self, value):
return value.title()
table.printing.obj_proxy_class = MyObjProxy
in this context value is already the value returned by
:meth:`sqlkit.fields.Field.get_human_value`
"""
def __init__(self, obj, master=None):
if master:
self.gui_fields = master.gui_fields
else:
self.gui_fields = setup_field_validation(obj)
self.obj = obj
def __getattr__(self, key):
value = getattr(self.obj, key)
if key in self.gui_fields:
value = self.gui_fields[key].get_human_value(value)
if hasattr(self, "%s__%s" % (self.obj.__class__.__name__, key)):
return getattr(self, "%s__%s" % (self.obj.__class__.__name__, key))(value)
else:
# at present LoaderProperties don't have a gui_field
return value
class Opener(urllib.FancyURLopener):
def http_error_default(self, filename, sock, status, message, response):
msg = "Error while retrieving file %s.\nStatus code: %s (%s)" % (\
filename, status, message)
raise DownloadException(msg)
def setup_field_validation(obj):
"""
Create ``sqlkit.fields.Field`` object: one for each handled field
"""
from sqlkit.fields import FieldChooser
from sqlkit.db.minspect import InspectMapper
from sqlalchemy import orm
mapper = orm.class_mapper(obj.__class__)
gui_fields = {}
info = InspectMapper(mapper)
field_chooser = FieldChooser(info)
for field_name in mapper.c.keys():
Field = field_chooser.get_field(field_name, info.fields[field_name])
field = Field(field_name, info.fields[field_name])
gui_fields[field_name] = field
return gui_fields
|