package org.eclipse.jetty.util;
import java.io.InputStream;
import java.time.Instant;
import java.util.Properties;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
public class Jetty
{
private static final Logger LOG = Log.getLogger(Jetty.class);
public static final String VERSION;
public static final String POWERED_BY;
public static final boolean STABLE;
public static final String GIT_HASH;
public static final String BUILD_TIMESTAMP;
private static final Properties __buildProperties = new Properties();
static
{
try
{
try (InputStream inputStream =
Jetty.class.getResourceAsStream("/org/eclipse/jetty/version/build.properties"))
{
__buildProperties.load(inputStream);
}
}
catch (Exception e)
{
LOG.ignore(e);
}
String gitHash = __buildProperties.getProperty("buildNumber", "unknown");
if (gitHash.startsWith("${"))
gitHash = "unknown";
GIT_HASH = gitHash;
System.setProperty("jetty.git.hash", GIT_HASH);
BUILD_TIMESTAMP = formatTimestamp(__buildProperties.getProperty("timestamp", "unknown"));
Package pkg = Jetty.class.getPackage();
if (pkg != null &&
"Eclipse Jetty Project".equals(pkg.getImplementationVendor()) &&
pkg.getImplementationVersion() != null)
VERSION = pkg.getImplementationVersion();
else
VERSION = System.getProperty("jetty.version", "10.0.z-SNAPSHOT");
POWERED_BY = "<a href=\"http://eclipse.org/jetty\">Powered by Jetty:// " + VERSION + "</a>";
STABLE = !VERSION.matches("^.*\\.(RC|M)[0-9]+$");
}
private Jetty()
{
}
private static String formatTimestamp(String timestamp)
{
try
{
long epochMillis = Long.parseLong(timestamp);
return Instant.ofEpochMilli(epochMillis).toString();
}
catch (NumberFormatException e)
{
LOG.ignore(e);
return "unknown";
}
}
}