All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.erudika.para.utils.HumanTime Maven / Gradle / Ivy

There is a newer version: 1.50.3
Show newest version
/*
 * HumanTime.java
 *
 * Created on 06.10.2008
 *
 * Copyright (c) 2008 Johann Burkard () 
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */
package com.erudika.para.utils;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Iterator;
import org.apache.commons.lang3.mutable.MutableInt;
import org.slf4j.LoggerFactory;

/**
 * HumanTime parses and formats time deltas for easier reading by humans. It can format time information without losing
 * information but its main purpose is to generate more easily understood approximations.
 * 

Using HumanTime

*

* Use HumanTime by creating an instance that contains the time delta ({@link HumanTime#HumanTime(long)}), create an * empty instance through ({@link HumanTime#HumanTime()}) and set the delta using the {@link #y()}, {@link #d()}, * {@link #h()}, {@link #s()} and {@link #ms()} methods or parse a {@link CharSequence} representation * ({@link #eval(CharSequence)}). Parsing ignores whitespace and is case insensitive. *

*

HumanTime format

*

* HumanTime will format time deltas in years ("y"), days ("d"), hours ("h"), minutes ("m"), seconds ("s") and * milliseconds ("ms"), separated by a blank character. For approximate representations, the time delta will be round up * or down if necessary. *

*

HumanTime examples

*
    *
  • HumanTime.eval("1 d 1d 2m 3m").getExactly() = "2 d 5 m"
  • *
  • HumanTime.eval("2m8d2h4m").getExactly() = "8 d 2 h 6 m"
  • *
  • HumanTime.approximately("2 d 8 h 20 m 50 s") = "2 d 8 h"
  • *
  • HumanTime.approximately("55m") = "1 h"
  • *
*

Implementation details

*
    *
  • The time delta can only be increased.
  • *
  • Instances of this class are thread safe.
  • *
  • Getters using the Java Beans naming conventions are provided for use in environments like JSP or with expression * languages like OGNL. See {@link #getApproximately()} and {@link #getExactly()}.
  • *
  • To keep things simple, a year consists of 365 days.
  • *
* * @author Johann Burkard * @version $Id: HumanTime.java 3906 2011-05-21 13:56:05Z johann $ * @see #eval(CharSequence) * @see #approximately(CharSequence) * @see Date * Formatting and Parsing for Humans in Java with HumanTime */ public final class HumanTime implements Externalizable, Comparable { /** * The serial version UID. */ private static final long serialVersionUID = 5179328390732826722L; /** * One second. */ private static final long SECOND = 1000; /** * One minute. */ private static final long MINUTE = SECOND * 60; /** * One hour. */ private static final long HOUR = MINUTE * 60; /** * One day. */ private static final long DAY = HOUR * 24; /** * One month. */ private static final long MONTH = DAY * 30; /** * One year. */ private static final long YEAR = DAY * 365; /** * Percentage of what is round up or down. */ private static final int CEILING_PERCENTAGE = 100; /** * Parsing state. */ enum State { NUMBER, IGNORED, UNIT } static State getState(char c) { if (Character.toString(c).matches("[0-9]")) { return State.NUMBER; } else if (Character.toString(c).matches("[smhdySMHDY]")) { return State.UNIT; } else { return State.IGNORED; } } /** * Parses a {@link CharSequence} argument and returns a {@link HumanTime} instance. * * @param s the char sequence, may not be null * @return an instance, never null */ public static HumanTime eval(final CharSequence s) { HumanTime out = new HumanTime(0L); int num = 0; int start = 0; int end = 0; State oldState = State.IGNORED; for (char c : new Iterable() { /** * @see java.lang.Iterable#iterator() */ public Iterator iterator() { return new Iterator() { private int p = 0; /** * @see java.util.Iterator#hasNext() */ public boolean hasNext() { return p < s.length(); } /** * @see java.util.Iterator#next() */ public Character next() { return s.charAt(p++); } /** * @see java.util.Iterator#remove() */ public void remove() { throw new UnsupportedOperationException(); } }; } }) { State newState = getState(c); if (oldState != newState) { if (oldState == State.NUMBER && (newState == State.IGNORED || newState == State.UNIT)) { num = Integer.parseInt(s.subSequence(start, end).toString()); } else if (oldState == State.UNIT && (newState == State.IGNORED || newState == State.NUMBER)) { out.nTimes(s.subSequence(start, end).toString(), num); num = 0; } start = end; } ++end; oldState = newState; } if (oldState == State.UNIT) { out.nTimes(s.subSequence(start, end).toString(), num); } return out; } /** * Parses and formats the given char sequence, preserving all data. *

* Equivalent to * eval(in).getExactly() * * @param in the char sequence, may not be null * @return a formatted String, never null */ public static String exactly(CharSequence in) { return eval(in).getExactly(); } /** * Formats the given time delta, preserving all data. *

* Equivalent to * new HumanTime(in).getExactly() * * @param l the time delta * @return a formatted String, never null */ public static String exactly(long l) { return new HumanTime(l).getExactly(); } /** * Parses and formats the given char sequence, potentially removing some data to make the output easier to * understand. *

* Equivalent to * eval(in).getApproximately() * * @param in the char sequence, may not be null * @return a formatted String, never null */ public static String approximately(CharSequence in) { return eval(in).getApproximately(); } /** * Formats the given time delta, preserving all data. *

* Equivalent to * new HumanTime(l).getApproximately() * * @param l the time delta * @return a formatted String, never null */ public static String approximately(long l) { return new HumanTime(l).getApproximately(); } /** * The time delta. */ private long delta; /** * No-argument Constructor for HumanTime. *

* Equivalent to calling * new HumanTime(0L). */ public HumanTime() { this(0L); } /** * Constructor for HumanTime. * * @param delta the initial time delta, interpreted as a positive number */ public HumanTime(long delta) { super(); this.delta = Math.abs(delta); } private void nTimes(String unit, int n) { if ("ms".equalsIgnoreCase(unit)) { ms(n); } else if ("s".equalsIgnoreCase(unit)) { s(n); } else if ("m".equalsIgnoreCase(unit)) { m(n); } else if ("h".equalsIgnoreCase(unit)) { h(n); } else if ("d".equalsIgnoreCase(unit)) { d(n); } else if ("y".equalsIgnoreCase(unit)) { y(n); } } private long upperCeiling(long x) { return (x / 100) * (100 - CEILING_PERCENTAGE); } private long lowerCeiling(long x) { return (x / 100) * CEILING_PERCENTAGE; } private String ceil(long d, long n) { return Integer.toString((int) Math.ceil((double) d / n)); } private String floor(long d, long n) { return Integer.toString((int) Math.floor((double) d / n)); } /** * Adds one year to the time delta. * * @return this HumanTime object */ public HumanTime y() { return y(1); } /** * Adds n years to the time delta. * * @param n n * @return this HumanTime object */ public HumanTime y(int n) { delta += YEAR * Math.abs(n); return this; } /** * Adds one day to the time delta. * * @return this HumanTime object */ public HumanTime d() { return d(1); } /** * Adds n days to the time delta. * * @param n n * @return this HumanTime object */ public HumanTime d(int n) { delta += DAY * Math.abs(n); return this; } /** * Adds one hour to the time delta. * * @return this HumanTime object */ public HumanTime h() { return h(1); } /** * Adds n hours to the time delta. * * @param n n * @return this HumanTime object */ public HumanTime h(int n) { delta += HOUR * Math.abs(n); return this; } /** * Adds one month to the time delta. * * @return this HumanTime object */ public HumanTime m() { return m(1); } /** * Adds n months to the time delta. * * @param n n * @return this HumanTime object */ public HumanTime m(int n) { delta += MINUTE * Math.abs(n); return this; } /** * Adds one second to the time delta. * * @return this HumanTime object */ public HumanTime s() { return s(1); } /** * Adds n seconds to the time delta. * * @param n seconds * @return this HumanTime object */ public HumanTime s(int n) { delta += SECOND * Math.abs(n); return this; } /** * Adds one millisecond to the time delta. * * @return this HumanTime object */ public HumanTime ms() { return ms(1); } /** * Adds n milliseconds to the time delta. * * @param n n * @return this HumanTime object */ public HumanTime ms(int n) { delta += Math.abs(n); return this; } /** * Returns a human-formatted representation of the time delta. * * @return a formatted representation of the time delta, never null */ public String getExactly() { return getExactly(new StringBuilder()).toString(); } /** * Appends a human-formatted representation of the time delta to the given {@link Appendable} object. * * @param the return type * @param a the Appendable object, may not be null * @return the given Appendable object, never null */ public T getExactly(T a) { try { boolean prependBlank = false; long d = delta; if (d >= YEAR) { a.append(floor(d, YEAR)); a.append(' '); a.append('y'); prependBlank = true; } d %= YEAR; if (d >= DAY) { if (prependBlank) { a.append(' '); } a.append(floor(d, DAY)); a.append(' '); a.append('d'); prependBlank = true; } d %= DAY; if (d >= HOUR) { if (prependBlank) { a.append(' '); } a.append(floor(d, HOUR)); a.append(' '); a.append('h'); prependBlank = true; } d %= HOUR; if (d >= MINUTE) { if (prependBlank) { a.append(' '); } a.append(floor(d, MINUTE)); a.append(' '); a.append('m'); prependBlank = true; } d %= MINUTE; if (d >= SECOND) { if (prependBlank) { a.append(' '); } a.append(floor(d, SECOND)); a.append(' '); a.append('s'); prependBlank = true; } d %= SECOND; if (d > 0) { if (prependBlank) { a.append(' '); } a.append(Integer.toString((int) d)); a.append(' '); a.append('m'); a.append('s'); } } catch (IOException ex) { // What were they thinking... LoggerFactory.getLogger(HumanTime.class).warn(null, ex); } return a; } /** * Returns an approximate, human-formatted representation of the time delta. * * @return a formatted representation of the time delta, never null */ public String getApproximately() { return getApproximately(new StringBuilder()).toString(); } /** * Appends an approximate, human-formatted representation of the time delta to the given {@link Appendable} object. * * @param the return type * @param a the Appendable object, may not be null * @return the given Appendable object, never null */ public T getApproximately(T a) { try { MutableInt parts = new MutableInt(0); boolean rounded = false; long d = delta; long mod = d % YEAR; if (!append(d, mod, YEAR, 'y', a, parts)) { d %= YEAR; mod = d % MONTH; if (!append(d, mod, MONTH, 'n', a, parts) && parts.intValue() < 2) { d %= MONTH; mod = d % DAY; if (!append(d, mod, DAY, 'd', a, parts) && parts.intValue() < 2) { d %= DAY; mod = d % HOUR; if (!append(d, mod, HOUR, 'h', a, parts) && parts.intValue() < 2) { d %= HOUR; mod = d % MINUTE; if (!append(d, mod, MINUTE, 'm', a, parts) && parts.intValue() < 2) { d %= MINUTE; mod = d % SECOND; if (!append(d, mod, SECOND, 's', a, parts) && parts.intValue() < 2) { d %= SECOND; if (d > 0 && !rounded) { a.append(Integer.toString((int) d)); // a.append(' '); a.append('m'); a.append('s'); } } } } } } } } catch (IOException ex) { // What were they thinking... LoggerFactory.getLogger(HumanTime.class).warn(null, ex); } return a; } private boolean append(long d, long mod, long unit, char u, Appendable a, MutableInt parts) throws IOException { if (d >= unit) { a.append(floor(d, unit)); // a.append(' '); a.append(u); parts.increment(); if (mod <= lowerCeiling(unit)) { return true; } } return false; } /** * Returns the time delta. * * @return the time delta */ public long getDelta() { return delta; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof HumanTime)) { return false; } return delta == ((HumanTime) obj).delta; } @Override public int hashCode() { return (int) (delta ^ (delta >> 32)); } @Override public String toString() { return getExactly(); } @Override public int compareTo(HumanTime t) { return delta == t.delta ? 0 : (delta < t.delta ? -1 : 1); } @Override public void readExternal(ObjectInput in) throws IOException { delta = in.readLong(); } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeLong(delta); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy