scripts: updated route monitor to use grpc wrapped client
This commit is contained in:
parent
1cbe891dab
commit
0ed30a4feb
1 changed files with 16 additions and 18 deletions
|
@ -15,8 +15,8 @@ from typing import Dict, Tuple
|
|||
import grpc
|
||||
|
||||
from core import utils
|
||||
from core.api.grpc.client import CoreGrpcClient
|
||||
from core.api.grpc.core_pb2 import NodeType
|
||||
from core.api.grpc.clientw import CoreGrpcClient
|
||||
from core.api.grpc.wrappers import NodeType
|
||||
|
||||
SDT_HOST = "127.0.0.1"
|
||||
SDT_PORT = 50000
|
||||
|
@ -92,16 +92,15 @@ class RouterMonitor:
|
|||
self.session = self.get_session()
|
||||
print("session: ", self.session)
|
||||
try:
|
||||
response = self.core.get_session(self.session)
|
||||
nodes = response.session.nodes
|
||||
session = self.core.get_session(self.session)
|
||||
node_map = {}
|
||||
for node in nodes:
|
||||
for node in session.nodes.values():
|
||||
if node.type != NodeType.DEFAULT:
|
||||
continue
|
||||
node_map[node.id] = node.channel
|
||||
if self.src_id is None:
|
||||
response = self.core.get_node(self.session, node.id)
|
||||
for iface in response.ifaces:
|
||||
_, ifaces, _ = self.core.get_node(self.session, node.id)
|
||||
for iface in ifaces:
|
||||
if self.src == iface.ip4:
|
||||
self.src_id = node.id
|
||||
break
|
||||
|
@ -117,8 +116,7 @@ class RouterMonitor:
|
|||
return node_map
|
||||
|
||||
def get_session(self) -> int:
|
||||
response = self.core.get_sessions()
|
||||
sessions = response.sessions
|
||||
sessions = self.core.get_sessions()
|
||||
session = None
|
||||
if sessions:
|
||||
session = sessions[0]
|
||||
|
|
Loading…
Reference in a new issue