blob: bf00b92e74ff3b9239fcf855ec9c2d16f0d163ab [file] [log] [blame]
Gamze Abaka33feef52019-02-27 08:16:47 +00001/*
2 * Copyright 2016-present Open Networking Foundation
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
17package org.opencord.olt.cli;
18
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.meter.MeterKey;
Gamze Abaka1b7816e2019-11-25 06:38:41 +000022import org.opencord.olt.internalapi.AccessDeviceMeterService;
Gamze Abaka33feef52019-02-27 08:16:47 +000023
Gamze Abaka33feef52019-02-27 08:16:47 +000024import java.util.Map;
Andrea Campanellad936c8e2020-01-30 11:04:34 +010025import java.util.Collection;
26
27
Gamze Abaka33feef52019-02-27 08:16:47 +000028
29@Command(scope = "onos", name = "volt-bpmeter-mappings",
30 description = "Shows information about bandwidthProfile-meterKey (device / meter) mappings")
31public class ShowBpMeterMappingsCommand extends AbstractShellCommand {
32
33 @Override
34 protected void execute() {
Gamze Abaka1b7816e2019-11-25 06:38:41 +000035 AccessDeviceMeterService service = AbstractShellCommand.get(AccessDeviceMeterService.class);
Andrea Campanellad936c8e2020-01-30 11:04:34 +010036 Map<String, Collection<MeterKey>> bpMeterMappings = service.getBpMeterMappings();
Gamze Abaka33feef52019-02-27 08:16:47 +000037 bpMeterMappings.forEach(this::display);
38 }
39
Andrea Campanellad936c8e2020-01-30 11:04:34 +010040 private void display(String bpInfo, Collection<MeterKey> meterKeyList) {
Gamze Abaka33feef52019-02-27 08:16:47 +000041 meterKeyList.forEach(meterKey ->
42 print("bpInfo=%s deviceId=%s meterId=%s",
43 bpInfo, meterKey.deviceId(), meterKey.meterId()));
44
45 }
46}