1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* Copyright 2007 - 2018 ETH Zuerich, CISD and SIS.
*
* Licensed 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 ch.systemsx.cisd.base.utilities;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
/**
* Abstract of all classes providing build and environment information.
* <p>
* Does <em>not</em> depend on any library jar files.
* </p>
*
* @author Franz-Josef Elmer
*/
public abstract class AbstractBuildAndEnvironmentInfo
{
private static final String UNKNOWN = "UNKNOWN";
private final String version;
private final String revision;
private final boolean cleanSources;
private final String applicationName;
protected AbstractBuildAndEnvironmentInfo(String applicationName)
{
this.applicationName = applicationName;
String extractedVersion = UNKNOWN;
String extractedRevision = UNKNOWN;
boolean extractedCleanFlag = false;
final InputStream stream =
AbstractBuildAndEnvironmentInfo.class.getResourceAsStream("/BUILD-" + applicationName
+ ".INFO");
if (stream != null)
{
BufferedReader reader = null;
try
{
reader = new BufferedReader(new InputStreamReader(stream));
final String line = reader.readLine();
if (line != null)
{
final String[] rev = line.split("::");
if (rev.length == 3)
{
extractedVersion = rev[0];
extractedRevision = rev[1];
extractedCleanFlag = "clean".equals(rev[2]);
} else
{
// Backward compatibility: test for the old format.
final String[] rev2 = line.split(":");
if (rev2.length == 3)
{
extractedVersion = rev2[0];
extractedRevision = rev2[1];
extractedCleanFlag = "clean".equals(rev2[2]);
} else
{
extractedVersion = line;
extractedRevision = "?";
extractedCleanFlag = false;
}
}
}
} catch (IOException ex)
{
// ignored
} finally
{
try
{
if (reader != null)
{
reader.close();
}
} catch (IOException ioe)
{
// ignore
}
}
}
this.version = extractedVersion;
this.revision = extractedRevision;
this.cleanSources = extractedCleanFlag;
}
private final static String getProperty(final String property)
{
return System.getProperty(property, UNKNOWN);
}
private final static boolean isUnknown(final String property)
{
return property.equals(UNKNOWN);
}
/**
* @return Name of the CPU architecture.
*/
public final String getCPUArchitecture()
{
return getProperty("os.arch");
}
/**
* @return Name and version of the operating system.
*/
public final String getOS()
{
final String osName = getProperty("os.name");
final String osVersion = getProperty("os.version");
if (isUnknown(osName) || isUnknown(osVersion))
{
return osName;
}
return osName + " (v" + osVersion + ")";
}
/**
* @return Name and version of the Java Virtual Machine.
*/
public final String getJavaVM()
{
final String vmName = getProperty("java.vm.name");
final String vmVersion = getProperty("java.vm.version");
if (isUnknown(vmName) || isUnknown(vmVersion))
{
return vmName;
}
return vmName + " (v" + vmVersion + ")";
}
/**
* @return The version of the software.
*/
public final String getVersion()
{
return version;
}
/**
* @return <code>true</code> if the versioned entities of the working copy have been clean when
* this build has been made, in other words, whether the revision given by
* {@link #getRevision()} does really identify the source that is build has been
* produced from.
*/
public final boolean isCleanSources()
{
return cleanSources;
}
/**
* @return The revision number.
*/
public final String getRevision()
{
return revision;
}
/**
* Returns the version accompanied by the build number of the software (if known).
*/
public final String getFullVersion()
{
final StringBuilder builder = new StringBuilder();
final String rev = getRevision();
final boolean isDirty = isCleanSources() == false;
builder.append(getVersion());
if (isUnknown(rev) == false)
{
builder.append(" (").append(rev);
if (isDirty)
{
builder.append("*");
}
builder.append(")");
} else
{
if (isDirty)
{
builder.append("*");
}
}
return builder.toString();
}
public String getApplicationName()
{
return applicationName;
}
/**
* Returns version, build number, Java VM, and OS as a {@link List} with four entries.
*/
public final List<String> getEnvironmentInfo()
{
final List<String> environmentInfo = new ArrayList<String>();
environmentInfo.add("Application: " + getApplicationName());
environmentInfo.add("Version: " + getFullVersion());
environmentInfo.add("Java VM: " + getJavaVM());
environmentInfo.add("CPU Architecture: " + getCPUArchitecture());
environmentInfo.add("OS: " + getOS());
return environmentInfo;
}
/**
* Returns version, build number, Java VM, and OS in a four-liner as one {@link String}.
*/
@Override
public final String toString()
{
final StringBuilder builder = new StringBuilder();
final List<String> environmentInfo = getEnvironmentInfo();
final int n = environmentInfo.size();
for (int i = 0; i < n; i++)
{
builder.append(environmentInfo.get(i));
if (i < n - 1)
{
builder.append(System.getProperty("line.separator"));
}
}
return builder.toString();
}
}
|