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
|
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
import six
from libreoffice.util import printing
from libreoffice.util.uno import TypeClass, make_uno_type, uno_cast
class UnoAnyPrinter(object):
'''Prints UNO any'''
def __init__(self, typename, value):
self.value = value
self.typename = typename.replace('com::sun::star::', '')
def to_string(self):
type_desc = self.value['pType']
assert type_desc
type = make_uno_type(type_desc.dereference())
assert type
if type_desc.dereference()['eTypeClass'] == TypeClass.VOID:
return ('%s(%s)' % (self.typename, type.tag))
else:
ptr = self.value['pData']
assert ptr
return ('%s(%s: %s)' % (self.typename, type.tag, str(uno_cast(type, ptr).dereference())))
class UnoReferencePrinter(object):
'''Prints reference to a UNO interface'''
def __init__(self, typename, value):
self.value = value
self.typename = typename.replace('com::sun::star::', '')
def to_string(self):
iface = self.value['_pInterface']
if iface:
try:
return '%s to (%s) %s' % (self.typename, str(iface.dynamic_type), str(iface))
except:
# fallback for potential problem:
# base class 'com::sun::star::uno::XInterface' is ambiguous
return '%s to (XInterface) %s' % (self.typename, str(iface))
else:
return "empty %s" % self.typename
class UnoSequencePrinter(object):
'''Prints UNO Sequence'''
class iterator(six.Iterator):
'''Sequence iterator'''
def __init__(self, first, size):
self.item = first
self.size = size
self.count = 0
def __iter__(self):
return self
def __next__(self):
if self.count == self.size:
raise StopIteration
count = self.count
self.count = self.count + 1
elem = self.item.dereference()
self.item = self.item + 1
return ('[%d]' % count, elem)
def __init__(self, typename, value):
self.value = value
self.typename = typename.replace('com::sun::star::', '')
def to_string(self):
pimpl = self.value['_pSequence']
if pimpl:
impl = pimpl.dereference()
elems = impl['nElements']
if elems == 0:
return "empty %s" % self.typename
else:
return "%s of length %d" % (self.typename, elems)
else:
return "uninitialized %s" % self.typename
def children(self):
pimpl = self.value['_pSequence']
if pimpl:
impl = pimpl.dereference()
elemtype = self.value.type.template_argument(0)
elements = impl['elements'].cast(elemtype.pointer())
return self.iterator(elements, int(impl['nElements']))
else:
# TODO is that the best thing to do here?
return None
def display_hint(self):
if self.value['_pSequence']:
return 'array'
else:
return None
class UnoTypePrinter(object):
'''Prints UNO Type'''
def __init__(self, typename, value):
self.value = value
self.typename = typename.replace('com::sun::star::', '')
def to_string(self):
uno = make_uno_type(self.value)
if uno:
return "%s %s" % (self.typename, uno.tag)
# return "%s %s" % (self.typename, uno.typename)
else:
return "invalid %s" % self.typename
class CppuThreadpoolThreadPoolPrinter(object):
'''Prints cppu_threadpool::ThreadPool objects (a hack to avoid infinite recursion through sal.RtlReferencePrinter when printing an rtl::Reference<cppu_threadpool::ThreadPool> whose std::list<cppu_threadpool::WaitingThread*> m_lstThreads member, via rtl::Reference<cppu_threadpool::ORequestThread> thread member, via rtl::Reference<cppu_threadpool::ThreadPool> m_aThreadPool member, has a circular reference back)'''
def __init__(self, typename, value):
self.typename = typename
self.value = value
def to_string(self):
return '%s@%s' % (self.typename, self.value.address)
printer = None
def build_pretty_printers():
global printer
printer = printing.Printer("libreoffice/cppu")
# basic UNO stuff
printer.add('_uno_Any', UnoAnyPrinter)
printer.add('com::sun::star::uno::Any', UnoAnyPrinter)
printer.add('com::sun::star::uno::Reference', UnoReferencePrinter)
printer.add('com::sun::star::uno::Sequence', UnoSequencePrinter)
printer.add('com::sun::star::uno::Type', UnoTypePrinter)
printer.add('cppu_threadpool::ThreadPool', CppuThreadpoolThreadPoolPrinter)
def register_pretty_printers(obj):
printing.register_pretty_printer(printer, obj)
build_pretty_printers()
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|