Merge "test_spec: Clarify LTD.Throughput.RFC2544.PacketLossRatioFrameModification"
[vswitchperf.git] / core / vswitch_controller.py
1 # Copyright 2015 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 """Interface for deployment specific vSwitch controllers
15 """
16
17 class IVswitchController(object):
18     """Abstract class which defines a vSwitch controller object
19
20     This interface is used to setup and control a vSwitch provider for a
21     particular deployment scenario.
22     """
23     def setup(self):
24         """Sets up the switch for the particular deployment scenario
25         """
26         raise NotImplementedError(
27             "The VswitchController does not implement the \"setup\" function.")
28     def stop(self):
29         """Tears down the switch created in setup()
30         """
31         raise NotImplementedError(
32             "The VswitchController does not implement the \"stop\" function.")
33
34     def get_vswitch(self):
35         """Get the controlled vSwitch
36
37         :return: The controlled IVswitch
38         """
39         raise NotImplementedError(
40             "The VswitchController does not implement the \"get_vswitch\" "
41             "function.")
42
43     def get_ports_info(self):
44         """Returns a dictionary describing all ports on the vSwitch.
45
46         See IVswitch for dictionary structure details
47         """
48         raise NotImplementedError(
49             "The VswitchController does not implement the \"get_ports_info\" "
50             "function.")