fix rte_crypto_ipsec_mb dependency
[samplevnf.git] / VNFs / DPPD-PROX / helper-scripts / dpi / timeseriespoint.py
1 #!/bin/env python
2
3 ##
4 ## Copyright (c) 2010-2017 Intel Corporation
5 ##
6 ## Licensed under the Apache License, Version 2.0 (the "License");
7 ## you may not use this file except in compliance with the License.
8 ## You may obtain a copy of the License at
9 ##
10 ##     http://www.apache.org/licenses/LICENSE-2.0
11 ##
12 ## Unless required by applicable law or agreed to in writing, software
13 ## distributed under the License is distributed on an "AS IS" BASIS,
14 ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ## See the License for the specific language governing permissions and
16 ## limitations under the License.
17 ##
18
19 from decimal import *
20
21 class TimeSeriesPoint:
22     def __init__(self, value, instant):
23         self._value = value;
24         self._instant = instant;
25
26     def getValue(self):
27         return self._value;
28
29     def getInstant(self):
30         return self._instant;
31
32     def getRateOfChange(self, other):
33         diff = self.getValue() - other.getValue();
34         t_diff = self.getInstant() - other.getInstant();
35
36         if (diff == 0 or abs(t_diff) <= 0.00001):
37             return Decimal(0)
38         else:
39             return Decimal(diff)/t_diff