blob: 4cdacd79bd384b6e12ee978aa28ec5e90bba8e81 [file] [log] [blame]
Paul Greyson740bdaf2013-03-18 16:10:48 -07001/*global d3*/
2
3function createTopologyView() {
Paul Greyson952ccb62013-03-18 22:22:08 -07004 return d3.select('#svg-container').append('svg:svg').attr('viewBox', '0 0 1000 1000').attr('preserveAspectRatio', 'none').
5 attr('id', 'viewbox').append('svg:g').attr('transform', 'translate(500 500)');
Paul Greyson740bdaf2013-03-18 16:10:48 -07006}
7
Paul Greyson740bdaf2013-03-18 16:10:48 -07008function drawHeader(model) {
9 d3.select('#lastUpdate').text(model.timestamp);
Paul Greyson952ccb62013-03-18 22:22:08 -070010 d3.select('#activeSwitches').text(model.edgeSwitches.length + model.aggregationSwitches.length + model.coreSwitches.length);
11 d3.select('#activeFlows').text(model.flows.length);
12}
13
14function toRadians (angle) {
15 return angle * (Math.PI / 180);
Paul Greyson740bdaf2013-03-18 16:10:48 -070016}
17
18function drawTopology(svg, model) {
19
20 var rings = [{
21 radius: 3,
Paul Greyson952ccb62013-03-18 22:22:08 -070022 width: 8,
23 switches: model.edgeSwitches,
24 className: 'edge'
Paul Greyson740bdaf2013-03-18 16:10:48 -070025 }, {
26 radius: 1.5,
27 width: 32,
Paul Greyson952ccb62013-03-18 22:22:08 -070028 switches: model.aggregationSwitches,
29 className: 'aggregation'
Paul Greyson740bdaf2013-03-18 16:10:48 -070030 }, {
31 radius: 1,
32 width: 32,
Paul Greyson952ccb62013-03-18 22:22:08 -070033 switches: model.coreSwitches,
34 className: 'core'
Paul Greyson740bdaf2013-03-18 16:10:48 -070035 }];
36
37 function ringEnter(data, i) {
38 if (!data.switches.length) {
39 return;
40 }
41
42 var k = 360 / data.switches.length;
43
44 d3.select(this).selectAll("g")
45 .data(d3.range(data.switches.length).map(function() {
46 return data;
47 }))
48 .enter().append("svg:g")
49 .attr("class", "square")
50 .attr("transform", function(_, i) {
Paul Greyson952ccb62013-03-18 22:22:08 -070051 return "rotate(" + i*k + ")translate(" + data.radius*150 + ")rotate(" + (-i*k) + ")";
52 }
53 )
54 .append("svg:circle")
55 .attr('class', data.className)
56 .attr("transform", function(_, i) {
57 var m = document.querySelector('svg').getTransformToElement().inverse();
58 return "matrix( " + m.a + " " + m.b + " " + m.c + " " + m.d + " " + m.e + " " + m.f + " )";
59 })
Paul Greyson740bdaf2013-03-18 16:10:48 -070060 .attr("x", -data.width / 2)
61 .attr("y", -data.width / 2)
Paul Greyson952ccb62013-03-18 22:22:08 -070062 // .attr("width", data.width)
63 // .attr("height", data.width)
64 .attr("r", data.width)
65
Paul Greyson740bdaf2013-03-18 16:10:48 -070066 }
67
68 var ring = svg.selectAll("g")
69 .data(rings)
70 .enter().append("svg:g")
71 .attr("class", "ring")
72 .each(ringEnter);
73}
74
75function sync(svg) {
Paul Greyson6f86d1e2013-03-18 14:40:39 -070076 updateModel(function (model) {
Paul Greyson740bdaf2013-03-18 16:10:48 -070077
78 drawHeader(model);
79 drawTopology(svg, model);
80
81 // do it again in 1s
82 setTimeout(function () {
83 sync(svg)
84 }, 1000);
Paul Greyson6f86d1e2013-03-18 14:40:39 -070085 });
86}
Paul Greyson740bdaf2013-03-18 16:10:48 -070087
88sync(createTopologyView());