-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitchcase.py
75 lines (68 loc) · 2.55 KB
/
switchcase.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
class NotMatchedError(Exception):
"""Raised if the reference value does not match the case condition, used in a switch"""
pass
class Matched(Exception):
"""Raised if the reference value DOES match the condition of a case, in a switch. (= """
pass
class _Case(object):
"""Helper decorator"""
def __init__(self, function, case=None):
self.function = function
self.case = case
def __call__(self, ref, *args):
if ref == self.case:
ref1 = self.function(ref, *args)
Matched.msg = ref1
raise Matched(ref1)
else:
raise NotMatchedError(ref)
def case(the_case):
def casee(function=None):
"""
Decorator, used to indicate a case inside a switch.
The user may pass any keyword argument in, as the reference value, but it cannot be a positional one.
Parameters:
?: The value, used to compare with the reference.
"""
if function:
return _Case(function, the_case)
else:
def wrapper(function):
return _Case(function, the_case)
return wrapper
return casee
@case
def _() -> None:
"""This function is used to set the @case decorator"""
return None
def copyEnable(switch, ref):
"""A copy of the enable method, used to call the default fallback case method in a switch."""
for thing in switch.__dict__:
#print("{} : {}".format(thing, switch.__dict__[thing]))
if isinstance(switch.__dict__[thing], _Case):
try:
switch.__dict__[thing](ref)
except NotMatchedError:
continue
except Matched:
return Matched.msg
def enable(switch: type, ref: any) -> object:
"""
Activate a switch class.
This allows the user to 'enter' the switch.
Parameters:
switch (class): A class, representing a switch.
ref (any): The value that the switch compares its cases to.
Returns:
ref: The reference, this value is returned to allow the reference to be altered from within a case, therefore creating a dynamic state machine, if encased within a loop.
"""
for thing in switch.__dict__:
#print("{} : {}".format(thing, switch.__dict__[thing]))
if isinstance(switch.__dict__[thing], _Case):
try:
switch.__dict__[thing](ref)
except NotMatchedError:
pass
except Matched:
return Matched.msg
copyEnable(switch, ref="__default__")