blob: 2c82f5834c6f6f35f95d5253c6dda7ccf12e410d [file] [log] [blame]
Zack Williams477ba092018-10-17 10:50:06 -07001/*
2 Copyright (C) 2018 Open Networking Foundation
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
Girish Gowdrae538dfd2019-09-30 11:07:30 +053018#include <string.h>
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040019#include "translation.h"
20
Jason Huangd33b4d82019-05-15 18:22:57 +080021int interface_key_to_port_no(bcmolt_interface_id intf_id,
22 bcmolt_interface_type intf_type) {
23 if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
24 return (0x1 << 16) + intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040025 }
Jason Huangd33b4d82019-05-15 18:22:57 +080026 if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
27 return (0x2 << 28) + intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040028 }
Jason Huangd33b4d82019-05-15 18:22:57 +080029 return intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040030}
31
Jason Huangd33b4d82019-05-15 18:22:57 +080032std::string alarm_status_to_string(bcmolt_status status) {
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040033 switch (status) {
Jason Huangd33b4d82019-05-15 18:22:57 +080034 case BCMOLT_STATUS_OFF:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040035 return "off";
Jason Huangd33b4d82019-05-15 18:22:57 +080036 case BCMOLT_STATUS_ON:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040037 return "on";
Jason Huangd33b4d82019-05-15 18:22:57 +080038 case BCMOLT_STATUS_NO_CHANGE:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040039 return "no_change";
40 }
41 return "unknown";
42}
Craig Lutgenb2601f02018-10-23 13:04:31 -050043