This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleEvent.py
81 lines (66 loc) · 2.47 KB
/
SimpleEvent.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
# Copyright 2011 Seppo Yli-Olli
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import dbc
import types
class EventFactory:
__metaclass__ = dbc.DBC
def _maxCount__invar(self):
assert isinstance(self._maxCount, types.IntType)
def _recycledObjects__invar(self):
assert isinstance(self._recycledObjects, types.ListType)
def __init__(self):
self._maxCount = 10
self._recycledObjects = []
def recycleEvent(self, event):
if len(self._recycledObjects) < self._maxCount:
event.__recycle__()
self._recycledObjects.append(event)
def recycleEvent__pre(self, event):
assert isinstance(event, Event)
def recycleEvent__post(self, rval):
assert rval is None
def createEvent(self, function, args=None):
if len(self._recycledObjects):
event = self._recycledObjects.pop()
event.__init__(function, args)
return event
else:
return Event(function, args)
def createEvent__pre(self, function, args):
assert isinstance(function, types.LambdaType)
def createEvent__post(self, rval):
assert isinstance(rval, Event)
def setMaxCount(self, size):
self._maxCount = size
while len(self._recycledObjects) < self._maxCount:
self._recycledObjects.pop()
def setMaxCount__pre(self, size):
assert size >= 0
def setMaxCount__post(self, rval):
assert rval is None
class Event:
def __init__(self, function, args=None):
self._function = function
self._args = args
self._loop = None
def execute(self):
if self._loop:
if self._args:
return self._function(self._args)
else:
return self._function(self._loop)
def __recycle__(self):
self._function = None
self._args = None
self._loop = None