org.apache.flume.tools.VersionInfo Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.flume.tools;
import org.apache.flume.VersionAnnotation;
/*
* This class provides version info of Flume NG
*/
public class VersionInfo {
private static Package myPackage;
private static VersionAnnotation version;
static {
myPackage = VersionAnnotation.class.getPackage();
version = myPackage.getAnnotation(VersionAnnotation.class);
}
/**
* Get the meta-data for the Flume package.
* @return
*/
static Package getPackage() {
return myPackage;
}
/**
* Get the Flume version.
* @return the Flume version string, eg. "1.1"
*/
public static String getVersion() {
return version != null ? version.version() : "Unknown";
}
/**
* Get the subversion revision number for the root directory
* @return the revision number, eg. "100755"
*/
public static String getRevision() {
if(version != null
&& version.revision() != null
&& !version.revision().isEmpty()){
return version.revision();
}
return "Unknown";
}
/**
* Get the branch on which this originated.
* @return The branch name, e.g. "trunk" or "branches/branch-1.1"
*/
public static String getBranch() {
return version != null ? version.branch() : "Unknown";
}
/**
* The date that Flume was compiled.
* @return the compilation date in unix date format
*/
public static String getDate() {
return version != null ? version.date() : "Unknown";
}
/**
* The user that compiled Flume.
* @return the username of the user
*/
public static String getUser() {
return version != null ? version.user() : "Unknown";
}
/**
* Get the subversion URL for the root Flume directory.
*/
public static String getUrl() {
return version != null ? version.url() : "Unknown";
}
/**
* Get the checksum of the source files from which Flume was
* built.
**/
public static String getSrcChecksum() {
return version != null ? version.srcChecksum() : "Unknown";
}
/**
* Returns the build version info which includes version,
* revision, user, date and source checksum
*/
public static String getBuildVersion(){
return VersionInfo.getVersion() +
" from " + VersionInfo.getRevision() +
" by " + VersionInfo.getUser() +
" on " + VersionInfo.getDate() +
" source checksum " + VersionInfo.getSrcChecksum();
}
public static void main(String[] args) {
System.out.println("Flume " + getVersion());
System.out.println("Source code repository: "
+ "https://git-wip-us.apache.org/repos/asf/flume.git");
System.out.println("Revision: " + getRevision());
System.out.println("Compiled by " + getUser() + " on " + getDate());
System.out.println("From source with checksum " + getSrcChecksum());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy