189 lines
4.1 KiB
Java
189 lines
4.1 KiB
Java
/**
|
|
* Copyright (C) 2013-2016 Christian Pierre MOMON <christian.momon@devinsy.fr>
|
|
*
|
|
* This file is part of SikevaDB, simple key value database.
|
|
*
|
|
* SikevaDB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* SikevaDB is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with SikevaDB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package utils;
|
|
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.util.Properties;
|
|
|
|
import org.apache.commons.lang3.exception.ExceptionUtils;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
/**
|
|
*
|
|
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
|
|
*/
|
|
public class BuildInformation
|
|
{
|
|
private static class SingletonHolder
|
|
{
|
|
private static final BuildInformation instance = new BuildInformation();
|
|
}
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(BuildInformation.class);
|
|
|
|
private static String BUILD_INFORMATION_FILE = "/fr/devinsy/sikevadb/build_information.properties";
|
|
|
|
private String productName;
|
|
private String majorRevision;
|
|
private String minorRevision;
|
|
private String buildNumber;
|
|
private String buildDate;
|
|
private String generator;
|
|
private String buildAuthor;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private BuildInformation()
|
|
{
|
|
Properties build = new Properties();
|
|
|
|
try
|
|
{
|
|
//
|
|
URL buildInformationFile = BuildInformation.class.getResource(BUILD_INFORMATION_FILE);
|
|
|
|
if (buildInformationFile != null)
|
|
{
|
|
build.load(BuildInformation.class.getResource(BUILD_INFORMATION_FILE).openStream());
|
|
}
|
|
|
|
//
|
|
this.productName = build.getProperty("product.name", "DevInProgress");
|
|
this.majorRevision = build.getProperty("product.revision.major", "d");
|
|
this.minorRevision = build.getProperty("product.revision.minor", "e");
|
|
this.buildNumber = build.getProperty("product.revision.build", "v");
|
|
this.buildDate = build.getProperty("product.revision.date", "today");
|
|
this.generator = build.getProperty("product.revision.generator", "n/a");
|
|
this.buildAuthor = build.getProperty("product.revision.author", "n/a");
|
|
|
|
}
|
|
catch (IOException exception)
|
|
{
|
|
logger.error("Error loading the build.properties file: " + exception.getMessage());
|
|
logger.error(ExceptionUtils.getStackTrace(exception));
|
|
|
|
this.productName = "n/a";
|
|
this.majorRevision = "n/a";
|
|
this.minorRevision = "n/a";
|
|
this.buildNumber = "n/a";
|
|
this.buildDate = "n/a";
|
|
this.generator = "n/a";
|
|
this.buildAuthor = "n/a";
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
public String buildAuthor()
|
|
{
|
|
return this.buildAuthor;
|
|
}
|
|
|
|
public String buildDate()
|
|
{
|
|
return this.buildDate;
|
|
}
|
|
|
|
public String buildNumber()
|
|
{
|
|
return this.buildNumber;
|
|
}
|
|
|
|
public String generator()
|
|
{
|
|
return this.generator;
|
|
}
|
|
|
|
public String majorRevision()
|
|
{
|
|
return this.majorRevision;
|
|
}
|
|
|
|
public String minorRevision()
|
|
{
|
|
return this.minorRevision;
|
|
}
|
|
|
|
public String productName()
|
|
{
|
|
return this.productName;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Override
|
|
public String toString()
|
|
{
|
|
String result;
|
|
|
|
result = String.format("%s %s.%s.%s built on %s by %s", this.productName, this.majorRevision, this.minorRevision, this.buildNumber, this.buildDate, this.buildAuthor);
|
|
|
|
//
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
public String version()
|
|
{
|
|
String result;
|
|
|
|
result = String.format("%s.%s.%s", this.majorRevision, this.minorRevision, this.buildNumber);
|
|
|
|
//
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
*/
|
|
public static BuildInformation instance()
|
|
{
|
|
return SingletonHolder.instance;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public static boolean isDefined()
|
|
{
|
|
boolean result;
|
|
|
|
if (BuildInformation.class.getResource(BUILD_INFORMATION_FILE) == null)
|
|
{
|
|
result = false;
|
|
}
|
|
else
|
|
{
|
|
result = true;
|
|
}
|
|
|
|
//
|
|
return result;
|
|
}
|
|
}
|