blob: 6b2f1e2bd2d81ac14f439c903348f4dd36ec5698 [file] [log] [blame]
Chip Boling67b674a2019-02-08 11:42:18 -06001# Copyright 2018 the original author or authors.
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.
Zack Williams84a71e92019-11-15 09:00:19 -070014from __future__ import absolute_import
William Kurkianede82e92019-03-05 13:02:57 -050015from voltha_protos.events_pb2 import AlarmEventType, AlarmEventSeverity, AlarmEventCategory
Chip Boling67b674a2019-02-08 11:42:18 -060016from pyvoltha.adapters.extensions.alarms.adapter_alarms import AlarmBase
17
18
19class OnuSelfTestFailureAlarm(AlarmBase):
20 """
21 The ONU Self Test Failure Alarm is reported by both the CircuitPack (ME #6)
22 and the ONT-G (ME # 256) to indicate failure a failed autonomous self-test.
23
24 For CircuitPack equipment alarms, the intf_id reported is that of the
25 UNI's logical port number
26
27 For ONT-G equipment alarms, the intf_id reported is that of the PON/ANI
28 physical port number
29
30 Note: Some ONUs may use this alarm to report a self-test failure or may
31 may report it with the ONU Equipment Alarm which can also cover a
32 self-test failure.
33 """
Yongjie Zhang6d6dc3a2019-08-06 14:00:29 -040034 def __init__(self, alarm_mgr, onu_id, intf_id, serial_number):
Chip Boling67b674a2019-02-08 11:42:18 -060035 super(OnuSelfTestFailureAlarm, self).__init__(alarm_mgr, object_type='onu self-test failure',
36 alarm='ONU_SELF_TEST_FAIL',
37 alarm_category=AlarmEventCategory.ONU,
Yongjie Zhang6d6dc3a2019-08-06 14:00:29 -040038 alarm_type=AlarmEventType.EQUIPMENT,
Chip Boling67b674a2019-02-08 11:42:18 -060039 alarm_severity=AlarmEventSeverity.CRITICAL)
40 self._onu_id = onu_id
41 self._intf_id = intf_id
Yongjie Zhang6d6dc3a2019-08-06 14:00:29 -040042 self._serial_number = serial_number
Chip Boling67b674a2019-02-08 11:42:18 -060043
44 def get_context_data(self):
45 return {'onu-id': self._onu_id,
Yongjie Zhang6d6dc3a2019-08-06 14:00:29 -040046 'onu-intf-id': self._intf_id,
47 'onu-serial-number': self._serial_number}