Class OsXNativePty

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable, Pty

    public class OsXNativePty
    extends JnaNativePty
    • Constructor Detail

      • OsXNativePty

        public OsXNativePty​(TerminalProvider provider,
                            SystemStream systemStream,
                            int master,
                            java.io.FileDescriptor masterFD,
                            int slave,
                            java.io.FileDescriptor slaveFD,
                            java.lang.String name)
      • OsXNativePty

        public OsXNativePty​(TerminalProvider provider,
                            SystemStream systemStream,
                            int master,
                            java.io.FileDescriptor masterFD,
                            int slave,
                            java.io.FileDescriptor slaveFD,
                            int slaveOut,
                            java.io.FileDescriptor slaveOutFD,
                            java.lang.String name)
    • Method Detail

      • getAttr

        public Attributes getAttr()
                           throws java.io.IOException
        Description copied from interface: Pty
        Returns the current terminal attributes for this PTY.

        Terminal attributes control various aspects of terminal behavior, such as echo settings, line discipline, and control characters.

        Returns:
        the current terminal attributes
        Throws:
        java.io.IOException - if an I/O error occurs
        See Also:
        Attributes
      • doSetAttr

        protected void doSetAttr​(Attributes attr)
                          throws java.io.IOException
        Specified by:
        doSetAttr in class AbstractPty
        Throws:
        java.io.IOException
      • getSize

        public Size getSize()
                     throws java.io.IOException
        Description copied from interface: Pty
        Returns the current size (dimensions) of this PTY.

        The size includes the number of rows and columns in the terminal window.

        Returns:
        the current terminal size
        Throws:
        java.io.IOException - if an I/O error occurs
        See Also:
        Size
      • setSize

        public void setSize​(Size size)
                     throws java.io.IOException
        Description copied from interface: Pty
        Sets the size (dimensions) of this PTY.

        This method changes the number of rows and columns in the terminal window. When the size changes, a SIGWINCH signal is typically sent to processes running in the terminal.

        Parameters:
        size - the new terminal size to set
        Throws:
        java.io.IOException - if an I/O error occurs
        See Also:
        Size
      • isatty

        public static int isatty​(int fd)
      • ttyname

        public static java.lang.String ttyname​(int fd)