File size: 10,330 Bytes
fb2234b |
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 |
# -*- coding: utf-8 -*-
#
# pyhwp : hwp file format parser in python
# Copyright (C) 2010,2011,2012 https://github.com/mete0r
#
# This program 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.
#
# 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 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, see <http://www.gnu.org/licenses/>.
#
import logging
import os
# initialize logging system
logger = logging.getLogger('hwp5')
loglevel = os.environ.get('PYHWP_LOGLEVEL')
if loglevel:
loglevel = dict(DEBUG=logging.DEBUG,
INFO=logging.INFO,
WARNING=logging.WARNING,
ERROR=logging.ERROR,
CRITICAL=logging.CRITICAL).get(loglevel.upper(),
logging.WARNING)
logger.setLevel(loglevel)
del loglevel
filename = os.environ.get('PYHWP_LOGFILE')
if filename:
logger.addHandler(logging.FileHandler(filename))
del filename
import sys
logger.info('sys.executable = %s', sys.executable)
logger.info('sys.version = %s', sys.version)
logger.info('sys.path:')
for path in sys.path:
logger.info('- %s', path)
try:
import uno
import unohelper
import unokit
from unokit.util import propseq_to_dict
from unokit.util import dict_to_propseq
from unokit.util import xenumeration_list
from unokit.adapters import InputStreamFromFileLike
from com.sun.star.lang import XInitialization
from com.sun.star.document import XFilter, XImporter, XExtendedFilterDetection
from com.sun.star.task import XJobExecutor
def log_exception(f):
def wrapper(*args, **kwargs):
try:
return f(*args, **kwargs)
except Exception as e:
logger.exception(e)
raise
return wrapper
g_ImplementationHelper = unohelper.ImplementationHelper()
def implementation(component_name, *services):
def decorator(cls):
g_ImplementationHelper.addImplementation(cls, component_name, services)
return cls
return decorator
@implementation('hwp5.Detector', 'com.sun.star.document.ExtendedTypeDetection')
class Detector(unokit.Base, XExtendedFilterDetection):
@log_exception
@unokit.component_context
def detect(self, mediadesc):
from hwp5_uno import typedetect
logger.info('hwp5.Detector detect()')
desc = propseq_to_dict(mediadesc)
for k, v in desc.items():
logger.debug('\t%s: %s', k, v)
inputstream = desc['InputStream']
typename = typedetect(inputstream)
logger.info('hwp5.Detector: %s detected.', typename)
return typename, mediadesc
@implementation('hwp5.Importer', 'com.sun.star.document.ImportFilter')
class Importer(unokit.Base, XInitialization, XFilter, XImporter):
@log_exception
@unokit.component_context
def initialize(self, args):
logger.debug('Importer initialize: %s', args)
@log_exception
@unokit.component_context
def setTargetDocument(self, target):
logger.debug('Importer setTargetDocument: %s', target)
self.target = target
@log_exception
@unokit.component_context
def filter(self, mediadesc):
from hwp5.dataio import ParseError
from hwp5_uno import HwpFileFromInputStream
from hwp5_uno import load_hwp5file_into_doc
logger.debug('Importer filter')
desc = propseq_to_dict(mediadesc)
logger.debug('mediadesc: %s', str(desc.keys()))
for k, v in desc.items():
logger.debug('%s: %s', k, str(v))
statusindicator = desc.get('StatusIndicator')
inputstream = desc['InputStream']
hwpfile = HwpFileFromInputStream(inputstream)
try:
load_hwp5file_into_doc(hwpfile, self.target, statusindicator)
except ParseError as e:
e.print_to_logger(logger)
return False
except Exception as e:
logger.exception(e)
return False
else:
return True
@unokit.component_context
def cancel(self):
logger.debug('Importer cancel')
@implementation('hwp5.TestJob')
class TestJob(unokit.Base, XJobExecutor):
@unokit.component_context
def trigger(self, args):
logger.debug('testjob %s', args)
wd = args
import os
original_wd = os.getcwd()
try:
os.chdir(wd)
from unittest import TextTestRunner
testrunner = TextTestRunner()
from unittest import TestSuite
testrunner.run(TestSuite(self.tests()))
finally:
os.chdir(original_wd)
def tests(self):
from unittest import defaultTestLoader
yield defaultTestLoader.loadTestsFromTestCase(DetectorTest)
yield defaultTestLoader.loadTestsFromTestCase(ImporterTest)
from hwp5_uno.tests import test_hwp5_uno
yield defaultTestLoader.loadTestsFromModule(test_hwp5_uno)
from hwp5.tests import test_suite
yield test_suite()
from unittest import TestCase
class DetectorTest(TestCase):
def test_detect(self):
context = uno.getComponentContext()
from hwp5.tests.fixtures import open_fixture
f = open_fixture('sample-5017.hwp', 'rb')
stream = InputStreamFromFileLike(f)
mediadesc = dict_to_propseq(dict(InputStream=stream))
svm = context.ServiceManager
detector = svm.createInstanceWithContext('hwp5.Detector', context)
typename, mediadesc2 = detector.detect(mediadesc)
self.assertEqual('hwp5', typename)
class ImporterTest(TestCase):
def test_filter(self):
context = uno.getComponentContext()
from hwp5.tests.fixtures import open_fixture
f = open_fixture('sample-5017.hwp', 'rb')
stream = InputStreamFromFileLike(f)
mediadesc = dict_to_propseq(dict(InputStream=stream))
svm = context.ServiceManager
importer = svm.createInstanceWithContext('hwp5.Importer', context)
desktop = svm.createInstanceWithContext('com.sun.star.frame.Desktop',
context)
doc = desktop.loadComponentFromURL('private:factory/swriter', '_blank',
0, ())
importer.setTargetDocument(doc)
importer.filter(mediadesc)
text = doc.getText()
paragraphs = text.createEnumeration()
paragraphs = xenumeration_list(paragraphs)
for paragraph_ix, paragraph in enumerate(paragraphs):
logger.info('Paragraph %s', paragraph_ix)
logger.debug('%s', paragraph)
services = paragraph.SupportedServiceNames
if 'com.sun.star.text.Paragraph' in services:
portions = xenumeration_list(paragraph.createEnumeration())
for portion_ix, portion in enumerate(portions):
logger.info('Portion %s: %s', portion_ix,
portion.TextPortionType)
if portion.TextPortionType == 'Text':
logger.info('- %s', portion.getString())
elif portion.TextPortionType == 'Frame':
logger.debug('%s', portion)
textcontent_name = 'com.sun.star.text.TextContent'
en = portion.createContentEnumeration(textcontent_name)
contents = xenumeration_list(en)
for content in contents:
logger.debug('content: %s', content)
content_services = content.SupportedServiceNames
if ('com.sun.star.drawing.GraphicObjectShape' in
content_services):
logger.info('graphic url: %s',
content.GraphicURL)
logger.info('graphic stream url: %s',
content.GraphicStreamURL)
if 'com.sun.star.text.TextTable' in services:
pass
else:
pass
paragraph_portions = paragraphs[0].createEnumeration()
paragraph_portions = xenumeration_list(paragraph_portions)
self.assertEqual(u'한글 ', paragraph_portions[0].getString())
paragraph_portions = paragraphs[16].createEnumeration()
paragraph_portions = xenumeration_list(paragraph_portions)
contents = paragraph_portions[1].createContentEnumeration('com.sun.star.text.TextContent')
contents = xenumeration_list(contents)
self.assertEqual('image/x-vclgraphic', contents[0].Bitmap.MimeType)
#self.assertEqual('vnd.sun.star.Package:bindata/BIN0003.png',
# contents[0].GraphicStreamURL)
graphics = doc.getGraphicObjects()
graphics = xenumeration_list(graphics.createEnumeration())
logger.debug('graphic: %s', graphics)
frames = doc.getTextFrames()
frames = xenumeration_list(frames.createEnumeration())
logger.debug('frames: %s', frames)
except Exception as e:
logger.exception(e)
raise
|