org.aesh.terminal.utils.Config Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2014 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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 org.aesh.terminal.utils;
/**
*
* @author Ståle W. Pedersen
*/
public class Config {
private static final boolean macOS = System.getProperty("os.name").startsWith("Mac") ||
System.getProperty("os.name").startsWith("darwin");
private static final boolean windows = System.getProperty("os.name").startsWith("Windows");
private static final String lineSeparator = System.getProperty("line.separator");
private static final String pathSeparator = System.getProperty("file.separator");
private static final String tmpDir = System.getProperty("java.io.tmpdir");
private static final boolean posixCompatible = checkPosixCompability();
public static final int[] CR = lineSeparator.codePoints().toArray();
private static boolean cygwin = OSUtils.IS_CYGWIN;
public static boolean isOSPOSIXCompatible() {
return posixCompatible;
}
public static boolean isCygwin() {
return cygwin;
}
public static boolean isMacOS() {
return macOS;
}
public static boolean isWindows() {
return windows;
}
public static String getLineSeparator() {
return lineSeparator;
}
public static String getPathSeparator() {
return pathSeparator;
}
public static String getTmpDir() {
return tmpDir;
}
public static String getHomeDir() {
return System.getProperty("user.home");
}
public static String getUserDir() {
return System.getProperty("user.dir");
}
private static boolean checkPosixCompability() {
if(isWindows()) {
return OSUtils.IS_CYGWIN;
}
else
return !System.getProperty("os.name").startsWith("OS/2");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy