Project

General

Profile

1
# XPath parsing
2

    
3
import copy
4
import warnings
5

    
6
from Parser import Parser
7
import util
8
import xml_dom
9

    
10
##### Path elements
11

    
12
class XpathElem:
13
    def __init__(self, name='', value=None, is_attr=False):
14
        self.name = name
15
        self.value = value
16
        self.is_attr = is_attr
17
        self.is_positive = True
18
        self.is_lookup_only = False
19
        self.is_ptr = False
20
        self.keys = []
21
        self.attrs = []
22
        self.other_branches = [] # temp implementation for split paths
23
    
24
    def __repr__(self):
25
        str_ = ''
26
        if not self.is_positive: str_ += '!'
27
        if self.is_attr: str_ += '@'
28
        if self.name == '': str_ += '""'
29
        else: str_ += self.name
30
        if self.is_lookup_only: str_ += '?'
31
        if self.keys != []: str_ += repr(self.keys)
32
        if self.attrs != []: str_ += ':'+repr(self.attrs)
33
        if self.is_ptr: str_ += '->'
34
        if self.other_branches != []: str_ += '{'+repr(self.other_branches)+'}'
35
        if self.value != None: str_ += '='+repr(self.value)
36
        return str_
37
    
38
    def __eq__(self, other): return self.__dict__ == other.__dict__
39

    
40
empty_elem = XpathElem()
41

    
42
def elem_is_empty(elem): return elem == empty_elem
43

    
44
def is_self(elem): return elem.name == '' or elem.name == '.'
45

    
46
def is_parent(elem): return elem.name == '..'
47

    
48
##### Paths
49

    
50
def path_is_empty(path): return path == [] or path == [empty_elem]
51

    
52
def is_positive(path): return path[0].is_positive
53

    
54
def is_rooted(path): return elem_is_empty(path[0])
55

    
56
def value(path): return path[-1].value
57

    
58
def set_value(path, value):
59
    '''Caller must make a shallow copy of the path to prevent modifications from
60
    propagating to other copies of the path (a deep copy is not needed)'''
61
    path[-1] = copy.copy(path[-1]) # don't modify other copies of the path
62
    path[-1].value = value
63

    
64
def backward_id(elem):
65
    if len(elem.keys) >= 1 and value(elem.keys[0]) == None: return elem.keys[0]
66
    else: return None
67

    
68
instance_level = 1 # root's grandchildren
69

    
70
def obj(path):
71
    obj_path = copy.deepcopy(path[:instance_level+1])
72
    obj_path[-1].is_ptr = False # prevent pointer w/o target
73
    return obj_path
74

    
75
def set_id(path, id_, has_types=True):
76
    '''Caller must make a shallow copy of the path to prevent modifications from
77
    propagating to other copies of the path (a deep copy is not needed)'''
78
    if has_types: id_level = instance_level
79
    else: id_level = 0 # root's children
80
    if is_self(path[0]): id_level += 1 # explicit root element
81
    
82
    id_elem = path[id_level] = copy.copy(path[id_level])
83
        # don't modify other copies of the path
84
    id_elem.keys = id_elem.keys[:] # don't modify other copies of the elem
85
    id_elem.keys.append([XpathElem('id', id_, True)])
86

    
87
def is_id(path): return path[0].is_attr and path[0].name == 'id'
88

    
89
def is_instance(elem): return elem.keys != [] and is_id(elem.keys[0])
90

    
91
##### Parsing
92

    
93
import xpath_func
94

    
95
def expand_abbr(name, repl):
96
    before, abbr, after = name.partition('*')
97
    if abbr != '': name = before+repl+after
98
    return name
99

    
100
_cache = {}
101

    
102
def parse(str_):
103
    try: return _cache[str_]
104
    except KeyError: pass
105
    
106
    parser = Parser(str_)
107
    
108
    def _path():
109
        is_positive = not parser.str_('!')
110
        
111
        tree = []
112
        while True:
113
            # Split path
114
            if parser.str_('{'):
115
                try: last = tree[-1]
116
                except IndexError: parser.syntax_err('./{')
117
                last.other_branches = _paths()
118
                parser.str_('}', required=True)
119
                if parser.str_('/'): # common subpath after {}
120
                    subpath = _path()
121
                    for branch in last.other_branches: branch += subpath
122
                tree += last.other_branches.pop(0) # use first path for now
123
                break # anything after split path has already been parsed
124
            
125
            elem = XpathElem(is_attr=parser.str_('@'), name=_value())
126
            
127
            elem.is_lookup_only = parser.str_('?')
128
            
129
            # Keys used to match nodes
130
            if parser.str_('['):
131
                elem.keys = _paths()
132
                parser.str_(']', required=True)
133
            
134
            # Attrs created when no matching node exists
135
            if parser.str_(':'):
136
                parser.str_('[', required=True)
137
                elem.attrs = _paths()
138
                parser.str_(']', required=True)
139
            
140
            elem.is_ptr = parser.str_('->')
141
            tree.append(elem)
142
            
143
            # Lookahead assertion
144
            if parser.str_('('):
145
                parser.str_('/', required=True) # next / is inside ()
146
                path = _path()
147
                parser.str_(')', required=True)
148
                elem.keys.append(path)
149
                tree += path
150
            
151
            if not parser.str_('/'): break
152
        
153
        tree[0].is_positive = is_positive
154
        
155
        # Value
156
        if parser.str_('='):
157
            if parser.str_('$'): # reference (different from a pointer)
158
                value = _path()
159
            else: value = _value() # literal value
160
            set_value(tree, value)
161
        
162
        # Expand * abbrs
163
        for i in reversed(xrange(len(tree))):
164
            elem = tree[i]
165
            if elem.is_ptr: offset = 2
166
            else: offset = 1
167
            try: repl = tree[i+offset].name
168
            except IndexError: pass # no replacement elem
169
            else: elem.name = expand_abbr(elem.name, repl)
170
        
171
        return tree
172
    
173
    def _value():
174
        if parser.str_('"'):
175
            value = parser.re(r'[^"]*')
176
            parser.str_('"', required=True)
177
        else: value = parser.re(r'(?:(?:\w+:)*[\w.*]+)?')
178
        return value
179
    
180
    def _paths():
181
        paths = []
182
        path = _path()
183
        if not path_is_empty(path): # not empty list
184
            paths.append(path)
185
            while parser.str_(','): paths.append(_path())
186
            if path_is_empty(paths[-1]): paths.pop() # remove trailing ","
187
        return paths
188
    
189
    path = _path()
190
    parser.end()
191
    path = xpath_func.process(path)
192
    _cache[str_] = path
193
    return path
194

    
195
##### Querying/creating XML trees
196

    
197
def get(root, xpath, create=False, last_only=None, limit=1, allow_rooted=True):
198
    '''Warning: The last_only optimization may put data that should be together
199
    into separate nodes'''
200
    if last_only == None: last_only = create
201
    if limit == None or limit > 1: last_only = False
202
    if util.is_str(xpath): xpath = parse(xpath)
203
    
204
    # Handle edge cases
205
    if xpath == []: return [root]
206
    if create and not is_positive(xpath): return []
207
    
208
    # Define vars
209
    doc = root.ownerDocument
210
    if allow_rooted and is_rooted(xpath): root = doc.documentElement
211
    elem = xpath[0]
212
    
213
    # Find possible matches
214
    children = []
215
    if elem.is_attr:
216
        child = root.getAttributeNode(elem.name)
217
        if child != None: children = [child]
218
    elif is_self(elem): children = [root]
219
    elif is_parent(elem):
220
        parent = xml_dom.parent(root)
221
        if parent == None: return [] # don't try to create doc root's parent
222
        root = parent
223
        children = [root]
224
    else:
225
        children = xml_dom.by_tag_name(root, elem.name,
226
            last_only and (elem.keys == [] or is_instance(elem)))
227
    
228
    # Retrieve elem value
229
    value_ = elem.value
230
    if util.is_list(value_): # reference (different from a pointer)
231
        targets = get(root, value_)
232
        try: target = targets[0]
233
        except IndexError:
234
            warnings.warn(UserWarning('XPath reference target missing: '
235
                +str(value_)+'\nXPath: '+str(xpath)))
236
            value_ = None
237
        else: value_ = xml_dom.value(target)
238
    
239
    # Check each match
240
    nodes = []
241
    for child in children:
242
        is_match = value_ == None or xml_dom.value(child) == value_
243
        for attr in elem.keys:
244
            if not is_match: break
245
            is_match = ((get(child, attr, False, last_only,
246
                allow_rooted=False) != []) == is_positive(attr))
247
        if is_match:
248
            nodes.append(child)
249
            if limit != None and len(nodes) >= limit: break
250
    
251
    # Create node
252
    if nodes == []:
253
        if not create or elem.is_lookup_only: return []
254
        if elem.is_attr:
255
            root.setAttribute(elem.name, '')
256
            node = root.getAttributeNode(elem.name)
257
        elif util.list_eq_is(children, [root]): node = root
258
        else: node = root.appendChild(doc.createElement(elem.name))
259
        if value_ != None: xml_dom.set_value(node, value_)
260
        nodes.append(node)
261
    
262
    path_value = value(xpath)
263
    xpath = xpath[1:] # rest of XPath
264
    
265
    next = []
266
    for node in nodes:
267
        # Create attrs
268
        if create:
269
            for attr in elem.keys + elem.attrs:
270
                get(node, attr, create, last_only, allow_rooted=False)
271
        
272
        # Follow pointer
273
        if elem.is_ptr:
274
            root = doc.documentElement
275
            xpath = copy.deepcopy(xpath)
276
            id_path = backward_id(xpath[instance_level])
277
            if id_path != None: # backward (child-to-parent) pointer with ID key
278
                id_path[0].name = expand_abbr(id_path[0].name, node.tagName)
279
                set_value(id_path, xml_dom.get_id(node)) # modify xpath's id key
280
            else: # forward (parent-to-child) pointer
281
                id_ = xml_dom.value(node)
282
                obj_xpath = obj(xpath) # target object
283
                if id_ == None or get(root, obj_xpath, False, True) == []:
284
                    # no target or target keys don't match
285
                    if not create: continue
286
                    
287
                    # Use last target object's ID + 1
288
                    obj_xpath[-1].keys = [] # just get by tag name
289
                    last = get(root, obj_xpath, False, True)
290
                    if last != []: id_ = str(int(xml_dom.get_id(last[0])) + 1)
291
                    else: id_ = '0'
292
                    
293
                    # Will append if target keys didn't match.
294
                    # Use lookahead assertion to avoid this.
295
                    xml_dom.set_value(node, id_)
296
                else: last_only = False
297
                set_id(xpath, id_)
298
        else: root = node
299
        next += get(root, xpath, create, last_only, limit, allow_rooted=False)
300
        
301
        for branch in elem.other_branches:
302
            branch = branch[:] # don't modify input!
303
            set_value(branch, path_value)
304
            next += get(node, branch, create, last_only, limit,
305
                allow_rooted=False)
306
    
307
    return next
308

    
309
def get_1(*args, **kw_args):
310
    '''Runs get() and returns the first result'''
311
    return util.list_get(get(*args, **kw_args), 0)
312

    
313
def put_obj(root, xpath, id_, has_types, value=None):
314
    if util.is_str(xpath): xpath = parse(xpath)
315
    
316
    xpath = xpath[:] # don't modify input!
317
    set_id(xpath, id_, has_types)
318
    if value != None: set_value(xpath, value)
319
    get(root, xpath, True)
320

    
321
def path2xml(xpath, first_branch=True):
322
    root = xml_dom.create_doc().documentElement
323
    get(root, xpath, True)
324
    return root
325

    
326
def xml_set_id(root, id_): xml_dom.set_id(root.firstChild, id_)
(18-18/19)