mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-11-22 00:54:56 +00:00
- Path_request class is updated to be more generic and reuseable in transmission main example. json processing linked to the yang modelling is kept in the pat_request_run, while path_request class only contains useful attributes - adding functions in info and request python files in core directory Signed-off-by: EstherLerouzic <esther.lerouzic@orange.com>
181 lines
7.6 KiB
Python
181 lines
7.6 KiB
Python
#!/usr/bin/env python3
|
|
# TelecomInfraProject/gnpy/examples
|
|
# Module name : path_requests_run.py
|
|
# Version :
|
|
# License : BSD 3-Clause Licence
|
|
# Copyright (c) 2018, Telecom Infra Project
|
|
|
|
"""
|
|
@author: esther.lerouzic
|
|
@author: jeanluc-auge
|
|
read json request file in accordance with:
|
|
Yang model for requesting Path Computation
|
|
draft-ietf-teas-yang-path-computation-01.txt.
|
|
and returns path results in terms of path and feasibility
|
|
|
|
"""
|
|
|
|
from sys import exit
|
|
from argparse import ArgumentParser
|
|
from pathlib import Path
|
|
from collections import namedtuple
|
|
from logging import getLogger, basicConfig, CRITICAL, DEBUG, INFO
|
|
from json import dumps, loads
|
|
from networkx import (draw_networkx_nodes, draw_networkx_edges,
|
|
draw_networkx_labels, dijkstra_path, NetworkXNoPath)
|
|
from numpy import mean
|
|
from examples.convert_service_sheet import convert_service_sheet, Request_element, Element
|
|
from gnpy.core.utils import load_json
|
|
from gnpy.core.network import load_network, build_network
|
|
from gnpy.core.equipment import load_equipment
|
|
from gnpy.core.elements import Transceiver, Roadm, Edfa, Fused
|
|
from gnpy.core.utils import db2lin, lin2db
|
|
from gnpy.core.info import create_input_spectral_information, SpectralInformation, Channel, Power, load_SI
|
|
from copy import copy, deepcopy
|
|
from numpy import log10
|
|
|
|
|
|
RequestParams = namedtuple('RequestParams','request_id source destination trx_type'+
|
|
' trx_mode nodes_list loose_list spacing power nb_channel format baudrate OSNR bit_rate')
|
|
|
|
class Path_request:
|
|
def __init__(self, *args, **params):
|
|
params = RequestParams(**params)
|
|
self.request_id = params.request_id
|
|
self.source = params.source
|
|
self.destination = params.destination
|
|
self.tsp = params.trx_type
|
|
self.tsp_mode = params.trx_mode
|
|
# retrieve baudrate out of transponder type and mode (format)
|
|
|
|
self.baudrate = params.baudrate
|
|
self.nodes_list = params.nodes_list
|
|
self.loose_list = params.loose_list
|
|
self.spacing = params.spacing
|
|
self.power = params.power
|
|
self.nb_channel = params.nb_channel
|
|
|
|
# class Path_request(Request):
|
|
# def __init__(self,*args, params=None, **kwargs):
|
|
# if params is None:
|
|
# params = {}
|
|
# super().__init__(*args, params=RequestParams(**params), **kwargs)
|
|
|
|
def __str__(self):
|
|
return '\n\t'.join([ f'{type(self).__name__} {self.request_id}',
|
|
f'source: {self.source}',
|
|
f'destination: {self.destination}'])
|
|
def __repr__(self):
|
|
return '\n\t'.join([ f'{type(self).__name__} {self.request_id}',
|
|
f'source: {self.source}',
|
|
f'destination: {self.destination}',
|
|
f'trx type: {self.tsp}',
|
|
f'baudrate: {self.baudrate}',
|
|
f'spacing: {self.spacing}',
|
|
f'power: {self.power}'
|
|
'\n'])
|
|
|
|
# class Path_request():
|
|
# def __init__(self,jsondata,tspjsondata):
|
|
# self.request_id = jsondata['request-id']
|
|
# self.source = jsondata['src-tp-id']
|
|
# self.destination = jsondata['dst-tp-id']
|
|
# # retrieving baudrate out of transponder type and mode (format)
|
|
# self.tsp = jsondata['path-constraints']['te-bandwidth']['trx_type']
|
|
# self.tsp_mode = jsondata['path-constraints']['te-bandwidth']['trx_mode']
|
|
# # for debug
|
|
# # print(tsp)
|
|
# try:
|
|
# baudrate = next(m['baudrate']
|
|
# for t in tspjsondata if t['type_variety'] == self.tsp
|
|
# for m in t['mode'] if m['format'] == self.tsp_mode)
|
|
# except StopIteration:
|
|
# msg = f'could not find tsp : {self.tsp} with mode: {self.tsp_mode} in eqpt library'
|
|
# logger.critical(msg)
|
|
# raise ValueError(msg)
|
|
# self.baudrate = baudrate
|
|
|
|
# nodes_list = jsondata['optimizations']['explicit-route-include-objects']
|
|
# self.nodes_list = [n['unnumbered-hop']['node-id'] for n in nodes_list]
|
|
# # create a list for individual loose capability for each node ...
|
|
# # even if convert_service_sheet fills it with the same value
|
|
# self.loose_list = [n['unnumbered-hop']['hop-type'] for n in nodes_list]
|
|
|
|
# self.spacing = jsondata['path-constraints']['te-bandwidth']['spacing']
|
|
# self.power = jsondata['path-constraints']['te-bandwidth']['output-power']
|
|
# self.nb_channel = jsondata['path-constraints']['te-bandwidth']['max-nb-of-channel']
|
|
|
|
# def __str__(self):
|
|
# return '\n\t'.join([ f'{type(self).__name__} {self.request_id}',
|
|
# f'source: {self.source}',
|
|
# f'destination: {self.destination}'])
|
|
# def __repr__(self):
|
|
# return '\n\t'.join([ f'{type(self).__name__} {self.request_id}',
|
|
# f'source: {self.source}',
|
|
# f'destination: {self.destination}',
|
|
# f'trx type: {self.tsp}',
|
|
# f'baudrate: {self.baudrate}',
|
|
# f'spacing: {self.spacing}',
|
|
# f'power: {self.power}'
|
|
# '\n'])
|
|
|
|
|
|
class Result_element(Element):
|
|
def __init__(self,path_request,computed_path):
|
|
self.path_id = int(path_request.request_id)
|
|
self.path_request = path_request
|
|
self.computed_path = computed_path
|
|
hop_type = []
|
|
for e in computed_path :
|
|
if isinstance(e, Transceiver) :
|
|
hop_type.append(' - '.join([path_request.tsp,path_request.tsp_mode]))
|
|
else:
|
|
hop_type.append('not recorded')
|
|
self.hop_type = hop_type
|
|
uid = property(lambda self: repr(self))
|
|
@property
|
|
def pathresult(self):
|
|
return {
|
|
'path-id': self.path_id,
|
|
'path-properties':{
|
|
'path-metric': [
|
|
{
|
|
'metric-type': 'SNR@bandwidth',
|
|
'accumulative-value': round(mean(self.computed_path[-1].snr),2)
|
|
},
|
|
{
|
|
'metric-type': 'SNR@0.1nm',
|
|
'accumulative-value': round(mean(self.computed_path[-1].snr+10*log10(self.path_request.baudrate/12.5)),2)
|
|
}
|
|
],
|
|
'path-srlgs': {
|
|
'usage': 'not used yet',
|
|
'values': 'not used yet'
|
|
},
|
|
'path-route-objects': [
|
|
{
|
|
'path-route-object': {
|
|
'index': self.computed_path.index(n),
|
|
'unnumbered-hop': {
|
|
'node-id': n.uid,
|
|
'link-tp-id': n.uid,
|
|
'hop-type': self.hop_type[self.computed_path.index(n)],
|
|
'direction': 'not used'
|
|
},
|
|
'label-hop': {
|
|
'te-label': {
|
|
'generic': 'not used yet',
|
|
'direction': 'not used yet'
|
|
}
|
|
}
|
|
}
|
|
} for n in self.computed_path
|
|
]
|
|
}
|
|
}
|
|
|
|
@property
|
|
def json(self):
|
|
return self.pathresult
|
|
|