Merge "Removed duplicate declaration in pom.xml."
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / statistics / services / OpendaylightMeterStatisticsServiceImpl.java
1 /**
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.impl.statistics.services;
9
10 import java.util.concurrent.Future;
11 import java.util.concurrent.atomic.AtomicLong;
12 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
13 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
14 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
15 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorExecutor;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetAllMeterConfigStatisticsInput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetAllMeterConfigStatisticsOutput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetAllMeterStatisticsInput;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetAllMeterStatisticsOutput;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetMeterFeaturesInput;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetMeterFeaturesOutput;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetMeterStatisticsInput;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.GetMeterStatisticsOutput;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.OpendaylightMeterStatisticsService;
25 import org.opendaylight.yangtools.yang.common.RpcResult;
26
27 public class OpendaylightMeterStatisticsServiceImpl implements OpendaylightMeterStatisticsService {
28     private final AllMeterConfigStatsService allMeterConfig;
29     private final AllMeterStatsService allMeterStats;
30     private final MeterFeaturesService meterFeatures;
31     private final MeterStatsService meterStats;
32     private final NotificationPublishService notificationPublishService;
33
34     public OpendaylightMeterStatisticsServiceImpl(final RequestContextStack requestContextStack,
35                                                   final DeviceContext deviceContext,
36                                                   final AtomicLong compatibilityXidSeed,
37                                                   final NotificationPublishService notificationPublishService,
38                                                   final ConvertorExecutor convertorExecutor) {
39         this.notificationPublishService = notificationPublishService;
40
41         allMeterConfig = new AllMeterConfigStatsService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor);
42         allMeterStats = new AllMeterStatsService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor);
43         meterFeatures = new MeterFeaturesService(requestContextStack, deviceContext, compatibilityXidSeed);
44         meterStats = new MeterStatsService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor);
45     }
46
47     @Override
48     public Future<RpcResult<GetAllMeterConfigStatisticsOutput>> getAllMeterConfigStatistics(
49             final GetAllMeterConfigStatisticsInput input) {
50         return allMeterConfig.handleAndNotify(input, notificationPublishService);
51     }
52
53     @Override
54     public Future<RpcResult<GetAllMeterStatisticsOutput>> getAllMeterStatistics(final GetAllMeterStatisticsInput input) {
55         return allMeterStats.handleAndNotify(input, notificationPublishService);
56     }
57
58     @Override
59     public Future<RpcResult<GetMeterFeaturesOutput>> getMeterFeatures(final GetMeterFeaturesInput input) {
60         return meterFeatures.handleAndNotify(input, notificationPublishService);
61     }
62
63     @Override
64     public Future<RpcResult<GetMeterStatisticsOutput>> getMeterStatistics(final GetMeterStatisticsInput input) {
65         return meterStats.handleAndNotify(input, notificationPublishService);
66     }
67 }