Merge of new rebased code
[appc.git] / appc-metric / appc-metric-bundle / src / main / java / org / openecomp / appc / metricservice / metric / impl / DefaultPrimitiveCounter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.metricservice.metric.impl;
23
24 import org.openecomp.appc.metricservice.metric.MetricType;
25 import org.openecomp.appc.metricservice.metric.PrimitiveCounter;
26
27 import java.text.SimpleDateFormat;
28 import java.util.Calendar;
29 import java.util.HashMap;
30 import java.util.concurrent.atomic.AtomicLong;
31
32
33 public class DefaultPrimitiveCounter implements PrimitiveCounter {
34     private String name;
35     private MetricType metricType;
36     private AtomicLong counter = new AtomicLong();
37
38     private final SimpleDateFormat dateTimeFormat = new SimpleDateFormat("YYYY-MM-dd:HH:mm:ss");
39     private String lastResetTime = dateTimeFormat.format(Calendar.getInstance().getTime());
40
41     public DefaultPrimitiveCounter(String name, MetricType metricType, long counter) {
42         this.name = name;
43         this.metricType = metricType;
44         this.counter.set(counter);
45     }
46
47     public DefaultPrimitiveCounter(String name, MetricType metricType) {
48         this.counter.set(0);
49         this.name = name;
50         this.metricType = metricType;
51     }
52
53     @Override
54     public void increment() {
55         increment(1);
56     }
57
58     @Override
59     public void increment(long value) {
60         this.counter.incrementAndGet();
61     }
62
63     @Override
64     public void decrement() {
65         decrement(1);
66     }
67
68     @Override
69     public void decrement(long value) {
70         this.counter.decrementAndGet();
71     }
72
73     @Override
74     public long value() {
75         return this.counter.get();
76     }
77
78     @Override
79     public String name() {
80         return this.name;
81     }
82
83     @Override
84     public void reset() {
85         this.counter.set(0);
86         Calendar cal = Calendar.getInstance();
87         lastResetTime = dateTimeFormat.format(cal.getTime());
88     }
89
90     @Override
91     public String toString() {
92         return "DefaultPrimitiveCounter{" + "name='" + name + '\'' + ", metricType=" + metricType + ", counter="
93                 + counter.get() + '}';
94     }
95
96     @Override
97     public MetricType type() {
98         return this.metricType;
99     }
100
101     @Override
102     public HashMap<String, String> getMetricsOutput() {
103         return new HashMap<>();
104     }
105
106     @Override
107     public String getLastModified() {
108         return lastResetTime;
109     }
110 }