gpt4 book ai didi

c++ - ncurses 程序在用于命令替换时无法正常工作

转载 作者:行者123 更新时间:2023-11-30 04:16:55 24 4
gpt4 key购买 nike

我希望能够通过命令替换调用基于 ncurses 的程序,这样它的输出就可以作为命令行参数传递给另一个程序。例如,当程序不进入 curses 模式时,这在 bash 中很容易做到:

echo $(pwd) # should be the same as just calling pwd alone

当我尝试用我的程序(其代码如下)执行此操作时,永远不会进入 curses 模式,并且永远不会打印字符串“test”。进入 curses 模式很重要,因为从理论上讲,这是用户以某种方式操纵最终打印到 stdout 的字符串(现在该字符串只是静态的)。

echo $(./a.out) # just prints an empty line

我的程序在进入curses模式后正常运行时会返回字符串“this is not a test”,“test”打印到屏幕,用户按下一个键。

./a.out # normal run

这是有问题的代码:

// test.cpp
#include <ncurses.h>
#include <iostream>
using namespace std;

/* get curses up and running */
void init() {
initscr(); // start curses mode, might clear screen
raw(); // disable line buff, and C-z/C-c won't gen sigals; see cbreak()
keypad(stdscr, TRUE); // enable arrow keys and function keys
noecho(); // don't echo chars user types
}

/* shut curses down */
void end() {
endwin(); // end curses mode
}

int main()
{
init();
printw("test");
getch();
end();

cout << "this is not a test" << endl;
return 0;
}

我用这个命令编译:

g++ test.cpp -lcurses

感谢您的帮助!

最佳答案

这是一个简单的解决方案,使用 newterm:

#define _XOPEN_SOURCE
#include <ncurses.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main()
{
// start curses mode
SCREEN* s = NULL;
FILE* out = stdout;
if(!isatty(fileno(stdout))) {
out = fopen("/dev/tty", "w");
// Should really test `out` to make sure that worked.
setbuf(out, NULL);
}
// Here, we don't worry about the case where stdin has been
// redirected, but we could do something similar to out
// for input, opening "/dev/tty" in mode "r" for in if necessary.
s = newterm(NULL, out, stdin);

printw("test");
getch();

endwin(); // end curses mode
delscreen(s);
puts("/home/matt");
return 0;
}

关于c++ - ncurses 程序在用于命令替换时无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17450014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com