forked from amolenaar/roles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
75 lines (51 loc) · 1.8 KB
/
example.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
"""
Classic roles example, using the roles module.
Based on the DCI PoC of David Byers and Serge Beaumont
(see: http://groups.google.com/group/object-composition/files)
"""
from roles import RoleType, clone
from roles.context import context
class Account(object):
def __init__(self, amount):
print "Creating a new account with balance of " + str(amount)
self.balance = amount
super(Account, self).__init__()
def withdraw(self, amount):
print "Withdraw " + str(amount) + " from " + str(self)
self.balance -= amount
def deposit(self, amount):
print "Deposit " + str(amount) + " in " + str(self)
self.balance += amount
class MoneySource(object):
__metaclass__ = RoleType
def transfer(self, amount):
if self.balance >= amount:
self.withdraw(amount)
context.sink.receive(amount)
class MoneySink(object):
__metaclass__ = RoleType
def receive(self, amount):
self.deposit(amount)
class TransferMoney(object):
def __init__(self, source, sink):
self.source = source
self.sink = sink
self.transfer_context = context(self,
source=MoneySource,
sink=MoneySink)
def perform_transfer(self, amount):
with self.transfer_context as ctx:
ctx.source.transfer(amount)
print "We can still access the original attributes", self.sink.balance
print "Is it still an Account?", isinstance(self.sink, Account)
assert isinstance(self.sink, Account)
print "Object equality?", dst == self.sink
src = Account(1000)
dst = Account(0)
t = TransferMoney(src, dst)
t.perform_transfer(100)
print src, src.balance
assert src.balance == 900
print dst, dst.balance
assert dst.balance == 100
# vim:sw=4:et:ai