Skip to content
Snippets Groups Projects
Commit eb86e8b0 authored by Robert Latta's avatar Robert Latta
Browse files

removed redundant function

parent cc666821
No related branches found
No related tags found
No related merge requests found
...@@ -32,60 +32,6 @@ def get_service_types(ds: IMS): ...@@ -32,60 +32,6 @@ def get_service_types(ds: IMS):
yield d['selection'] yield d['selection']
def get_fibre_info(ds: IMS):
# get all the wdm ots circuits where each node is in a different location
circuit_nav_props = [
ims.CIRCUIT_PROPERTIES['SubCircuits'],
ims.CIRCUIT_PROPERTIES['CalculatedNode'],
ims.CIRCUIT_PROPERTIES['PortA'],
ims.CIRCUIT_PROPERTIES['PortB'],
]
ignore_status_str = ''.join([
f'inventoryStatusId != {s} | ' for s in STATUSES_TO_IGNORE
])
ne_details = {}
for c in ds.get_filtered_entities(
'Circuit',
ignore_status_str +
'product.name == "wdm" | speed.name == "ots" | '
'vendor == "infinera"',
circuit_nav_props,
step_count=1000):
if c["nodeaid"] and c["nodebid"] and \
c["siteaid"] and c["sitebid"] and c["siteaid"] != c["sitebid"]:
if c['subcircuits']:
subs = [s['subcircuit'] for s in c['subcircuits']]
if len(subs) > 1:
# not sure if this is possible in IMS
logger.info('There is more than one Sub-Circuit for'
f'{c["name"]}')
for s in subs:
shelf = c['porta']['shelf']['sequencenumber']
t = {
'ne': c['nodea']['name'] + f'-{shelf}',
'circuit_id': c['id'],
'df_route': s['name'],
'df_route_id': s['id'],
'df_status': IMS_OPSDB_STATUS_MAP.get(
InventoryStatus(s['inventorystatusid']), 'unknown')
}
ne_details[f"{c['nodea']['name']}_{s['id']}"] = t
t = t.copy()
shelf = c['portb']['shelf']['sequencenumber']
t['ne'] = c['nodeb']['name'] + f'-{shelf}'
ne_details[f"{c['nodeb']['name']}_{s['id']}"] = t
by_ne = defaultdict(lambda: [])
for d in ne_details.values():
by_ne[d['ne']].append(d)
yield from by_ne.items()
def get_port_id_services(ds: IMS): def get_port_id_services(ds: IMS):
circuit_nav_props = [ circuit_nav_props = [
ims.CIRCUIT_PROPERTIES['Ports'], ims.CIRCUIT_PROPERTIES['Ports'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment