blob: 802ecc7580cac66cd2cefa596648f5426a1b8819 [file] [log] [blame]
Simon Huntef31fb22014-12-19 13:16:44 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Huntef31fb22014-12-19 13:16:44 -08003 *
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 View Module
Simon Huntef31fb22014-12-19 13:16:44 -080019 */
20
21(function () {
22 'use strict';
Simon Hunt6cc53692015-01-07 11:33:45 -080023
24 var moduleDependencies = [
25 'onosUtil',
Simon Hunt1e4a0012015-01-21 11:36:08 -080026 'onosSvg',
27 'onosRemote'
Simon Hunt6cc53692015-01-07 11:33:45 -080028 ];
29
30 // references to injected services etc.
Simon Hunt1e4a0012015-01-21 11:36:08 -080031 var $log, ks, zs, gs, ms, wss;
Simon Hunt6cc53692015-01-07 11:33:45 -080032
33 // DOM elements
Simon Hunt426bd862015-01-14 16:48:41 -080034 var ovtopo, svg, defs, zoomLayer, map;
Simon Hunt6cc53692015-01-07 11:33:45 -080035
36 // Internal state
Simon Huntcacce342015-01-07 16:13:05 -080037 var zoomer;
Simon Hunt6cc53692015-01-07 11:33:45 -080038
39 // Note: "exported" state should be properties on 'self' variable
40
Simon Huntcacce342015-01-07 16:13:05 -080041 // --- Short Cut Keys ------------------------------------------------
42
Simon Hunt6cc53692015-01-07 11:33:45 -080043 var keyBindings = {
Simon Huntcacce342015-01-07 16:13:05 -080044 W: [logWarning, '(temp) log a warning'],
45 E: [logError, '(temp) log an error'],
46 R: [resetZoom, 'Reset pan / zoom']
Simon Hunt6cc53692015-01-07 11:33:45 -080047 };
48
49 // -----------------
50 // these functions are necessarily temporary examples....
51 function logWarning() {
52 $log.warn('You have been warned!');
53 }
54 function logError() {
55 $log.error('You are erroneous!');
56 }
57 // -----------------
58
Simon Huntcacce342015-01-07 16:13:05 -080059 function resetZoom() {
60 zoomer.reset();
61 }
62
Simon Hunt6cc53692015-01-07 11:33:45 -080063 function setUpKeys() {
64 ks.keyBindings(keyBindings);
65 }
66
Simon Huntcacce342015-01-07 16:13:05 -080067
68 // --- Glyphs, Icons, and the like -----------------------------------
69
Simon Hunt6cc53692015-01-07 11:33:45 -080070 function setUpDefs() {
Simon Huntcacce342015-01-07 16:13:05 -080071 defs = svg.append('defs');
Simon Hunt6cc53692015-01-07 11:33:45 -080072 gs.loadDefs(defs);
73 }
74
75
Simon Huntcacce342015-01-07 16:13:05 -080076 // --- Pan and Zoom --------------------------------------------------
77
78 // zoom enabled predicate. ev is a D3 source event.
79 function zoomEnabled(ev) {
80 return (ev.metaKey || ev.altKey);
81 }
82
83 function zoomCallback() {
84 var tr = zoomer.translate(),
85 sc = zoomer.scale();
86 $log.log('ZOOM: translate = ' + tr + ', scale = ' + sc);
87
Simon Hunt0541fb82015-01-14 18:59:57 -080088 // keep the map lines constant width while zooming
89 map.style('stroke-width', (2.0 / sc) + 'px');
Simon Huntcacce342015-01-07 16:13:05 -080090 }
91
92 function setUpZoom() {
Simon Hunta7b6a6b2015-01-13 19:53:09 -080093 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Simon Huntcacce342015-01-07 16:13:05 -080094 zoomer = zs.createZoomer({
95 svg: svg,
96 zoomLayer: zoomLayer,
97 zoomEnabled: zoomEnabled,
98 zoomCallback: zoomCallback
99 });
100 }
101
102
Simon Hunt0541fb82015-01-14 18:59:57 -0800103 // callback invoked when the SVG view has been resized..
104 function svgResized(w, h) {
105 // not used now, but may be required later...
106 }
107
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800108 // --- Background Map ------------------------------------------------
109
Simon Hunt0541fb82015-01-14 18:59:57 -0800110 function showCallibrationPoints() {
Simon Hunt426bd862015-01-14 16:48:41 -0800111 // temp code for calibration
112 var points = [
113 [0, 0], [0, 1000], [1000, 0], [1000, 1000]
114 ];
115 map.selectAll('circle')
116 .data(points)
117 .enter()
118 .append('circle')
119 .attr('cx', function (d) { return d[0]; })
120 .attr('cy', function (d) { return d[1]; })
121 .attr('r', 5)
122 .style('fill', 'red');
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800123 }
124
Simon Hunt0541fb82015-01-14 18:59:57 -0800125 function setUpMap() {
126 map = zoomLayer.append('g').attr('id', 'topo-map');
127 //ms.loadMapInto(map, '*continental_us', {mapFillScale:0.5});
128 ms.loadMapInto(map, '*continental_us');
129 //showCallibrationPoints();
130 }
131
Simon Hunt1e4a0012015-01-21 11:36:08 -0800132 // --- Web Socket Connection -----------------------------------------
133
134 function setUpWebSocket() {
135 var wsHandle = wss.createWebSocket('topology');
136 $log.log('created web socket', wsHandle);
137 // TODO: complete implementation
138
139 }
140
Simon Huntcacce342015-01-07 16:13:05 -0800141 // --- Controller Definition -----------------------------------------
142
Simon Hunt6cc53692015-01-07 11:33:45 -0800143 angular.module('ovTopo', moduleDependencies)
144
145 .controller('OvTopoCtrl', [
Simon Hunt0541fb82015-01-14 18:59:57 -0800146 '$log',
Simon Hunt426bd862015-01-14 16:48:41 -0800147 'KeyService', 'ZoomService', 'GlyphService', 'MapService',
Simon Hunt1e4a0012015-01-21 11:36:08 -0800148 'WebSocketService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800149
Simon Hunt1e4a0012015-01-21 11:36:08 -0800150 function (_$log_, _ks_, _zs_, _gs_, _ms_, _wss_) {
Simon Hunt6cc53692015-01-07 11:33:45 -0800151 var self = this;
Simon Hunt6cc53692015-01-07 11:33:45 -0800152 $log = _$log_;
153 ks = _ks_;
Simon Huntcacce342015-01-07 16:13:05 -0800154 zs = _zs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800155 gs = _gs_;
Simon Hunt1e8eff42015-01-08 17:19:02 -0800156 ms = _ms_;
Simon Hunt1e4a0012015-01-21 11:36:08 -0800157 wss = _wss_;
Simon Huntef31fb22014-12-19 13:16:44 -0800158
Simon Hunt426bd862015-01-14 16:48:41 -0800159 self.notifyResize = function () {
Simon Hunt0541fb82015-01-14 18:59:57 -0800160 svgResized(svg.style('width'), svg.style('height'));
Simon Hunt426bd862015-01-14 16:48:41 -0800161 };
Simon Huntef31fb22014-12-19 13:16:44 -0800162
Simon Huntcacce342015-01-07 16:13:05 -0800163 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800164 ovtopo = d3.select('#ov-topo');
165 svg = ovtopo.select('svg');
166
Simon Hunt6cc53692015-01-07 11:33:45 -0800167 setUpKeys();
168 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800169 setUpZoom();
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800170 setUpMap();
Simon Hunt1e4a0012015-01-21 11:36:08 -0800171 setUpWebSocket();
Simon Hunt6cc53692015-01-07 11:33:45 -0800172
173 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800174 }]);
175}());