如何运行外部程序?

时间:2012-03-03 22:37:59

标签: c++ linux

我在Linux薄荷12上。

我想运行一个程序usr/share/application/firefox,然后在任何地方传递一个字符串。我还没有找到适用于Linux的解决方案,但从目前为止我所看到的,Windows有很多理论。

size_t ExecuteProcess(std::wstring FullPathToExe, std::wstring Parameters, size_t SecondsToWait) 
{ 
    size_t iMyCounter = 0, iReturnVal = 0, iPos = 0; 
    DWORD dwExitCode = 0; 
    std::wstring sTempStr = L""; 

    /* - NOTE - You should check here to see if the exe even exists */ 

    /* Add a space to the beginning of the Parameters */ 
    if (Parameters.size() != 0) 
    { 
        if (Parameters[0] != L' ') 
        { 
            Parameters.insert(0,L" "); 
        } 
    } 

    /* The first parameter needs to be the exe itself */ 
    sTempStr = FullPathToExe; 
    iPos = sTempStr.find_last_of(L"\\"); 
    sTempStr.erase(0, iPos +1); 
    Parameters = sTempStr.append(Parameters); 

     /* CreateProcessW can modify Parameters thus we allocate needed memory */ 
    wchar_t * pwszParam = new wchar_t[Parameters.size() + 1]; 
    if (pwszParam == 0) 
    { 
        return 1; 
    } 
    const wchar_t* pchrTemp = Parameters.c_str(); 
    wcscpy_s(pwszParam, Parameters.size() + 1, pchrTemp); 

    /* CreateProcess API initialization */ 
    STARTUPINFOW siStartupInfo; 
    PROCESS_INFORMATION piProcessInfo; 
    memset(&siStartupInfo, 0, sizeof(siStartupInfo)); 
    memset(&piProcessInfo, 0, sizeof(piProcessInfo)); 
    siStartupInfo.cb = sizeof(siStartupInfo); 

    if (CreateProcessW(const_cast<LPCWSTR>(FullPathToExe.c_str()), 
                            pwszParam, 0, 0, false, 
                            CREATE_DEFAULT_ERROR_MODE, 0, 0, 
                            &siStartupInfo, &piProcessInfo) != false) 
    { 
         /* Watch the process. */ 
        dwExitCode = WaitForSingleObject(piProcessInfo.hProcess, (SecondsToWait * 1000)); 
    } 
    else 
    { 
        /* CreateProcess failed */ 
        iReturnVal = GetLastError(); 
    } 

    /* Free memory */ 
    delete[]pwszParam; 
    pwszParam = 0; 

    /* Release handles */ 
    CloseHandle(piProcessInfo.hProcess); 
    CloseHandle(piProcessInfo.hThread); 

    return iReturnVal; 
} 

你可以看到很多理论here第一个答案描述了如何用C语言完成它,我想用C ++做,我一直在谷歌搜索几个小时,我看到很多理论。这个主题似乎比量子物理学有更多的理论:)

我是一个Python人,因为我喜欢简单,所以请提供一个简单的代码,如果可能的话,可以在32位和64位上运行。

我想做的事情,如果usr/share/application/firefox可用,运行它,否则运行usr/share/application/googlechrome

请告诉我为什么不能在Mac和Windows上运行相同的代码?

1 个答案:

答案 0 :(得分:7)

这可以使用system来完成,这与在Python中调用os.system相同,或forkexeclpopen类似于调用Python中的subprocess.Popen

下面显示了一些示例。 它们应该在Linux或Mac上运行。

对于Windows,使用_system和_popen代替,使用C预处理器的if defined函数。

IFDEF示例

#ifdef __unix__ /* __unix__ is usually defined by compilers targeting Unix systems */
# callto system goes here
#elif defined _WIN32 /* _Win32 is usually defined by compilers targeting 32 or 64 bit Windows   systems */
# callto _system goes here
#endif

它们依赖于体系结构,但firefox二进制文件的位置可能不在各种系统上。

<强>系统

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
    system("/usr/share/application/firefox");
    printf("Command done!");
    return 0;
}

<强> POPEN

#include <stdio.h>
int main(int argc, char **argv))
{
   FILE *fpipe;
   char *command="/usr/share/application/firefox";
   char line[256];

   if ( !(fpipe = (FILE*)popen(command,"r")) )
   {  // If fpipe is NULL
      perror("Problems with pipe");
      exit(1);
   }

   while ( fgets( line, sizeof line, fpipe))
   {
     printf("%s", line);
   }
   pclose(fpipe);
   return 0;
}