mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Gestion des boucles dans le graph et des doublons dans les liens
This commit is contained in:
parent
b2d57ec827
commit
47d4cee55a
2 changed files with 16 additions and 13 deletions
|
@ -1,8 +1,8 @@
|
||||||
{% block graph_dot %}
|
{% block graph_dot %}
|
||||||
digraph {
|
strict digraph {
|
||||||
graph [label="TOPOLOGIE DU RÉSEAU", labelloc=t, fontsize=40];
|
graph [label="TOPOLOGIE DU RÉSEAU", labelloc=t, fontsize=40];
|
||||||
node [fontname=Helvetica fontsize=8 shape=plaintext];
|
node [fontname=Helvetica fontsize=8 shape=plaintext];
|
||||||
edge[arrowhead=odot,arrowtail=dot];
|
edge[arrowhead=none];
|
||||||
|
|
||||||
|
|
||||||
{% block subgraphs %}
|
{% block subgraphs %}
|
||||||
|
|
|
@ -1010,6 +1010,7 @@ def make_machine_graph():
|
||||||
|
|
||||||
#Tant que la liste des oubliés n'est pas vide i.e on les a pas tous passer
|
#Tant que la liste des oubliés n'est pas vide i.e on les a pas tous passer
|
||||||
while missing:
|
while missing:
|
||||||
|
|
||||||
links, new_detected = recursive_switchs(missing[0].ports.filter(related=None).first(), None, [missing[0]])
|
links, new_detected = recursive_switchs(missing[0].ports.filter(related=None).first(), None, [missing[0]])
|
||||||
for link in links:
|
for link in links:
|
||||||
dico['links'].append(link)
|
dico['links'].append(link)
|
||||||
|
@ -1053,21 +1054,23 @@ def recursive_switchs(port_start, switch_before, detected):
|
||||||
"""
|
"""
|
||||||
Parcour récursivement le switchs auquel appartient port_start pour trouver les ports suivants liés
|
Parcour récursivement le switchs auquel appartient port_start pour trouver les ports suivants liés
|
||||||
"""
|
"""
|
||||||
links_return=[]#Liste de dictionaires qui stockes les nouveaux liens détéctés
|
detected.append(port_start.switch)
|
||||||
l_ports=port_start.switch.ports.filter(related__isnull=False)#Liste des ports dont le related est non null
|
links_return=[]#Liste de dictionaires qui stockes les nouveaux liens trouvés
|
||||||
for port in l_ports:
|
for port in port_start.switch.ports.filter(related__isnull=False):#Liste des ports dont le related est non null
|
||||||
#Pas le switch dont on vient, pas le switch actuel
|
|
||||||
if port.related.switch!=switch_before and port.related.switch != port.switch:
|
if port.related.switch!=switch_before and port.related.switch != port.switch:#Pas le switch dont on descend, pas le switch actuel
|
||||||
detected.append(port_start.switch)
|
|
||||||
detected.append(port.related.switch)
|
|
||||||
links = {
|
links = {
|
||||||
'depart':port_start.switch.id,
|
'depart':port_start.switch.id,
|
||||||
'arrive':port.related.switch.id
|
'arrive':port.related.switch.id
|
||||||
}
|
}
|
||||||
links_down, detected = recursive_switchs(port.related, port_start.switch, detected)
|
if(port.related.switch not in detected):
|
||||||
|
links_down, detected = recursive_switchs(port.related, port_start.switch, detected)
|
||||||
|
for link in links_down:
|
||||||
|
if link:
|
||||||
|
links_return.append(link)
|
||||||
|
detected.append(port.related.switch)
|
||||||
|
|
||||||
links_return.append(links)
|
links_return.append(links)
|
||||||
for link in links_down:
|
|
||||||
if link:
|
|
||||||
links_return.append(link)
|
|
||||||
return (links_return, detected)
|
return (links_return, detected)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue