⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pymessaging.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
/*    Unix SMB/CIFS implementation.   Copyright © Jelmer Vernooij <jelmer@samba.org> 2008   Based on the equivalent for EJS:   Copyright © Andrew Tridgell <tridge@samba.org> 2005      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/>.*/#include "includes.h"#include <Python.h>#include "libcli/util/pyerrors.h"#include "librpc/rpc/pyrpc.h"#include "lib/messaging/irpc.h"#include "lib/messaging/messaging.h"#include "lib/events/events.h"#include "cluster/cluster.h"#include "param/param.h"#include "librpc/gen_ndr/py_irpc.h"PyAPI_DATA(PyTypeObject) messaging_Type;PyAPI_DATA(PyTypeObject) irpc_ClientConnectionType;static bool server_id_from_py(PyObject *object, struct server_id *server_id){	if (!PyTuple_Check(object)) {		PyErr_SetString(PyExc_ValueError, "Expected tuple");		return false;	}	if (PyTuple_Size(object) == 3) {		return PyArg_ParseTuple(object, "iii", &server_id->id, &server_id->id2, &server_id->node);	} else {		int id, id2;		if (!PyArg_ParseTuple(object, "ii", &id, &id2))			return false;		*server_id = cluster_id(id, id2);		return true;	}}typedef struct {	PyObject_HEAD	TALLOC_CTX *mem_ctx;	struct messaging_context *msg_ctx;} messaging_Object;PyObject *py_messaging_connect(PyTypeObject *self, PyObject *args, PyObject *kwargs){	struct event_context *ev;	const char *kwnames[] = { "own_id", "messaging_path", NULL };	PyObject *own_id = Py_None;	const char *messaging_path = NULL;	messaging_Object *ret;	if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|Oz:connect", 		discard_const_p(char *, kwnames), &own_id, &messaging_path)) {		return NULL;	}	ret = PyObject_New(messaging_Object, &messaging_Type);	if (ret == NULL)		return NULL;	ret->mem_ctx = talloc_new(NULL);	ev = event_context_init(ret->mem_ctx);	if (messaging_path == NULL) {		messaging_path = lp_messaging_path(ret, global_loadparm);	} else {		messaging_path = talloc_strdup(ret->mem_ctx, messaging_path);	}	if (own_id != Py_None) {		struct server_id server_id;		if (!server_id_from_py(own_id, &server_id)) 			return NULL;		ret->msg_ctx = messaging_init(ret->mem_ctx, 					    messaging_path,					    server_id,				            lp_iconv_convenience(global_loadparm),					    ev);	} else {		ret->msg_ctx = messaging_client_init(ret->mem_ctx, 					    messaging_path,				            lp_iconv_convenience(global_loadparm),					    ev);	}	if (ret->msg_ctx == NULL) {		PyErr_SetString(PyExc_RuntimeError, "messaging_connect unable to create a messaging context");		talloc_free(ret->mem_ctx);		return NULL;	}	return (PyObject *)ret;}static void py_messaging_dealloc(PyObject *self){	messaging_Object *iface = (messaging_Object *)self;	talloc_free(iface->msg_ctx);	PyObject_Del(self);}static PyObject *py_messaging_send(PyObject *self, PyObject *args, PyObject *kwargs){	messaging_Object *iface = (messaging_Object *)self;	uint32_t msg_type;	DATA_BLOB data;	PyObject *target;	NTSTATUS status;	struct server_id server;	const char *kwnames[] = { "target", "msg_type", "data", NULL };	int length;	if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Ois#|:send", 		discard_const_p(char *, kwnames), &target, &msg_type, &data.data, &length)) {		return NULL;	}	data.length = length;	if (!server_id_from_py(target, &server)) 		return NULL;	status = messaging_send(iface->msg_ctx, server, msg_type, &data);	if (NT_STATUS_IS_ERR(status)) {		PyErr_SetNTSTATUS(status);		return NULL;	}	return Py_None;}static void py_msg_callback_wrapper(struct messaging_context *msg, void *private, 			       uint32_t msg_type, 			       struct server_id server_id, DATA_BLOB *data){	PyObject *callback = (PyObject *)private;	PyObject_CallFunction(callback, discard_const_p(char, "i(iii)s#"), msg_type, 			      server_id.id, server_id.id2, server_id.node, 			      data->data, data->length);}static PyObject *py_messaging_register(PyObject *self, PyObject *args, PyObject *kwargs){	messaging_Object *iface = (messaging_Object *)self;	int msg_type = -1;	PyObject *callback;	NTSTATUS status;	const char *kwnames[] = { "callback", "msg_type", NULL };		if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|i:send", 		discard_const_p(char *, kwnames), &callback, &msg_type)) {		return NULL;	}	Py_INCREF(callback);	if (msg_type == -1) {		uint32_t msg_type32 = msg_type;		status = messaging_register_tmp(iface->msg_ctx, callback,						py_msg_callback_wrapper, &msg_type32);		msg_type = msg_type32;	} else {		status = messaging_register(iface->msg_ctx, callback,				    msg_type, py_msg_callback_wrapper);	}	if (NT_STATUS_IS_ERR(status)) {		PyErr_SetNTSTATUS(status);		return NULL;	}	return PyLong_FromLong(msg_type);}static PyObject *py_messaging_deregister(PyObject *self, PyObject *args, PyObject *kwargs){	messaging_Object *iface = (messaging_Object *)self;	int msg_type = -1;	PyObject *callback;	const char *kwnames[] = { "callback", "msg_type", NULL };	if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|i:send", 		discard_const_p(char *, kwnames), &callback, &msg_type)) {		return NULL;	}	messaging_deregister(iface->msg_ctx, msg_type, callback);	Py_DECREF(callback);	return Py_None;}static PyObject *py_messaging_add_name(PyObject *self, PyObject *args, PyObject *kwargs){	messaging_Object *iface = (messaging_Object *)self;	NTSTATUS status;	char *name;	const char *kwnames[] = { "name", NULL };	if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|:send", 		discard_const_p(char *, kwnames), &name)) {		return NULL;	}	status = irpc_add_name(iface->msg_ctx, name);	if (NT_STATUS_IS_ERR(status)) {		PyErr_SetNTSTATUS(status);		return NULL;	}	return Py_None;}static PyObject *py_messaging_remove_name(PyObject *self, PyObject *args, PyObject *kwargs){	messaging_Object *iface = (messaging_Object *)self;	char *name;	const char *kwnames[] = { "name", NULL };	if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|:send", 		discard_const_p(char *, kwnames), &name)) {		return NULL;	}	irpc_remove_name(iface->msg_ctx, name);	return Py_None;}static PyMethodDef py_messaging_methods[] = {	{ "send", (PyCFunction)py_messaging_send, METH_VARARGS|METH_KEYWORDS, 		"S.send(target, msg_type, data) -> None\nSend a message" },	{ "register", (PyCFunction)py_messaging_register, METH_VARARGS|METH_KEYWORDS,		"S.register(callback, msg_type=None) -> msg_type\nRegister a message handler" },	{ "deregister", (PyCFunction)py_messaging_deregister, METH_VARARGS|METH_KEYWORDS,		"S.deregister(callback, msg_type) -> None\nDeregister a message handler" },	{ "add_name", (PyCFunction)py_messaging_add_name, METH_VARARGS|METH_KEYWORDS, "S.add_name(name) -> None\nListen on another name" },	{ "remove_name", (PyCFunction)py_messaging_remove_name, METH_VARARGS|METH_KEYWORDS, "S.remove_name(name) -> None\nStop listening on a name" },	{ NULL, NULL, 0, NULL }};static PyObject *py_messaging_server_id(PyObject *obj, void *closure){	messaging_Object *iface = (messaging_Object *)obj;	struct server_id server_id = messaging_get_server_id(iface->msg_ctx);	return Py_BuildValue("(iii)", server_id.id, server_id.id2, 			     server_id.node);}static PyGetSetDef py_messaging_getset[] = {	{ discard_const_p(char, "server_id"), py_messaging_server_id, NULL, 	  discard_const_p(char, "local server id") },	{ NULL },};PyTypeObject messaging_Type = {	PyObject_HEAD_INIT(NULL) 0,	.tp_name = "irpc.Messaging",	.tp_basicsize = sizeof(messaging_Object),	.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -