forked from jaweesh/OWASP-ByWaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecordtype.py
566 lines (466 loc) · 21.8 KB
/
recordtype.py
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
#######################################################################
# Similar to namedtuple, but supports default values and is writable.
#
# Copyright 2011 True Blade Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Notes:
# See http://code.activestate.com/recipes/576555/ for a similar
# concept.
#
# When moving to a newer version of unittest, check that the exceptions
# being caught have the expected text in them.
#
# When moving to Python 3, change __iter__ to use format_map.
#
# When moving to Python 3, make keyword params to recordtype() be
# keyword-only.
########################################################################
__all__ = ['recordtype', 'NO_DEFAULT']
import sys as _sys
from keyword import iskeyword as _iskeyword
from collections import Mapping as _Mapping
NO_DEFAULT = object()
# Keep track of fields, both with and without defaults.
class _Fields(object):
def __init__(self, default):
self.default = default
self.with_defaults = [] # List of (field_name, default).
self.without_defaults = [] # List of field_name.
def add_with_default(self, field_name, default):
if default is NO_DEFAULT:
self.add_without_default(field_name)
else:
self.with_defaults.append((field_name, default))
def add_without_default(self, field_name):
if self.default is NO_DEFAULT:
# No default. There can't be any defaults already specified.
if self.with_defaults:
raise ValueError('field {0} without a default follows fields '
'with defaults'.format(field_name))
self.without_defaults.append(field_name)
else:
self.add_with_default(field_name, self.default)
# Used for both the type name and field names. If is_type_name is
# False, seen_names must be provided. Raise ValueError if the name is
# bad.
def _check_name(name, is_type_name=False, seen_names=None):
if len(name) == 0:
raise ValueError('Type names and field names cannot be zero '
'length: {0!r}'.format(name))
if not all(c.isalnum() or c=='_' for c in name):
raise ValueError('Type names and field names can only contain '
'alphanumeric characters and underscores: '
'{0!r}'.format(name))
if _iskeyword(name):
raise ValueError('Type names and field names cannot be a keyword: '
'{0!r}'.format(name))
if name[0].isdigit():
raise ValueError('Type names and field names cannot start with a '
'number: {0!r}'.format(name))
if not is_type_name:
# these tests don't apply for the typename, just the fieldnames
if name in seen_names:
raise ValueError('Encountered duplicate field name: '
'{0!r}'.format(name))
if name.startswith('_'):
raise ValueError('Field names cannot start with an underscore: '
'{0!r}'.format(name))
# Validate a field name. If it's a bad name, and if rename is True,
# then return a 'sanitized' name. Raise ValueError if the name is bad.
def _check_field_name(name, seen_names, rename, idx):
try:
_check_name(name, seen_names=seen_names)
except ValueError as ex:
if rename:
return '_' + str(idx)
else:
raise
seen_names.add(name)
return name
def _default_name(field_name):
# Can't just use _{0}_default, because then a field name '_0'
# would give a default name of '__0_default'. Since it begins
# with 2 underscores, the name gets mangled.
return '_x_{0}_default'.format(field_name)
def recordtype(typename, field_names, default=NO_DEFAULT, rename=False,
use_slots=True):
# field_names must be a string or an iterable, consisting of fieldname
# strings or 2-tuples. Each 2-tuple is of the form (fieldname,
# default).
fields = _Fields(default)
_check_name(typename, is_type_name=True)
if isinstance(field_names, basestring):
# No per-field defaults. So it's like a namedtuple, but with
# a possible default value.
field_names = field_names.replace(',', ' ').split()
# If field_names is a Mapping, change it to return the
# (field_name, default) pairs, as if it were a list
if isinstance(field_names, _Mapping):
field_names = field_names.items()
# Parse and validate the field names. Validation serves two
# purposes: generating informative error messages and preventing
# template injection attacks.
# field_names is now an iterable. Walk through it,
# sanitizing as needed, and add to fields.
seen_names = set()
for idx, field_name in enumerate(field_names):
if isinstance(field_name, basestring):
field_name = _check_field_name(field_name, seen_names, rename,
idx)
fields.add_without_default(field_name)
else:
try:
if len(field_name) != 2:
raise ValueError('field_name must be a 2-tuple: '
'{0!r}'.format(field_name))
except TypeError:
# field_name doesn't have a __len__.
raise ValueError('field_name must be a 2-tuple: '
'{0!r}'.format(field_name))
default = field_name[1]
field_name = _check_field_name(field_name[0], seen_names, rename,
idx)
fields.add_with_default(field_name, default)
all_field_names = fields.without_defaults + [name for name, default in
fields.with_defaults]
# Create and fill-in the class template.
argtxt = ', '.join(all_field_names)
quoted_argtxt = ', '.join(repr(name) for name in all_field_names)
initargs = ', '.join(fields.without_defaults +
['{0}={1}'.format(name, _default_name(name))
for name, default in fields.with_defaults])
reprtxt = ', '.join('{0}={{{0}}}'.format(f) for f in all_field_names)
dicttxt = ', '.join('{0!r}:self.{0}'.format(f) for f in all_field_names)
# These values change depending on whether or not we have any fields.
if all_field_names:
inittxt = '; '.join('self.{0}={0}'.format(f) for f in all_field_names)
eqtxt = 'and ' + ' and '.join('self.{0}==other.{0}'.format(f)
for f in all_field_names)
itertxt = '; '.join('yield self.{0}'.format(f)
for f in all_field_names)
tupletxt = '(' + ', '.join('self.{0}'.format(f)
for f in all_field_names) + ')'
getstate = 'return ' + tupletxt
setstate = tupletxt + ' = state'
else:
# No fields at all in this recordtype.
inittxt = 'pass'
eqtxt = ''
itertxt = 'return iter([])'
getstate = 'return ()'
setstate = 'pass'
if use_slots:
slotstxt = '__slots__ = _fields'
else:
slotstxt = ''
template = '''class {typename}(object):
"{typename}({argtxt})"
_fields = ({quoted_argtxt})
{slotstxt}
def __init__(self, {initargs}):
{inittxt}
def __len__(self):
return {num_fields}
def __iter__(self):
{itertxt}
def _asdict(self):
return {{{dicttxt}}}
def __repr__(self):
return "{typename}(" + "{reprtxt}".format(**self._asdict()) + ")"
def __eq__(self, other):
return isinstance(other, self.__class__) {eqtxt}
def __ne__(self, other):
return not self==other
def __getstate__(self):
{getstate}
def __setstate__(self, state):
{setstate}\n'''.format(typename=typename,
argtxt=argtxt,
quoted_argtxt=quoted_argtxt,
initargs=initargs,
inittxt=inittxt,
dicttxt=dicttxt,
reprtxt=reprtxt,
eqtxt=eqtxt,
num_fields=len(all_field_names),
itertxt=itertxt,
getstate=getstate,
setstate=setstate,
slotstxt=slotstxt,
)
# Execute the template string in a temporary namespace.
namespace = {}
# Add the default values into the namespace.
for name, default in fields.with_defaults:
namespace[_default_name(name)] = default
try:
exec template in namespace
except SyntaxError as e:
raise SyntaxError(e.message + ':\n' + template)
# Find the class we created, set its _source attribute to the
# template used to create it.
cls = namespace[typename]
cls._source = template
# For pickling to work, the __module__ variable needs to be set to
# the frame where the named tuple is created. Bypass this step in
# enviroments where sys._getframe is not defined (Jython for
# example).
if hasattr(_sys, '_getframe') and _sys.platform != 'cli':
cls.__module__ = _sys._getframe(1).f_globals['__name__']
return cls
if __name__ == '__main__':
import unittest
import pickle, cPickle
# types used for pickle tests
TestRT0 = recordtype('TestRT0', '')
TestRT = recordtype('TestRT', 'x y z')
class TestRecordtype(unittest.TestCase):
def test_simple(self):
Point = recordtype('Point', 'x y')
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
Point = recordtype('Point', 'x,y')
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
Point = recordtype('Point', 'x, y')
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
Point = recordtype('Point', ['x', 'y'])
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
self.assertEqual(Point(10, 11), Point(10, 11))
self.assertNotEqual(Point(10, 11), Point(10, 12))
def test_bad_name(self):
self.assertRaises(ValueError, recordtype, 'Point*', 'x y')
self.assertRaises(ValueError, recordtype, 'Point', '# y')
self.assertRaises(ValueError, recordtype, 'Point', 'x 1y')
self.assertRaises(ValueError, recordtype, 'Point', 'x y x')
self.assertRaises(ValueError, recordtype, 'Point', 'x y for')
self.assertRaises(ValueError, recordtype, 'Point', '_field')
self.assertRaises(ValueError, recordtype, 'Point', [('', 0)])
self.assertRaises(ValueError, recordtype, '', 'x y')
def test_bad_defaults(self):
# if specifying the defaults, must provide a 2-tuple
self.assertRaises(ValueError, recordtype, 'Point', [('x', 3, 4)])
self.assertRaises(ValueError, recordtype, 'Point', [('x',)])
self.assertRaises(ValueError, recordtype, 'Point', [3])
def test_empty(self):
Point = recordtype('Point', '')
self.assertEqual(len(Point()), 0)
self.assertEqual(list(Point()), [])
self.assertEqual(Point(), Point())
self.assertEqual(Point()._asdict(), {})
Point = recordtype('Point', '', 10)
self.assertEqual(len(Point()), 0)
self.assertEqual(Point(), Point())
self.assertEqual(Point()._asdict(), {})
Point = recordtype('Point', [])
self.assertEqual(len(Point()), 0)
self.assertEqual(Point(), Point())
self.assertEqual(Point()._asdict(), {})
Point = recordtype('Point', [], 10)
self.assertEqual(len(Point()), 0)
self.assertEqual(Point(), Point())
self.assertEqual(Point()._asdict(), {})
def test_list(self):
Point = recordtype('Point', ['x', 'y'])
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
Point = recordtype('Point', ('x', 'y'))
p = Point(10, 20)
self.assertEqual((p.x, p.y), (10, 20))
self.assertEqual(p._asdict(), {'x':10, 'y':20})
def test_default(self):
Point = recordtype('Point', 'x y z', 100)
self.assertEqual(Point(), Point(100, 100, 100))
self.assertEqual(Point(10), Point(10, 100, 100))
self.assertEqual(Point(10, 20), Point(10, 20, 100))
self.assertEqual(Point(10, 20, 30), Point(10, 20, 30))
self.assertEqual(Point()._asdict(), {'x':100, 'y':100, 'z':100})
def test_default_list(self):
Point = recordtype('Point', 'x y z'.split(), 100)
self.assertEqual(Point(), Point(100, 100, 100))
self.assertEqual(Point(10), Point(10, 100, 100))
self.assertEqual(Point(10, 20), Point(10, 20, 100))
self.assertEqual(Point(10, 20, 30), Point(10, 20, 30))
self.assertEqual(Point()._asdict(), {'x':100, 'y':100, 'z':100})
def test_default_and_specified_default(self):
Point = recordtype('Point', ['x', ('y', 10), ('z', 20)], 100)
self.assertEqual(Point(), Point(100, 10, 20))
self.assertEqual(Point(0), Point(0, 10, 20))
self.assertEqual(Point(0, 1), Point(0, 1, 20))
self.assertEqual(Point(0, 1, 2), Point(0, 1, 2))
# default doesn't just have to apply to the last field
Point = recordtype('Point', [('x', 0), 'y', ('z', 20)], 100)
self.assertEqual(Point(), Point(0, 100, 20))
def test_equality_inequality(self):
Point = recordtype('Point', ['x', ('y', 10), ('z', 20)], 100)
p0 = Point()
p1 = Point(0)
self.assertEqual(p0, Point())
self.assertEqual(p0, Point(100, 10, 20))
self.assertEqual(p1, Point(0, 10))
self.assertEqual(Point(), p0)
self.assertEqual(p0, p0)
self.assertNotEqual(p0, p1)
self.assertNotEqual(p0, 3)
self.assertNotEqual(p0, None)
self.assertNotEqual(p0, object())
self.assertNotEqual(p0, Point('100'))
def test_default_order(self):
# with no default, can't have a field without a
# default follow fields with defaults
self.assertRaises(ValueError, recordtype, 'Point',
['x', ('y', 10), 'z'])
# but with a default, you can
Point = recordtype('Point', ['x', ('y', 10), 'z'], -1)
self.assertEqual(Point(0), Point(0, 10, -1))
self.assertEqual(Point(z=0), Point(-1, 10, 0))
def test_repr(self):
Point = recordtype('Point', 'x y z')
p = Point(1, 2, 3)
self.assertEqual(repr(p), 'Point(x=1, y=2, z=3)')
self.assertEqual(str(p), 'Point(x=1, y=2, z=3)')
def test_missing_argument(self):
Point = recordtype('Point', ['x', 'y', ('z', 10)])
self.assertEqual(Point(1, 2), Point(1, 2, 10))
self.assertRaises(TypeError, Point, 1)
def test_identity_of_defaults(self):
default = object()
Point = recordtype('Point', [('x', default)])
# in 2.7 this should become assertIs
self.assertTrue(Point().x is default)
Point = recordtype('Point', 'x', default)
# in 2.7 this should become assertIs
self.assertTrue(Point().x is default)
def test_writable(self):
Point = recordtype('Point', ['x', ('y', 10), ('z', 20)], 100)
p = Point(0)
self.assertEqual((p.x, p.y, p.z), (0, 10, 20))
p.x = -1
self.assertEqual((p.x, p.y, p.z), (-1, 10, 20))
p.y = -1
self.assertEqual((p.x, p.y, p.z), (-1, -1, 20))
p.z = None
self.assertEqual((p.x, p.y, p.z), (-1, -1, None))
def test_complex_defaults(self):
Point = recordtype('Point', ['x', ('y', 10), ('z', 20)],
[1, 2, 3])
p = Point()
self.assertEqual((p.x, p.y, p.z), ([1, 2, 3], 10, 20))
Point = recordtype('Point', [('x', [4, 5, 6]),
('y', 10),
('z', 20)])
p = Point()
self.assertEqual((p.x, p.y, p.z), ([4, 5, 6], 10, 20))
def test_iteration(self):
Point = recordtype('Point', ['x', ('y', 10), ('z', 20)],
[1, 2, 3])
p = Point()
self.assertEqual(len(p), 3)
self.assertEqual(list(iter(p)), [[1, 2, 3], 10, 20])
def test_fields(self):
Point = recordtype('Point', 'x y z')
self.assertEqual(Point._fields, ('x', 'y', 'z'))
Point = recordtype('Point', 'x y z', 100)
self.assertEqual(Point._fields, ('x', 'y', 'z'))
Point = recordtype('Point', [('x', 0), ('y', 0), ('z', 0)])
self.assertEqual(Point._fields, ('x', 'y', 'z'))
def test_pickle(self):
for p in (TestRT0(), TestRT(x=10, y=20, z=30)):
for module in (pickle, cPickle):
loads = getattr(module, 'loads')
dumps = getattr(module, 'dumps')
for protocol in -1, 0, 1, 2:
q = loads(dumps(p, protocol))
self.assertEqual(p, q)
self.assertEqual(p._fields, q._fields)
def test_type_has_same_name_as_field(self):
Point = recordtype('Point',
['Point', ('y', 10), ('z', 20)],
[1, 2, 3])
p = Point()
self.assertEqual(len(p), 3)
self.assertEqual(p.Point, [1, 2, 3])
Point = recordtype('Point', 'Point')
p = Point(4)
self.assertEqual(p.Point, 4)
Point = recordtype('Point', 'x Point')
p = Point(3, 4)
self.assertEqual(p.Point, 4)
def test_slots(self):
Point = recordtype('Point', '')
p = Point()
# p.x = 3 raises AttributeError because of slots
self.assertRaises(AttributeError, setattr, p, 'x', 3)
Point = recordtype('Point', '', use_slots=True)
p = Point()
# p.x = 3 raises AttributeError because of slots
self.assertRaises(AttributeError, setattr, p, 'x', 3)
def test_no_slots(self):
Point = recordtype('Point', '', use_slots=False)
p = Point()
# we should be able to create new attributes
p.x = 3
def test_source(self):
Point = recordtype('Point', '')
self.assertTrue(hasattr(Point(), '_source'))
def test_rename(self):
Point = recordtype('Point', ('abc', 'def'), rename=True)
self.assertEqual(Point._fields, ('abc', '_1'))
Point = recordtype('Point', ('for', 'def'), rename=True)
self.assertEqual(Point._fields, ('_0', '_1'))
Point = recordtype('Point', 'a a b a b c', rename=True)
self.assertEqual(Point._fields, ('a', '_1', 'b', '_3', '_4', 'c'))
# nothing needs to be renamed, should still work with rename=True
Point = recordtype('Point', 'x y z', rename=True)
self.assertEqual(Point._fields, ('x', 'y', 'z'))
Point = recordtype('Point', 'x y _z', rename=True)
self.assertEqual(Point._fields, ('x', 'y', '_2'))
# rename with defaults
Point = recordtype('Point', [('', 1), ('', 2)], rename=True)
p = Point()
self.assertEqual(p._0, 1)
self.assertEqual(p._1, 2)
def test_type_begins_with_underscore(self):
Point = recordtype('_Point', '')
p = Point()
def test_mapping(self):
# use a regular dict so testing with 2.6 is still possible
# do not make any assumptions about field order
Point = recordtype('Point', {'x': 0, 'y': 100})
p = Point()
self.assertEqual(p.x, 0)
self.assertEqual(p.y, 100)
# in 2.7, test with an OrderedDict
def test_NO_DEFAULT(self):
# NO_DEFAULT is only really useful with we're using a mapping
# plus a default value. it's the only way to specify that
# some of the fields use the default.
Point = recordtype('Point', {'x':0, 'y':NO_DEFAULT}, default=5)
p = Point()
self.assertEqual(p.x, 0)
self.assertEqual(p.y, 5)
def test_iterabale(self):
Point = recordtype('Point', iter(['x', 'y']))
p = Point(1, 2)
self.assertEqual(p.x, 1)
self.assertEqual(p.y, 2)
unittest.main()