BUG-542 - adding overall statictics
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / ModelDrivenSwitch.java
index 9a23e115df577d9f40e427cc830a2bb23d93a5af..6afef5a729252be479c3a12523ef573bd704612a 100644 (file)
@@ -1,9 +1,57 @@
+/**
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.openflowplugin.openflow.md;
 
+import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev130819.FlowStatistics;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.statistics.rev130819.OpendaylightFlowStatisticsService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.table.statistics.rev131215.OpendaylightFlowTableStatisticsService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.SalGroupService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.OpendaylightGroupStatisticsService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.service.rev130918.SalMeterService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.OpendaylightMeterStatisticsService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.PacketProcessingService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.port.service.rev131107.SalPortService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.OpendaylightPortStatisticsService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.queue.statistics.rev131216.OpendaylightQueueStatisticsService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.SalTableService;
+import org.opendaylight.yangtools.concepts.CompositeObjectRegistration;
+import org.opendaylight.yangtools.concepts.Identifiable;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
-public interface ModelDrivenSwitch extends SalFlowService, PacketProcessingService {
+/**
+ * interface concatenating all md-sal services provided by OF-switch
+ */
+public interface ModelDrivenSwitch extends //
+        SalGroupService, //
+        SalFlowService, //
+        SalMeterService, //
+        SalTableService,//
+        SalPortService,
+        PacketProcessingService, //
+        OpendaylightGroupStatisticsService, //
+        OpendaylightMeterStatisticsService, //
+        OpendaylightFlowStatisticsService, //
+        OpendaylightPortStatisticsService, //
+        OpendaylightFlowTableStatisticsService, //
+        OpendaylightQueueStatisticsService, //
+        Identifiable<InstanceIdentifier<Node>> {
 
+    /**
+     * @param ctx
+     * @return wrapped list of {service provider + path} registration couples
+     */
+    CompositeObjectRegistration<ModelDrivenSwitch> register(ProviderContext ctx);
+
+    /**
+     * @return id of encapsulated node (served by this impl)
+     */
+    NodeId getNodeId();
 }