抑制system()输出

4

首先,我主要从事C#、.Net开发,所以如果这是一个愚蠢的问题,请轻点儿批评。

我正在实现一个Ericsson开源项目,将一种图像格式转换为另一种。问题在于,在转换过程中,控制台输出如下...

1 file(s) copied.

我需要屏蔽这个弹出的对话框,只想执行系统命令而没有输出。我认为我已经找到了导致这个问题的代码区域。

void writeOutputFile(char *dstfile, uint8* img, uint8* alphaimg, int width, int height)

{
    char str[300];
if(format!=ETC2PACKAGE_R_NO_MIPMAPS&&format!=ETC2PACKAGE_RG_NO_MIPMAPS) 
{
    fWritePPM("tmp.ppm",width,height,img,8,false);
    //PRINTF("Saved file tmp.ppm \n\n");
}
else if(format==ETC2PACKAGE_RG_NO_MIPMAPS) 
{
    fWritePPM("tmp.ppm",width,height,img,16,false);
}
if(format==ETC2PACKAGE_RGBA_NO_MIPMAPS||format==ETC2PACKAGE_RGBA1_NO_MIPMAPS||format==ETC2PACKAGE_sRGBA_NO_MIPMAPS||format==ETC2PACKAGE_sRGBA1_NO_MIPMAPS)
    fWritePGM("alphaout.pgm",width,height,alphaimg,false,8);
if(format==ETC2PACKAGE_R_NO_MIPMAPS)
    fWritePGM("alphaout.pgm",width,height,alphaimg,false,16);

// Delete destination file if it exists
if(fileExist(dstfile))
{
    sprintf(str, "del %s\n",dstfile);   
    system(str);
}

int q = find_pos_of_extension(dstfile);
if(!strcmp(&dstfile[q],".ppm")&&format!=ETC2PACKAGE_R_NO_MIPMAPS) 
{
    // Already a .ppm file. Just rename. 
    sprintf(str,"move tmp.ppm %s\n",dstfile);
    //PRINTF("Renaming destination file to %s\n",dstfile);
}
else
{
    // Converting from .ppm to other file format
    // 
    // Use your favorite command line image converter program,
    // for instance Image Magick. Just make sure the syntax can
    // be written as below:
    // 
    // C:\imconv source.ppm dest.jpg
    //
    if(format==ETC2PACKAGE_RGBA_NO_MIPMAPS||format==ETC2PACKAGE_RGBA1_NO_MIPMAPS||format==ETC2PACKAGE_sRGBA_NO_MIPMAPS||format==ETC2PACKAGE_sRGBA1_NO_MIPMAPS) 
    {
        // Somewhere after version 6.7.1-2 of ImageMagick the following command gives the wrong result due to a bug. 
        // sprintf(str,"composite -compose CopyOpacity alphaout.pgm tmp.ppm %s\n",dstfile);
        // Instead we read the file and write a tga.

        //PRINTF("Converting destination file from .ppm/.pgm to %s with alpha\n",dstfile);
        int rw, rh;
        unsigned char *pixelsRGB;
        unsigned char *pixelsA;
        fReadPPM("tmp.ppm", rw, rh, pixelsRGB, 8);
        fReadPGM("alphaout.pgm", rw, rh, pixelsA, 8);
        fWriteTGAfromRGBandA(dstfile, rw, rh, pixelsRGB, pixelsA, true);
        free(pixelsRGB);
        free(pixelsA);
        sprintf(str,""); // Nothing to execute.
    }
    else if(format==ETC2PACKAGE_R_NO_MIPMAPS) 
    {
        sprintf(str,"imconv alphaout.pgm %s\n",dstfile);
        //PRINTF("Converting destination file from .pgm to %s\n",dstfile);
    }
    else 
    {
        sprintf(str,"imconv tmp.ppm %s\n",dstfile);
        //PRINTF("Converting destination file from .ppm to %s\n",dstfile);
    }
}
// Execute system call
system(str);

free(img);
if(alphaimg!=NULL)
    free(alphaimg);

我在这一点上感到困惑,不知道如何抑制弹出的控制台。当我们通过对dll的引用迭代图像时,许多许多控制台窗口在屏幕上闪烁。需要阻止这种情况发生。

非常感谢您的帮助。


这个例子可能会对你有所帮助:http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx - SirDarius
3个回答

10

尝试做:

strcat( str, " > nul" )         // for Windows or
//strcat( str, " > /dev/null" ) // for Unix

system( str )

如果它没有帮助,那么这可能会有所帮助:

#include <string>
#include <ShellAPI.h>

int system_no_output( std::string command )
{
    command.insert( 0, "/C " );

    SHELLEXECUTEINFOA ShExecInfo = {0};
    ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
    ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
    ShExecInfo.hwnd = NULL;
    ShExecInfo.lpVerb = NULL;
    ShExecInfo.lpFile = "cmd.exe";        
    ShExecInfo.lpParameters = command.c_str();   
    ShExecInfo.lpDirectory = NULL;
    ShExecInfo.nShow = SW_HIDE;
    ShExecInfo.hInstApp = NULL;

    if( ShellExecuteExA( &ShExecInfo ) == FALSE )
        return -1;

    WaitForSingleObject( ShExecInfo.hProcess, INFINITE );

    DWORD rv;
    GetExitCodeProcess( ShExecInfo.hProcess, &rv );
    CloseHandle( ShExecInfo.hProcess );

    return rv;
}

并且将所有的 system() 调用替换为 system_no_output()


这确实会停止文本的出现,但控制台仍然会弹出。 - SirDarius
所以我仍然看到输出字符串1个文件已复制。我将该行放在每个系统调用之前。 - Sean P
1
@SeanP 奇怪,你能调试这个函数找到输出出现的那一行吗? - Ivan
@IvanGrynko 我调试了一下,可以确定这个问题是来自代码示例中的最后一个 system(str)。在写入之前,str 的值如下:"copy "MultiImages\AlvinAndTheChipmunksTheSqueakquel_pa.019.ppm" tmp.ppm
nul"
- Sean P

7
为了完全抑制输出,需同时重定向 stdoutstderr
system("command >nul 2>nul");

1

如果你使用C#,请看这里。在C#中使用的类是ProcessStartInfo。 在链接中的示例中,查看OpenWithStartInfo成员函数,它将最小化控制台。

至于在C++中执行此操作,请看这里spawn函数系列。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接