GUI -- Added updateLink and removeLink event handling.

Change-Id: Iae2d1f47bd4849e8ac80bebe721a2aa0ad5f4964
This commit is contained in:
Simon Hunt 2014-11-10 20:14:37 -08:00
parent 29a6a78310
commit 3f03d4a14e
9 changed files with 205 additions and 96 deletions

View File

@ -0,0 +1,15 @@
{
"event": "updateLink",
"payload": {
"id": "of:0000ffffffff0003/21-of:0000ffffffff0008/20",
"type": "direct",
"linkWidth": 6,
"src": "of:0000ffffffff0003",
"srcPort": "21",
"dst": "of:0000ffffffff0008",
"dstPort": "20",
"props" : {
"BW": "512 Gb"
}
}
}

View File

@ -0,0 +1,15 @@
{
"event": "updateLink",
"payload": {
"id": "of:0000ffffffff0003/21-of:0000ffffffff0008/20",
"type": "direct",
"linkWidth": 2,
"src": "of:0000ffffffff0003",
"srcPort": "21",
"dst": "of:0000ffffffff0008",
"dstPort": "20",
"props" : {
"BW": "80 Gb"
}
}
}

View File

@ -0,0 +1,15 @@
{
"event": "removeLink",
"payload": {
"id": "of:0000ffffffff0003/21-of:0000ffffffff0008/20",
"type": "direct",
"linkWidth": 2,
"src": "of:0000ffffffff0003",
"srcPort": "21",
"dst": "of:0000ffffffff0008",
"dstPort": "20",
"props" : {
"BW": "80 Gb"
}
}
}

View File

@ -1,5 +1,5 @@
{ {
"event": "doUiThing", "event": "noop",
"payload": { "payload": {
"id": "xyyzy" "id": "xyyzy"
} }

View File

@ -11,8 +11,8 @@
"" ""
], ],
"metaUi": { "metaUi": {
"x": 400, "x": 520,
"y": 280 "y": 350
} }
} }
} }

View File

@ -11,8 +11,8 @@
"" ""
], ],
"metaUi": { "metaUi": {
"x": 400, "x": 520,
"y": 280 "y": 350
} }
} }
} }

View File

@ -9,7 +9,7 @@
"dst": "of:0000ffffffff0008", "dst": "of:0000ffffffff0008",
"dstPort": "20", "dstPort": "20",
"props" : { "props" : {
"BW": "70 G" "BW": "70 Gb"
} }
} }
} }

View File

@ -10,13 +10,16 @@
"description": [ "description": [
"1. add device [8] (offline)", "1. add device [8] (offline)",
"2. add device [3] (offline)", "2. add device [3] (offline)",
"3. update device [8] (online)", "3. update device [8] (online, label3 change)",
"4. update device [3] (online)", "4. update device [3] (online, label3 change)",
"5. add link [3] --> [8]", "5. add link [3] --> [8]",
"6. add host (to [3])", "6. add host (to [3])",
"7. add host (to [8])", "7. add host (to [8])",
"8. update host[3] (IP now 10.0.0.13)", "8. update host[3] (IP now 10.0.0.13)",
"9. update host[8] (IP now 10.0.0.17)", "9. update host[8] (IP now 10.0.0.17)",
"10. update link (increase width, update props)",
"11. update link (reduce width, update props)",
"12. remove link",
"" ""
] ]
} }

View File

@ -260,36 +260,6 @@
bgImg.style('visibility', (vis === 'hidden') ? 'visible' : 'hidden'); bgImg.style('visibility', (vis === 'hidden') ? 'visible' : 'hidden');
} }
function updateDeviceLabel(d) {
var label = niceLabel(deviceLabel(d)),
node = d.el,
box;
node.select('text')
.text(label)
.style('opacity', 0)
.transition()
.style('opacity', 1);
box = adjustRectToFitText(node);
node.select('rect')
.transition()
.attr(box);
node.select('image')
.transition()
.attr('x', box.x + config.icons.xoff)
.attr('y', box.y + config.icons.yoff);
}
function updateHostLabel(d) {
var label = hostLabel(d),
host = d.el;
host.select('text').text(label);
}
function cycleLabels() { function cycleLabels() {
deviceLabelIndex = (deviceLabelIndex === network.deviceLabelCount - 1) deviceLabelIndex = (deviceLabelIndex === network.deviceLabelCount - 1)
? 0 : deviceLabelIndex + 1; ? 0 : deviceLabelIndex + 1;
@ -371,10 +341,10 @@
addLink: addLink, addLink: addLink,
addHost: addHost, addHost: addHost,
updateDevice: updateDevice, updateDevice: updateDevice,
updateLink: stillToImplement, updateLink: updateLink,
updateHost: updateHost, updateHost: updateHost,
removeDevice: stillToImplement, removeDevice: stillToImplement,
removeLink: stillToImplement, removeLink: removeLink,
removeHost: stillToImplement, removeHost: stillToImplement,
showPath: showPath showPath: showPath
}; };
@ -429,6 +399,18 @@
} }
} }
function updateLink(data) {
var link = data.payload,
id = link.id,
linkData = network.lookup[id];
if (linkData) {
$.extend(linkData, link);
updateLinkState(linkData);
} else {
logicError('updateLink lookup fail. ID = "' + id + '"');
}
}
function updateHost(data) { function updateHost(data) {
var host = data.payload, var host = data.payload,
id = host.id, id = host.id,
@ -441,6 +423,17 @@
} }
} }
function removeLink(data) {
var link = data.payload,
id = link.id,
linkData = network.lookup[id];
if (linkData) {
removeLinkElement(linkData);
} else {
logicError('removeLink lookup fail. ID = "' + id + '"');
}
}
function showPath(data) { function showPath(data) {
var links = data.payload.links, var links = data.payload.links,
s = [ data.event + "\n" + links.length ]; s = [ data.event + "\n" + links.length ];
@ -483,74 +476,81 @@
return 'translate(' + x + ',' + y + ')'; return 'translate(' + x + ',' + y + ')';
} }
function missMsg(what, id) {
return '\n[' + what + '] "' + id + '" missing ';
}
function linkEndPoints(srcId, dstId) {
var srcNode = network.lookup[srcId],
dstNode = network.lookup[dstId],
sMiss = !srcNode ? missMsg('src', srcId) : '',
dMiss = !dstNode ? missMsg('dst', dstId) : '';
if (sMiss || dMiss) {
logicError('Node(s) not on map for link:\n' + sMiss + dMiss);
return null;
}
return {
source: srcNode,
target: dstNode,
x1: srcNode.x,
y1: srcNode.y,
x2: dstNode.x,
y2: dstNode.y
};
}
function createHostLink(host) { function createHostLink(host) {
var src = host.id, var src = host.id,
dst = host.cp.device, dst = host.cp.device,
id = host.ingress, id = host.ingress,
srcNode = network.lookup[src], lnk = linkEndPoints(src, dst);
dstNode = network.lookup[dst],
lnk;
if (!dstNode) { if (!lnk) {
logicError('switch not on map for link\n\n' +
'src = ' + src + '\ndst = ' + dst);
return null; return null;
} }
// Compose link ... // Synthesize link ...
lnk = { $.extend(lnk, {
id: id, id: id,
source: srcNode,
target: dstNode,
class: 'link', class: 'link',
type: 'hostLink', type: 'hostLink',
svgClass: 'link hostLink', svgClass: 'link hostLink',
x1: srcNode.x, linkWidth: 1
y1: srcNode.y,
x2: dstNode.x,
y2: dstNode.y,
width: 1
}
return lnk;
}
function createLink(link) {
// start with the link object as is
var lnk = link,
type = link.type,
src = link.src,
dst = link.dst,
w = link.linkWidth,
srcNode = network.lookup[src],
dstNode = network.lookup[dst];
if (!(srcNode && dstNode)) {
logicError('nodes not on map for link\n\n' +
'src = ' + src + '\ndst = ' + dst);
return null;
}
// Augment as needed...
$.extend(lnk, {
source: srcNode,
target: dstNode,
class: 'link',
svgClass: type ? 'link ' + type : 'link',
x1: srcNode.x,
y1: srcNode.y,
x2: dstNode.x,
y2: dstNode.y,
width: w
}); });
return lnk; return lnk;
} }
function linkWidth(w) { function createLink(link) {
// w is number of links between nodes. Scale appropriately. var lnk = linkEndPoints(link.src, link.dst),
// TODO: use a d3.scale (linear, log, ... ?) type = link.type;
return w * 1.2;
if (!lnk) {
return null;
}
// merge in remaining data
$.extend(lnk, link, {
class: 'link',
svgClass: type ? 'link ' + type : 'link'
});
return lnk;
} }
var widthRatio = 1.4,
linkScale = d3.scale.linear()
.domain([1, 12])
.range([widthRatio, 12 * widthRatio])
.clamp(true);
function updateLinkWidth (d) {
// TODO: watch out for .showPath/.showTraffic classes
d.el.transition()
.duration(1000)
.attr('stroke-width', linkScale(d.linkWidth));
}
function updateLinks() { function updateLinks() {
link = linkG.selectAll('.link') link = linkG.selectAll('.link')
.data(network.links, function (d) { return d.id; }); .data(network.links, function (d) { return d.id; });
@ -572,7 +572,7 @@
}) })
.transition().duration(1000) .transition().duration(1000)
.attr({ .attr({
'stroke-width': function (d) { return linkWidth(d.width); }, 'stroke-width': function (d) { return linkScale(d.linkWidth); },
stroke: '#666' // TODO: remove explicit stroke, rather... stroke: '#666' // TODO: remove explicit stroke, rather...
}); });
@ -589,13 +589,20 @@
//link .foo() .bar() ... //link .foo() .bar() ...
// operate on exiting links: // operate on exiting links:
// TODO: figure out how to remove the node 'g' AND its children // TODO: better transition (longer as a dashed, grey line)
link.exit() link.exit()
.transition()
.duration(750)
.attr({ .attr({
opacity: 0 'stroke-dasharray': '3, 3'
}) })
.style('opacity', 0.4)
.transition()
.duration(2000)
.attr({
'stroke-dasharray': '3, 12'
})
.transition()
.duration(1000)
.style('opacity', 0.0)
.remove(); .remove();
} }
@ -650,7 +657,6 @@
node.y = y || network.view.height() / 2; node.y = y || network.view.height() / 2;
} }
function iconUrl(d) { function iconUrl(d) {
return 'img/' + d.type + '.png'; return 'img/' + d.type + '.png';
} }
@ -694,12 +700,48 @@
return (label && label.trim()) ? label : '.'; return (label && label.trim()) ? label : '.';
} }
function updateDeviceLabel(d) {
var label = niceLabel(deviceLabel(d)),
node = d.el,
box;
node.select('text')
.text(label)
.style('opacity', 0)
.transition()
.style('opacity', 1);
box = adjustRectToFitText(node);
node.select('rect')
.transition()
.attr(box);
node.select('image')
.transition()
.attr('x', box.x + config.icons.xoff)
.attr('y', box.y + config.icons.yoff);
}
function updateHostLabel(d) {
var label = hostLabel(d),
host = d.el;
host.select('text').text(label);
}
function updateDeviceState(nodeData) { function updateDeviceState(nodeData) {
nodeData.el.classed('online', nodeData.online); nodeData.el.classed('online', nodeData.online);
updateDeviceLabel(nodeData); updateDeviceLabel(nodeData);
// TODO: review what else might need to be updated // TODO: review what else might need to be updated
} }
function updateLinkState(linkData) {
updateLinkWidth(linkData);
// TODO: review what else might need to be updated
// update label, if showing
}
function updateHostState(hostData) { function updateHostState(hostData) {
updateHostLabel(hostData); updateHostLabel(hostData);
// TODO: review what else might need to be updated // TODO: review what else might need to be updated
@ -826,6 +868,25 @@
.remove(); .remove();
} }
function find(id, array) {
for (var idx = 0, n = array.length; idx < n; idx++) {
if (array[idx].id === id) {
return idx;
}
}
return -1;
}
function removeLinkElement(linkData) {
// remove from lookup cache
delete network.lookup[linkData.id];
// remove from links array
var idx = find(linkData.id, network.links);
network.links.splice(linkData.index, 1);
// remove from SVG
updateLinks();
}
function tick() { function tick() {
node.attr({ node.attr({