blob: 138d866a8a3d242fef8b23279ff30382c5db2c64 [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..
Simon Huntd5b96732016-07-08 13:22:27 -070037 // ========================== Helper Functions
38
39 function createHandlerMap() {
40 handlerMap = {
41 topo2AllInstances: t2fs,
42 topo2CurrentLayout: t2fs,
43 topo2CurrentRegion: t2fs,
Simon Hunt98189192016-07-29 19:02:27 -070044 topo2PeerRegions: t2fs,
Simon Hunt537bc762016-12-20 12:15:13 -080045 topo2StartDone: t2fs,
46
47 topo2UiModelEvent: t2fs
Simon Huntd5b96732016-07-08 13:22:27 -070048
49 // Add further event names / module references as needed
50 };
51 }
52
53 function wsOpen(host, url) {
54 $log.debug('topo2Event: WSopen - cluster node:', host, 'URL:', url);
55 // tell the server we are ready to receive topo events
56 wss.sendEvent('topo2Start');
57 }
58
59 // bind our event handlers to the web socket service, so that our
60 // callbacks get invoked for incoming events
61 function bindHandlers() {
62 wss.bindHandlers(handlerMap);
63 $log.debug('topo2 event handlers bound');
64 }
65
66 // tell the server we are ready to receive topology events
67 function start() {
68 // in case we fail over to a new server,
69 // listen for wsock-open events
70 openListener = wss.addOpenListener(wsOpen);
71 wss.sendEvent('topo2Start');
72 $log.debug('topo2 comms started');
73 }
74
75 // tell the server we no longer wish to receive topology events
76 function stop() {
77 wss.sendEvent('topo2Stop');
78 wss.unbindHandlers(handlerMap);
79 wss.removeOpenListener(openListener);
80 openListener = null;
81 $log.debug('topo2 comms stopped');
82 }
83
84 // ========================== Main Service Definition
85
86 angular.module('ovTopo2')
87 .factory('Topo2EventService',
88 ['$log', 'WebSocketService', 'Topo2ForceService',
89
90 function (_$log_, _wss_, _t2fs_) {
91 $log = _$log_;
92 wss = _wss_;
93 t2fs = _t2fs_;
94
95 // deferred creation of handler map, so module references are good
96 createHandlerMap();
97
98 return {
99 bindHandlers: bindHandlers,
100 start: start,
101 stop: stop
102 };
103 }]);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100104})();