/usr/share/opendict/lib/xmltools.py is in opendict 0.6.3-4.
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 | #
# OpenDict
# Copyright (c) 2003-2006 Martynas Jocius <martynas.jocius@idiles.com>
# Copyright (c) 2007 IDILES SYSTEMS, UAB <support@idiles.com>
#
# 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 2 of the License, or
# (at your opinion) any later version.
#
# This program is distributed in the hope that will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MECHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more detals.
#
# You shoud have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA
#
import xml.dom.minidom
from lib import meta
def _textData(element):
"""Return text data from given XML element"""
text = ''
for node in element.childNodes:
text = node.data.strip()
return text
class RegisterConfigGenerator:
"""Class for generating register configuration files"""
def generate(self, **args):
"""Generate config XML object"""
doc = xml.dom.minidom.Document()
registerElement = doc.createElement('plain-dictionary')
doc.appendChild(registerElement)
# Format element
formatElement = doc.createElement('format')
registerElement.appendChild(formatElement)
formatElement.appendChild(doc.createTextNode(args.get('format')))
# Name element
nameElement = doc.createElement('name')
registerElement.appendChild(nameElement)
nameElement.appendChild(doc.createTextNode(args.get('name')))
# Version element
versionElement = doc.createElement('version')
registerElement.appendChild(versionElement)
versionElement.appendChild(doc.createTextNode(args.get('version') \
or ''))
# Authors element
authorsElement = doc.createElement('authors')
registerElement.appendChild(authorsElement)
for author in (args.get('authors') or []):
authorElement = doc.createElement('author')
authorsElement.appendChild(authorElement)
authorElement.setAttribute('name', author.get('name'))
authorElement.setAttribute('email', author.get('email'))
# Path element
pathElement = doc.createElement('path')
registerElement.appendChild(pathElement)
pathElement.appendChild(doc.createTextNode(args.get('path')))
# MD5 element
md5Element = doc.createElement('md5')
registerElement.appendChild(md5Element)
md5Element.appendChild(doc.createTextNode(args.get('md5')))
# Encoding element
encodingElement = doc.createElement('encoding')
registerElement.appendChild(encodingElement)
encodingElement.appendChild(doc.createTextNode(args.get('encoding')))
# Licence element
licElement = doc.createElement('licence')
registerElement.appendChild(licElement)
licElement.appendChild(doc.createTextNode(args.get('licence') \
or ''))
# Description element
descElement = doc.createElement('description')
registerElement.appendChild(descElement)
descElement.appendChild(doc.createTextNode(args.get('description') \
or ''))
return doc
def generatePlainDictConfig(**args):
"""Generate configuration and return DOM object"""
generator = RegisterConfigGenerator()
doc = generator.generate(**args)
return doc
def writePlainDictConfig(doc, path):
"""Write XML file"""
import codecs
fd = codecs.open(path, 'w', 'utf-8')
doc.writexml(fd, addindent = " ", newl = "\n", encoding = "UTF-8")
fd.close()
class RegisterConfigParser:
"""Parse register configuration"""
def parse(self, xmlData):
"""Parse XML data"""
doc = xml.dom.minidom.parseString(xmlData)
name = None
format = None
version = None
authors = []
path = None
md5 = None
encoding = None
licence = None
description = None
registers = doc.getElementsByTagName('plain-dictionary')
if len(registers) == 0:
raise Exception("Invalid configuration")
registerElement = registers[0]
for nameElement in registerElement.getElementsByTagName('name'):
for node in nameElement.childNodes:
name = node.data.strip()
for formatElement in registerElement.getElementsByTagName('format'):
for node in formatElement.childNodes:
format = node.data.strip()
for pathElement in registerElement.getElementsByTagName('path'):
for node in pathElement.childNodes:
path = node.data.strip()
for versionElement in registerElement.getElementsByTagName('version'):
for node in versionElement.childNodes:
version = node.data.strip()
for authorElement in registerElement.getElementsByTagName('author'):
authors.append({'name': authorElement.getAttribute('name').strip(),
'email': authorElement.getAttribute('email').strip()})
for md5Element in registerElement.getElementsByTagName('md5'):
for node in md5Element.childNodes:
md5 = node.data.strip()
for encodingElement in \
registerElement.getElementsByTagName('encoding'):
for node in encodingElement.childNodes:
encoding = node.data.strip()
for licenceElement in \
registerElement.getElementsByTagName('licence'):
for node in licenceElement.childNodes:
licence = node.data.strip()
for descElement in \
registerElement.getElementsByTagName('description'):
for node in descElement.childNodes:
description = (description or '') + node.data.strip()
result = {}
result['name'] = name
result['format'] = format
result['version'] = version
result['authors'] = authors
result['path'] = path
result['md5'] = md5
result['encoding'] = encoding
result['licence'] = licence
result['description'] = description
return result
def parsePlainDictConfig(configPath):
"""Parse configuration file and return data dictionary"""
parser = RegisterConfigParser()
fd = open(configPath)
xmlData = fd.read()
fd.close()
data = parser.parse(xmlData)
return data
class IndexFileGenerator:
"""Class for generating register configuration files"""
def generate(self, index):
"""Generate config XML object"""
doc = xml.dom.minidom.Document()
indexElement = doc.createElement("index")
doc.appendChild(indexElement)
for data, pos in index.items():
startElement = doc.createElement("element")
startElement.setAttribute("literal", data)
startElement.setAttribute("position", str(pos))
indexElement.appendChild(startElement)
return doc
def generateIndexFile(index):
"""Generate index data and return DOM object"""
generator = IndexFileGenerator()
doc = generator.generate(index)
return doc
def writeIndexFile(doc, path):
"""Write XML file"""
import codecs
fd = codecs.open(path, 'wb', 'utf-8')
doc.writexml(fd, addindent = " ", newl = "\n", encoding = "UTF-8")
fd.close()
class IndexFileParser:
"""Parse register configuration"""
def parse(self, xmlData):
"""Parse XML data"""
doc = xml.dom.minidom.parseString(xmlData)
index = {}
indexElement = doc.getElementsByTagName('index')[0]
for element in indexElement.getElementsByTagName('element'):
index[element.getAttribute("literal")] = long(element.getAttribute("position"))
return index
def parseIndexFile(indexPath):
"""Parse configuration file and return data dictionary"""
parser = IndexFileParser()
fd = open(indexPath, 'rb')
xmlData = fd.read()
fd.close()
index = parser.parse(xmlData)
return index
class AddOnsParser:
"""Parse add-ons file"""
class EmptyDictionary(meta.Dictionary):
"""Empty dictionary for representing add-on information"""
name = None
version = None
size = None
checksum = None
authors = []
location = None
desc = None
atype = None
def setType(self, t):
self.atype = t
def getType(self):
return self.atype
def setName(self, name):
self.name = name
def getName(self):
return self.name
def setVersion(self, version):
self.version = version
def getVersion(self):
return self.version
def setSize(self, size):
self.size = size
def getSize(self):
return self.size
def setChecksum(self, checksum):
self.checksum = checksum
def getChecksum(self):
return self.checksum
def addAuthor(self, author):
self.authors.append(author)
def getAuthors(self):
return self.authors
def setLocation(self, location):
self.location = location
def getLocation(self):
return self.location
def setDescription(self, desc):
self.desc = desc
def getDescription(self):
return self.desc
def parse(self, xmlData):
"""Parse XML data and return name->info dictionary object"""
doc = xml.dom.minidom.parseString(xmlData)
addons = {}
for addonElement in doc.getElementsByTagName('add-on'):
name = None
version = None
authors = []
description = None
size = None
url = None
checksum = None
addonType = addonElement.getAttribute('type')
for nameElement in addonElement.getElementsByTagName('name'):
name = _textData(nameElement)
for versionElement in addonElement.getElementsByTagName('version'):
version = _textData(versionElement)
for authorElement in addonElement.getElementsByTagName('author'):
authors.append({'name': authorElement.getAttribute('name'),
'email': authorElement.getAttribute('email')})
for descElement \
in addonElement.getElementsByTagName('description'):
description = _textData(descElement)
for urlElement in addonElement.getElementsByTagName('url'):
url = _textData(urlElement)
for sizeElement in addonElement.getElementsByTagName('size'):
size = long(_textData(sizeElement))
for sumElement in addonElement.getElementsByTagName('md5'):
checksum = _textData(sumElement)
emptyDict = self.EmptyDictionary()
emptyDict.setName(name)
emptyDict.setVersion(version)
emptyDict.authors = [] # To forget an old reference
for author in authors:
emptyDict.addAuthor(author)
emptyDict.setDescription(description)
emptyDict.setLocation(url)
emptyDict.setSize(size)
emptyDict.setChecksum(checksum)
addons[name] = emptyDict
return addons
def parseAddOns(xmlData):
"""Wrap add-ons data parsing"""
parser = AddOnsParser()
result = parser.parse(xmlData)
return result
class MainConfigParser:
"""Parse main configuration"""
def parse(self, xmlData):
"""Parse XML data"""
doc = xml.dom.minidom.parseString(xmlData)
props = {}
configs = doc.getElementsByTagName('main-config')
if len(configs) == 0:
raise Exception("Invalid configuration")
configElement = configs[0]
for node in configElement.childNodes:
if not node.nodeType == node.ELEMENT_NODE:
continue
for cnode in node.childNodes:
name = node.nodeName
value = cnode.data.strip()
props[name] = value
return props
def parseMainConfig(configPath):
"""Parse configuration file and return data dictionary"""
parser = MainConfigParser()
fd = open(configPath)
xmlData = fd.read()
fd.close()
data = parser.parse(xmlData)
return data
class MainConfigGenerator:
"""Class for generating main configuration file"""
def generate(self, props):
"""Generate config XML object"""
doc = xml.dom.minidom.Document()
mainElement = doc.createElement("main-config")
doc.appendChild(mainElement)
for key, value in props.items():
elem = doc.createElement(key)
mainElement.appendChild(elem)
if type(value) != unicode:
value = str(value)
elem.appendChild(doc.createTextNode(value))
return doc
def generateMainConfig(props):
"""Generate configuration and return DOM object"""
generator = MainConfigGenerator()
doc = generator.generate(props)
return doc
def writeConfig(doc, path):
"""Write XML file"""
import codecs
fd = codecs.open(path, 'w', 'utf-8')
doc.writexml(fd, addindent = " ", newl = "\n", encoding = "UTF-8")
fd.close()
|