English 中文(简体)
如何将命令行参数作为字符串传递到从 C++ 执行的嵌入式 Python 脚本?
原标题:how to pass command-line arguments as a string to an embedded Python script executed from C++?

我有一个 C++ 程序, 揭示 Python 接口, 执行用户嵌入 Python 脚本 。

The user inserts the path of the Python script to run and the command-line arguments. Then the script is executed through

boost::python::exec_file(filename, main_globals, main_globals)

要将命令线参数传递给 Python 脚本, 我们必须通过 Python C- API 函数设置它们

PySys_SetArgv(int args, char** argv)

在拨打 exec_files() 之前,先拨打 exec_files()

But this requires to tokenize the user s string containing the command-line arguments to get the list of arguments, and then to pass them back to the Python interpreter through PySys_SetArgv. And that s more than a mere waste of time, because in this way the main C++ program has to take the responsibility of tokenizing the command-line string without knowing the logics behind, which is only defined in the custom user s script.

在代号中,一个更好和更清洁的方法就是这样:

string command_line_args =  -v -p "filename" -t="anotherfile" --list="["a", "b"]" --myFunnyOpt 
exec_file( filename, command_line_args, ...)

I spent hours looking at the Boost and Python C-API documentation but I did not find anything useful. Do you know if there is a way to achieve this, i.e. passing a whole string of command line arguments to an embedded Python script from C++?


<强> 更新:

正如Steve在下文的评论中所建议的那样,我在>https://stackoverflow.com/a/8965249/32036之后,解决了用输入字符串表示我的问题。

在我的案例中,我用的是:

// defining the separators
std::string escape_char = "\"; // the escape character
std::string sep_char = " "; // empty space as separator
std::string quote_char = ""; // empty string --> we don t want a quote char 
boost::escaped_list_separator<char> sep( escape_char, sep_char, quote_char );

因为我想能够分析含有字符串的图例,比如:

 --option-two=("A", "B") 

如果使用的话:

escaped_list_separator<char> sep( \ ,    ,  " );

在原始文章的原页上,您没有得到引用的字符串符号正确化 。

问题回答

由于您对执行外部文件并不不利, 您可以使用一个助手程序使您的 shell 命令为您进行解析。 您的助手程序可以是 :

#include <stdio.h>
int main (int argc, char *argv[])
{
    for (int i = 1; i < argc; ++i) printf("%s
", argv[i]);
    return 0;
}

然后你就可以有代码, 将单串参数发送到辅助程序( 也许使用 < code> popen ), 并读回解析的参数, 每个参数在一条单独的线上 。

unparsed_line.insert(0, "./parser_helper ");
FILE *helper = popen(unparsed_line.c_str(), "r");
std::vector<std::string> args;
std::vector<const char *> argv;
std::string arg;
while (fgetstring(arg, helper)) {
    args.push_back(arg);
    argv.push_back(args.rbegin()->c_str());
}
pclose(helper);

fgetstring 例行程序是我写的东西,它就像 fgets std:::getline 之间的十字路口。它从FILE__/code> 一次的一条线上读取, 包含一个 std:string 参数 。

static bool
fgetstring (std::string &s, FILE *in)
{
    bool ok = false;
    std::string r;
    char buf[512];
    while (fgets(buf, sizeof(buf), in) != 0) {
        ++ok;
        r += buf;
        if (*r.rbegin() ==  
 ) {
            r.resize(r.size()-1);
            break;
        }
    }
    if (ok) s = r;
    return ok;
}

我好像记得在SO上写过一篇文章, 上面有类似的常规, 但我找不到。如果以后再找到, 我会更新我的文章。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?