-
Notifications
You must be signed in to change notification settings - Fork 29
/
DocumentConverter.py
348 lines (310 loc) · 14.1 KB
/
DocumentConverter.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
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
#!/usr/bin/env python
#
# inspired by PyODConverter (Python OpenDocument Converter) v1.0.0 - 2008-05-05
#
# This script converts a document from one office format to another by
# connecting to an OpenOffice.org instance via Python-UNO bridge.
#
# Copyright (C) 2009 Alistek Ltd. (www.alistek.com)
# Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl-2.1.html
# - or any later version.
#
DEFAULT_OPENOFFICE_PORT = 8100
RESOLVESTR = "uno:socket,host=%s,port=%s;urp;StarOffice.ComponentContext"
################## For CSV documents #######################
# Field Separator (1), Text Delimiter (2), Character Set (3), Number of First Line (4)
CSVFilterOptions = "59,34,76,1"
# ASCII code of field separator
# ASCII code of text delimiter
# character set, use 0 for "system character set", 76 seems to be UTF-8
# number of first line (1-based)
# Cell format codes for the different columns (optional)
############################################################
from os.path import abspath
import sys
import traceback
import time
import subprocess
import logging
from io import BytesIO
import uno
import unohelper
from com.sun.star.beans import PropertyValue
from com.sun.star.connection import NoConnectException, ConnectionSetupException
from com.sun.star.beans import UnknownPropertyException
from com.sun.star.lang import IllegalArgumentException, DisposedException
from com.sun.star.io import XOutputStream
from com.sun.star.document.UpdateDocMode import QUIET_UPDATE
from com.sun.star.document.MacroExecMode import NEVER_EXECUTE
from com.sun.star.style.BreakType import PAGE_AFTER, PAGE_BEFORE, PAGE_BOTH
from com.sun.star.text.ControlCharacter import PARAGRAPH_BREAK, APPEND_PARAGRAPH
SECTIONMAXLEVEL = 10 # Just to make sure we do not go into endless loop
class DocumentConversionException(Exception):
def __init__(self, message):
self.message = message
def __str__(self):
return self.message
class OutputStreamWrapper(unohelper.Base, XOutputStream):
""" Minimal Implementation of XOutputStream """
def __init__(self, debug=True):
self.debug = debug
self.data = BytesIO()
self.position = 0
if self.debug:
sys.stderr.write("__init__ OutputStreamWrapper.\n")
def writeBytes(self, bytes):
if self.debug:
sys.stderr.write("writeBytes %i bytes.\n" % len(bytes.value))
self.data.write(bytes.value)
self.position += len(bytes.value)
def close(self):
if self.debug:
sys.stderr.write("Closing output. %i bytes written.\n" % self.position)
self.data.close()
def flush(self):
if self.debug:
sys.stderr.write("Flushing output.\n")
pass
def closeOutput(self):
if self.debug:
sys.stderr.write("Closing output.\n")
pass
class DocumentConverter:
def __init__(self, host='localhost', port=DEFAULT_OPENOFFICE_PORT, ooo_restart_cmd=None):
self._host = host
self._port = port
self.logger = logging.getLogger('main')
self._ooo_restart_cmd = ooo_restart_cmd
self.localContext = uno.getComponentContext()
self.serviceManager = self.localContext.ServiceManager
resolvervector = "com.sun.star.bridge.UnoUrlResolver"
self._resolver = self.serviceManager.createInstanceWithContext(resolvervector, self.localContext)
try:
self.connectOffice()
except IllegalArgumentException as exception:
raise DocumentConversionException("The url is invalid (%s)" % exception)
except NoConnectException as exception:
if self._restart_ooo():
# We try again once
try:
self.connectOffice()
except NoConnectException as exception:
raise DocumentConversionException("Failed to connect to OpenOffice.org on host %s, port %s. %s" % (host, port, exception))
else:
raise DocumentConversionException("Failed to connect to OpenOffice.org on host %s, port %s. %s" % (host, port, exception))
except ConnectionSetupException as exception:
raise DocumentConversionException("Not possible to accept on a local resource (%s)" % exception)
def connectOffice(self):
self._context = self._resolver.resolve(RESOLVESTR % (self._host, self._port))
def _createDesktop(self):
try:
smanager = self._context.ServiceManager
desktopvector = "com.sun.star.frame.Desktop"
self.desktop = smanager.createInstanceWithContext(desktopvector, self._context)
except UnknownPropertyException as e:
self.connectOffice()
self._createDesktop()
def putDocument(self, data, filter_name=False, read_only=False):
"""
Uploads document to office service
"""
try:
if not hasattr(self, 'desktop'):
self._createDesktop()
elif self.desktop is None:
self._createDesktop()
except UnknownPropertyException:
self.connectOffice()
self._createDesktop()
inputStream = self._initStream(data)
properties = {'InputStream':inputStream}
properties.update({'Hidden':True})
properties.update({'UpdateDocMode':QUIET_UPDATE})
properties.update({'ReadOnly':read_only})
properties.update({'MacroExecutionMode': NEVER_EXECUTE})
#TODO Minor performance improvement by supplying MediaType property
#properties.update({'MediaType':'application/vnd.oasis.opendocument.text'})
if filter_name:
properties.update({'FilterName':filter_name})
props = self._toProperties(**properties)
try:
self.document = self.desktop.loadComponentFromURL('private:stream', '_blank', 0, props)
except DisposedException as e:
# When office unexpectedly crashed or has been restarted, we know
# nothing about it, that is why we need to create new desktop or
# even try to completely reconnect to new office socket. Then give
# it another try.
self._createDesktop()
self.putDocument(data, filter_name=filter_name, read_only=read_only)
except Exception as e:
exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
traceback.print_exception(exceptionType, exceptionValue,
exceptionTraceback, limit=2, file=sys.stdout)
inputStream.closeInput()
def closeDocument(self):
if hasattr(self,'document'):
if self.document is not None:
self.document.close(True)
del self.document
def _updateDocument(self):
try:
self.document.updateLinks()
except AttributeError:
# if document doesn't support XLinkUpdate interface
pass
try:
self.document.refresh()
indexes = self.document.getDocumentIndexes()
except AttributeError:
# ods document does not support refresh
pass
else:
for inc in range(0, indexes.getCount()):
indexes.getByIndex(inc).update()
def saveByStream(self, filter_name=None):
"""
Downloads document from office service
"""
self._updateDocument()
outputStream = OutputStreamWrapper(False)
properties = {"OutputStream": outputStream}
properties.update({"FilterName": filter_name})
if filter_name == 'Text - txt - csv (StarCalc)':
properties.update({"FilterOptions": CSVFilterOptions})
props = self._toProperties(**properties)
try:
#url = uno.systemPathToFileUrl(path) #when storing to filesystem
self.document.storeToURL('private:stream', props)
except Exception as exception:
exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
traceback.print_exception(exceptionType, exceptionValue,
exceptionTraceback, limit=2, file=sys.stdout)
openDocumentBytes = outputStream.data.getvalue()
outputStream.close()
return openDocumentBytes
def _initStream(self, data):
streamvector = "com.sun.star.io.SequenceInputStream"
subStream = self.serviceManager.createInstanceWithContext(streamvector, self.localContext)
subStream.initialize((uno.ByteSequence(data),))
return subStream
def insertSubreports(self, oo_subreports):
"""
Inserts the given file into the current document.
The file contents will replace the placeholder text.
"""
import os
for subreport in oo_subreports:
fd = file(subreport, 'rb')
placeholder_text = "<insert_doc('%s')>" % subreport
subdata = fd.read()
subStream = self._initStream(subdata)
search = self.document.createSearchDescriptor()
search.SearchString = placeholder_text
found = self.document.findFirst( search )
#while found:
properties = {'InputStream':subStream}
properties.update({'FilterName':"writer8"})
props = self._toProperties(**properties)
try:
found.insertDocumentFromURL('private:stream', props)
except Exception as ex:
print("Error inserting file %s on the OpenOffice document: %s" % (subreport, ex))
exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
traceback.print_exception(exceptionType, exceptionValue,
exceptionTraceback, limit=2, file=sys.stdout)
#found = self.document.findNext(found, search)
os.unlink(subreport)
def appendDocuments(self, docs_iter, filter_name=False, preserve_styles=True):
# Get first document list of styles
stylefamilies = self.document.StyleFamilies
pagestyles = stylefamilies.getByName('PageStyles')
defaultpagetyle = pagestyles.getElementNames()[0]
# Seemingly not needed
#parastyles = stylefamilies.getByName('ParagraphStyles')
#defaultparatyle = parastyles.getElementNames()[0]
text = self.document.Text
cursor = text.createTextCursor()
cursor.gotoStart(False)
# Get first page styles
cursor.gotoStartOfParagraph(False)
cursor.gotoEndOfParagraph(True)
pagestyle = cursor.PageDescName or defaultpagetyle
# Seemingly not needed
parastyle = cursor.ParaStyleName or defaultparatyle
for doc in docs_iter:
subStream = self._initStream(doc)
properties = {'InputStream':subStream}
properties.update({'FilterName':filter_name})
props = self._toProperties(**properties)
try:
cursor.gotoEnd(False)
cur_sect = cursor.TextSection
if cur_sect is not None:
# drilldown to bottom
lowersect = cur_sect
parent_sect = True
level = 0
while parent_sect and level < SECTIONMAXLEVEL:
parent_sect = lowersect.getParentSection()
if parent_sect:
lowersect = parent_sect
level += 1
# TODO Implement check if section is not anchored to page gloablly...
# cur_pos = ancestor.AnchorType
paravector = 'com.sun.star.text.Paragraph'
newpara = self.document.createInstance(paravector)
text.insertTextContentAfter(newpara, lowersect)
else:
text.insertControlCharacter(cursor, APPEND_PARAGRAPH, 0)
cursor.gotoEnd(False)
cursor.gotoStartOfParagraph(False)
cursor.gotoEndOfParagraph(True)
cursor.PageDescName = pagestyle
cursor.PageNumberOffset = 1
# Seemingly not needed
#cursor.ParaStyleName = parastyle
self.document.Text.getEnd().insertDocumentFromURL('private:stream', props)
except Exception as e:
print("Error inserting file %s bytes on the OpenOffice document: %s" % (len(doc), e))
raise e
self._updateDocument()
def convertByPath(self, inputFile, outputFile):
inputUrl = self._toFileUrl(inputFile)
outputUrl = self._toFileUrl(outputFile)
props = self._toProperties(Hidden=True)
document = self.desktop.loadComponentFromURL(inputUrl, "_blank", 8, props)
try:
document.refresh()
except AttributeError:
pass
props = self._toProperties(FilterName="writer_pdf_Export")
try:
document.storeToURL(outputUrl, props)
finally:
document.close(True)
def _toFileUrl(self, path):
return uno.systemPathToFileUrl(abspath(path))
def _toProperties(self, **args):
props = []
for key in args:
prop = PropertyValue()
prop.Name = key
prop.Value = args[key]
props.append(prop)
return tuple(props)
def _restart_ooo(self):
if not self._ooo_restart_cmd:
self.logger.warning('No LibreOffice/OpenOffice restart script configured')
return False
self.logger.info('Restarting LibreOffice/OpenOffice background process')
try:
self.logger.info('Executing restart script "%s"' % self._ooo_restart_cmd)
retcode = subprocess.call(self._ooo_restart_cmd, shell=True)
if retcode == 0:
self.logger.warning('Restart successfull')
time.sleep(4) # Let some time for LibO/OOO to be fully started
else:
self.logger.error('Restart script failed with return code %d' % retcode)
except OSError as e:
self.logger.error('Failed to execute the restart script. OS error: %s' % e)
return True