Package org.fusesource.jansi.internal
Class CLibrary
java.lang.Object
org.fusesource.jansi.internal.CLibrary
Interface to access some low level POSIX functions, loaded by
HawtJNI Runtime
as
jansi
library.- Author:
- Hiram Chirino
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
termios structure for termios functions, describing a general terminal interface that is provided to control asynchronous communications portsstatic class
Window sizes. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic boolean
static boolean
static final boolean
static int
static int
static int
static int
static int
static long
static long
static long
static long
static long
static long
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic int
ioctl
(int filedes, long request, int[] params) Control a STREAMS device.static int
ioctl
(int filedes, long request, CLibrary.WinSize params) static int
isatty
(int fd) test whether a file descriptor refers to a terminalstatic int
openpty
(int[] amaster, int[] aslave, byte[] name, CLibrary.Termios termios, CLibrary.WinSize winsize) The openpty() function finds an available pseudoterminal and returns file descriptors for the master and slave in amaster and aslave.static int
tcgetattr
(int filedes, CLibrary.Termios termios) static int
tcsetattr
(int filedes, int optional_actions, CLibrary.Termios termios) static String
ttyname
(int filedes)
-
Field Details
-
LOADED
public static final boolean LOADED -
STDOUT_FILENO
public static int STDOUT_FILENO -
STDERR_FILENO
public static int STDERR_FILENO -
HAVE_ISATTY
public static boolean HAVE_ISATTY -
HAVE_TTYNAME
public static boolean HAVE_TTYNAME -
TCSANOW
public static int TCSANOW -
TCSADRAIN
public static int TCSADRAIN -
TCSAFLUSH
public static int TCSAFLUSH -
TIOCGETA
public static long TIOCGETA -
TIOCSETA
public static long TIOCSETA -
TIOCGETD
public static long TIOCGETD -
TIOCSETD
public static long TIOCSETD -
TIOCGWINSZ
public static long TIOCGWINSZ -
TIOCSWINSZ
public static long TIOCSWINSZ
-
-
Constructor Details
-
CLibrary
public CLibrary()
-
-
Method Details
-
isatty
public static int isatty(int fd) test whether a file descriptor refers to a terminal- Parameters:
fd
- file descriptor- Returns:
- isatty() returns 1 if fd is an open file descriptor referring to a terminal; otherwise 0 is returned, and errno is set to indicate the error
- See Also:
-
ttyname
-
openpty
public static int openpty(int[] amaster, int[] aslave, byte[] name, CLibrary.Termios termios, CLibrary.WinSize winsize) The openpty() function finds an available pseudoterminal and returns file descriptors for the master and slave in amaster and aslave.- Parameters:
amaster
- master return valueaslave
- slave return valuename
- filename return valuetermios
- optional pty attributeswinsize
- optional size- Returns:
- 0 on success
- See Also:
-
tcgetattr
-
tcsetattr
-
ioctl
public static int ioctl(int filedes, long request, int[] params) Control a STREAMS device.- See Also:
-
ioctl
-