khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2017 the original author or authors. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | """ |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 18 | Represents an ONU device |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 19 | """ |
| 20 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 21 | from uuid import uuid4 |
| 22 | |
| 23 | import arrow |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 24 | import structlog |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 25 | from google.protobuf.json_format import MessageToDict |
| 26 | from google.protobuf.message import Message |
| 27 | from simplejson import dumps |
| 28 | from twisted.internet.defer import DeferredQueue, inlineCallbacks, \ |
| 29 | returnValue, Deferred |
| 30 | from twisted.internet.task import LoopingCall |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 31 | |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 32 | from python.common.utils.asleep import asleep |
| 33 | from python.adapters.iadapter import OnuAdapter |
| 34 | from python.adapters.kafka.kafka_proxy import get_kafka_proxy |
| 35 | from python.protos import third_party |
| 36 | from python.protos.common_pb2 import OperStatus, ConnectStatus, AdminState |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 37 | from python.protos.inter_container_pb2 import PortCapability, \ |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 38 | InterAdapterMessageType, InterAdapterResponseBody |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 39 | from python.protos.device_pb2 import Port, PmConfig, PmConfigs |
| 40 | from python.protos.events_pb2 import KpiEvent, KpiEventType, MetricValuePairs |
| 41 | from python.protos.logical_device_pb2 import LogicalPort |
| 42 | from python.protos.openflow_13_pb2 import OFPPS_LIVE, OFPPF_FIBER, \ |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 43 | OFPPF_1GB_FD |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 44 | from python.protos.openflow_13_pb2 import ofp_port |
| 45 | from python.protos.ponsim_pb2 import FlowTable, PonSimMetricsRequest, PonSimMetrics |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 46 | |
| 47 | _ = third_party |
| 48 | log = structlog.get_logger() |
| 49 | |
| 50 | |
| 51 | def mac_str_to_tuple(mac): |
| 52 | return tuple(int(d, 16) for d in mac.split(':')) |
| 53 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 54 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 55 | class AdapterPmMetrics: |
| 56 | def __init__(self, device): |
| 57 | self.pm_names = {'tx_64_pkts', 'tx_65_127_pkts', 'tx_128_255_pkts', |
| 58 | 'tx_256_511_pkts', 'tx_512_1023_pkts', |
| 59 | 'tx_1024_1518_pkts', 'tx_1519_9k_pkts', |
| 60 | 'rx_64_pkts', 'rx_65_127_pkts', |
| 61 | 'rx_128_255_pkts', 'rx_256_511_pkts', |
| 62 | 'rx_512_1023_pkts', 'rx_1024_1518_pkts', |
| 63 | 'rx_1519_9k_pkts'} |
| 64 | self.device = device |
| 65 | self.id = device.id |
| 66 | self.name = 'ponsim_onu' |
| 67 | self.default_freq = 150 |
| 68 | self.grouped = False |
| 69 | self.freq_override = False |
| 70 | self.pm_metrics = None |
| 71 | self.pon_metrics_config = dict() |
| 72 | self.uni_metrics_config = dict() |
| 73 | self.lc = None |
| 74 | for m in self.pm_names: |
| 75 | self.pon_metrics_config[m] = PmConfig(name=m, |
| 76 | type=PmConfig.COUNTER, |
| 77 | enabled=True) |
| 78 | self.uni_metrics_config[m] = PmConfig(name=m, |
| 79 | type=PmConfig.COUNTER, |
| 80 | enabled=True) |
| 81 | |
| 82 | def update(self, pm_config): |
| 83 | if self.default_freq != pm_config.default_freq: |
| 84 | # Update the callback to the new frequency. |
| 85 | self.default_freq = pm_config.default_freq |
| 86 | self.lc.stop() |
| 87 | self.lc.start(interval=self.default_freq / 10) |
| 88 | for m in pm_config.metrics: |
| 89 | self.pon_metrics_config[m.name].enabled = m.enabled |
| 90 | self.uni_metrics_config[m.name].enabled = m.enabled |
| 91 | |
| 92 | def make_proto(self): |
| 93 | pm_config = PmConfigs( |
| 94 | id=self.id, |
| 95 | default_freq=self.default_freq, |
| 96 | grouped=False, |
| 97 | freq_override=False) |
| 98 | for m in sorted(self.pon_metrics_config): |
| 99 | pm = self.pon_metrics_config[m] # Either will do they're the same |
| 100 | pm_config.metrics.extend([PmConfig(name=pm.name, |
| 101 | type=pm.type, |
| 102 | enabled=pm.enabled)]) |
| 103 | return pm_config |
| 104 | |
| 105 | def extract_metrics(self, stats): |
| 106 | rtrn_port_metrics = dict() |
| 107 | rtrn_port_metrics['pon'] = self.extract_pon_metrics(stats) |
| 108 | rtrn_port_metrics['uni'] = self.extract_uni_metrics(stats) |
| 109 | return rtrn_port_metrics |
| 110 | |
| 111 | def extract_pon_metrics(self, stats): |
| 112 | rtrn_pon_metrics = dict() |
| 113 | for m in stats.metrics: |
| 114 | if m.port_name == "pon": |
| 115 | for p in m.packets: |
| 116 | if self.pon_metrics_config[p.name].enabled: |
| 117 | rtrn_pon_metrics[p.name] = p.value |
| 118 | return rtrn_pon_metrics |
| 119 | |
| 120 | def extract_uni_metrics(self, stats): |
| 121 | rtrn_pon_metrics = dict() |
| 122 | for m in stats.metrics: |
| 123 | if m.port_name == "uni": |
| 124 | for p in m.packets: |
| 125 | if self.pon_metrics_config[p.name].enabled: |
| 126 | rtrn_pon_metrics[p.name] = p.value |
| 127 | return rtrn_pon_metrics |
| 128 | |
| 129 | def start_collector(self, callback): |
| 130 | log.info("starting-pm-collection", device_name=self.name, |
| 131 | device_id=self.device.id) |
| 132 | prefix = 'voltha.{}.{}'.format(self.name, self.device.id) |
| 133 | self.lc = LoopingCall(callback, self.device.id, prefix) |
| 134 | self.lc.start(interval=self.default_freq / 10) |
| 135 | |
| 136 | def stop_collector(self): |
| 137 | log.info("stopping-pm-collection", device_name=self.name, |
| 138 | device_id=self.device.id) |
| 139 | self.lc.stop() |
| 140 | |
| 141 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 142 | class PonSimOnuAdapter(OnuAdapter): |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 143 | def __init__(self, core_proxy, adapter_proxy, config): |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 144 | # DeviceType of ONU should be same as VENDOR ID of ONU Serial Number |
| 145 | # as specified by standard |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 146 | # requires for identifying correct adapter or ranged ONU |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 147 | super(PonSimOnuAdapter, self).__init__(core_proxy=core_proxy, |
| 148 | adapter_proxy=adapter_proxy, |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 149 | config=config, |
| 150 | device_handler_class=PonSimOnuHandler, |
| 151 | name='ponsim_onu', |
| 152 | vendor='Voltha project', |
| 153 | version='0.4', |
| 154 | device_type='ponsim_onu', |
| 155 | vendor_id='PSMO', |
| 156 | accepts_bulk_flow_update=True, |
| 157 | accepts_add_remove_flow_updates=False) |
| 158 | |
| 159 | |
| 160 | class PonSimOnuHandler(object): |
| 161 | def __init__(self, adapter, device_id): |
| 162 | self.adapter = adapter |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 163 | self.core_proxy = adapter.core_proxy |
| 164 | self.adapter_proxy = adapter.adapter_proxy |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 165 | self.device_id = device_id |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 166 | self.device_parent_id = None |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 167 | self.log = structlog.get_logger(device_id=device_id) |
| 168 | self.incoming_messages = DeferredQueue() |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 169 | self.inter_adapter_message_deferred_map = {} |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 170 | self.proxy_address = None |
| 171 | # reference of uni_port is required when re-enabling the device if |
| 172 | # it was disabled previously |
| 173 | self.uni_port = None |
| 174 | self.pon_port = None |
| 175 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 176 | def _to_string(self, unicode_str): |
| 177 | if unicode_str is not None: |
| 178 | if type(unicode_str) == unicode: |
| 179 | return unicode_str.encode('ascii', 'ignore') |
| 180 | else: |
| 181 | return unicode_str |
| 182 | else: |
| 183 | return "" |
| 184 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 185 | def receive_message(self, msg): |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 186 | trns_id = self._to_string(msg.header.id) |
| 187 | if trns_id in self.inter_adapter_message_deferred_map: |
| 188 | self.inter_adapter_message_deferred_map[trns_id].callback(msg) |
| 189 | # self.incoming_messages.put(msg) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 190 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 191 | @inlineCallbacks |
| 192 | def activate(self, device): |
| 193 | self.log.info('activating') |
| 194 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 195 | self.device_parent_id = device.parent_id |
| 196 | self.proxy_address = device.proxy_address |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 197 | |
| 198 | # populate device info |
| 199 | device.root = False |
| 200 | device.vendor = 'ponsim' |
| 201 | device.model = 'n/a' |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 202 | yield self.core_proxy.device_update(device) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 203 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 204 | # Now set the initial PM configuration for this device |
| 205 | self.pm_metrics = AdapterPmMetrics(device) |
| 206 | pm_config = self.pm_metrics.make_proto() |
| 207 | log.info("initial-pm-config", pm_config=pm_config) |
| 208 | self.core_proxy.device_pm_config_update(pm_config, init=True) |
| 209 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 210 | # register physical ports |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 211 | self.uni_port = Port( |
| 212 | port_no=2, |
| 213 | label='UNI facing Ethernet port', |
| 214 | type=Port.ETHERNET_UNI, |
| 215 | admin_state=AdminState.ENABLED, |
| 216 | oper_status=OperStatus.ACTIVE |
| 217 | ) |
| 218 | self.pon_port = Port( |
| 219 | port_no=1, |
| 220 | label='PON port', |
| 221 | type=Port.PON_ONU, |
| 222 | admin_state=AdminState.ENABLED, |
| 223 | oper_status=OperStatus.ACTIVE, |
| 224 | peers=[ |
| 225 | Port.PeerPort( |
| 226 | device_id=device.parent_id, |
| 227 | port_no=device.parent_port_no |
| 228 | ) |
| 229 | ] |
| 230 | ) |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 231 | self.core_proxy.port_created(device.id, self.uni_port) |
| 232 | self.core_proxy.port_created(device.id, self.pon_port) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 233 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 234 | yield self.core_proxy.device_state_update(device.id, |
| 235 | connect_status=ConnectStatus.REACHABLE, |
| 236 | oper_status=OperStatus.ACTIVE) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 237 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 238 | # Start collecting stats from the device after a brief pause |
| 239 | self.start_kpi_collection(device.id) |
| 240 | |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 241 | # TODO: Return only port specific info |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 242 | def get_ofp_port_info(self, device, port_no): |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 243 | # Since the adapter created the device port then it has the reference |
| 244 | # of the port to |
| 245 | # return the capability. TODO: Do a lookup on the UNI port number |
| 246 | # and return the |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 247 | # appropriate attributes |
| 248 | self.log.info('get_ofp_port_info', port_no=port_no, device_id=device.id) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 249 | cap = OFPPF_1GB_FD | OFPPF_FIBER |
| 250 | return PortCapability( |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 251 | port=LogicalPort( |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 252 | ofp_port=ofp_port( |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 253 | hw_addr=mac_str_to_tuple('00:00:00:00:00:%02x' % port_no), |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 254 | config=0, |
| 255 | state=OFPPS_LIVE, |
| 256 | curr=cap, |
| 257 | advertised=cap, |
| 258 | peer=cap, |
| 259 | curr_speed=OFPPF_1GB_FD, |
| 260 | max_speed=OFPPF_1GB_FD |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 261 | ), |
| 262 | device_id=device.id, |
| 263 | device_port_no=port_no |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 264 | ) |
| 265 | ) |
| 266 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 267 | @inlineCallbacks |
| 268 | def _get_uni_port(self): |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 269 | ports = yield self.core_proxy.get_ports(self.device_id, |
| 270 | Port.ETHERNET_UNI) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 271 | returnValue(ports) |
| 272 | |
| 273 | @inlineCallbacks |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 274 | def _get_pon_port(self): |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 275 | ports = yield self.core_proxy.get_ports(self.device_id, Port.PON_ONU) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 276 | returnValue(ports) |
| 277 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 278 | def reconcile(self, device): |
| 279 | self.log.info('reconciling-ONU-device-starts') |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 280 | # TODO: complete code |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 281 | |
| 282 | @inlineCallbacks |
| 283 | def update_flow_table(self, flows): |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 284 | trnsId = None |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 285 | try: |
| 286 | self.log.info('update_flow_table', flows=flows) |
| 287 | # we need to proxy through the OLT to get to the ONU |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 288 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 289 | fb = FlowTable( |
| 290 | port=self.proxy_address.channel_id, |
| 291 | flows=flows |
| 292 | ) |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 293 | |
| 294 | # Create a deferred to wait for the result as well as a transid |
| 295 | wait_for_result = Deferred() |
| 296 | trnsId = uuid4().hex |
| 297 | self.inter_adapter_message_deferred_map[ |
| 298 | self._to_string(trnsId)] = wait_for_result |
| 299 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 300 | # Sends the request via proxy and wait for an ACK |
| 301 | yield self.adapter_proxy.send_inter_adapter_message( |
| 302 | msg=fb, |
| 303 | type=InterAdapterMessageType.FLOW_REQUEST, |
| 304 | from_adapter=self.adapter.name, |
| 305 | to_adapter=self.proxy_address.device_type, |
| 306 | to_device_id=self.device_id, |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 307 | proxy_device_id=self.proxy_address.device_id, |
| 308 | message_id=trnsId |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 309 | ) |
| 310 | # Wait for the full response from the proxied adapter |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 311 | res = yield wait_for_result |
| 312 | if res.header.type == InterAdapterMessageType.FLOW_RESPONSE: |
| 313 | body = InterAdapterResponseBody() |
| 314 | res.body.Unpack(body) |
| 315 | self.log.info('response-received', result=body.status) |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 316 | except Exception as e: |
| 317 | self.log.exception("update-flow-error", e=e) |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 318 | finally: |
| 319 | if trnsId in self.inter_adapter_message_deferred_map: |
| 320 | del self.inter_adapter_message_deferred_map[trnsId] |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 321 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 322 | def process_inter_adapter_message(self, msg): |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 323 | # We expect only responses on the ONU side |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 324 | self.log.info('process-inter-adapter-message', msg=msg) |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 325 | self.receive_message(msg) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 326 | |
| 327 | def remove_from_flow_table(self, flows): |
| 328 | self.log.debug('remove-from-flow-table', flows=flows) |
| 329 | # TODO: Update PONSIM code to accept incremental flow changes. |
| 330 | # Once completed, the accepts_add_remove_flow_updates for this |
| 331 | # device type can be set to True |
| 332 | |
| 333 | def add_to_flow_table(self, flows): |
| 334 | self.log.debug('add-to-flow-table', flows=flows) |
| 335 | # TODO: Update PONSIM code to accept incremental flow changes |
| 336 | # Once completed, the accepts_add_remove_flow_updates for this |
| 337 | # device type can be set to True |
| 338 | |
| 339 | @inlineCallbacks |
| 340 | def reboot(self): |
| 341 | self.log.info('rebooting', device_id=self.device_id) |
| 342 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 343 | # Update the connect status to UNREACHABLE |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 344 | yield self.core_proxy.device_state_update(self.device_id, |
| 345 | connect_status=ConnectStatus.UNREACHABLE) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 346 | |
| 347 | # Sleep 10 secs, simulating a reboot |
| 348 | # TODO: send alert and clear alert after the reboot |
| 349 | yield asleep(10) |
| 350 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 351 | # Change the connection status back to REACHABLE. With a |
| 352 | # real ONU the connection state must be the actual state |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 353 | yield self.core_proxy.device_state_update(self.device_id, |
| 354 | connect_status=ConnectStatus.REACHABLE) |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 355 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 356 | self.log.info('rebooted', device_id=self.device_id) |
| 357 | |
| 358 | def self_test_device(self, device): |
| 359 | """ |
| 360 | This is called to Self a device based on a NBI call. |
| 361 | :param device: A Voltha.Device object. |
| 362 | :return: Will return result of self test |
| 363 | """ |
| 364 | log.info('self-test-device', device=device.id) |
| 365 | raise NotImplementedError() |
| 366 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 367 | @inlineCallbacks |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 368 | def disable(self): |
| 369 | self.log.info('disabling', device_id=self.device_id) |
| 370 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 371 | # Update the device operational status to UNKNOWN |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 372 | yield self.core_proxy.device_state_update(self.device_id, |
| 373 | oper_status=OperStatus.UNKNOWN, |
| 374 | connect_status=ConnectStatus.UNREACHABLE) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 375 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 376 | self.stop_kpi_collection() |
| 377 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 378 | # TODO: |
| 379 | # 1) Remove all flows from the device |
| 380 | # 2) Remove the device from ponsim |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 381 | self.log.info('disabled', device_id=self.device_id) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 382 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 383 | @inlineCallbacks |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 384 | def reenable(self): |
| 385 | self.log.info('re-enabling', device_id=self.device_id) |
| 386 | try: |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 387 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 388 | # Refresh the port reference - we only use one port for now |
| 389 | ports = yield self._get_uni_port() |
| 390 | self.log.info('re-enabling-uni-ports', ports=ports) |
| 391 | if ports.items: |
| 392 | self.uni_port = ports.items[0] |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 393 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 394 | ports = yield self._get_pon_port() |
| 395 | self.log.info('re-enabling-pon-ports', ports=ports) |
| 396 | if ports.items: |
| 397 | self.pon_port = ports.items[0] |
| 398 | |
| 399 | # Update the state of the UNI port |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 400 | yield self.core_proxy.port_state_update(self.device_id, |
| 401 | port_type=Port.ETHERNET_UNI, |
| 402 | port_no=self.uni_port.port_no, |
| 403 | oper_status=OperStatus.ACTIVE) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 404 | |
| 405 | # Update the state of the PON port |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 406 | yield self.core_proxy.port_state_update(self.device_id, |
| 407 | port_type=Port.PON_ONU, |
| 408 | port_no=self.pon_port.port_no, |
| 409 | oper_status=OperStatus.ACTIVE) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 410 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 411 | yield self.core_proxy.device_state_update(self.device_id, |
| 412 | oper_status=OperStatus.ACTIVE, |
| 413 | connect_status=ConnectStatus.REACHABLE) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 414 | |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 415 | self.start_kpi_collection(self.device_id) |
| 416 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 417 | self.log.info('re-enabled', device_id=self.device_id) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 418 | except Exception, e: |
| 419 | self.log.exception('error-reenabling', e=e) |
| 420 | |
| 421 | def delete(self): |
| 422 | self.log.info('deleting', device_id=self.device_id) |
| 423 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 424 | # TODO: |
| 425 | # 1) Remove all flows from the device |
| 426 | # 2) Remove the device from ponsim |
| 427 | |
| 428 | self.log.info('deleted', device_id=self.device_id) |
khenaidoo | 91ecfd6 | 2018-11-04 17:13:42 -0500 | [diff] [blame] | 429 | |
| 430 | def start_kpi_collection(self, device_id): |
| 431 | kafka_cluster_proxy = get_kafka_proxy() |
| 432 | |
| 433 | @inlineCallbacks |
| 434 | def _collect(device_id, prefix): |
| 435 | try: |
| 436 | self.log.debug("pm-collection-interval") |
| 437 | # Proxy a message to ponsim_olt. The OLT will then query the ONU |
| 438 | # for statistics. The reply will |
| 439 | # arrive proxied back to us in self.receive_message(). |
| 440 | msg = PonSimMetricsRequest(port=self.proxy_address.channel_id) |
| 441 | |
| 442 | # Create a deferred to wait for the result as well as a transid |
| 443 | wait_for_result = Deferred() |
| 444 | trnsId = uuid4().hex |
| 445 | self.inter_adapter_message_deferred_map[ |
| 446 | self._to_string(trnsId)] = wait_for_result |
| 447 | |
| 448 | # Sends the request via proxy and wait for an ACK |
| 449 | yield self.adapter_proxy.send_inter_adapter_message( |
| 450 | msg=msg, |
| 451 | type=InterAdapterMessageType.METRICS_REQUEST, |
| 452 | from_adapter=self.adapter.name, |
| 453 | to_adapter=self.proxy_address.device_type, |
| 454 | to_device_id=self.device_id, |
| 455 | proxy_device_id=self.proxy_address.device_id, |
| 456 | message_id=trnsId |
| 457 | ) |
| 458 | # Wait for the full response from the proxied adapter |
| 459 | res = yield wait_for_result |
| 460 | # Remove the transaction from the transaction map |
| 461 | del self.inter_adapter_message_deferred_map[self._to_string(trnsId)] |
| 462 | |
| 463 | # Message is a reply to an ONU statistics request. Push it out to |
| 464 | # Kafka via adapter.submit_kpis(). |
| 465 | if res.header.type == InterAdapterMessageType.METRICS_RESPONSE: |
| 466 | msg = InterAdapterResponseBody() |
| 467 | res.body.Unpack(msg) |
| 468 | self.log.debug('metrics-response-received', result=msg.status) |
| 469 | if self.pm_metrics: |
| 470 | self.log.debug('Handling incoming ONU metrics') |
| 471 | response = PonSimMetrics() |
| 472 | msg.body.Unpack(response) |
| 473 | port_metrics = self.pm_metrics.extract_metrics(response) |
| 474 | try: |
| 475 | ts = arrow.utcnow().timestamp |
| 476 | kpi_event = KpiEvent( |
| 477 | type=KpiEventType.slice, |
| 478 | ts=ts, |
| 479 | prefixes={ |
| 480 | # OLT NNI port |
| 481 | prefix + '.uni': MetricValuePairs( |
| 482 | metrics=port_metrics['uni']), |
| 483 | # OLT PON port |
| 484 | prefix + '.pon': MetricValuePairs( |
| 485 | metrics=port_metrics['pon']) |
| 486 | } |
| 487 | ) |
| 488 | |
| 489 | self.log.debug( |
| 490 | 'Submitting KPI for incoming ONU mnetrics') |
| 491 | |
| 492 | # Step 3: submit directly to the kafka bus |
| 493 | if kafka_cluster_proxy: |
| 494 | if isinstance(kpi_event, Message): |
| 495 | kpi_event = dumps( |
| 496 | MessageToDict(kpi_event, True, True)) |
| 497 | kafka_cluster_proxy.send_message("voltha.kpis", |
| 498 | kpi_event) |
| 499 | |
| 500 | except Exception as e: |
| 501 | log.exception('failed-to-submit-kpis', e=e) |
| 502 | except Exception as e: |
| 503 | log.exception('failed-to-collect-metrics', e=e) |
| 504 | |
| 505 | self.pm_metrics.start_collector(_collect) |
| 506 | |
| 507 | def stop_kpi_collection(self): |
| 508 | self.pm_metrics.stop_collector() |