-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathobserver.py
More file actions
115 lines (93 loc) · 3.38 KB
/
observer.py
File metadata and controls
115 lines (93 loc) · 3.38 KB
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
# PyAlgoTrade
#
# Copyright 2011-2015 Gabriel Martin Becedillas Ruiz
#
# 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.
"""
.. moduleauthor:: Gabriel Martin Becedillas Ruiz <gabriel.becedillas@gmail.com>
"""
import abc
from pyalgotrade import dispatchprio
class Event(object):
def __init__(self):
self.__handlers = []
self.__toSubscribe = []
self.__toUnsubscribe = []
self.__emitting = False
def __applyChanges(self):
if len(self.__toSubscribe):
for handler in self.__toSubscribe:
if handler not in self.__handlers:
self.__handlers.append(handler)
self.__toSubscribe = []
if len(self.__toUnsubscribe):
for handler in self.__toUnsubscribe:
self.__handlers.remove(handler)
self.__toUnsubscribe = []
def subscribe(self, handler):
if self.__emitting:
self.__toSubscribe.append(handler)
elif handler not in self.__handlers:
self.__handlers.append(handler)
def unsubscribe(self, handler):
if self.__emitting:
self.__toUnsubscribe.append(handler)
else:
self.__handlers.remove(handler)
def emit(self, *args, **kwargs):
try:
self.__emitting = True
for handler in self.__handlers:
handler(*args, **kwargs)
finally:
self.__emitting = False
self.__applyChanges()
class Subject(object):
__metaclass__ = abc.ABCMeta
def __init__(self):
self.__dispatchPrio = dispatchprio.LAST
# This may raise.
@abc.abstractmethod
def start(self):
pass
# This should not raise.
@abc.abstractmethod
def stop(self):
raise NotImplementedError()
# This should not raise.
@abc.abstractmethod
def join(self):
raise NotImplementedError()
# Return True if there are not more events to dispatch.
@abc.abstractmethod
def eof(self):
raise NotImplementedError()
# Dispatch events. If True is returned, it means that at least one event was dispatched.
@abc.abstractmethod
def dispatch(self):
raise NotImplementedError()
@abc.abstractmethod
def peekDateTime(self):
# Return the datetime for the next event.
# This is needed to properly synchronize non-realtime subjects.
# Return None since this is a realtime subject.
raise NotImplementedError()
def getDispatchPriority(self):
# Returns a priority used to sort subjects within the dispatch queue.
# The return value should never change once this subject is added to the dispatcher.
return self.__dispatchPrio
def setDispatchPriority(self, dispatchPrio):
self.__dispatchPrio = dispatchPrio
def onDispatcherRegistered(self, dispatcher):
# Called when the subject is registered with a dispatcher.
pass