Source code for pynos.versions.base.fabric_service

"""
Copyright 2015 Brocade Communications Systems, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import xml.etree.ElementTree as ET


[docs]class FabricService(object): """ FabricService class containing all VCS Fabric methods and attributes. """ def __init__(self, callback): """FabricService init method. Args: callback: Callback function that will be called for each action. Returns: FabricService Object Raises: None """ self._callback = callback @property def trill_links(self): """dict: trill link details """ xmlns = 'urn:brocade.com:mgmt:brocade-fabric-service' get_links_info = ET.Element('show-linkinfo', xmlns=xmlns) results = self._callback(get_links_info, handler='get') result = [] for item in results.findall('{%s}show-link-info' % xmlns): src_rbridge_id = item.find('{%s}linkinfo-rbridgeid' % xmlns).text src_switch_wwn = item.find('{%s}linkinfo-wwn' % xmlns).text for link in item.findall('{%s}linkinfo-isl' % xmlns): dest_rbridge_id = link.find( '{%s}linkinfo-isllink-destdomain' % xmlns).text src_interface = link.find( '{%s}linkinfo-isllink-srcport-interface' % xmlns).text dest_interface = link.find( '{%s}linkinfo-isllink-destport-interface' % xmlns).text link_cost = link.find('{%s}linkinfo-isl-linkcost' % xmlns).text link_cost_count = link.find( '{%s}linkinfo-isllink-costcount' % xmlns).text item_results = {'source-rbridgeid': src_rbridge_id, 'source-switch-wwn': src_switch_wwn, 'dest-rbridgeid': dest_rbridge_id, 'source-interface': src_interface, 'dest-interface': dest_interface, 'link-cost': link_cost, 'link-costcount': link_cost_count} result.append(item_results) return result