X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=js%2Ftopology%2Ftopology.js;h=45040e107c1709d4bfd6353d5f94950520fc3a07;hb=ea20f018c05bcc4e56b2dfa3eee30af0d6ffabf3;hp=eb1d8d1e80aff94b9c842a811d9481190a8e9836;hpb=1f2664ee622668b8d63ea5aba76e574d56677c20;p=VSoRC%2F.git diff --git a/js/topology/topology.js b/js/topology/topology.js index eb1d8d1..45040e1 100644 --- a/js/topology/topology.js +++ b/js/topology/topology.js @@ -48,6 +48,7 @@ $(function () { var links = []; var lst = top.switches; + for (var i = 0; i < lst.length; i++) { nodes.push({ "id": lst[i].dpid, "type": "switch" }); } @@ -73,8 +74,9 @@ $(function () { } lst = top.hosts; + console.log(top.hosts); for (var i = 0; i < lst.length; i++) { - nodes.push({ "id": lst[i].mac, "type": "host" }); + nodes.push({ "id": lst[i].mac, "type": "host","ip": lst[i].ipv4}); links.push({ "source": lst[i].port.dpid, "target": lst[i].mac, "value": 2, "port": { "source": lst[i].port.port_no, "target": 0 } @@ -138,11 +140,11 @@ $(function () { node.append("image") .attr("xlink:href", function (d) { if (d.type === "switch") { - return "/home/img/switch.svg" + return "img/switch.png" } else if (d.type === "cloud") { - return "/home/img/cloud.svg" + return "img/cloud.svg" } else { - return "/home/img/pc.svg" + return "img/pc.svg" } }) .on("mouseover", handleMouseOver) @@ -152,6 +154,12 @@ $(function () { .attr("class", "label") .attr("dy", size + 14) .text(function (d) { return d.id; }); + + + node.append("text") + .attr("class", "label") + .attr("dy", size + 26) + .text(function (d) { if (d.type === "host")return (d.ip); }); // .text(function (d) { return d.id.replace(/^0+/, ''); }); @@ -275,7 +283,7 @@ $(function () { function getTopology() { tabObj.buildTabs("#main", ["Graph", "Tables"], "Nothing to show!"); - var $svg = $(''); + var $svg = $(''); var $data = $('
'); tabObj.buildContent('Graph', $svg); tabObj.buildContent('Tables', $data); @@ -283,19 +291,19 @@ $(function () { - +// La funcion jsonget fue creada para sustituir el metodo json de D3 function jsonget() { - const url = "http://"+location.hostname+":8080/topology" + let xhr = new XMLHttpRequest(); - xhr.open('GET', url , true); + xhr.open('GET', "/gettopo" , true); //console.log(xhr); //para ver en la consola xhr.onload = function() { if (xhr.status == 200) { //can use this.status instead //console.log(xhr.responseText);// para ver en la consola - data = JSON.parse(xhr.responseText) - listTopology(data) - plotGraph(toGraph(data)); + + listTopology(JSON.parse(xhr.responseText)); + plotGraph(toGraph(JSON.parse(xhr.responseText))); } } xhr.send();