1 |
11
|
aaronmk
|
# Useful functions and classes
|
2 |
|
|
|
3 |
1068
|
aaronmk
|
import collections
|
4 |
|
|
|
5 |
931
|
aaronmk
|
#### Function wrappers for statements
|
6 |
|
|
|
7 |
|
|
def noop(*args, **kw_args): pass
|
8 |
|
|
|
9 |
|
|
def and_(a, b): return a and b
|
10 |
|
|
|
11 |
791
|
aaronmk
|
#### Object metadata
|
12 |
|
|
|
13 |
341
|
aaronmk
|
def type_name(value): return type(value).__name__
|
14 |
|
|
|
15 |
135
|
aaronmk
|
def module(value): return type(value).__module__.split('.')
|
16 |
|
|
|
17 |
|
|
def root_module(value): return module(value)[0]
|
18 |
|
|
|
19 |
1007
|
aaronmk
|
#### Type checking
|
20 |
791
|
aaronmk
|
|
21 |
|
|
class ConstraintError(ValueError):
|
22 |
|
|
def __init__(self, check_func, value):
|
23 |
795
|
aaronmk
|
ValueError.__init__(self, str(value)+' must satisfy constraint '
|
24 |
|
|
+check_func.__name__)
|
25 |
791
|
aaronmk
|
|
26 |
836
|
aaronmk
|
def cast(type_, val):
|
27 |
1046
|
aaronmk
|
'''Passes None through. Does not cast a subclass to a superclass (which
|
28 |
|
|
doesn't make sense in a dynamically-typed language).'''
|
29 |
|
|
if val != None and not isinstance(val, type_): val = type_(val)
|
30 |
836
|
aaronmk
|
return val
|
31 |
|
|
|
32 |
791
|
aaronmk
|
def is_str(val): return isinstance(val, basestring)
|
33 |
|
|
|
34 |
1007
|
aaronmk
|
def is_list(val): return isinstance(val, list)
|
35 |
|
|
|
36 |
1046
|
aaronmk
|
#### Basic types
|
37 |
|
|
|
38 |
|
|
def none_if(val, none_val):
|
39 |
|
|
if cast(type(none_val), val) == none_val: return None
|
40 |
|
|
else: return val
|
41 |
|
|
|
42 |
791
|
aaronmk
|
#### Iterables
|
43 |
|
|
|
44 |
135
|
aaronmk
|
def first(iter_): return iter_.next()
|
45 |
|
|
|
46 |
133
|
aaronmk
|
def skip(iter_, func):
|
47 |
|
|
# Advance iter while func is True
|
48 |
|
|
try:
|
49 |
|
|
while func(iter_.curr()): iter_.next()
|
50 |
|
|
except StopIteration: pass # nothing after the matching elements
|
51 |
|
|
|
52 |
934
|
aaronmk
|
def list_subset(list_, idxs):
|
53 |
|
|
subset = []
|
54 |
|
|
for idx in idxs:
|
55 |
|
|
try: subset.append(list_[idx])
|
56 |
|
|
except IndexError: pass
|
57 |
|
|
return subset
|
58 |
|
|
|
59 |
791
|
aaronmk
|
class CheckedIter:
|
60 |
|
|
def __init__(self, check_func, iterable):
|
61 |
|
|
self.check_func = check_func
|
62 |
|
|
self.iter_ = iterable.__iter__()
|
63 |
|
|
|
64 |
|
|
def __iter__(self): return self
|
65 |
|
|
|
66 |
|
|
def next(self):
|
67 |
|
|
entry = self.iter_.next()
|
68 |
|
|
if self.check_func(entry): return entry
|
69 |
|
|
else: raise ConstraintError(self.check_func, entry)
|
70 |
|
|
|
71 |
1008
|
aaronmk
|
#### Lists
|
72 |
|
|
|
73 |
|
|
def list_get(list_, idx, default=None):
|
74 |
|
|
try: return list_[idx]
|
75 |
|
|
except IndexError: return default
|
76 |
|
|
|
77 |
1012
|
aaronmk
|
def list_eq_is(list0, list1):
|
78 |
|
|
'''Compares two lists using is'''
|
79 |
|
|
if len(list0) != len(list1): return False
|
80 |
|
|
for i in xrange(len(list0)):
|
81 |
|
|
if list0[i] is not list1[i]: return False
|
82 |
|
|
return True
|
83 |
|
|
|
84 |
791
|
aaronmk
|
#### Dicts
|
85 |
|
|
|
86 |
330
|
aaronmk
|
def rename_key(dict_, orig, new): dict_[new] = dict_.pop(orig)
|
87 |
466
|
aaronmk
|
|
88 |
467
|
aaronmk
|
def dict_subset(dict_, keys):
|
89 |
|
|
subset = dict()
|
90 |
|
|
for key in keys:
|
91 |
|
|
try: subset[key] = dict_[key]
|
92 |
|
|
except KeyError: pass
|
93 |
|
|
return subset
|
94 |
1068
|
aaronmk
|
|
95 |
|
|
class DefaultDict(collections.defaultdict):
|
96 |
|
|
def __init__(self, dict_, default=None):
|
97 |
|
|
collections.defaultdict.__init__(self, lambda: default, dict_)
|
98 |
|
|
|
99 |
|
|
def dict_subset_right_join(dict_, keys):
|
100 |
|
|
'''Gets a subset of a dict, using None for subset keys that don't exist'''
|
101 |
|
|
return dict_subset(DefaultDict(dict_), keys)
|