/* allocate private data */
rt->pd = (RoteTermPrivate*)calloc(sizeof(RoteTermPrivate), 1);
- rt->pd->pty = -1; /* no pty for now */
+ rt->pty = -1; /* no pty for now */
/* initial scrolling area is the whole window */
rt->pd->scrolltop = 0;
ws.ws_col = rt->cols;
ws.ws_xpixel = ws.ws_ypixel = 0;
- if (run_process(path, argv, &rt->pd->pty, &rt->childpid)) {
+ if (run_process(path, argv, &rt->pty, &rt->childpid)) {
return -1;
}
- ioctl(rt->pd->pty, TIOCSWINSZ, &ws);
+ ioctl(rt->pty, TIOCSWINSZ, &ws);
return rt->childpid;
}
void rote_vt_forsake_child(RoteTerm *rt)
{
- if (rt->pd->pty >= 0)
- close(rt->pd->pty);
- rt->pd->pty = -1;
+ if (rt->pty >= 0)
+ close(rt->pty);
+ rt->pty = -1;
rt->childpid = 0;
}
int rote_vt_read(RoteTerm *rt, char *buf, int buflen)
{
- if (rt->pd->pty < 0) {
+ if (rt->pty < 0) {
errno = EINVAL;
return -1;
}
- return read(rt->pd->pty, buf, buflen);
+ return read(rt->pty, buf, buflen);
}
void rote_vt_write(RoteTerm *rt, const char *data, int len)
{
- if (rt->pd->pty < 0) {
+ if (rt->pty < 0) {
/* no pty, so just inject the data plain and simple */
rote_vt_inject(rt, data, len);
return;
/* write data to pty. Keep calling write() until we have written
* everything. */
while (len > 0) {
- int byteswritten = write(rt->pd->pty, data, len);
+ int byteswritten = write(rt->pty, data, len);
if (byteswritten < 0) {
/* very ugly way to inform the error. Improvements welcome! */
static char errormsg[] = "\n(ROTE: pty write() error)\n";
}
}
-int rote_vt_get_pty_fd(RoteTerm *rt)
-{
- return rt->pd->pty;
-}
-
static const char *keytable[KEY_MAX+1];
static void keytable_init()
* that will be used for newly inserted
* characters */
+ int pty; /* pty of the process */
pid_t childpid; /* pid of the child process running in the
* terminal; 0 for none. This is READ-ONLY. */
* This function does NOT free() the passed buffer */
void rote_vt_restore_snapshot(RoteTerm *rt, void *snapbuf);
-/* Returns the pseudo tty descriptor associated with the given terminal.
- * Please don't do weird things with it (like close it for instance),
- * or things will break
- *
- * This function returns -1 if the given terminal does not yet have
- * an associated pty. A pty is only associated to a terminal when
- * needed, e.g. on a call to rote_vt_forkpty. */
-int rote_vt_get_pty_fd(RoteTerm *rt);
-
#endif /* MADTTY_MADTTY_H */
* the initial escape (\x1B) character. */
int esbuf_len; /* length of buffer. The following property
* is always kept: esbuf[esbuf_len] == '\0' */
-
- int pty; /* file descriptor for the pty attached to
- * this terminal. -1 if none. */
};
/* Interprets a CSI escape sequence stored in rt->pd->esbuf,