blob: a7dbd396e055f23f841f2adee8b0443ae3c84f77 [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
Carmelo Casconeca931162019-07-15 18:22:24 -070019import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
Gamze Abaka33feef52019-02-27 08:16:47 +000021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.net.meter.MeterKey;
Andrea Campanellacbbb7952019-11-25 06:38:41 +000023import org.opencord.olt.internalapi.AccessDeviceMeterService;
Gamze Abaka33feef52019-02-27 08:16:47 +000024
25import java.util.Set;
26
27/**
28 * Shows information about device-meter mappings that have been programmed in the
29 * data-plane.
30 */
Carmelo Casconeca931162019-07-15 18:22:24 -070031@Service
Gamze Abaka33feef52019-02-27 08:16:47 +000032@Command(scope = "onos", name = "volt-programmed-meters",
33 description = "Shows device-meter mappings programmed in the data-plane")
34public class ShowProgrammedMetersCommand extends AbstractShellCommand {
35
36 @Override
Carmelo Casconeca931162019-07-15 18:22:24 -070037 protected void doExecute() {
Andrea Campanellacbbb7952019-11-25 06:38:41 +000038 AccessDeviceMeterService service = AbstractShellCommand.get(AccessDeviceMeterService.class);
Gamze Abaka33feef52019-02-27 08:16:47 +000039 Set<MeterKey> programmedMeters = service.getProgMeters();
40 programmedMeters.forEach(this::display);
41 }
42
43 private void display(MeterKey meterKey) {
44 print("device=%s meter=%s", meterKey.deviceId(), meterKey.meterId());
45 }
46}