blob: 2d13a5cf7116ebe8cf42398e317dfbf4bdc34163 [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22:27 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Topology Event Module.
19
20 Defines the conduit between the client and the server:
21 - provides a clean API for sending events to the server
22 - dispatches incoming events from the server to the appropriate sub-module
23
24 */
25
26(function () {
27 'use strict';
28
29 // injected refs
30 var $log, wss, t2fs;
31
32 // internal state
33 var handlerMap,
34 openListener;
35
36 // TODO: only add heartbeat timer etc. if we really need to be doing that..
37
38 // ========================== Helper Functions
39
40 function createHandlerMap() {
41 handlerMap = {
42 topo2AllInstances: t2fs,
43 topo2CurrentLayout: t2fs,
44 topo2CurrentRegion: t2fs,
Simon Hunt98189192016-07-29 19:02:27 -070045 topo2PeerRegions: t2fs,
Simon Huntd5b96732016-07-08 13:22:27 -070046 topo2StartDone: t2fs
47
48 // Add further event names / module references as needed
49 };
50 }
51
52 function wsOpen(host, url) {
53 $log.debug('topo2Event: WSopen - cluster node:', host, 'URL:', url);
54 // tell the server we are ready to receive topo events
55 wss.sendEvent('topo2Start');
56 }
57
58 // bind our event handlers to the web socket service, so that our
59 // callbacks get invoked for incoming events
60 function bindHandlers() {
61 wss.bindHandlers(handlerMap);
62 $log.debug('topo2 event handlers bound');
63 }
64
65 // tell the server we are ready to receive topology events
66 function start() {
67 // in case we fail over to a new server,
68 // listen for wsock-open events
69 openListener = wss.addOpenListener(wsOpen);
70 wss.sendEvent('topo2Start');
71 $log.debug('topo2 comms started');
72 }
73
74 // tell the server we no longer wish to receive topology events
75 function stop() {
76 wss.sendEvent('topo2Stop');
77 wss.unbindHandlers(handlerMap);
78 wss.removeOpenListener(openListener);
79 openListener = null;
80 $log.debug('topo2 comms stopped');
81 }
82
83 // ========================== Main Service Definition
84
85 angular.module('ovTopo2')
86 .factory('Topo2EventService',
87 ['$log', 'WebSocketService', 'Topo2ForceService',
88
89 function (_$log_, _wss_, _t2fs_) {
90 $log = _$log_;
91 wss = _wss_;
92 t2fs = _t2fs_;
93
94 // deferred creation of handler map, so module references are good
95 createHandlerMap();
96
97 return {
98 bindHandlers: bindHandlers,
99 start: start,
100 stop: stop
101 };
102 }]);
103}());