1 # -*- coding: utf-8 -*-
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from librarian import ValidationError, NoDublinCore, ParseError
7 from librarian import RDFNS
8 from librarian import dcparser
10 from xml.parsers.expat import ExpatError
11 from lxml import etree
12 from lxml.etree import XMLSyntaxError, XSLTApplyError
15 from StringIO import StringIO
17 class WLDocument(object):
18 LINE_SWAP_EXPR = re.compile(r'/\s', re.MULTILINE | re.UNICODE);
20 def __init__(self, edoc, parse_dublincore=True):
23 root_elem = edoc.getroot()
25 dc_path = './/' + RDFNS('RDF')
27 if root_elem.tag != 'utwor':
28 raise ValidationError("Invalid root element. Found '%s', should be 'utwor'" % root_elem.tag)
31 self.rdf_elem = root_elem.find(dc_path)
33 if self.rdf_elem is None:
34 raise NoDublinCore('Document has no DublinCore - which is required.')
36 self.book_info = dcparser.BookInfo.from_element(self.rdf_elem)
41 def from_string(cls, xml, *args, **kwargs):
42 return cls.from_file(StringIO(xml), *args, **kwargs)
45 def from_file(cls, xmlfile, swap_endlines=False, parse_dublincore=True, preserve_lines=True):
47 # first, prepare for parsing
48 if isinstance(xmlfile, basestring):
49 file = open(xmlfile, 'rb')
57 if not isinstance(data, unicode):
58 data = data.decode('utf-8')
64 data = cls.LINE_SWAP_EXPR.sub(sub, data)
67 parser = etree.XMLParser(remove_blank_text=False)
68 return cls(etree.parse(StringIO(data), parser), parse_dublincore=parse_dublincore)
69 except (ExpatError, XMLSyntaxError, XSLTApplyError), e:
72 def chunk(self, path):
73 # convert the path to XPath
74 expr = self.path_to_xpath(path)
75 elems = self.edoc.xpath(expr)
82 def path_to_xpath(self, path):
85 for part in path.split('/'):
86 match = re.match(r'([^\[]+)\[(\d+)\]', part)
90 tag, n = match.groups()
91 parts.append("*[%d][name() = '%s']" % (int(n)+1, tag) )
96 return '/'.join(parts)
98 def transform(self, stylesheet, **options):
99 return self.edoc.xslt(stylesheet, **options)
103 parent = self.rdf_elem.getparent()
104 parent.replace( self.rdf_elem, self.book_info.to_etree(parent) )
108 return etree.tostring(self.edoc, encoding=unicode, pretty_print=True)
110 def merge_chunks(self, chunk_dict):
113 for key, data in chunk_dict.iteritems():
115 xpath = self.path_to_xpath(key)
116 node = self.edoc.xpath(xpath)[0]
117 repl = etree.fromstring(u"<%s>%s</%s>" %(node.tag, data, node.tag) )
118 node.getparent().replace(node, repl);
120 unmerged.append( repr( (key, xpath, e) ) )
124 def clean_ed_note(self):
125 """ deletes forbidden tags from nota_red """
127 for node in self.edoc.xpath('|'.join('//nota_red//%s' % tag for tag in
128 ('pa', 'pe', 'pr', 'pt', 'begin', 'end', 'motyw'))):