Sonar Fixes, Formatting
[aaf/authz.git] / misc / rosetta / src / test / java / org / onap / aaf / misc / rosetta / test / Report.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 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  */
21
22 package org.onap.aaf.misc.rosetta.test;
23
24 import java.io.IOException;
25 import java.io.Writer;
26
27 import org.onap.aaf.misc.env.Trans;
28 import org.onap.aaf.misc.env.Trans.Metric;
29
30 public class Report {
31     float total;
32     float buckets[];
33     String[] names;
34     private int iterations;
35     private int count;
36
37     public Report(int iters, String ... names) {
38         iterations = iters;
39         buckets = new float[names.length];
40         this.names = names;
41         total=0;
42         count = 0;
43     }
44
45     public void glean(Trans trans, int ... type) {
46         Metric m = trans.auditTrail(0, null, type);
47         total+=m.total;
48         int min = Math.min(buckets.length, m.buckets.length);
49         for (int b=0;b<min;++b) {
50             buckets[b]+=m.buckets[b];
51         }
52     }
53
54     public boolean go() {
55         return ++count<iterations;
56     }
57
58
59     public void report(Writer sbw) throws IOException {
60         sbw.append("\n"+count + " entries, Total Time: " + total + "ms, Avg Time: " + total/count + "ms\n");
61         int min = Math.min(buckets.length, names.length);
62         for (int i=0;i<min;++i) {
63             sbw.append("  Time: " + names[i] + ' ' + buckets[i] + "ms, Avg Time: " + buckets[i]/count + "ms\n");
64         }
65
66     }
67 }