Project

General

Profile

1
# XML "function" nodes that transform their contents
2

    
3
import datetime
4
import re
5
import sre_constants
6
import warnings
7

    
8
import angles
9
import dates
10
import exc
11
import format
12
import maps
13
import sql
14
import sql_io
15
import strings
16
import term
17
import units
18
import util
19
import xml_dom
20
import xpath
21

    
22
##### Exceptions
23

    
24
class SyntaxError(exc.ExceptionWithCause):
25
    def __init__(self, cause):
26
        exc.ExceptionWithCause.__init__(self, 'Invalid XML function syntax',
27
            cause)
28

    
29
class FormatException(exc.ExceptionWithCause):
30
    def __init__(self, cause):
31
        exc.ExceptionWithCause.__init__(self, 'Invalid input value', cause)
32

    
33
##### Helper functions
34

    
35
def map_items(func, items):
36
    return [(name, func(value)) for name, value in items]
37

    
38
def cast(type_, val):
39
    '''Throws FormatException if can't cast'''
40
    try: return type_(val)
41
    except ValueError, e: raise FormatException(e)
42

    
43
def conv_items(type_, items):
44
    return map_items(lambda val: cast(type_, val),
45
        xml_dom.TextEntryOnlyIter(items))
46

    
47
def pop_value(items, name='value'):
48
    '''@param name Name of value param, or None to accept any name'''
49
    try: last = items.pop() # last entry contains value
50
    except IndexError: return None # input is empty and no actions
51
    if name != None and last[0] != name: return None # input is empty
52
    return last[1]
53

    
54
def merge_tagged(root):
55
    '''Merges siblings in root that are marked as mergeable.
56
    Used to recombine pieces of nodes that were split apart in the mappings.
57
    '''
58
    for name in set((c.tagName for c in xpath.get(root, '*[@merge=1]'))):
59
        xml_dom.merge_by_name(root, name)
60
    
61
    # Recurse
62
    for child in xml_dom.NodeElemIter(root): merge_tagged(child)
63

    
64
funcs = {}
65

    
66
##### Public functions
67

    
68
def is_func_name(name):
69
    return name.startswith('_') and name != '_' # '_' is default root node name
70

    
71
def is_func(node): return is_func_name(node.tagName)
72

    
73
def is_xml_func_name(name): return is_func_name(name) and name in funcs
74

    
75
def is_xml_func(node): return is_xml_func_name(node.tagName)
76

    
77
def simplify(node):
78
    '''Simplifies the XML functions in an XML tree.
79
    * Merges nodes tagged as mergable
80
    * Applies pass-through optimizations for XML functions
81
    '''
82
    for child in xml_dom.NodeElemIter(node): simplify(child)
83
    merge_tagged(node)
84
    
85
    name = node.tagName
86
    
87
    # Pass-through optimizations
88
    if is_func_name(name):
89
        children = list(xml_dom.NodeElemIter(node))
90
        if len(children) == 1: # single arg function
91
            func = name
92
            param_node = children[0]
93
            param = param_node.tagName
94
            value = param_node.firstChild
95
            
96
            is_agg_func = param.isdigit() or func == '_name'
97
            if is_agg_func or (func == '_if' and param == 'else'):
98
                xml_dom.replace(node, value)
99
            elif func == '_if': xml_dom.remove(node) # only a cond or then arg
100
    # Pruning optimizations
101
    else: # these should not run on functions because they would remove args
102
        # Remove empty children
103
        for child in xml_dom.NodeElemIter(node):
104
            if xml_dom.is_empty(child): xml_dom.remove(child)
105

    
106
def process(node, on_error=exc.reraise, is_rel_func=None, db=None):
107
    '''Evaluates the XML functions in an XML tree.
108
    @param is_rel_func None|f(str) Tests if a name is a relational function.
109
        * If != None: Non-relational functions are removed, or relational
110
          functions are treated specially, depending on the db param (below).
111
    @param db
112
        * If None: Non-relational functions other than structural functions are
113
          replaced with their last parameter (usually the value), not evaluated.
114
          This is used in column-based mode to remove XML-only functions.
115
        * If != None: Relational functions are evaluated directly. This is used
116
          in row-based mode to combine relational and XML functions.
117
    '''
118
    has_rel_funcs = is_rel_func != None
119
    assert db == None or has_rel_funcs # rel_funcs required if db set
120
    
121
    for child in xml_dom.NodeElemIter(node):
122
        process(child, on_error, is_rel_func, db)
123
    merge_tagged(node)
124
    
125
    name = node.tagName
126
    if not is_func_name(name): return node # not any kind of function
127
    
128
    row_mode = has_rel_funcs and db != None
129
    column_mode = has_rel_funcs and db == None
130
    func = funcs.get(name, None)
131
    items = list(xml_dom.NodeTextEntryIter(node))
132
    
133
    # Parse function
134
    if len(items) == 1 and items[0][0].isdigit(): # has single numeric param
135
        # pass-through optimization for aggregating functions with one arg
136
        value = items[0][1] # pass through first arg
137
    elif row_mode and (is_rel_func(name) or func == None): # row-based mode
138
        try: value = sql_io.put(db, name, dict(items)) # evaluate using DB
139
        except sql.DoesNotExistException: return # preserve unknown funcs
140
            # possibly a built-in function of db_xml.put()
141
    elif column_mode or func == None:
142
        # local XML function can't be used or does not exist
143
        if column_mode and is_rel_func(name): return # preserve relational funcs
144
        # otherwise XML-only in column mode, or DB-only in XML output mode
145
        value = pop_value(items, None) # just replace with last param
146
    else: # local XML function
147
        try: value = func(items, node)
148
        except Exception, e: # also catch non-wrapped exceptions (XML func bugs)
149
            # Save in case another exception raised, overwriting sys.exc_info()
150
            exc.add_traceback(e)
151
            str_ = strings.ustr(node)
152
            exc.add_msg(e, 'function:\n'+str_)
153
            xml_dom.replace(node, xml_dom.mk_comment(node.ownerDocument,
154
                '\n'+term.emph_multiline(str_)))
155
                
156
            on_error(e)
157
            return # in case on_error() returns
158
    
159
    xml_dom.replace_with_text(node, value)
160

    
161
##### XML functions
162

    
163
# Function names must start with _ to avoid collisions with real tags
164
# Functions take arguments (items, node)
165

    
166
#### Transforming values
167

    
168
def repl(repls, value):
169
    '''Raises error if value not in map and no special '*' entry
170
    @param repls dict repl:with
171
        repl "*" means all other input values
172
        with "*" means keep input value the same
173
        with "" means ignore input value
174
    '''
175
    try: new_value = repls[value]
176
    except KeyError, e:
177
        # Save traceback right away in case another exception raised
178
        fe = FormatException(e)
179
        try: new_value = repls['*']
180
        except KeyError: raise fe
181
    if new_value == '*': new_value = value # '*' means keep input value the same
182
    return new_value
183

    
184
def _map(items, node):
185
    '''See repl()
186
    @param items
187
        <last_entry> Value
188
        <other_entries> name=value Mappings. Special values: See repl() repls.
189
    '''
190
    value = pop_value(items)
191
    if value == None: return None # input is empty
192
    return util.none_if(repl(dict(items), value), u'') # empty value means None
193
funcs['_map'] = _map
194

    
195
def _replace(items, node):
196
    items = conv_items(strings.ustr, items) # get *once* from iter, check types
197
    value = pop_value(items)
198
    if value == None: return None # input is empty
199
    try:
200
        for repl, with_ in items:
201
            if re.match(r'^\w+$', repl):
202
                repl = r'(?<![^\W_])'+repl+r'(?![^\W_])' # match whole word
203
            value = re.sub(repl, with_, value)
204
    except sre_constants.error, e: raise SyntaxError(e)
205
    return util.none_if(value.strip(), u'') # empty strings always mean None
206
funcs['_replace'] = _replace
207

    
208
#### Quantities
209

    
210
def _units(items, node):
211
    value = pop_value(items)
212
    if value == None: return None # input is empty
213
    
214
    quantity = units.str2quantity(value)
215
    try:
216
        for action, units_ in items:
217
            units_ = util.none_if(units_, u'')
218
            if action == 'default': units.set_default_units(quantity, units_)
219
            elif action == 'to':
220
                try: quantity = units.convert(quantity, units_)
221
                except ValueError, e: raise FormatException(e)
222
            else: raise SyntaxError(ValueError('Invalid action: '+action))
223
    except units.MissingUnitsException, e: raise FormatException(e)
224
    return units.quantity2str(quantity)
225
funcs['_units'] = _units
226

    
227
def parse_range(str_, range_sep='-'):
228
    default = (str_, None)
229
    start, sep, end = str_.partition(range_sep)
230
    if sep == '': return default # not a range
231
    if start == '' and range_sep == '-': return default # negative number
232
    return tuple(d.strip() for d in (start, end))
233

    
234
def _rangeStart(items, node):
235
    items = dict(conv_items(strings.ustr, items))
236
    try: value = items['value']
237
    except KeyError: return None # input is empty
238
    return parse_range(value)[0]
239
funcs['_rangeStart'] = _rangeStart
240

    
241
def _rangeEnd(items, node):
242
    items = dict(conv_items(strings.ustr, items))
243
    try: value = items['value']
244
    except KeyError: return None # input is empty
245
    return parse_range(value)[1]
246
funcs['_rangeEnd'] = _rangeEnd
247

    
248
def _range(items, node):
249
    items = dict(conv_items(float, items))
250
    from_ = items.get('from', None)
251
    to = items.get('to', None)
252
    if from_ == None or to == None: return None
253
    return str(to - from_)
254
funcs['_range'] = _range
255

    
256
def _avg(items, node):
257
    count = 0
258
    sum_ = 0.
259
    for name, value in conv_items(float, items):
260
        count += 1
261
        sum_ += value
262
    if count == 0: return None # input is empty
263
    else: return str(sum_/count)
264
funcs['_avg'] = _avg
265

    
266
class CvException(Exception):
267
    def __init__(self):
268
        Exception.__init__(self, 'CV (coefficient of variation) values are only'
269
            ' allowed for ratio scale data '
270
            '(see <http://en.wikipedia.org/wiki/Coefficient_of_variation>)')
271

    
272
def _noCV(items, node):
273
    items = list(conv_items(strings.ustr, items))
274
    try: name, value = items.pop() # last entry contains value
275
    except IndexError: return None # input is empty
276
    if re.match('^(?i)CV *\d+$', value): raise FormatException(CvException())
277
    return value
278
funcs['_noCV'] = _noCV
279

    
280
#### Names
281

    
282
_name_parts_slices_items = [
283
    ('first', slice(None, 1)),
284
    ('middle', slice(1, -1)),
285
    ('last', slice(-1, None)),
286
]
287
name_parts_slices = dict(_name_parts_slices_items)
288
name_parts = [name for name, slice_ in _name_parts_slices_items]
289

    
290
def _name(items, node):
291
    items = dict(list(conv_items(strings.ustr, items)))
292
    parts = []
293
    for part in name_parts:
294
        if part in items: parts.append(items[part])
295
    if not parts: return None # pass None values through; handle no name parts
296
    return ' '.join(parts)
297
funcs['_name'] = _name
298

    
299
#### Angles
300

    
301
def _compass(items, node):
302
    '''Converts a compass direction (N, NE, NNE, etc.) into a degree heading'''
303
    items = dict(conv_items(strings.ustr, items))
304
    try: value = items['value']
305
    except KeyError: return None # input is empty
306
    
307
    if not value.isupper(): return value # pass through other coordinate formats
308
    try: return util.cast(str, angles.compass2heading(value)) # ignore None
309
    except KeyError, e: raise FormatException(e)
310
funcs['_compass'] = _compass
(37-37/40)