我有一个 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( \ , , " );
在原始文章的原页上,您没有得到引用的字符串符号正确化 。