Updating licenses in all files
[appc.git] / appc-metric / appc-metric-bundle / src / main / java / org / openecomp / appc / metricservice / metric / impl / DefaultPrimitiveCounter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.metricservice.metric.impl;
24
25 import org.openecomp.appc.metricservice.metric.MetricType;
26 import org.openecomp.appc.metricservice.metric.PrimitiveCounter;
27
28 import java.text.SimpleDateFormat;
29 import java.util.Calendar;
30 import java.util.HashMap;
31 import java.util.concurrent.atomic.AtomicLong;
32
33
34 public class DefaultPrimitiveCounter implements PrimitiveCounter {
35     private String name;
36     private MetricType metricType;
37     private AtomicLong counter = new AtomicLong();
38
39     private final SimpleDateFormat dateTimeFormat = new SimpleDateFormat("YYYY-MM-dd:HH:mm:ss");
40     private String lastResetTime = dateTimeFormat.format(Calendar.getInstance().getTime());
41
42     public DefaultPrimitiveCounter(String name, MetricType metricType, long counter) {
43         this.name = name;
44         this.metricType = metricType;
45         this.counter.set(counter);
46     }
47
48     public DefaultPrimitiveCounter(String name, MetricType metricType) {
49         this.counter.set(0);
50         this.name = name;
51         this.metricType = metricType;
52     }
53
54     @Override
55     public void increment() {
56         increment(1);
57     }
58
59     @Override
60     public void increment(long value) {
61         this.counter.incrementAndGet();
62     }
63
64     @Override
65     public void decrement() {
66         decrement(1);
67     }
68
69     @Override
70     public void decrement(long value) {
71         this.counter.decrementAndGet();
72     }
73
74     @Override
75     public long value() {
76         return this.counter.get();
77     }
78
79     @Override
80     public String name() {
81         return this.name;
82     }
83
84     @Override
85     public void reset() {
86         this.counter.set(0);
87         Calendar cal = Calendar.getInstance();
88         lastResetTime = dateTimeFormat.format(cal.getTime());
89     }
90
91     @Override
92     public String toString() {
93         return "DefaultPrimitiveCounter{" + "name='" + name + '\'' + ", metricType=" + metricType + ", counter="
94                 + counter.get() + '}';
95     }
96
97     @Override
98     public MetricType type() {
99         return this.metricType;
100     }
101
102     @Override
103     public HashMap<String, String> getMetricsOutput() {
104         return new HashMap<>();
105     }
106
107     @Override
108     public String getLastModified() {
109         return lastResetTime;
110     }
111 }