修复与 mpd_setminalloc 相关的警告消息

Pus*_*kar 5 c++ python

我不断地看到

context.c:55:警告:mpd_setminalloc:忽略第二次设置 MPD_MINALLOC 的请求

每次在运行时调用以下函数(在 C++ 中调用 python 函数)之后

此函数的使用如https://docs.python.org/2/extending/extending.htmlPython.h中所述

void process_string(string text)
{
    //cout<<text<<endl;
    PyObject *pName, *pModule, *pDict, *pFunc;
    PyObject *pArgs, *pValue;

    Py_Initialize();
    PyRun_SimpleString("import sys");
    PyRun_SimpleString("import os");
    PyRun_SimpleString("sys.path.append( os.path.dirname(os.getcwd()) )");

    pName = PyUnicode_FromString("python_files.strings");
    pModule = PyImport_Import(pName);
    Py_DECREF(pName);

    if (pModule != nullptr) {
        pFunc = PyObject_GetAttrString(pModule, "process_string");
        if (pFunc && PyCallable_Check(pFunc)) {
            pArgs = PyTuple_New(1);
            pValue = PyUnicode_FromString(text.c_str());
            cout<<_PyUnicode_AsString(pValue)<<endl;
            if (!pValue) {
                Py_DECREF(pArgs);
                Py_DECREF(pModule);
                fprintf(stderr, "Cannot convert argument\n");
            }
            PyTuple_SetItem(pArgs, 0, pValue);
            pValue = PyObject_CallObject(pFunc, pArgs);
            Py_DECREF(pArgs);
            if (pValue != NULL)
            {
                //cout<<_PyUnicode_AsString(pValue)<<endl;
                Py_DECREF(pValue);
            } else {
                Py_DECREF(pFunc);
                Py_DECREF(pModule);
                PyErr_Print();
                fprintf(stderr, "Call failed\n");
            }
        } else {
            if (PyErr_Occurred())
                PyErr_Print();
            fprintf(stderr, "Cannot find function \"%s\"\n", "process_string");
        }
        Py_XDECREF(pFunc);
        Py_DECREF(pModule);
    } else {
        PyErr_Print();
        fprintf(stderr, "Failed to load \"%s\"\n", "python_files.strings");
    }
    Py_Finalize();
}
Run Code Online (Sandbox Code Playgroud)

问题出在代码的 C++ 端,即使我更改 python 函数以简单地返回输入,我也会在控制台上看到警告。

string.py 文件(示例):

import os
import sys
import warnings

def process_string(text):
    if not sys.warnoptions:
        warnings.simplefilter("ignore")
    return text
Run Code Online (Sandbox Code Playgroud)

我尝试在 python 端禁用警告打印,但没有任何优势。

Jac*_*din 5

Py_Initialize我无法重现您所描述的行为,但这很可能是由于您多次致电的事实。

每次在第一个之后,decimal模块都会初始化并使用 调用mpd_setminalloc minalloc_is_set == 1因此会出现警告消息。

void
mpd_setminalloc(mpd_ssize_t n)
{
    static int minalloc_is_set = 0;

    if (minalloc_is_set) {
        mpd_err_warn("mpd_setminalloc: ignoring request to set "
                     "MPD_MINALLOC a second time\n");
        return;
    }
    if (n < MPD_MINALLOC_MIN || n > MPD_MINALLOC_MAX) {
        mpd_err_fatal("illegal value for MPD_MINALLOC"); /* GCOV_NOT_REACHED */
    }
    MPD_MINALLOC = n;
    minalloc_is_set = 1;
}
Run Code Online (Sandbox Code Playgroud)

您应该在单独的函数中初始化 Python 解释器,并且仅调用一次。例如,如果您想将其放入main

int
main()
{
    int i;    

    Py_Initialize();

    for( i=0; i < 5; i++)
        process_string("A nice string");
    process_string("Another nice string");

    Py_Finalize();
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

请注意,您也可以将导入放在那里,因为 Python 解释器将保持活动状态,直到您的程序完成。

作为参考,我使用的编译命令是:

g++ -c -I/usr/include/python3.6m -Wno-unused-result -Wsign-compare -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DNDEBUG -g -fwrapv -O3 -Wall <yourprogram.cpp> -lpython3.6m
Run Code Online (Sandbox Code Playgroud)

链接命令是:

g++ -g -L/usr/lib -lpython3.6m -lpthread -ldl  -lutil -lm  -Xlinker -export-dynamic -o <yourexecutable> <yourobjectfile.o>
Run Code Online (Sandbox Code Playgroud)