Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | from synchronizers.new_base.pullstep import PullStep |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 16 | from synchronizers.new_base.modelaccessor import model_accessor, ONUDevice, VOLTService, OLTDevice, PONPort, PONONUPort, UNIPort |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 17 | |
| 18 | from xosconfig import Config |
| 19 | from multistructlog import create_logger |
| 20 | |
| 21 | import requests |
| 22 | from requests import ConnectionError |
| 23 | from requests.models import InvalidURL |
| 24 | |
| 25 | import os, sys |
| 26 | sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
| 27 | |
| 28 | from helpers import Helpers |
| 29 | |
| 30 | log = create_logger(Config().get('logging')) |
| 31 | |
| 32 | class ONUDevicePullStep(PullStep): |
| 33 | def __init__(self): |
| 34 | super(ONUDevicePullStep, self).__init__(observed_model=ONUDevice) |
| 35 | |
| 36 | def pull_records(self): |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 37 | log.debug("pulling ONU devices from VOLTHA") |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 38 | |
| 39 | try: |
| 40 | self.volt_service = VOLTService.objects.all()[0] |
| 41 | except IndexError: |
| 42 | log.warn('VOLTService not found') |
| 43 | return |
| 44 | |
| 45 | voltha_url = Helpers.get_voltha_info(self.volt_service)['url'] |
| 46 | voltha_port = Helpers.get_voltha_info(self.volt_service)['port'] |
| 47 | |
| 48 | try: |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 49 | r = requests.get("%s:%s/api/v1/devices" % (voltha_url, voltha_port), timeout=1) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 50 | |
| 51 | if r.status_code != 200: |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 52 | log.warn("It was not possible to fetch devices from VOLTHA") |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 53 | |
| 54 | # keeping only ONUs |
| 55 | devices = [d for d in r.json()["items"] if "onu" in d["type"]] |
| 56 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 57 | log.trace("received devices", onus=devices) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 58 | |
| 59 | # TODO |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 60 | # [ ] delete ONUS as ONUDevice.objects.all() - updated ONUs |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 61 | |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 62 | onus_in_voltha = self.create_or_update_onus(devices) |
| 63 | |
| 64 | except ConnectionError, e: |
| 65 | log.warn("It was not possible to connect to VOLTHA", reason=e) |
| 66 | return |
| 67 | except InvalidURL, e: |
| 68 | log.warn("VOLTHA url is invalid, is it configured in the VOLTService?", reason=e) |
| 69 | return |
| 70 | |
| 71 | def create_or_update_onus(self, onus): |
| 72 | |
| 73 | updated_onus = [] |
| 74 | |
| 75 | for onu in onus: |
| 76 | try: |
| 77 | |
| 78 | model = ONUDevice.objects.filter(serial_number=onu["serial_number"])[0] |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 79 | log.trace("ONUDevice already exists, updating it", serial_number=onu["serial_number"]) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 80 | |
| 81 | if model.enacted < model.updated: |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 82 | log.debug("Skipping pull on ONUDevice %s as enacted < updated" % model.serial_number, serial_number=model.serial_number, id=model.id, enacted=model.enacted, updated=model.updated) |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 83 | # if we are not updating the device we still need to pull ports |
| 84 | self.fetch_onu_ports(model) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 85 | return |
| 86 | |
| 87 | except IndexError: |
| 88 | model = ONUDevice() |
| 89 | model.serial_number = onu["serial_number"] |
| 90 | |
| 91 | log.debug("ONUDevice is new, creating it", serial_number=onu["serial_number"]) |
| 92 | |
| 93 | # Adding feedback state to the device |
| 94 | model.vendor = onu["vendor"] |
| 95 | model.device_type = onu["type"] |
| 96 | model.device_id = onu["id"] |
| 97 | |
| 98 | model.admin_state = onu["admin_state"] |
| 99 | model.oper_status = onu["oper_status"] |
| 100 | model.connect_status = onu["connect_status"] |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 101 | model.xos_managed = False |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 102 | |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 103 | olt = OLTDevice.objects.get(device_id=onu["parent_id"]) |
| 104 | pon_port = PONPort.objects.get(port_no=onu["parent_port_no"], olt_device_id=olt.id) |
| 105 | |
| 106 | model.pon_port = pon_port |
| 107 | model.pon_port_id = pon_port.id |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 108 | |
| 109 | model.save() |
| 110 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 111 | self.fetch_onu_ports(model) |
| 112 | |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 113 | updated_onus.append(model) |
| 114 | |
| 115 | return updated_onus |
| 116 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 117 | def fetch_onu_ports(self, onu): |
| 118 | voltha_url = Helpers.get_voltha_info(self.volt_service)['url'] |
| 119 | voltha_port = Helpers.get_voltha_info(self.volt_service)['port'] |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 120 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 121 | try: |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 122 | r = requests.get("%s:%s/api/v1/devices/%s/ports" % (voltha_url, voltha_port, onu.device_id), timeout=1) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 123 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 124 | if r.status_code != 200: |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 125 | log.warn("It was not possible to fetch ports from VOLTHA for ONUDevice %s" % onu.device_id) |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 126 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 127 | ports = r.json()['items'] |
| 128 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 129 | log.trace("received ports", ports=ports, onu=onu.device_id) |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 130 | |
| 131 | self.create_or_update_ports(ports, onu) |
| 132 | |
| 133 | except ConnectionError, e: |
| 134 | log.warn("It was not possible to connect to VOLTHA", reason=e) |
| 135 | return |
| 136 | except InvalidURL, e: |
| 137 | log.warn("VOLTHA url is invalid, is it configured in the VOLTService?", reason=e) |
| 138 | return |
| 139 | return |
| 140 | |
| 141 | def create_or_update_ports(self, ports, onu): |
| 142 | uni_ports = [p for p in ports if "ETHERNET_UNI" in p["type"]] |
| 143 | pon_onu_ports = [p for p in ports if "PON_ONU" in p["type"]] |
| 144 | |
| 145 | self.create_or_update_uni_port(uni_ports, onu) |
| 146 | self.create_or_update_pon_onu_port(pon_onu_ports, onu) |
| 147 | |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 148 | def get_onu_port_id(self, port, onu): |
| 149 | # find the correct port id as represented in the logical_device |
| 150 | logical_device_id = onu.pon_port.olt_device.of_id |
| 151 | |
| 152 | voltha_url = Helpers.get_voltha_info(self.volt_service)['url'] |
| 153 | voltha_port = Helpers.get_voltha_info(self.volt_service)['port'] |
| 154 | |
| 155 | try: |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 156 | r = requests.get("%s:%s/api/v1/logical_devices/%s/ports" % (voltha_url, voltha_port, logical_device_id), timeout=1) |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 157 | |
| 158 | if r.status_code != 200: |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 159 | log.warn("It was not possible to fetch ports from VOLTHA for logical_device %s" % logical_device_id) |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 160 | |
| 161 | logical_ports = r.json()['items'] |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 162 | log.trace("logical device ports for ONUDevice %s" % onu.device_id, logical_ports=logical_ports) |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 163 | |
Jonathan Hart | d6de1b9 | 2018-07-18 18:52:28 -0700 | [diff] [blame] | 164 | ports = [p['ofp_port']['port_no'] for p in logical_ports if p['device_id'] == onu.device_id] |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 165 | # log.debug("Port_id for port %s on ONUDevice %s: %s" % (port['label'], onu.device_id, ports), logical_ports=logical_ports) |
Matteo Scandolo | f140ded | 2018-10-17 15:37:15 -0700 | [diff] [blame] | 166 | # FIXME if this throws an error ONUs from other OTLs are not sync'ed |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 167 | return int(ports[0]) |
| 168 | |
| 169 | except ConnectionError, e: |
| 170 | log.warn("It was not possible to connect to VOLTHA", reason=e) |
| 171 | return |
| 172 | except InvalidURL, e: |
| 173 | log.warn("VOLTHA url is invalid, is it configured in the VOLTService?", reason=e) |
| 174 | return |
| 175 | |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 176 | def create_or_update_uni_port(self, uni_ports, onu): |
| 177 | update_ports = [] |
| 178 | |
| 179 | for port in uni_ports: |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 180 | port_no = self.get_onu_port_id(port, onu) |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 181 | try: |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 182 | model = UNIPort.objects.filter(port_no=port_no, onu_device_id=onu.id)[0] |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 183 | log.trace("UNIPort already exists, updating it", port_no=port_no, onu_device_id=onu.id) |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 184 | except IndexError: |
| 185 | model = UNIPort() |
Matteo Scandolo | 72f43d0 | 2018-07-16 10:54:01 -0400 | [diff] [blame] | 186 | model.port_no = port_no |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 187 | model.onu_device_id = onu.id |
| 188 | model.name = port["label"] |
| 189 | log.debug("UNIPort is new, creating it", port_no=port["port_no"], onu_device_id=onu.id) |
| 190 | |
| 191 | model.admin_state = port["admin_state"] |
| 192 | model.oper_status = port["oper_status"] |
| 193 | model.save() |
| 194 | update_ports.append(model) |
| 195 | return update_ports |
| 196 | |
| 197 | def create_or_update_pon_onu_port(self, pon_onu_ports, onu): |
| 198 | update_ports = [] |
| 199 | |
| 200 | for port in pon_onu_ports: |
| 201 | try: |
| 202 | model = PONONUPort.objects.filter(port_no=port["port_no"], onu_device_id=onu.id)[0] |
| 203 | model.xos_managed = False |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 204 | log.trace("PONONUPort already exists, updating it", port_no=port["port_no"], onu_device_id=onu.id) |
Matteo Scandolo | d8ed60e | 2018-06-18 17:00:57 -0700 | [diff] [blame] | 205 | except IndexError: |
| 206 | model = PONONUPort() |
| 207 | model.port_no = port["port_no"] |
| 208 | model.onu_device_id = onu.id |
| 209 | model.name = port["label"] |
| 210 | model.xos_managed = False |
| 211 | log.debug("PONONUPort is new, creating it", port_no=port["port_no"], onu_device_id=onu.id) |
| 212 | |
| 213 | model.admin_state = port["admin_state"] |
| 214 | model.oper_status = port["oper_status"] |
| 215 | model.save() |
| 216 | update_ports.append(model) |
| 217 | return update_ports |