This file is indexed.

/usr/share/pyshared/cream/util/xmlserialize.py is in python-cream 0.5.3-1.

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
#
#     Copyright (c) 2009, 2010 Jonas Haag <jonas@lophus.org>.
#     All rights reserved.
#     License: 2-clause-BSD (Berkley Software Distribution) license
#
#     http://github.com/jonashaag/xmlserialize.py
#
# The full text of the 2-clause BSD license follows.
#
# The 2-clause Berkley Software Distribution license
# ==================================================
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above copyright
#       notice, this list of conditions and the following disclaimer in the
#       documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

__all__ = (
    'NoSuchSerializer', 'NoSuchUnserializer', 'Serializer',
    'GenericTypeSerializer', 'SimpleTypeSerializer', 'IntegerSerializer',
    'FloatSerializer', 'LongSerializer', 'BooleanSerializer', 'StringSerializer',
    'SimpleIterableSerializer', 'KeyValueIterableSerializer', 'RangeSerializer',
    'serialize_atomic', 'serialize_to_file', 'unserialize_atomic', 'unserialize_file',
    'unserialize_string', 'unserialize', 'serialize'
)

try:
    from collections import defaultdict
except ImportError:
    defaultdict = None
try:
    from collections import OrderedDict
except ImportError:
    OrderedDict = None
from lxml.etree import ElementTree, Element, _ElementTree
from lxml.etree import fromstring as elementtree_fromstring, tostring as elementtree_tostring

def try_decode(s):
    try:
        return s.decode('utf-8')
    except UnicodeDecodeError, unicode_decode_error:
        try:
            import chardet
        except ImportError:
            raise unicode_decode_error
        else:
            encoding = chardet.detect(s)['encoding']
            if encoding is not None:
                return s.decode(encoding)
            else:
                raise UnicodeDecodeError(s)


class NoSuchSerializer(Exception):
    def __init__(self, object):
        Exception.__init__(self,
            "No serializer for type '%s' found"  % type(object))

class NoSuchUnserializer(Exception):
    def __init__(self, type_):
        Exception.__init__(self,
            "No (un)serializer for type '%s' found" % type_)

class PleaseUseUnicode(Exception):
    def __init__(self):
        Exception.__init__(self,
            "Can't serialize object of type 'str' -- please use unicode!")

class _SerializerMeta(type):
    def __new__(cls, name, bases, dct):
        for method_name in ('unserialize', 'serialize'):
            if method_name in dct:
                dct[method_name] = classmethod(dct[method_name])

        serializes = dct.setdefault('serializes', NotImplemented)
        if serializes is not NotImplemented:
            if not isinstance(serializes, (list, tuple)):
                dct['serializes'] = (serializes,)

        return type.__new__(cls, name, bases, dct)

class Serializer(object):
    __metaclass__ = _SerializerMeta
    serializes = NotImplemented
    promote_lazy = False

    def serialize(cls, object, tag_name, serialize_as):
        raise NotImplementedError()

    def unserialize(cls, xml_element, unserialize_to):
        raise NotImplementedError()

    @classmethod
    def subclasses(cls):
        if not hasattr(cls, '_subclasses'):
            cls._subclasses = get_subclasses(cls, recursive=True)
        return cls._subclasses

    @classmethod
    def get_for_type(cls, type_, _cache={}):
        if isinstance(type_, Serializer):
            return type_
        try:
            return _cache[type_]
        except KeyError:
            pass
        for subclass in cls.subclasses():
            if subclass.serializes is NotImplemented: continue
            for serializes in subclass.serializes:
                if serializes is type_ or serializes.__name__ == type_:
                    match = (serializes, subclass)
                    _cache[type_] = match
                    return match
        raise NoSuchUnserializer(type_ if isinstance(type_, str)
                                       else type_.__name__)



class GenericTypeSerializer(Serializer):
    serializes = () # object
    promote_lazy = True

class NoneTypeSerializer(Serializer):
    serializes = type(None)

    def serialize(cls, object, tag_name, serialize_as):
        return Element(tag_name, type='NoneType')

    def unserialize(cls, xml_element, unserialize_to):
        return None

class SimpleTypeSerializer(Serializer):
    def unserialize(cls, xml_element, unserialize_to):
        assert xml_element.text is not None
        return unserialize_to(xml_element.text)

    def serialize(cls, object, tag_name, serialize_as):
        element = Element(tag_name, type=serialize_as.__name__)
        element.text = unicode(object)
        return element


class IntegerSerializer(SimpleTypeSerializer):
    serializes = int

class FloatSerializer(SimpleTypeSerializer):
    serializes = float

class LongSerializer(SimpleTypeSerializer):
    serializes = long

class BooleanSerializer(SimpleTypeSerializer):
    serializes = bool
    unserialize_map = {
        True  : ('True',  'true', 1, '1'),
        False : ('False', 'false', 0, '0')
    }

    def unserialize(cls, xml_element, unserialize_to):
        if xml_element.text in cls.unserialize_map[True]:
            return True
        elif xml_element.text in cls.unserialize_map[False]:
            return False
        else:
            return bool(xml_element.text)

class StringSerializer(SimpleTypeSerializer):
    serializes = (unicode, str)

    def serialize(cls, object, tag_name, serialize_as):
        if serialize_as is str:
            try:
                object = try_decode(object)
            except UnicodeDecodeError:
                raise PleaseUseUnicode()
        return super(cls, cls).serialize(unicode(object), tag_name, str)

    def unserialize(cls, xml_element, unserialize_to):
        if xml_element.text is None:
            return u''
        return unicode(xml_element.text)


import datetime
import time
class DateTimeSerializer(Serializer):
    serializes = datetime.datetime

    def serialize(cls, object, tag_name, serialize_as):
        element = Element(tag_name, type=serialize_as.__name__)
        element.text = str(time.mktime(object.timetuple()))
        return element

    def unserialize(cls, xml_element, unserialize_to):
        return datetime.datetime.fromtimestamp(float(xml_element.text))


class SimpleIterableSerializer(Serializer):
    serializes = (tuple, list, set, frozenset)
    item_key = 'item'

    def serialize(cls, object, tag_name, serialize_as):
        container_element = Element(tag_name, type=serialize_as.__name__)
        for item in object:
            container_element.append(serialize_atomic(item, cls.item_key))
        return container_element

    def unserialize(cls, xml_element, unserialize_to):
        container = list()
        for child in xml_element.getchildren():
            container.append(unserialize_atomic(child))
        return unserialize_to(container)

class KeyValueIterableSerializer(Serializer):
    serializes = (dict,)
    if defaultdict is not None:
        serializes += (defaultdict,)
    if OrderedDict is not None:
        serializes += (OrderedDict,)

    def serialize(cls, object, tag_name, serialize_as):
        container_element = Element(tag_name, type=serialize_as.__name__)
        for key, value in object.iteritems():
            container_element.append(serialize_atomic(value, key))
        return container_element

    def unserialize(cls, xml_element, unserialize_to):
        return cls.unserialize_tree(xml_element.getchildren(), unserialize_to)

    @classmethod
    def unserialize_tree(cls, xml_tree, unserialize_to, *args, **kwargs):
        container = unserialize_to()
        for child in xml_tree:
            object = unserialize_atomic(child, *args, **kwargs)
            container[child.tag] = object
        return container

class RangeSerializer(Serializer):
    sep = ' to '
    # TODO: step
    serializes = xrange

    def serialize(cls, range, tag_name, serialize_as):
        element = Element(tag_name, type=serialize_as.__name__)
        element.text = '%s%s%s' % (range[0], cls.sep, range[-1]+1)
        return element

    def unserialize(cls, xml_element, unserialize_to):
        return unserialize_to(*map(int, xml_element.text.split(cls.sep)))

def get_subclasses(klass, recursive=False, max_depth=None, current_depth=0):
    subclasses = []
    for subclass in klass.__subclasses__():
        if subclass is not object:
            subclasses.append(subclass)

        if recursive:
            for subclass in get_subclasses(subclass, current_depth==max_depth,
                                           max_depth, current_depth+1):
                subclasses.append(subclass)

    return tuple(subclasses)

def serialize_atomic(object, tag_name, _type_map_cache={}):
    if object is None:
        return NoneTypeSerializer.serialize(None, tag_name, None)
    if hasattr(object, '__xmlserialize__'):
        object = object.__xmlserialize__()

    object_type = type(object)
    match = _type_map_cache.get(object_type)
    if match is None:
        for serializer in Serializer.subclasses():
            if serializer.serializes is NotImplemented: continue
            if object_type in serializer.serializes:
                match = (serializer, object_type)
                break
            if serializer.promote_lazy and match:
                # ignore greedy matchers if we got a better match
                continue
            for serializes in serializer.serializes:
                if issubclass(object_type, serializes):
                    match = (serializer, serializes)
        if match is None:
            raise NoSuchSerializer(object)
    _type_map_cache[object_type] = match
    return match[0].serialize(object, tag_name, match[1])

def serialize(object, tag='object', root_tag=None, return_string=True):
    if root_tag:
        element_tree = Element(root_tag)
        element_tree.append(serialize_atomic(object, tag))
    else:
        element_tree = serialize_atomic(object, tag)
    if return_string:
        return elementtree_tostring(element_tree)
    else:
        return element_tree

def serialize_to_file(object, file_, *args, **kwargs):
    close = False
    if not isinstance(file_, file):
        file_ = open(file_, 'w')
        close = True
    file_.write(serialize(object, *args, **kwargs))
    if close:
        file_.close()


def unserialize_atomic(xml_element, typemap=None):
    object_type = xml_element.get('type')

    if typemap:
        object_type = typemap.get(object_type, object_type)

    object_type, unserializer = Serializer.get_for_type(object_type)
    return unserializer.unserialize(xml_element, object_type)

def unserialize(xml_element_tree, has_root=True, *args, **kwargs):
    if has_root:
        if isinstance(xml_element_tree, _ElementTree):
            xml_element_tree = xml_element_tree.getiterator()
        else:
            xml_element_tree = xml_element_tree.getchildren()
    else:
        xml_element_tree = [xml_element_tree]
    return KeyValueIterableSerializer.unserialize_tree(xml_element_tree, dict,
                                                       *args, **kwargs)

def unserialize_file(file_, *args, **kwargs):
    close = False
    if not isinstance(file_, file):
        file_ = open(file_)
        close = True
    result = unserialize(elementtree_fromstring(file_.read()), *args, **kwargs)
    if close:
        file_.close()
    return result

def unserialize_string(string, *args, **kwargs):
    return unserialize(elementtree_fromstring(string), *args, **kwargs)