com.google.refine.expr.functions.TimeSinceUnixEpochToDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
OpenRefine is a free, open source power tool for working with messy data and improving it
package com.google.refine.expr.functions;
import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.util.Properties;
import com.google.refine.expr.EvalError;
import com.google.refine.grel.ControlFunctionRegistry;
import com.google.refine.grel.EvalErrorMessage;
import com.google.refine.grel.Function;
import com.google.refine.grel.FunctionDescription;
public class TimeSinceUnixEpochToDate implements Function {
@Override
public Object call(Properties bindings, Object[] args) {
if (args.length >= 1 && args[0] instanceof Number) {
long epoch = (long) args[0];
ZoneId zoneId = ZoneId.of("UTC");
Instant instant = null;
OffsetDateTime date = null;
if (args.length == 1) {
instant = Instant.ofEpochSecond(epoch);
date = OffsetDateTime.ofInstant(instant, zoneId);
return date;
} else if (args.length == 2 && args[1] instanceof String) {
Object o2 = args[1];
String unit = ((String) o2).toLowerCase();
if (unit.equals("second")) {
instant = Instant.ofEpochSecond(epoch);
date = OffsetDateTime.ofInstant(instant, zoneId);
return date;
} else if (unit.equals("millisecond")) {
instant = Instant.ofEpochMilli(epoch);
date = OffsetDateTime.ofInstant(instant, zoneId);
return date;
} else if (unit.equals("microsecond")) {
instant = Instant.ofEpochSecond(epoch / 1000000, epoch % 1000000 * 1000);
date = OffsetDateTime.ofInstant(instant, zoneId);
return date;
}
}
}
// + " accepts a number and an optional second argument containing a string specifying the units");
return new EvalError(EvalErrorMessage.fun_time_since_unix_epoch_to_date(ControlFunctionRegistry.getFunctionName(this)));
}
@Override
public String getDescription() {
return FunctionDescription.fun_time_since_unix_epoch_to_date();
}
@Override
public String getParams() {
return "number n, string unit (optional, defaults to 'seconds')";
}
@Override
public String getReturns() {
return "date(OffsetDateTime)";
}
}