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
|
/*
* Copyright (c) 2023 Attila Szakacs
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, 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, 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-flags.h"
#include "python-types.h"
#include "msg-format.h"
typedef struct FlagMapping_
{
const gchar *name;
gboolean value;
} FlagMapping;
static void
_set_flag(PyObject *dict, FlagMapping *mapping)
{
PyObject *value = py_boolean_from_boolean(mapping->value);
if (PyDict_SetItemString(dict, mapping->name, value) < 0)
msg_error("python-flags: Failed to set flag", evt_tag_str("name", mapping->name));
Py_DECREF(value);
}
PyObject *
python_source_flags_new(guint32 flags)
{
PyObject *dict = PyDict_New();
if (!dict)
{
msg_error("python-flags: Failed to create flags dict");
return NULL;
}
FlagMapping mappings[] =
{
{ "parse", ~flags & LP_NOPARSE },
{ "check-hostname", flags & LP_CHECK_HOSTNAME },
{ "syslog-protocol", flags & LP_SYSLOG_PROTOCOL },
{ "assume-utf8", flags & LP_ASSUME_UTF8 },
{ "validate-utf8", flags & LP_VALIDATE_UTF8 },
{ "sanitize-utf8", flags & LP_SANITIZE_UTF8 },
{ "multi-line", ~flags & LP_NO_MULTI_LINE },
{ "store-legacy-msghdr", flags & LP_STORE_LEGACY_MSGHDR },
{ "store-raw-message", flags & LP_STORE_RAW_MESSAGE },
{ "expect-hostname", flags & LP_EXPECT_HOSTNAME },
{ "guess-timezone", flags & LP_GUESS_TIMEZONE },
{ "header", ~flags & LP_NO_HEADER },
{ "rfc3164-fallback", ~flags & LP_NO_RFC3164_FALLBACK },
};
for (gint i = 0; i < G_N_ELEMENTS(mappings); i++)
_set_flag(dict, &mappings[i]);
return dict;
}
|