blob: 4a84385687482c702f186bcf23279d69b7784b90 [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
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040018#include "translation.h"
19
Jason Huangd33b4d82019-05-15 18:22:57 +080020int interface_key_to_port_no(bcmolt_interface_id intf_id,
21 bcmolt_interface_type intf_type) {
22 if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
23 return (0x1 << 16) + intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040024 }
Jason Huangd33b4d82019-05-15 18:22:57 +080025 if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
26 return (0x2 << 28) + intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040027 }
Jason Huangd33b4d82019-05-15 18:22:57 +080028 return intf_id;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040029}
30
Jason Huangd33b4d82019-05-15 18:22:57 +080031std::string alarm_status_to_string(bcmolt_status status) {
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040032 switch (status) {
Jason Huangd33b4d82019-05-15 18:22:57 +080033 case BCMOLT_STATUS_OFF:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040034 return "off";
Jason Huangd33b4d82019-05-15 18:22:57 +080035 case BCMOLT_STATUS_ON:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040036 return "on";
Jason Huangd33b4d82019-05-15 18:22:57 +080037 case BCMOLT_STATUS_NO_CHANGE:
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040038 return "no_change";
39 }
40 return "unknown";
41}
Craig Lutgenb2601f02018-10-23 13:04:31 -050042