blob: 8bff4194aa5860dce411c6757f98f2d6dd14e116 [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 Hunt737c89f2015-01-28 12:23:19 -080031 var $log, ks, zs, gs, ms, ps, tes, tfs;
Simon Hunt6cc53692015-01-07 11:33:45 -080032
33 // DOM elements
Simon Hunt737c89f2015-01-28 12:23:19 -080034 var ovtopo, svg, defs, zoomLayer, mapG, forceG;
Simon Hunt6cc53692015-01-07 11:33:45 -080035
36 // Internal state
Simon Huntfd1231a2015-01-26 22:14:51 -080037 var zoomer, evDispatcher;
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
Simon Hunt737c89f2015-01-28 12:23:19 -080089 mapG.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 ];
Simon Hunt737c89f2015-01-28 12:23:19 -0800115 mapG.selectAll('circle')
Simon Hunt426bd862015-01-14 16:48:41 -0800116 .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() {
Simon Hunt737c89f2015-01-28 12:23:19 -0800126 mapG = zoomLayer.append('g').attr('id', 'topo-map');
Simon Hunt0541fb82015-01-14 18:59:57 -0800127 //ms.loadMapInto(map, '*continental_us', {mapFillScale:0.5});
Simon Hunt737c89f2015-01-28 12:23:19 -0800128 ms.loadMapInto(mapG, '*continental_us');
Simon Hunt0541fb82015-01-14 18:59:57 -0800129 //showCallibrationPoints();
130 }
131
Simon Hunt737c89f2015-01-28 12:23:19 -0800132 // --- Force Layout --------------------------------------------------
133
134 function setUpForce() {
135 forceG = zoomLayer.append('g').attr('id', 'topo-force');
136 tfs.initForce(forceG);
137 }
138
Simon Hunt1e4a0012015-01-21 11:36:08 -0800139
Simon Huntcacce342015-01-07 16:13:05 -0800140 // --- Controller Definition -----------------------------------------
141
Simon Hunt6cc53692015-01-07 11:33:45 -0800142 angular.module('ovTopo', moduleDependencies)
143
144 .controller('OvTopoCtrl', [
Simon Hunt54442fa2015-01-26 14:17:38 -0800145 '$scope', '$log', '$location', '$timeout',
Simon Hunt426bd862015-01-14 16:48:41 -0800146 'KeyService', 'ZoomService', 'GlyphService', 'MapService',
Simon Hunt737c89f2015-01-28 12:23:19 -0800147 'PanelService', 'TopoEventService', 'TopoForceService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800148
Simon Hunt54442fa2015-01-26 14:17:38 -0800149 function ($scope, _$log_, $loc, $timeout,
Simon Hunt737c89f2015-01-28 12:23:19 -0800150 _ks_, _zs_, _gs_, _ms_, _ps_, _tes_, _tfs_) {
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 Hunt54442fa2015-01-26 14:17:38 -0800157 ps = _ps_;
Simon Huntbb596362015-01-26 21:27:42 -0800158 tes = _tes_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800159 tfs = _tfs_;
Simon Huntef31fb22014-12-19 13:16:44 -0800160
Simon Hunt426bd862015-01-14 16:48:41 -0800161 self.notifyResize = function () {
Simon Hunt0541fb82015-01-14 18:59:57 -0800162 svgResized(svg.style('width'), svg.style('height'));
Simon Hunt426bd862015-01-14 16:48:41 -0800163 };
Simon Huntef31fb22014-12-19 13:16:44 -0800164
Simon Hunt54442fa2015-01-26 14:17:38 -0800165 // Cleanup on destroyed scope..
Simon Hunt584122a2015-01-21 15:32:40 -0800166 $scope.$on('$destroy', function () {
167 $log.log('OvTopoCtrl is saying Buh-Bye!');
Simon Huntfd1231a2015-01-26 22:14:51 -0800168 tes.closeSock();
Simon Hunt54442fa2015-01-26 14:17:38 -0800169 ps.destroyPanel('topo-p-summary');
Simon Hunt584122a2015-01-21 15:32:40 -0800170 });
171
Simon Huntcacce342015-01-07 16:13:05 -0800172 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800173 ovtopo = d3.select('#ov-topo');
174 svg = ovtopo.select('svg');
175
Simon Huntfd1231a2015-01-26 22:14:51 -0800176 // bind to topo event dispatcher..
177 evDispatcher = tes.bindDispatcher('TODO: topo-DOM-elements-here');
Simon Huntbb596362015-01-26 21:27:42 -0800178
Simon Hunt6cc53692015-01-07 11:33:45 -0800179 setUpKeys();
180 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800181 setUpZoom();
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800182 setUpMap();
Simon Hunt737c89f2015-01-28 12:23:19 -0800183 setUpForce();
Simon Huntfd1231a2015-01-26 22:14:51 -0800184
185 // open up a connection to the server...
186 tes.openSock();
Simon Hunt6cc53692015-01-07 11:33:45 -0800187
Simon Hunt54442fa2015-01-26 14:17:38 -0800188 // TODO: remove this temporary code....
189 var p = ps.createPanel('topo-p-summary');
190 p.append('h1').text('Hello World');
191 p.show();
192 $timeout(function () { p.hide(); }, 2000);
193
Simon Hunt6cc53692015-01-07 11:33:45 -0800194 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800195 }]);
196}());