1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
* Copyright (c) 2018 Balabit
* Copyright (c) 2018 Balazs Scheidler <balazs.scheidler@balabit.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "python-module.h"
#include "python-helpers.h"
#include "python-types.h"
static PyTypeObject py_global_code_loader_type;
/* This class implements the Loader interface attached to the main module
* (e.g. _syslogng_main), so the details of exceptions can be properly reported.
*/
typedef struct _PyGlobalCodeLoader
{
PyObject_HEAD
gchar *source;
} PyGlobalCodeLoader;
static PyObject *
_get_source(PyGlobalCodeLoader *self, PyObject *args)
{
char *name;
if (!PyArg_ParseTuple(args, "s:get_source", &name))
return NULL;
return py_string_from_string(self->source, -1);
}
PyObject *
py_global_code_loader_new(const gchar *source)
{
PyGlobalCodeLoader *self;
self = PyObject_New(PyGlobalCodeLoader, &py_global_code_loader_type);
if (!self)
return NULL;
self->source = g_strdup(source);
return (PyObject *) self;
}
static void
_free(PyGlobalCodeLoader *self)
{
g_free(self->source);
py_slng_generic_dealloc((PyObject *)self);
}
static PyMethodDef _methods[] =
{
{
"get_source", (PyCFunction) _get_source,
METH_VARARGS, "Return the source for the global code as present in the syslog-ng configuration file."
},
{NULL}
};
static PyTypeObject py_global_code_loader_type =
{
PyVarObject_HEAD_INIT(&PyType_Type, 0)
.tp_name = "_SyslogNGGlobalCodeLoader",
.tp_basicsize = sizeof(PyGlobalCodeLoader),
.tp_dealloc = (destructor) _free,
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.tp_doc = "Class implementing the Loader interface to represent source code embedded into syslog-ng.conf",
.tp_new = PyType_GenericNew,
.tp_methods = _methods,
0,
};
void
py_global_code_loader_global_init(void)
{
PyType_Ready(&py_global_code_loader_type);
}
|