-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyguice.py
155 lines (83 loc) · 2.53 KB
/
pyguice.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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from functools import wraps
_current_injection_configuration = None
def get_dependencies(function):
params = {}
annotations = function.__annotations__
configuration = get_configuration()
for name, ptype in annotations.items():
interface_impl = getattr(ptype, "binding", None)
if interface_impl:
params[name] = configuration.get(ptype)()
else:
params[name] = ptype()
return params
def inject(function): # functions
@wraps(function)
def newfunction():
params = get_dependencies(function)
return function(**params)
return newfunction
def Inject(method): # methods
@wraps(method)
def newmethod(self):
params = get_dependencies(method)
return method(self, **params)
return newmethod
def ImplementedBy(cls):
def inner(interface):
interface.binding = Binding()
interface.binding.add('default', cls)
return interface
return inner
class Binding:
def __init__(self):
self.conf = {}
def add(self, name, impl):
self.conf[name] = impl
def get(self, name):
return self.conf[name]
class Configuration:
def __init__(self, name='default'):
self.name = name
def bind(self, interface, impl):
if not hasattr(interface, "binding"):
interface.binding = Binding()
interface.binding.add(self.name, impl)
return self
def get(self, interface):
return interface.binding.get(self.name)
def deploy(self):
set_configuration(self)
def set_configuration(configuration):
global _current_injection_configuration
_current_injection_configuration = configuration
def get_configuration():
if not _current_injection_configuration:
return Configuration()
return _current_injection_configuration
def test():
class ImplHello:
def say_hello(self):
return "Hello World"
class MockHello:
def say_hello(self):
pass
@ImplementedBy(ImplHello)
class Hello:
def say_hello(self):
raise
class Test:
@Inject
def __init__(self, hello : Hello):
self.hello = hello
def run(self):
return self.hello.say_hello()
t = Test()
assert t.run() == "Hello World"
Configuration('test').bind(Hello, MockHello).deploy()
t = Test()
assert t.run() == None
if __name__ == "__main__":
test()