This file is indexed.

/usr/share/pyshared/gherkin.py is in python-fibranet 10-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
#Copyright (c) 2006 Simon Wittber
#
#Permission is hereby granted, free of charge, to any person
#obtaining a copy of this software and associated documentation files
#(the "Software"), to deal in the Software without restriction,
#including without limitation the rights to use, copy, modify, merge,
#publish, distribute, sublicense, and/or sell copies of the Software,
#and to permit persons to whom the Software is furnished to do so,
#subject to the following conditions:
#
#The above copyright notice and this permission notice shall be
#included in all copies or substantial portions of the Software.
#
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
#NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
#BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
#ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
#CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#SOFTWARE.

"""

Gherkin provides safe serialization for simple python types.

"""

from types import IntType,TupleType,StringType,FloatType,LongType,ListType,DictType,NoneType,BooleanType,UnicodeType

from struct import pack, unpack
from cStringIO import StringIO

SIZEOF_INT = 4
SIZEOF_FLOAT = 8
UNICODE_CODEC = 'utf-8'

def memoize(func):
    cache = {}
    def check_memo(*args):
        if args in cache:
            return cache[args]
        else:
            return cache.setdefault(args, func(*args))
    return check_memo

class Gherkin(object):
    def __init__(self):
        self.strings = {}
        self.header = 'GHE'
        self.version = 1
        self.protocol = {
            TupleType:"T",
            ListType:"L",
            DictType:"D",
            LongType:"B",
            IntType:"I",
            FloatType:"F",
            StringType:"S",
            NoneType:"N",
            BooleanType:"b",
            UnicodeType:"U",
            'HomogenousList':'H',
            'HomogenousTuple':'h'
        }

        self.int_size = SIZEOF_INT
        self.float_size = SIZEOF_FLOAT

        self.encoder = {
            DictType:self.enc_dict_type,
            ListType:self.enc_list_type,
            TupleType:self.enc_list_type,
            IntType:memoize(self.enc_int_type),
            FloatType:memoize(self.enc_float_type),
            LongType:memoize(self.enc_long_type),
            UnicodeType:memoize(self.enc_unicode_type),
            StringType:memoize(self.enc_string_type),
            NoneType:self.enc_none_type,
            BooleanType:memoize(self.enc_bool_type)
        }

        self.decoder = {
            self.protocol[TupleType]:self.dec_tuple_type,
            self.protocol[ListType]:self.dec_list_type,
            self.protocol[DictType]:self.dec_dict_type,
            self.protocol[LongType]:self.dec_long_type,
            self.protocol[StringType]:self.dec_string_type,
            self.protocol[FloatType]:self.dec_float_type,
            self.protocol[IntType]:self.dec_int_type,
            self.protocol[NoneType]:self.dec_none_type,
            self.protocol[BooleanType]:self.dec_bool_type,
            self.protocol[UnicodeType]:self.dec_unicode_type,
            self.protocol['HomogenousList']:self.dec_homogenous_list_type,
            self.protocol['HomogenousTuple']:self.dec_homogenous_tuple_type
                
        }

    def enc_dict_type(self, obj):
        data = "".join([self.encoder[type(i)](i) for i in obj.items()])
        return "%s%s%s" % (self.protocol[DictType], pack("!L", len(data)), data)

    def enc_list_type(self, obj):
        if len(set([type(i) for i in obj])) == 1:
            return self.enc_homogenous_list_type(obj)
        data = "".join([self.encoder[type(i)](i) for i in obj])
        return "%s%s%s" % (self.protocol[type(obj)], pack("!L", len(data)), data)
        
    def enc_homogenous_list_type(self, obj):
        data = "".join([self.encoder[type(i)](i)[1:] for i in obj])
        if type(obj) == type([]):
            prefix = self.protocol['HomogenousList']
        else:
            prefix = self.protocol['HomogenousTuple']
            
        return "%s%s%s%s" % (prefix, self.protocol[type(obj[0])], pack("!L", len(data)), data)

    def enc_int_type(self, obj):
        return "%s%s" % (self.protocol[IntType], pack("!i", obj))

    def enc_float_type(self, obj):
        return "%s%s" % (self.protocol[FloatType], pack("!d", obj))

    def enc_long_type(self, obj):
        obj = hex(obj)
        if obj[0] == "-":
            pre = "-"
            obj = obj[3:-1]
        else:
            pre = "+"
            obj = obj[2:-1]
        return "%s%s%s%s" % (self.protocol[LongType], pre, pack("!L", len(obj)), obj)

    def enc_unicode_type(self, obj):
        obj = obj.encode(UNICODE_CODEC)
        return "%s%s%s" % (self.protocol[UnicodeType], pack("!L", len(obj)), obj)

    def enc_string_type(self, obj):
        return "%s%s%s" % (self.protocol[StringType], pack("!L", len(obj)), obj)

    def enc_none_type(self, obj):
        return self.protocol[NoneType]

    def enc_bool_type(self, obj):
        return self.protocol[BooleanType] + str(int(obj))

    def dumps(self, obj):
        """
        Return the string that would be written to a file by dump(value, file). The value must be a supported type. Raise a ValueError exception if value has (or contains an object that has) an unsupported type.
        """
        options = "".join((hex(self.version)[2:],hex(SIZEOF_INT)[2:],hex(SIZEOF_FLOAT)[2:]))
        assert len(options) == 3
        try:
            data = self.encoder[type(obj)](obj)
        except KeyError, e:
            raise ValueError, "Type not supported. (%s)" % e
        header = "".join((self.header, options))
        assert len(header) == 6
        return "".join((header, data))

    def dump(self, obj, file):
        """
        Write the value on the open file. The value must be a supported type. The file must be an open file object such as sys.stdout or returned by open() or posix.popen(). It must be opened in binary mode ('wb' or 'w+b').
        If the value has (or contains an object that has) an unsupported type, a ValueError exception is raised
        """
        return file.write(self.dumps(obj))
    
    def build_sequence(self, data, cast=list):
        size = unpack('!L', data.read(SIZEOF_INT))[0]
        items = []
        data_tell = data.tell
        items_append = items.append
        self_decoder = self.decoder
        data_read = data.read
        start_position = data.tell()
        while (data_tell() - start_position) < size:
            T = data_read(1)
            value = self_decoder[T](data)
            items_append(value)
        return cast(items)

    def build_homogenous_sequence(self, data, cast=list):
        T = data.read(1)
        size = unpack('!L', data.read(SIZEOF_INT))[0]
        items = []
        data_tell = data.tell
        items_append = items.append
        self_decoder = self.decoder
        data_read = data.read
        start_position = data.tell()
        while (data_tell() - start_position) < size:
            value = self_decoder[T](data)
            items_append(value)
        return cast(items)

    def dec_tuple_type(self, data):
        return self.build_sequence(data, cast=tuple)

    def dec_list_type(self, data):
        return self.build_sequence(data, cast=list)

    def dec_homogenous_list_type(self, data):
        return self.build_homogenous_sequence(data, cast=list)
    
    def dec_homogenous_tuple_type(self, data):
        return self.build_homogenous_sequence(data, cast=tuple)

    def dec_dict_type(self, data):
        return self.build_sequence(data, cast=dict)

    def dec_long_type(self, data):
        pre = data.read(1)
        size = unpack('!L', data.read(self.int_size))[0]
        value = long(data.read(size),16)
        if pre == "-": value = -value
        return value

    def dec_string_type(self, data):
        size = unpack('!L', data.read(self.int_size))[0]
        value = str(data.read(size))
        return value

    def dec_float_type(self, data):
        value = unpack('!d', data.read(self.float_size))[0]
        return value

    def dec_int_type(self, data):
        value = unpack('!i', data.read(self.int_size))[0]
        return value

    def dec_none_type(self, data):
        return None

    def dec_bool_type(self, data):
        value = int(data.read(1))
        return bool(value)

    def dec_unicode_type(self, data):
        size = unpack('!L', data.read(self.int_size))[0]
        value = data.read(size).decode(UNICODE_CODEC)
        return value

    def loads(self, data):
        """
        Convert the string to a value. If no valid value is found, raise EOFError, ValueError or TypeError. Extra characters in the string are ignored.
        """
        self.strings = {}
        buffer = StringIO(data)
        header = buffer.read(len(self.header))
        assert header == self.header
        assert self.version <= int(buffer.read(1), 10)
        self.int_size = int(buffer.read(1), 10)
        self.float_size = int(buffer.read(1), 10)
        try:
            value = self.decoder[buffer.read(1)](buffer)
        except KeyError, e:
            raise ValueError, "Type prefix not supported. (%s)" % (e)
        return value

    def load(self, file):
        """
        Read one value from the open file and return it. If no valid value is read, raise EOFError, ValueError or TypeError. The file must be an open file object opened in binary mode ('rb' or 'r+b').
        """
        return self.loads(file.read())


__gherk = Gherkin()
dumps = __gherk.dumps
loads = __gherk.loads
dump = __gherk.dump
load = __gherk.load