1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

Avoid using a utility header for Python replacements included in Samba,

since this will not be shipped with talloc/tdb/tevent/etc.
This commit is contained in:
Jelmer Vernooij 2009-01-08 12:20:20 +01:00
parent 61a23c5eea
commit ba5d6e6d70
15 changed files with 71 additions and 45 deletions

View File

@ -24,7 +24,11 @@
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "../lib/util/python_util.h"
#include <Python.h>
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
#ifdef HAVE_FSTAT
#undef HAVE_FSTAT
#endif

View File

@ -16,7 +16,12 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../lib/util/python_util.h"
#include <Python.h>
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
#include <tevent.h>
#include <stdbool.h>
#include <tevent_util.h>

View File

@ -1,31 +0,0 @@
/*
Unix SMB/CIFS implementation.
Samba Python utility functions
Copyright (C) Tim Prouty <tprouty@samba.org> 2009
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PYTHON_UTIL_H_
#define _PYTHON_UTIL_H_
#include <Python.h>
#if PY_VERSION_HEX < 0x02040000
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
#endif
#endif /* _PYTHON_UTIL_H_ */

View File

@ -18,12 +18,16 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "libcli/util/pyerrors.h"
#include "scripting/python/modules.h"
#include "../libcli/nbt/libnbt.h"
#include "lib/events/events.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
PyAPI_DATA(PyTypeObject) nbt_node_Type;
typedef struct {

View File

@ -1121,13 +1121,17 @@ sub Parse($$$$$)
$self->pidl_hdr("
/* Python wrapper functions auto-generated by pidl */
#include \"includes.h\"
#include \"../lib/util/python_util.h\"
#include <Python.h>
#include \"librpc/rpc/dcerpc.h\"
#include \"lib/talloc/pytalloc.h\"
#include \"librpc/rpc/pyrpc.h\"
#include \"$hdr\"
#include \"$ndr_hdr\"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
");
foreach my $x (@$ndr) {

View File

@ -17,7 +17,7 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "pycredentials.h"
#include "param/param.h"
#include "lib/cmdline/credentials.h"
@ -25,6 +25,10 @@
#include "libcli/util/pyerrors.h"
#include "param/pyparam.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
struct cli_credentials *cli_credentials_from_py_object(PyObject *py_obj)
{
if (py_obj == Py_None) {

View File

@ -18,11 +18,15 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "lib/com/com.h"
#include "librpc/ndr/libndr.h"
#include "libcli/util/pyerrors.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
static struct com_context *py_com_ctx = NULL; /* FIXME: evil global */
static PyObject *py_get_class_object(PyObject *self, PyObject *args)

View File

@ -26,7 +26,7 @@
*/
#include "ldb_includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "pyldb.h"
/* There's no Py_ssize_t in 2.4, apparently */
@ -36,6 +36,10 @@ typedef inquiry lenfunc;
typedef intargfunc ssizeargfunc;
#endif
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
/* Picked out of thin air. To do this properly, we should probably have some part of the
* errors in LDB be allocated to bindings ? */
#define LDB_ERR_PYTHON_EXCEPTION 142

View File

@ -20,7 +20,7 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "scripting/python/modules.h"
#include "libcli/util/pyerrors.h"
#include "librpc/rpc/pyrpc.h"
@ -30,6 +30,10 @@
#include "cluster/cluster.h"
#include "param/param.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
PyAPI_DATA(PyTypeObject) messaging_Type;
PyAPI_DATA(PyTypeObject) irpc_ClientConnectionType;

View File

@ -18,7 +18,7 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "libcli/util/pyerrors.h"
#include "lib/registry/registry.h"
#include "scripting/python/modules.h" /* for py_iconv_convenience() */
@ -26,6 +26,10 @@
#include <tevent.h>
#include "param/pyparam.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
extern struct cli_credentials *cli_credentials_from_py_object(PyObject *py_obj);
PyAPI_DATA(PyTypeObject) PyRegistryKey;

View File

@ -16,9 +16,13 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../lib/util/python_util.h"
#include <Python.h>
#include "libcli/security/security.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
static void PyType_AddMethods(PyTypeObject *type, PyMethodDef *methods)
{
PyObject *dict;

View File

@ -18,13 +18,17 @@
*/
#include "includes.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include <structmember.h>
#include "librpc/rpc/pyrpc.h"
#include "librpc/rpc/dcerpc.h"
#include "lib/events/events.h"
#include "param/pyparam.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
static PyObject *py_dcerpc_run_function(dcerpc_InterfaceObject *iface, struct PyNdrRpcMethodDef *md, PyObject *args, PyObject *kwargs)
{
TALLOC_CTX *mem_ctx;

View File

@ -23,7 +23,7 @@
#include "includes.h"
#include "param/param.h"
#include "param/loadparm.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "pytalloc.h"
/* There's no Py_ssize_t in 2.4, apparently */
@ -32,6 +32,10 @@ typedef int Py_ssize_t;
typedef inquiry lenfunc;
#endif
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
#define PyLoadparmContext_AsLoadparmContext(obj) py_talloc_get_ptr(obj)
PyAPI_DATA(PyTypeObject) PyLoadparmContext;

View File

@ -25,13 +25,17 @@
#include "lib/ldb-samba/ldif_handlers.h"
#include "librpc/ndr/libndr.h"
#include "version.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#include "lib/ldb/pyldb.h"
#include "libcli/util/pyerrors.h"
#include "libcli/security/security.h"
#include "auth/pyauth.h"
#include "param/pyparam.h"
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
/* FIXME: These should be in a header file somewhere, once we finish moving
* away from SWIG .. */
extern struct cli_credentials *cli_credentials_from_py_object(PyObject *py_obj);

View File

@ -25,7 +25,11 @@
#include "../lib/util/dlinklist.h"
#include "../lib/util/data_blob.h"
#include "lib/tls/tls.h"
#include "../lib/util/python_util.h"
#include <Python.h>
#ifndef Py_RETURN_NONE
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
#endif
typedef struct {
PyObject_HEAD