Created
June 8, 2021 15:42
-
-
Save bric3/7fc4725614fe933d14c946a99c46a819 to your computer and use it in GitHub Desktop.
Allows to determine if standard stream are connected to a terminal. Calls native isatty C function, and dynamically build the wrapper code.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* MIT License | |
* | |
* Copyright (c) 2021 Brice Dutheil <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in all | |
* copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
* SOFTWARE. | |
*/ | |
package sandbox; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import static java.nio.file.StandardOpenOption.CREATE; | |
import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING; | |
/** | |
* Indicates if {@code stdin}, {@code stdout}, {@code stderr} are connected to a terminal. | |
* | |
* <p>{@code System.console()} requires that standard streams are all connected to a terminal | |
* to be not null, this is inconvenient as it might be useful to toggle some behaviors, | |
* if these stream are piped or displayed on the terminal, eg ANSI escape sequences.</p> | |
* <p> | |
* Or read the terminal attributes, like dimensions, color support. Etc. | |
* </p> | |
* | |
* <pre> | |
* $ java src/main/java/sandbox/IsATTY.java | |
* stdin : true | |
* stdout: true | |
* stderr: true | |
* | |
* $ java src/main/java/sandbox/IsATTY.java 2> /dev/null | |
* stdin : true | |
* stdout: true | |
* stderr: false | |
* | |
* $ java src/main/java/sandbox/IsATTY.java | tee /dev/null | |
* stdin : true | |
* stdout: false | |
* stderr: true | |
* | |
* $ echo 1 | java src/main/java/sandbox/IsATTY.java | |
* stdin : false | |
* stdout: true | |
* stderr: true | |
* ❯ ./gradlew runIsATTY | |
* | |
* > Task :runIsATTY | |
* stdin : false | |
* stdout: false | |
* stderr: false | |
* </pre> | |
* | |
* <p>This class also has uses a neat trick to call the isatty c function like | |
* JEP-389 / JEP-412 (Foreign Linker API) as it dynamically generates its JNI | |
* wrapper. Which makes this class usable on JDK 11.</p> | |
*/ | |
public class IsATTY { | |
static { | |
Path libPath = compileJni( | |
"#include <jni.h>\n" + | |
"#include <unistd.h>\n" + | |
"\n" + | |
"JNIEXPORT jboolean JNICALL Java_" + IsATTY.class.getName().replace('.', '_') + "_isatty\n" + | |
" (JNIEnv *env, jclass cls, jint fileDescriptor) {\n" + | |
" return isatty(fileDescriptor)? JNI_TRUE: JNI_FALSE;\n" + | |
"}\n"); | |
System.load(libPath.toString()); | |
} | |
private static Path compileJni(String isatty) { | |
String javaHome = System.getProperty("java.home"); | |
try { | |
Path isattyPath = Files.createTempDirectory("isatty"); | |
Runtime.getRuntime().addShutdownHook(new Thread(() -> { | |
try { | |
new ProcessBuilder("rm", "-rf", isattyPath.toString()) | |
.start().waitFor(); | |
} catch (InterruptedException | IOException e) { | |
e.printStackTrace(); | |
} | |
})); | |
Files.writeString(isattyPath.resolve("isatty.c"), isatty, CREATE, TRUNCATE_EXISTING); | |
Process p = new ProcessBuilder("gcc", | |
"-I", javaHome + "/include", // jni.h | |
"-I", javaHome + "/include/darwin", // jni_md.h | |
"-I", javaHome + "/include/linux", // jni_md.h | |
"-fPIC", // toggle Position Independent Code, suitable for libraries | |
"-shared", // shared object, ie no main | |
isattyPath.resolve("isatty.c").toString(), | |
"-o", | |
isattyPath.resolve("isatty.so").toString()) | |
.redirectOutput(ProcessBuilder.Redirect.INHERIT) | |
.redirectInput(ProcessBuilder.Redirect.INHERIT) | |
.redirectError(ProcessBuilder.Redirect.INHERIT) | |
.start(); | |
p.waitFor(); | |
return isattyPath.resolve("isatty.so"); | |
} catch (IOException | InterruptedException e) { | |
throw new IllegalStateException(e); | |
} | |
} | |
public static void main(String[] args) { | |
System.out.printf("stdin : %s%n", isStdinConnectedToTty()); | |
System.out.printf("stdout: %s%n", isStdoutConnectedToTty()); | |
System.out.printf("stderr: %s%n", isStderrConnectedToTty()); | |
} | |
public native static boolean isatty(int fileDescriptor); | |
public static boolean isStdinConnectedToTty() { | |
return isatty(0); | |
} | |
public static boolean isStdoutConnectedToTty() { | |
return isatty(1); | |
} | |
public static boolean isStderrConnectedToTty() { | |
return isatty(2); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment