Python3: resources and libraries
[csit.git] / resources / libraries / python / MLRsearch / AbstractSearchAlgorithm.py
1 # Copyright (c) 2019 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Module defining AbstractSearchAlgorithm class."""
15
16 from abc import ABCMeta, abstractmethod
17
18
19 class AbstractSearchAlgorithm(metaclass=ABCMeta):
20     """Abstract class defining common API for search algorithms."""
21
22     def __init__(self, measurer):
23         """Store the rate provider.
24
25         :param measurer: Object able to perform trial or composite measurements.
26         :type measurer: AbstractMeasurer.AbstractMeasurer
27         """
28         # TODO: Type check for AbstractMeasurer?
29         self.measurer = measurer
30
31     @abstractmethod
32     def narrow_down_ndr_and_pdr(
33             self, fail_rate, line_rate, packet_loss_ratio):
34         """Perform measurements to narrow down intervals, return them.
35
36         This will be renamed when custom loss ratio lists are supported.
37
38         :param fail_rate: Minimal target transmit rate [pps].
39         :param line_rate: Maximal target transmit rate [pps].
40         :param packet_loss_ratio: Fraction of packets lost, for PDR [1].
41         :type fail_rate: float
42         :type line_rate: float
43         :type packet_loss_ratio: float
44         :returns: Structure containing narrowed down intervals
45             and their measurements.
46         :rtype: NdrPdrResult.NdrPdrResult
47         """
48         # TODO: Do we agree on arguments related to precision or trial duration?