C-如何检测分配的终端设备进行交互式工作



我正在编写Pager pspg。在那里我必须解决以下问题。从stdin阅读后,我应该重新分配stdin从终端从管道到阅读的上一读。

我使用

freopen("/dev/tty", "r", stdin) 

但是它不起作用,当从命令中使用了打印机时未直接执行的

su - someuser -c 'export PAGER=pspg psql somedb'

在这种情况下,我有一个错误:没有这样的设备或地址

我找到了解决方法 - 现在,代码看起来像:

if (freopen("/dev/tty", "r", stdin) == NULL)
{
    /*
     * try to reopen pty.
     * Workaround from:
     * https://cboard.cprogramming.com/c-programming/172533-how-read-pipe-while-keeping-interactive-keyboard-c.html
     */
    if (freopen(ttyname(fileno(stdout)), "r", stdin) == NULL)
    {
        fprintf(stderr, "cannot to reopen stdin: %sn", strerror(errno));
        exit(1);
    }
}

在这种情况下,检测分配的终端设备的正确方法是什么?

但是这种解决方法是不正确的。它解决了一个问题,但接下来是开始的。当某些用户与当前用户不同时,然后重新打开失败,而错误拒绝的权限。因此,此解决方法不能用于我的目的。

less在这种情况下所做的工作落后于FD 2(stderr)。如果STDERR已远离TTY,它将放弃尝试获取键盘输入,而只需打印整个输入流而无需分页。

su的设计不允许更好。新用户正在对原始用户拥有的TTY上运行命令,而不愉快的事实不能完全隐藏。

这是没有这个问题的su的不错的替代品:

ssh -t localhost -l username sh -c 'command'

当然,它有更多的开销。

最后,我使用了我在less Pager中发现的模式,但已修改用于使用 ncurses

首先,我尝试将stdin重新打开到一些相关的设备上:

if (!isatty(fileno(stdin)))
{
    if (freopen("/dev/tty", "r", stdin) != NULL)
        noatty = false;
    /* when tty is not accessible, try to get tty from stdout */ 
    else if (freopen(ttyname(fileno(stdout)), "r", stdin) != NULL)
        noatty = false;
    else
    {
        /*
         * just ensure stderr is joined to tty, usually when reopen
         * of fileno(stdout) fails - probably due permissions.
         */
        if (!isatty(fileno(stderr)))
        {
            fprintf(stderr, "missing a access to terminal devicen");
            exit(1);
        }
        noatty = true;
        fclose(stdin);
    }
}                   
else
    noatty = false;

当我没有TTY并且不能使用stdin时,我正在使用newterm函数,该功能允许指定输入流:

if (noatty)
    /* use stderr like stdin. This is fallback solution used by less */
    newterm(termname(), stdout, stderr);
else
    /* stdin is joined with tty, then use usual initialization */
    initscr();

相关内容

  • 没有找到相关文章

最新更新