58f5a49e11713ee56eb6417625de13e07d74d524
[policy/engine.git] / ONAP-XACML / src / main / java / org / onap / policy / xacml / util / MetricsUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-XACML
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.xacml.util;
21
22 public class MetricsUtil {
23         
24         private MetricsUtil() {
25                 //
26                 // private constructor to hide the implicit public one for utility class
27                 // 
28         }
29         
30         public static class AvgLatency {
31                 private long cumLatency = 0;
32                 private long count = 0;
33                 
34                 public void compute(long latency) {
35                         cumLatency += latency;
36                         count++;
37                 }
38                 
39                 public long avg() {
40                         if (count == 0)
41                                 return 0;
42                         
43                         return cumLatency / count;
44                 }
45                 
46                 public void reset() {
47                         cumLatency = 0;
48                         count = 0;
49                 }
50         }
51
52         public static class MinLatency {
53                 private long min = Long.MAX_VALUE;
54                 
55                 public synchronized void compute(long ts) {
56                         if (ts < min)
57                                 min = ts;
58                 }
59                 
60                 public long min() {
61                         return min;
62                 }
63                 
64                 public void reset() {
65                         min = Long.MAX_VALUE;
66                 }
67         }
68
69         public static class MaxLatency {
70                 private long max = Long.MIN_VALUE;
71                 
72                 public synchronized void compute(long ts) {
73                         if (ts > max)
74                                 max = ts;
75                 }
76                 
77                 public long max() {
78                         return max;
79                 }
80                 
81                 public void reset() {
82                         max = Long.MIN_VALUE;
83                 }
84         }
85
86 }