我正在开发一个C和C ++应用程序,它使用一些图形引擎来处理gtk窗口(Opencv / highgui)。这个应用程序对stdout / cout做了一些小的输出。
在Windows上,从桌面启动此类应用程序会自动打开一个控制台,向用户显示标准输出上的内容,或者使用“printf()”或“std :: cout”。
在Linux上,如果我从之前打开的控制台启动它,没问题。但是,如果我通过桌面(双击)启动它,那么linux不会打开关联的控制台,并且在stdout / cout上写入的数据会丢失。 似乎这是Linux上的正常行为(?)。
我想在Linux平台上编译时,从我的应用程序中自动打开一个控制台。
这似乎是this one的愚蠢,重点是,它不起作用!我目前有以下代码:
#ifndef __WIN32
filebuf* console = new filebuf();
console->open( "/dev/tty", ios::out );
if( !console->is_open() )
cerr << "Can't open console" << endl;
else
cout.ios::rdbuf(console);
#endif
(cerr使用freopen()重定向到文件中)
我一直在“无法打开控制台”。我尝试更换控制台名称:
console->open( "/dev/console", ios::out );
但这没有改变。
我是朝着正确的方向吗?我接下来可以尝试什么?我应该尝试专门打开终端应用程序(xterm)吗?但是,我怎么能将该控制台与我的应用程序“连接”?
答案 0 :(得分:5)
解决方案1
您可能不喜欢的非常简单的解决方案:使用gnome-terminal -x <your_program> <your_args>
创建一个在终端中运行应用程序的脚本。双击脚本将打开终端。
解决方案2
更复杂的解决方案为您的应用程序添加'--noconsole'参数。如果参数存在,只需运行您的应用程序。如果' - noconsole'不存在:
if( fork() == 0 ) {
execlp("gnome-terminal", "gnome-terminal", "-x", argv[0], "--noconsole", NULL );
} else {
exit( 0 );
}
这会创建一个子进程,使用gnome-terminal
语句在--noconsole
中运行应用程序。说得通?有点hacky,但嘿,它有效。
解决方案3
这是最棘手的解决方案,但在某些方面更优雅。我们的想法是将我们的stdout重定向到一个文件并创建一个运行tail -f <file_name> --pid=<parent_pid>
的终端。这将打印父进程的输出,并在父进程终止时终止。
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
// Create terminal and redirect output to it, returns 0 on success,
// -1 otherwise.
int make_terminal() {
char pidarg[256]; // the '--pid=' argument of tail
pid_t child; // the pid of the child proc
pid_t parent; // the pid of the parent proc
FILE* fp; // file to which output is redirected
int fn; // file no of fp
// Open file for redirection
fp = fopen("/tmp/asdf.log","w");
fn = fileno(fp);
// Get pid of current process and create string with argument for tail
parent = getpid();
sprintf( pidarg, "--pid=%d", parent );
// Create child process
child = fork();
if( child == 0 ) {
// CHILD PROCESS
// Replace child process with a gnome-terminal running:
// tail -f /tmp/asdf.log --pid=<parent_pid>
// This prints the lines outputed in asdf.log and exits when
// the parent process dies.
execlp( "gnome-terminal", "gnome-terminal", "-x", "tail","-f","/tmp/asdf.log", pidarg, NULL );
// if there's an error, print out the message and exit
perror("execlp()");
exit( -1 );
} else {
// PARENT PROCESS
close(1); // close stdout
int ok = dup2( fn, 1 ); // replace stdout with the file
if( ok != 1 ) {
perror("dup2()");
return -1;
}
// Make stdout flush on newline, doesn't happen by default
// since stdout is actually a file at this point.
setvbuf( stdout, NULL, _IONBF, BUFSIZ );
}
return 0;
}
int main( int argc, char *argv[]) {
// Attempt to create terminal.
if( make_terminal() != 0 ) {
fprintf( stderr, "Could not create terminal!\n" );
return -1;
}
// Stuff is now printed to terminal, let's print a message every
// second for 10 seconds.
int i = 0;
while( i < 10 ) {
printf( "iteration %d\n", ++ i );
sleep( 1 );
}
return 0;
}
答案 1 :(得分:3)
您的示例全部“打开”控制台 - 在某种意义上打开一个文件。这对gui没有任何作用。如果你想这样做,你将不得不打开一个gtk窗口并将输出定向到它。