从app打开控制台

keb*_*ebs 2 c c++ linux console

我正在开发一个C和C++应用程序,它使用一些图形引擎来处理gtk窗口(Opencv/highgui).这个应用程序对stdout/cout做了一些小的输出.

在Windows上,从桌面启动这种应用程序会自动打开一个控制台,向用户显示标准输出上写的内容,或者使用"printf()"或"std :: cout".

在Linux上,如果我从之前打开的控制台启动它,没问题.但是,如果我通过桌面(双击)启动它,那么linux不会打开关联的控制台,并且在stdout/cout上写入的数据会丢失.似乎这是Linux上的正常行为(?).

在linux平台上编译时,我想从我的应用程序中自动打开一个控制台.

这似乎是这一个的愚蠢,重点是,它不起作用!我目前有以下代码:

#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
Run Code Online (Sandbox Code Playgroud)

(使用freopen()将cerr重定向到文件中)

我一直在"无法打开控制台".我尝试更换控制台名称:

console->open( "/dev/console", ios::out );
Run Code Online (Sandbox Code Playgroud)

但这并没有改变.

我是朝着正确的方向吗?我接下来可以尝试什么?我应该尝试专门打开终端应用程序(xterm)吗?但是,我怎么能将该控制台与我的应用程序"连接"?

cri*_*cbz 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 );
}
Run Code Online (Sandbox Code Playgroud)

这将创建一个子进程,在该进程中gnome-terminal使用--noconsolearugment 运行应用程序.说得通?有点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; 
}
Run Code Online (Sandbox Code Playgroud)