
org.skife.config.TimeSpan Maven / Gradle / Ivy
/*
* Copyright 2020-2021 Equinix, Inc
* Copyright 2014-2021 The Billing Project, LLC
*
* The Billing Project licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package org.skife.config;
import java.util.HashMap;
import java.util.concurrent.TimeUnit;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class TimeSpan {
private static final Pattern SPLIT = Pattern.compile("^(\\d+)\\s?(\\w+)$");
private static final HashMap UNITS = new HashMap();
static {
UNITS.put("ms", TimeUnit.MILLISECONDS);
UNITS.put("millisecond", TimeUnit.MILLISECONDS);
UNITS.put("milliseconds", TimeUnit.MILLISECONDS);
UNITS.put("s", TimeUnit.SECONDS);
UNITS.put("second", TimeUnit.SECONDS);
UNITS.put("seconds", TimeUnit.SECONDS);
UNITS.put("m", TimeUnit.MINUTES);
UNITS.put("min", TimeUnit.MINUTES);
UNITS.put("minute", TimeUnit.MINUTES);
UNITS.put("minutes", TimeUnit.MINUTES);
UNITS.put("h", TimeUnit.HOURS);
UNITS.put("hour", TimeUnit.HOURS);
UNITS.put("hours", TimeUnit.HOURS);
UNITS.put("d", TimeUnit.DAYS);
UNITS.put("day", TimeUnit.DAYS);
UNITS.put("days", TimeUnit.DAYS);
}
private final long period;
private final TimeUnit unit;
private final long millis;
public TimeSpan(final String spec) {
final Matcher m = SPLIT.matcher(spec);
if (!m.matches()) {
throw new IllegalArgumentException(String.format("%s is not a valid time spec", spec));
}
final String number = m.group(1);
final String type = m.group(2);
period = Long.parseLong(number);
unit = UNITS.get(type);
if (unit == null) {
throw new IllegalArgumentException(String.format("%s is not a valid time unit in %s", type, spec));
}
millis = TimeUnit.MILLISECONDS.convert(period, unit);
}
public TimeSpan(final long period, final TimeUnit unit) {
this.period = period;
this.unit = unit;
this.millis = TimeUnit.MILLISECONDS.convert(period, unit);
}
public long getMillis() {
return millis;
}
public long getPeriod() {
return period;
}
public TimeUnit getUnit() {
return unit;
}
@Override
public String toString() {
switch (unit) {
case SECONDS:
return period + "s";
case MINUTES:
return period + "m";
case HOURS:
return period + "h";
case DAYS:
return period + "d";
default:
return period + "ms";
}
}
@Override
public int hashCode() {
return 31 + (int) (millis ^ (millis >>> 32));
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final TimeSpan other = (TimeSpan) obj;
return millis == other.millis;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy