VersionInfo.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.util;
  19. import org.apache.hadoop.HadoopVersionAnnotation;
  20. /**
  21.  * This class finds the package info for Hadoop and the HadoopVersionAnnotation
  22.  * information.
  23.  */
  24. public class VersionInfo {
  25.   private static Package myPackage;
  26.   private static HadoopVersionAnnotation version;
  27.   
  28.   static {
  29.     myPackage = HadoopVersionAnnotation.class.getPackage();
  30.     version = myPackage.getAnnotation(HadoopVersionAnnotation.class);
  31.   }
  32.   /**
  33.    * Get the meta-data for the Hadoop package.
  34.    * @return
  35.    */
  36.   static Package getPackage() {
  37.     return myPackage;
  38.   }
  39.   
  40.   /**
  41.    * Get the Hadoop version.
  42.    * @return the Hadoop version string, eg. "0.6.3-dev"
  43.    */
  44.   public static String getVersion() {
  45.     return version != null ? version.version() : "Unknown";
  46.   }
  47.   
  48.   /**
  49.    * Get the subversion revision number for the root directory
  50.    * @return the revision number, eg. "451451"
  51.    */
  52.   public static String getRevision() {
  53.     return version != null ? version.revision() : "Unknown";
  54.   }
  55.   
  56.   /**
  57.    * The date that Hadoop was compiled.
  58.    * @return the compilation date in unix date format
  59.    */
  60.   public static String getDate() {
  61.     return version != null ? version.date() : "Unknown";
  62.   }
  63.   
  64.   /**
  65.    * The user that compiled Hadoop.
  66.    * @return the username of the user
  67.    */
  68.   public static String getUser() {
  69.     return version != null ? version.user() : "Unknown";
  70.   }
  71.   
  72.   /**
  73.    * Get the subversion URL for the root Hadoop directory.
  74.    */
  75.   public static String getUrl() {
  76.     return version != null ? version.url() : "Unknown";
  77.   }
  78.   
  79.   /**
  80.    * Returns the buildVersion which includes version, 
  81.    * revision, user and date. 
  82.    */
  83.   public static String getBuildVersion(){
  84.     return VersionInfo.getVersion() + 
  85.     " from " + VersionInfo.getRevision() +
  86.     " by " + VersionInfo.getUser() + 
  87.     " on " + VersionInfo.getDate();
  88.   }
  89.   
  90.   public static void main(String[] args) {
  91.     System.out.println("Hadoop " + getVersion());
  92.     System.out.println("Subversion " + getUrl() + " -r " + getRevision());
  93.     System.out.println("Compiled by " + getUser() + " on " + getDate());
  94.   }
  95. }