-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composite-eventbus.js
231 lines (193 loc) · 5 KB
/
composite-eventbus.js
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/**
* mock console object
*/
if (typeof getConsole != 'function') {
function getConsole() {
this.info = function() {};
this.warn = function() {};
this.error = function() {};
return this;
}
}
/** simple event bus for publishing/subcribing information */
var EventBus = (function() {
var self = this;
/** registered subscribers */
this.registrations = {};
/**
* subscribe to given topic.
*
* @param string
* topic/event name
*
* @param function
* callback - if no callback is given, subscription is not added
*/
this.subscribe = function(topic, callback) {
var _callback = callback;
if (topic.constructor.toString().indexOf("Array") != -1) {
for (idx in topic) {
self.subscribe(topic[idx], _callback);
}
}
// need callback
if (typeof callback !== 'function') {
return;
}
var topicData = this.getTopicData(topic);
var topic = topicData.topic;
var events = topicData.events;
getConsole().info(
"[eventbus] new subscribtion for topic '" + topic
+ ((events) ? ('->' + events + "'") : "'"));
// no topic? create a new one
if (!this.registrations[topic]) {
this.registrations[topic] = {
topic : topic,
subscribersForEvent : {},
subscribers : []
};
}
var registeredTopic = this.registrations[topic];
// subscribe to special event
if (events) {
var event;
for (idx in events) {
event = events[idx];
// subscribeForEvent
var sfe = registeredTopic.subscribersForEvent[event];
// event must be added
if (!sfe) {
sfe = registeredTopic.subscribersForEvent[event] = [];
}
// push callback to special event
sfe.push(callback);
}
} else {
registeredTopic.subscribers.push(callback);
}
};
/**
* splits topic data
*
* @param string
* topic name of topic to subscribe to. Could be 'composite',
* 'composite:event', 'composite:*', composite:event1,event2,...'
* @return object
*/
this.getTopicData = function(topic) {
var r = {
"topic" : topic,
"events" : undefined
};
var idxSeperator = topic.indexOf(":");
if (idxSeperator >= 0) {
r.events = [];
eventsToParse = topic.substr(idxSeperator + 1);
r.topic = topic.substr(0, idxSeperator);
var eventsToParse = eventsToParse.split(",");
var eventname;
for (idx in eventsToParse) {
eventname = jQuery.trim(eventsToParse[idx]);
if (eventname == '*') {
r.events = undefined;
break;
}
if (eventname.length == 0) {
continue;
}
r.events.push(eventname);
}
if (r.events != undefined && r.events.length == 0) {
r.events = undefined;
}
}
return r;
};
/**
* publish a message to topic
*
* @param string
* topic name
* @param object
* payload
*/
this.publish = function(topic, payload) {
var topicData = this.getTopicData(topic);
var topic = topicData.topic;
var events = topicData.events;
getConsole().info(
"[eventbus] new publishment on topic '" + topic
+ ((events) ? ('->' + events) : "") + "': ", payload);
// no subscribers
if (!this.registrations[topic]) {
getConsole().warn(
"[eventbus] no registrations for topic '" + topic + "'");
return;
}
// notify special event listeners
if (events != undefined) {
var eventname;
for (idx in events) {
eventname = events[idx];
if (this.registrations[topic].subscribersForEvent[eventname]) {
for (idx in this.registrations[topic].subscribersForEvent[eventname]) {
this.registrations[topic].subscribersForEvent[eventname][idx]
(payload, topic, eventname);
}
}
}
}
// notify all subscribers to this topic
for (idx in this.registrations[topic].subscribers) {
this.registrations[topic].subscribers[idx](payload, topic, events);
}
};
return this;
})();
/**
* composite manager which controls all components in this application
*/
var CompositeManager = (function() {
var self = this;
this.components = {};
/**
* register a new component
*
* @param string
* name of component
* @param object
* instance of component
* @return object instance with injected event bus and composite manager
*/
this.register = function(name, clazz) {
this.components[name] = clazz;
clazz.eventBus = EventBus;
clazz.compositeManager = self;
return clazz;
};
/**
* find component by name
*
* @param string
* name
* @return object
*/
this.find = function(name) {
if (!self.components[name]) {
getConsole().error(
"[compositemanager] no component with name '" + name + "'");
return;
}
return self.components[name];
};
/**
* returns all registered components
*
* @return array
*/
this.all = function() {
return self.components;
};
return this;
})();