From: Lumir Balhar Date: Tue, 8 Aug 2017 09:50:30 +0000 (+0200) Subject: python: Make generated modules samba.ntstatus and samba.werror Python 3 compatible. X-Git-Tag: tdb-1.3.15~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ffe030c0dcd46b51ffb2f11c03d5b48e93d32b9;p=thirdparty%2Fsamba.git python: Make generated modules samba.ntstatus and samba.werror Python 3 compatible. Signed-off-by: Lumir Balhar Reviewed-by: Andreas Schneider Reviewed-by: Andrew Bartlet Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Tue Aug 22 17:38:17 CEST 2017 on sn-devel-144 --- diff --git a/libcli/util/wscript_build b/libcli/util/wscript_build index f27014e3446..ce918993d15 100644 --- a/libcli/util/wscript_build +++ b/libcli/util/wscript_build @@ -26,14 +26,15 @@ bld.SAMBA_GENERATOR('werror_generated', rule='${PYTHON} ${SRC[0].abspath(env)} ${SRC[1].abspath(env)} ${TGT[0].abspath(env)} ${TGT[1].abspath(env)} ${TGT[2].abspath(env)}' ) -bld.SAMBA_PYTHON('python_ntstatus', - source='py_ntstatus.c', - deps='samba-errors', - realname='samba/ntstatus.so' - ) +for env in bld.gen_python_environments(): + bld.SAMBA_PYTHON('python_ntstatus', + source='py_ntstatus.c', + deps='samba-errors', + realname='samba/ntstatus.so' + ) -bld.SAMBA_PYTHON('python_werror', - source='py_werror.c', - deps='samba-errors', - realname='samba/werror.so' - ) + bld.SAMBA_PYTHON('python_werror', + source='py_werror.c', + deps='samba-errors', + realname='samba/werror.so' + ) diff --git a/source4/scripting/bin/gen_ntstatus.py b/source4/scripting/bin/gen_ntstatus.py index 3267c3295ad..9e92f49fc1b 100755 --- a/source4/scripting/bin/gen_ntstatus.py +++ b/source4/scripting/bin/gen_ntstatus.py @@ -70,6 +70,7 @@ def generatePythonFile(out_file, errors): out_file.write(" * [MS-ERREF] http://msdn.microsoft.com/en-us/library/cc704588.aspx\n") out_file.write(" */\n") out_file.write("#include \n") + out_file.write("#include \"python/py3compat.h\"\n") out_file.write("#include \"includes.h\"\n\n") out_file.write("static inline PyObject *ndr_PyLong_FromUnsignedLongLong(unsigned long long v)\n"); out_file.write("{\n"); @@ -82,17 +83,24 @@ def generatePythonFile(out_file, errors): # This is needed to avoid a missing prototype error from the C # compiler. There is never a prototype for this function, it is a # module loaded by python with dlopen() and found with dlsym(). - out_file.write("void initntstatus(void);\n") - out_file.write("void initntstatus(void)\n") + out_file.write("static struct PyModuleDef moduledef = {\n") + out_file.write("\tPyModuleDef_HEAD_INIT,\n") + out_file.write("\t.m_name = \"ntstatus\",\n") + out_file.write("\t.m_doc = \"NTSTATUS error defines\",\n") + out_file.write("\t.m_size = -1,\n") + out_file.write("};\n\n") + out_file.write("MODULE_INIT_FUNC(ntstatus)\n") out_file.write("{\n") out_file.write("\tPyObject *m;\n\n") - out_file.write("\tm = Py_InitModule3(\"ntstatus\", NULL, \"NTSTATUS error defines\");\n"); + out_file.write("\tm = PyModule_Create(&moduledef);\n"); out_file.write("\tif (m == NULL)\n"); - out_file.write("\t\treturn;\n\n"); + out_file.write("\t\treturn NULL;\n\n"); for err in errors: line = """\tPyModule_AddObject(m, \"%s\", \t\tndr_PyLong_FromUnsignedLongLong(NT_STATUS_V(%s)));\n""" % (err.err_define, err.err_define) out_file.write(line) + out_file.write("\n"); + out_file.write("\treturn m;\n"); out_file.write("}\n"); def transformErrorName( error_name ): diff --git a/source4/scripting/bin/gen_werror.py b/source4/scripting/bin/gen_werror.py index 9a545726ba5..96611ae7eaa 100755 --- a/source4/scripting/bin/gen_werror.py +++ b/source4/scripting/bin/gen_werror.py @@ -72,6 +72,7 @@ def generatePythonFile(out_file, errors): out_file.write(" * [MS-ERREF] https://msdn.microsoft.com/en-us/library/cc231199.aspx\n") out_file.write(" */\n") out_file.write("#include \n") + out_file.write("#include \"python/py3compat.h\"\n") out_file.write("#include \"includes.h\"\n\n") out_file.write("static inline PyObject *ndr_PyLong_FromUnsignedLongLong(unsigned long long v)\n"); out_file.write("{\n"); @@ -84,17 +85,24 @@ def generatePythonFile(out_file, errors): # This is needed to avoid a missing prototype error from the C # compiler. There is never a prototype for this function, it is a # module loaded by python with dlopen() and found with dlsym(). - out_file.write("void initwerror(void);\n") - out_file.write("void initwerror(void)\n") + out_file.write("static struct PyModuleDef moduledef = {\n") + out_file.write("\tPyModuleDef_HEAD_INIT,\n") + out_file.write("\t.m_name = \"werror\",\n") + out_file.write("\t.m_doc = \"WERROR defines\",\n") + out_file.write("\t.m_size = -1,\n") + out_file.write("};\n\n") + out_file.write("MODULE_INIT_FUNC(werror)\n") out_file.write("{\n") out_file.write("\tPyObject *m;\n\n") - out_file.write("\tm = Py_InitModule3(\"werror\", NULL, \"WERROR defines\");\n"); + out_file.write("\tm = PyModule_Create(&moduledef);\n"); out_file.write("\tif (m == NULL)\n"); - out_file.write("\t\treturn;\n\n"); + out_file.write("\t\treturn NULL;\n\n"); for err in errors: line = """\tPyModule_AddObject(m, \"%s\", \t\tndr_PyLong_FromUnsignedLongLong(W_ERROR_V(%s)));\n""" % (err.err_define, err.err_define) out_file.write(line) + out_file.write("\n"); + out_file.write("\treturn m;\n"); out_file.write("}\n"); def transformErrorName( error_name ):