从vector <string>转换为vector <char *>到char **时,execvp无效

时间:2016-02-06 23:03:18

标签: c++ vector execvp

从字符串向量到char *的向量到char **,当参数作为char **进入时工作,但转换似乎有问题,我无法找到差。

有更好的方法吗?

    vector<string> args;

    /* code that correctly parses args from user input */

    pid_t kidpid = fork();
    if (kidpid < 0)
    {
        perror("Internal error: cannot fork.");
        return -1;
    }
    else if (kidpid == 0)
    {
        // I am the child.

        vector<char*>argcs;
        for(int i=1;i<args.size();i++)
        {
            char * temp = new char[args.at(i).length()];
            for(int k=0;k<args.at(i).length();k++)
            {
                temp[k] = args.at(i).at(k);
            }
            argcs.push_back(temp);
        }

        char** argv = new char*[argcs.size() + 1];
        for (int i = 0; i < argcs.size(); i++)
        {
            argv[i] = argcs[i];
        }
        argv[args.size()] = NULL;

        execvp(program, args);

        return -1;
    }

1 个答案:

答案 0 :(得分:3)

首先,如果您要做的下一件事就是致电std::string,那么复制execvp是没有意义的。

如果execvp成功,那么它将永远不会返回,整个记忆图像将消失(或更准确地说,被一个全新的图像取代)。在构建新映像的过程中,exec*会将argv数组(和环境数组)复制到其中。无论如何,永远不会调用std::vectorstd::string析构函数。

另一方面,如果execvp失败,则传入其中的参数将不会被修改。 (Posix:&#34; argv[]envp[]指针数组以及这些数组指向的字符串不应通过调用其中一个exec函数来修改,除非是替换的结果过程图像。&#34;)

在任何一种情况下,都不需要复制字符串。您可以使用std::string::c_str()提取指向底层C字符串的指针(作为const char*,但请参见下文)。

其次,如果你正在使用C ++ 11或更新版本,std::vector方便地附带一个data()成员函数,它返回一个指向底层存储的指针。因此,如果您有std::vector<char*> svec,则svec.data()将成为基础char*[],这是您要传递到execvp的内容。

因此,从std::vector<char*>创建std::vector<std::string>会减少问题,这很简单:

else if (kidpid == 0) {
    // I am the child.
    std::vector<char*> argc;
    // const_cast is needed because execvp prototype wants an
    // array of char*, not const char*.
    for (auto const& a : args)
        argc.emplace_back(const_cast<char*>(a.c_str()));
    // NULL terminate
    argc.push_back(nullptr);
    // The first argument to execvp should be the same as the
    // first element in argc, but we'll assume the caller knew
    // what they were doing, and that program is a std::string. 
    execvp(program.c_str(), argc.data());
    // It's not clear to me what is returning here, but
    // if it is main(), you should return a small positive value
    // to indicate an error
    return 1;
}