Ejemplo n.º 1
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = Node(node_elem.attrib, node_elem)
            nodes.append(node)
            if "component_id" in node_elem.attrib:
                node["authority_id"] = Xrn(node_elem.attrib["component_id"]).get_authority_urn()

            # get hardware types
            hardware_type_elems = node_elem.xpath("./default:hardware_type | ./hardware_type")
            node["hardware_types"] = [hw_type.get_instance(HardwareType) for hw_type in hardware_type_elems]

            # get location
            location_elems = node_elem.xpath("./default:location | ./location")
            locations = [location_elem.get_instance(Location) for location_elem in location_elems]
            if len(locations) > 0:
                node["location"] = locations[0]

            # get interfaces
            iface_elems = node_elem.xpath("./default:interface | ./interface")
            node["interfaces"] = [iface_elem.get_instance(Interface) for iface_elem in iface_elems]

            # get services
            node["services"] = PGv2Services.get_services(node_elem)

            # get slivers
            node["slivers"] = PGv2SliverType.get_slivers(node_elem)
            available_elems = node_elem.xpath("./default:available | ./available")
            if len(available_elems) > 0 and "name" in available_elems[0].attrib:
                if available_elems[0].attrib.get("now", "").lower() == "true":
                    node["boot_state"] = "boot"
                else:
                    node["boot_state"] = "disabled"
        return nodes
Ejemplo n.º 2
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = NodeElement(node_elem.attrib, node_elem)
            if 'site_id' in node_elem.attrib:
                node['authority_id'] = node_elem.attrib['site_id']
            # get location
            location_elems = node_elem.xpath('./default:location | ./location')
            locations = [
                loc_elem.get_instance(Location) for loc_elem in location_elems
            ]
            if len(locations) > 0:
                node['location'] = locations[0]
            # get bwlimit
            bwlimit_elems = node_elem.xpath('./default:bw_limit | ./bw_limit')
            bwlimits = [
                bwlimit_elem.get_instance(BWlimit)
                for bwlimit_elem in bwlimit_elems
            ]
            if len(bwlimits) > 0:
                node['bwlimit'] = bwlimits[0]
            # get interfaces
            iface_elems = node_elem.xpath('./default:interface | ./interface')
            ifaces = [
                iface_elem.get_instance(Interface)
                for iface_elem in iface_elems
            ]
            node['interfaces'] = ifaces
            # get services
            node['services'] = PGv2Services.get_services(node_elem)
            # get slivers
            node['slivers'] = NITOSv1Sliver.get_slivers(node_elem)
            # get tags
            node['tags'] = NITOSv1PLTag.get_pl_tags(node_elem,
                                                    ignore=NodeElement.fields +
                                                    ["hardware_type"])
            # get hardware types
            hardware_type_elems = node_elem.xpath(
                './default:hardware_type | ./hardware_type')
            node['hardware_types'] = [
                hw_type.get_instance(HardwareType)
                for hw_type in hardware_type_elems
            ]

            # temporary... play nice with old slice manager rspec
            if not node['component_name']:
                hostname_elem = node_elem.find("hostname")
                if hostname_elem != None:
                    node['component_name'] = hostname_elem.text

            nodes.append(node)
        return nodes
Ejemplo n.º 3
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = Node(node_elem.attrib, node_elem)
            if "site_id" in node_elem.attrib:
                node["authority_id"] = node_elem.attrib["site_id"]
            # get location
            location_elems = node_elem.xpath("./default:location | ./location")
            locations = [loc_elem.get_instance(Location) for loc_elem in location_elems]
            if len(locations) > 0:
                node["location"] = locations[0]
            # get bwlimit
            bwlimit_elems = node_elem.xpath("./default:bw_limit | ./bw_limit")
            bwlimits = [bwlimit_elem.get_instance(BWlimit) for bwlimit_elem in bwlimit_elems]
            if len(bwlimits) > 0:
                node["bwlimit"] = bwlimits[0]
            # get interfaces
            iface_elems = node_elem.xpath("./default:interface | ./interface")
            ifaces = [iface_elem.get_instance(Interface) for iface_elem in iface_elems]
            node["interfaces"] = ifaces
            # get services
            node["services"] = PGv2Services.get_services(node_elem)
            # get slivers
            node["slivers"] = SFAv1Sliver.get_slivers(node_elem)
            # get tags
            node["tags"] = SFAv1PLTag.get_pl_tags(node_elem, ignore=Node.fields + ["hardware_type"])
            # get hardware types
            hardware_type_elems = node_elem.xpath("./default:hardware_type | ./hardware_type")
            node["hardware_types"] = [hw_type.get_instance(HardwareType) for hw_type in hardware_type_elems]

            # temporary... play nice with old slice manager rspec
            if not node["component_name"]:
                hostname_elem = node_elem.find("hostname")
                if hostname_elem != None:
                    node["component_name"] = hostname_elem.text

            nodes.append(node)
        return nodes
Ejemplo n.º 4
0
    def get_node_objs(node_elems):
        nodes = []    
        for node_elem in node_elems:
            node = NodeElement(node_elem.attrib, node_elem)
            if 'site_id' in node_elem.attrib:
                node['authority_id'] = node_elem.attrib['site_id']
            # get location
            location_elems = node_elem.xpath('./default:location | ./location')
            locations = [loc_elem.get_instance(Location) for loc_elem in location_elems]  
            if len(locations) > 0:
                node['location'] = locations[0]
            # get bwlimit
            bwlimit_elems = node_elem.xpath('./default:bw_limit | ./bw_limit')
            bwlimits = [bwlimit_elem.get_instance(BWlimit) for bwlimit_elem in bwlimit_elems]
            if len(bwlimits) > 0:
                node['bwlimit'] = bwlimits[0]
            # get interfaces
            iface_elems = node_elem.xpath('./default:interface | ./interface')
            ifaces = [iface_elem.get_instance(Interface) for iface_elem in iface_elems]
            node['interfaces'] = ifaces
            # get services
            node['services'] = PGv2Services.get_services(node_elem) 
            # get slivers
            node['slivers'] = NITOSv1Sliver.get_slivers(node_elem)
            # get tags
            node['tags'] =  NITOSv1PLTag.get_pl_tags(node_elem, ignore=NodeElement.fields+["hardware_type"])
            # get hardware types
            hardware_type_elems = node_elem.xpath('./default:hardware_type | ./hardware_type')
            node['hardware_types'] = [hw_type.get_instance(HardwareType) for hw_type in hardware_type_elems]

            # temporary... play nice with old slice manager rspec
            if not node['component_name']:
                hostname_elem = node_elem.find("hostname")
                if hostname_elem != None:
                    node['component_name'] = hostname_elem.text

            nodes.append(node)
        return nodes            
Ejemplo n.º 5
0
 def get_services(self):
     # Method to get the services when returning the RSpec, for exmaple in xml format
     return PGv2Services.get_services(self.xml)
Ejemplo n.º 6
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = NodeElement(node_elem.attrib, node_elem)
            nodes.append(node) 
            if 'component_id' in node_elem.attrib:
                node['authority_id'] = Xrn(node_elem.attrib['component_id']).get_authority_urn()
            
            # get hardware types
            hardware_type_elems = node_elem.xpath('./default:hardware_type | ./hardware_type')
            node['hardware_types'] = [dict(hw_type.get_instance(HardwareType)) for hw_type in hardware_type_elems]
            
            # get location
            location_elems = node_elem.xpath('./default:location | ./location')
            locations = [dict(location_elem.get_instance(Location)) for location_elem in location_elems]
            if len(locations) > 0:
                node['location'] = locations[0]

            # get granularity
            granularity_elems = node_elem.xpath('./default:granularity | ./granularity')
            if len(granularity_elems) > 0:
                node['granularity'] = granularity_elems[0].get_instance(Granularity)

            # get interfaces
            iface_elems = node_elem.xpath('./default:interface | ./interface')
            node['interfaces'] = [dict(iface_elem.get_instance(Interface)) for iface_elem in iface_elems]

            # get services
            node['services'] = PGv2Services.get_services(node_elem)
            
            # get slivers
            node['slivers'] = PGv2SliverType.get_slivers(node_elem)    
            
            # get boot state
	    available_elems = node_elem.xpath('./default:available | ./available')
            if len(available_elems) > 0 and 'now' in available_elems[0].attrib:
                if available_elems[0].attrib.get('now', '').lower() == 'true': 
                    node['boot_state'] = 'boot'
                else: 
                    node['boot_state'] = 'disabled' 

            # get initscripts
            try:
               node['pl_initscripts'] = []
               initscript_elems = node_elem.xpath('./default:sliver_type/planetlab:initscript | ./sliver_type/initscript')
               if len(initscript_elems) > 0:
                   for initscript_elem in initscript_elems:
                        if 'name' in initscript_elem.attrib:
                            node['pl_initscripts'].append(dict(initscript_elem.attrib))
            except:
               pass

            # get node tags
            try:
               tag_elems = node_elem.xpath('./planetlab:attribute | ./attribute')
               node['tags'] = []
               if len(tag_elems) > 0:
                   for tag_elem in tag_elems:
                        tag = dict(tag_elem.get_instance(Attribute))
                        tag['tagname'] = tag.pop('name')
                        node['tags'].append(tag)
            except:
               pass
  
        return nodes
Ejemplo n.º 7
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = NodeElement(node_elem.attrib, node_elem)
            nodes.append(node)
            if 'component_id' in node_elem.attrib:
                node['authority_id'] = Xrn(
                    node_elem.attrib['component_id']).get_authority_urn()

            # get hardware types
            hardware_type_elems = node_elem.xpath(
                './default:hardware_type | ./hardware_type')
            node['hardware_types'] = [
                dict(hw_type.get_instance(HardwareType))
                for hw_type in hardware_type_elems
            ]

            # get location
            location_elems = node_elem.xpath('./default:location | ./location')
            locations = [
                dict(location_elem.get_instance(Location))
                for location_elem in location_elems
            ]
            if len(locations) > 0:
                node['location'] = locations[0]

            # get granularity
            granularity_elems = node_elem.xpath(
                './default:granularity | ./granularity')
            if len(granularity_elems) > 0:
                node['granularity'] = granularity_elems[0].get_instance(
                    Granularity)

            # get interfaces
            iface_elems = node_elem.xpath('./default:interface | ./interface')
            node['interfaces'] = [
                dict(iface_elem.get_instance(Interface))
                for iface_elem in iface_elems
            ]

            # get services
            node['services'] = PGv2Services.get_services(node_elem)

            # get slivers
            node['slivers'] = Clabv1Sliver.get_slivers(node_elem)

            # get boot state
            available_elems = node_elem.xpath(
                './default:available | ./available')
            if len(available_elems) > 0 and 'now' in available_elems[0].attrib:
                if available_elems[0].attrib.get('now', '').lower() == 'true':
                    node['boot_state'] = 'boot'
                else:
                    node['boot_state'] = 'disabled'

            # EXTENSION FOR CLab v1 RSpec
            # get group
            try:
                group_elems = node_elem.xpath('./clab:group | ./group')
                if len(group_elems) > 0:
                    group_elem = group_elems[0]
                    group = dict(group_elem.get_instance(Clabv1Group))
                    node['group'] = group
            except XPathEvalError:
                # there is no group element in the xml
                pass
            # get island
            try:
                island_elems = node_elem.xpath('./clab:island | ./island')
                if len(island_elems) > 0:
                    island_elem = island_elems[0]
                    island = dict(island_elem.get_instance(Clabv1Island))
                    node['island'] = island
            except XPathEvalError:
                # there is no island element in the xml
                pass

        return nodes
Ejemplo n.º 8
0
    def get_node_objs(node_elems):
        nodes = []
        for node_elem in node_elems:
            node = NodeElement(node_elem.attrib, node_elem)
            nodes.append(node)
            if 'component_id' in node_elem.attrib:
                node['authority_id'] = Xrn(
                    node_elem.attrib['component_id']).get_authority_urn()

            # get hardware types
            hardware_type_elems = node_elem.xpath(
                './default:hardware_type | ./hardware_type')
            node['hardware_types'] = [
                dict(hw_type.get_instance(HardwareType))
                for hw_type in hardware_type_elems
            ]

            # get location
            location_elems = node_elem.xpath('./default:location | ./location')
            locations = [
                dict(location_elem.get_instance(Location))
                for location_elem in location_elems
            ]
            if len(locations) > 0:
                node['location'] = locations[0]

            # get granularity
            granularity_elems = node_elem.xpath(
                './default:granularity | ./granularity')
            if len(granularity_elems) > 0:
                node['granularity'] = granularity_elems[0].get_instance(
                    Granularity)

            # get interfaces
            iface_elems = node_elem.xpath('./default:interface | ./interface')
            node['interfaces'] = [
                dict(iface_elem.get_instance(Interface))
                for iface_elem in iface_elems
            ]

            # get services
            node['services'] = PGv2Services.get_services(node_elem)

            # get slivers
            node['slivers'] = PGv2SliverType.get_slivers(node_elem)

            # get boot state
            available_elems = node_elem.xpath(
                './default:available | ./available')
            if len(available_elems) > 0 and 'now' in available_elems[0].attrib:
                if available_elems[0].attrib.get('now', '').lower() == 'true':
                    node['boot_state'] = 'boot'
                else:
                    node['boot_state'] = 'disabled'

            # get initscripts
            try:
                node['pl_initscripts'] = []
                initscript_elems = node_elem.xpath(
                    './default:sliver_type/planetlab:initscript | ./sliver_type/initscript'
                )
                if len(initscript_elems) > 0:
                    for initscript_elem in initscript_elems:
                        if 'name' in initscript_elem.attrib:
                            node['pl_initscripts'].append(
                                dict(initscript_elem.attrib))
            except:
                pass

            # get node tags
            try:
                tag_elems = node_elem.xpath(
                    './planetlab:attribute | ./attribute')
                node['tags'] = []
                if len(tag_elems) > 0:
                    for tag_elem in tag_elems:
                        tag = dict(tag_elem.get_instance(Attribute))
                        tag['tagname'] = tag.pop('name')
                        node['tags'].append(tag)
            except:
                pass

        return nodes