FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/adapter.py at master · Problematic/python-patterns · GitHub
Problematic
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
adapter.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (51 loc) · 1.53 KB
Breadcrumbs
python-patterns
/
adapter.py
Copy path
File metadata and controls
65 lines (51 loc) · 1.53 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# http://ginstrom.com/scribbles/2008/11/06/generic-adapter-class-in-python/
import
os
class
Dog
(
object
):
def
__init__
(
self
):
self
.
name
=
"Dog"
def
bark
(
self
):
return
"woof!"
class
Cat
(
object
):
def
__init__
(
self
):
self
.
name
=
"Cat"
def
meow
(
self
):
return
"meow!"
class
Human
(
object
):
def
__init__
(
self
):
self
.
name
=
"Human"
def
speak
(
self
):
return
"'hello'"
class
Car
(
object
):
def
__init__
(
self
):
self
.
name
=
"Car"
def
make_noise
(
self
,
octane_level
):
return
"vroom%s"
%
(
"!"
*
octane_level
)
class
Adapter
(
object
):
"""
Adapts an object by replacing methods.
Usage:
dog = Dog
dog = Adapter(dog, dict(make_noise=dog.bark))
"""
def
__init__
(
self
,
obj
,
adapted_methods
):
"""We set the adapted methods in the object's dict"""
self
.
obj
=
obj
self
.
__dict__
.
update
(
adapted_methods
)
def
__getattr__
(
self
,
attr
):
"""All non-adapted calls are passed to the object"""
return
getattr
(
self
.
obj
,
attr
)
def
main
():
objects
=
[]
dog
=
Dog
()
objects
.
append
(
Adapter
(
dog
,
dict
(
make_noise
=
dog
.
bark
)))
cat
=
Cat
()
objects
.
append
(
Adapter
(
cat
,
dict
(
make_noise
=
cat
.
meow
)))
human
=
Human
()
objects
.
append
(
Adapter
(
human
,
dict
(
make_noise
=
human
.
speak
)))
car
=
Car
()
car_noise
=
lambda
:
car
.
make_noise
(
3
)
objects
.
append
(
Adapter
(
car
,
dict
(
make_noise
=
car_noise
)))
for
obj
in
objects
:
print
(
"A"
,
obj
.
name
,
"goes"
,
obj
.
make_noise
())
if
__name__
==
"__main__"
:
main
()
Back
|
FazBrowse Home
|
New Git URL