package org.graylog2.syslog4j.util;
/**
* OSDetectUtility provides operating system detection used to determine
* whether Syslog4j is running on a Unix platform.
* <p/>
* <p>Syslog4j is licensed under the Lesser GNU Public License v2.1. A copy
* of the LGPL license is available in the META-INF folder in all
* distributions of Syslog4j and in the base directory of the "doc" ZIP.</p>
*
* @author <syslog4j@productivity.org>
* @version $Id: OSDetectUtility.java,v 1.4 2008/11/14 04:31:59 cvs Exp $
*/
public final class OSDetectUtility {
private final static String[] UNIX_PLATFORMS = {
"Linux",
"Mac OS",
"Solaris",
"SunOS",
"MPE/iX",
"HP-UX",
"AIX",
"OS/390",
"FreeBSD",
"Irix",
"Digital Unix",
"FreeBSD",
"OSF1",
"OpenVMS"
};
private final static String[] WINDOWS_PLATFORMS = {
"Windows",
"OS/2"
};
private static boolean UNIX = false;
private static boolean WINDOWS = false;
private OSDetectUtility() {
//
}
private static boolean isMatch(String[] platforms) {
boolean match = false;
String osName = System.getProperty("os.name");
if (osName != null && !"".equals(osName.trim())) {
osName = osName.toLowerCase();
for (int i = 0; i < platforms.length; i++) {
String platform = platforms[i].toLowerCase();
if (osName.indexOf(platform) > -1) {
match = true;
break;
}
}
}
return match;
}
static {
UNIX = isMatch(UNIX_PLATFORMS);
WINDOWS = isMatch(WINDOWS_PLATFORMS);
}
public static boolean isUnix() {
return UNIX;
}
public static boolean isWindows() {
return WINDOWS;
}
}