1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-28 12:23:49 +03:00

pidl/python: Fix compilation of py_echo.

This commit is contained in:
Jelmer Vernooij
2008-01-14 02:48:50 +01:00
parent 2d2cb6486e
commit 5ee99ff31c
5 changed files with 42 additions and 7 deletions

22
source/foo.py Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/python
# Unix SMB/CIFS implementation.
# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
#
# 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/>.
#
from echo import rpcecho
x = rpcecho("ncalrpc:")

View File

@@ -597,4 +597,4 @@ PUBLIC_DEPENDENCIES = LIBCLI_SMB NDR_MISC LIBSAMBA-UTIL LIBSAMBA-CONFIG dcerpc_s
[PYTHON::python_echo] [PYTHON::python_echo]
OBJ_FILES = gen_ndr/py_echo.o OBJ_FILES = gen_ndr/py_echo.o
PRIVATE_DEPENDENCIES = NDR_ECHO PRIVATE_DEPENDENCIES = RPC_NDR_ECHO

View File

@@ -384,7 +384,7 @@ sub PythonType($$$)
$self->EnumAndBitmapConsts($d->{NAME}, $d->{DATA}); $self->EnumAndBitmapConsts($d->{NAME}, $d->{DATA});
} }
if ($actual_ctype->{TYPE} eq "UNION") { if ($actual_ctype->{TYPE} eq "UNION" and defined($actual_ctype->{ELEMENTS})) {
$self->pidl("PyObject *py_import_$d->{NAME}(int level, " .mapTypeName($d) . " *in)"); $self->pidl("PyObject *py_import_$d->{NAME}(int level, " .mapTypeName($d) . " *in)");
$self->pidl("{"); $self->pidl("{");
$self->indent; $self->indent;
@@ -486,7 +486,7 @@ sub Interface($$$)
$self->pidl(""); $self->pidl("");
$self->register_module_method($interface->{NAME}, "interface_$interface->{NAME}", "METH_VARARGS|METH_KEYWORDS", "NULL"); $self->register_module_method($interface->{NAME}, "interface_$interface->{NAME}", "METH_VARARGS|METH_KEYWORDS", "NULL");
$self->pidl("static PyObject *interface_$interface->{NAME}(PyObject *self, PyObject *args)"); $self->pidl("static PyObject *interface_$interface->{NAME}(PyObject *self, PyObject *args, PyObject *kwargs)");
$self->pidl("{"); $self->pidl("{");
$self->indent; $self->indent;
$self->pidl("$interface->{NAME}_InterfaceObject *ret;"); $self->pidl("$interface->{NAME}_InterfaceObject *ret;");
@@ -496,6 +496,18 @@ sub Interface($$$)
$self->pidl("TALLOC_CTX *mem_ctx = NULL;"); $self->pidl("TALLOC_CTX *mem_ctx = NULL;");
$self->pidl("NTSTATUS status;"); $self->pidl("NTSTATUS status;");
$self->pidl(""); $self->pidl("");
$self->pidl("const char *kwnames[] = {");
$self->indent;
$self->pidl("\"binding\", NULL");
$self->deindent;
$self->pidl("};");
$self->pidl("");
$self->pidl("if (!PyArg_ParseTupleAndKeywords(args, kwargs, \"s:$interface->{NAME}\", discard_const_p(char *, kwnames), &binding_string)) {");
$self->indent;
$self->pidl("return NULL;");
$self->deindent;
$self->pidl("}");
$self->pidl("");
# FIXME: Arguments: binding string, credentials, loadparm context # FIXME: Arguments: binding string, credentials, loadparm context
$self->pidl("ret = PyObject_New($interface->{NAME}_InterfaceObject, &$interface->{NAME}_InterfaceType);"); $self->pidl("ret = PyObject_New($interface->{NAME}_InterfaceObject, &$interface->{NAME}_InterfaceType);");

View File

@@ -5,7 +5,7 @@ OBJ_FILES = smbpython.o
[SUBSYSTEM::LIBPYTHON] [SUBSYSTEM::LIBPYTHON]
PUBLIC_DEPENDENCIES = EXT_LIB_PYTHON PUBLIC_DEPENDENCIES = EXT_LIB_PYTHON
INIT_FUNCTION_SENTINEL = { NULL, NULL } INIT_FUNCTION_SENTINEL = { NULL, NULL }
OBJ_FILES = modules.o OBJ_FILES = modules.o pytalloc.o
[PYTHON::python_uuid] [PYTHON::python_uuid]
PRIVATE_DEPENDENCIES = LIBNDR PRIVATE_DEPENDENCIES = LIBNDR

View File

@@ -18,6 +18,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "scripting/python/pytalloc.h"
void py_talloc_dealloc(PyObject* self) void py_talloc_dealloc(PyObject* self)
{ {
@@ -26,13 +27,13 @@ void py_talloc_dealloc(PyObject* self)
PyObject_Del(self); PyObject_Del(self);
} }
PyObject *py_talloc_import(PyTypeObject *py_type, TALLOC_CTX *mem_ctx, PyObject *py_talloc_import_ex(PyTypeObject *py_type, TALLOC_CTX *mem_ctx,
void *ptr) void *ptr)
{ {
PyObject *ret = PyObject_New(py_talloc_Object, &py_type); py_talloc_Object *ret = PyObject_New(py_talloc_Object, py_type);
ret->talloc_ctx = talloc_reference(mem_ctx, ptr); ret->talloc_ctx = talloc_reference(mem_ctx, ptr);
ret->ptr = ptr; ret->ptr = ptr;
return ret; return (PyObject *)ret;
} }
PyObject *py_talloc_default_repr(PyObject *py_obj) PyObject *py_talloc_default_repr(PyObject *py_obj)