_reader.c revision 6808412dad4a8c4379dda4453658ec756a0542b9
/*-*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Steven Hiscocks, Zbigniew Jędrzejewski-Szmek
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.
systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <Python.h>
#include <structmember.h>
#include <datetime.h>
#include <stdio.h>
#include <systemd/sd-journal.h>
#include "pyutil.h"
#include "macro.h"
#include "util.h"
typedef struct {
sd_journal *j;
} Reader;
static PyTypeObject ReaderType;
if (r >= 0)
return r;
if (r == -EINVAL && invalid_message)
else if (r == -ENOMEM)
else {
errno = -r;
}
return -1;
}
#if PY_MAJOR_VERSION >= 3
static PyTypeObject MonotonicType;
"A tuple of (timestamp, bootid) for holding monotonic timestamps");
static PyStructSequence_Field MonotonicType_fields[] = {
{(char*) "timestamp", (char*) "Time"},
{(char*) "bootid", (char*) "Unique identifier of the boot"},
};
static PyStructSequence_Desc Monotonic_desc = {
(char*) "journal.Monotonic",
2,
};
#endif
{
sd_journal_close(self->j);
}
"Reader([flags | path]) -> ...\n\n"
"Reader allows filtering and retrieval of Journal entries.\n"
"Note: this is a low-level interface, and probably not what you\n"
"want, use systemd.journal.Reader instead.\n\n"
"Argument `flags` sets open flags of the journal, which can be one\n"
"of, or ORed combination of constants: LOCAL_ONLY (default) opens\n"
"journal on local machine only; RUNTIME_ONLY opens only\n"
"volatile journal files; and SYSTEM_ONLY opens only\n"
"journal files of system services and the kernel.\n\n"
"Argument `path` is the directory of journal files. Note that\n"
"`flags` and `path` are exclusive.\n");
{
int flags = 0, r;
return -1;
if (!flags)
else
if (path) {
return -1;
}
if (path)
else
}
"fileno() -> int\n\n"
"Get a file descriptor to poll for changes in the journal.\n"
"This method invokes sd_journal_get_fd().\n"
"See man:sd_journal_get_fd(3).");
{
int r;
r = sd_journal_get_fd(self->j);
if (r < 0)
return NULL;
return long_FromLong(r);
}
"reliable_fd() -> bool\n\n"
"Returns True iff the journal can be polled reliably.\n"
"This method invokes sd_journal_reliable_fd().\n"
"See man:sd_journal_reliable_fd(3).");
{
int r;
r = sd_journal_reliable_fd(self->j);
if (r < 0)
return NULL;
return PyBool_FromLong(r);
}
"close() -> None\n\n"
"Free resources allocated by this Reader object.\n"
"This method invokes sd_journal_close().\n"
"See man:sd_journal_close(3).");
{
sd_journal_close(self->j);
}
"__enter__() -> self\n\n"
"Part of the context manager protocol.\n"
"Returns self.\n");
{
return self;
}
"__exit__(type, value, traceback) -> None\n\n"
"Part of the context manager protocol.\n"
"Closes the journal.\n");
{
sd_journal_close(self->j);
}
"get_next([skip]) -> dict\n\n"
"Return dictionary of the next log entry. Optional skip value will\n"
"return the `skip`\\-th log entry.");
{
const void *msg;
int r;
return NULL;
return NULL;
}
if (skip == 1LL)
r = sd_journal_next(self->j);
else if (skip == -1LL)
r = sd_journal_previous(self->j);
else if (skip > 1LL)
else if (skip < -1LL)
else
assert_not_reached("should not be here");
if (r < 0)
return NULL;
else if (r == 0) /* EOF */
return PyDict_New();
dict = PyDict_New();
if (!dict)
return NULL;
const char *delim_ptr;
if (!delim_ptr) {
"journal gave us a field without '='");
goto error;
}
if (!key)
goto error;
delim_ptr + 1,
if (!value)
goto error;
if (PyList_CheckExact(cur_value)) {
if (r < 0)
goto error;
} else {
if (!tmp_list)
goto error;
if (r < 0)
goto error;
if (r < 0)
goto error;
if (r < 0)
goto error;
}
} else {
if (r < 0)
goto error;
}
}
{
goto error;
if (!key)
goto error;
if (!value)
goto error;
goto error;
}
{
goto error;
#if PY_MAJOR_VERSION >= 3
#else
#endif
goto error;
#if PY_MAJOR_VERSION >= 3
#else
#endif
goto error;
}
{
goto error;
if (!key)
goto error;
if (!value)
goto error;
goto error;
}
return dict;
return NULL;
}
"get_previous([skip]) -> dict\n\n"
"Return dictionary of the previous log entry. Optional skip value\n"
"will return the -`skip`\\-th log entry. Equivalent to get_next(-skip).");
{
return NULL;
(char*) "L", -skip);
}
"add_match(match) -> None\n\n"
"Add a match to filter journal log entries. All matches of different\n"
"fields are combined with logical AND, and matches of the same field\n"
"are automatically combined with logical OR.\n"
"Match is a string of the form \"FIELD=value\".");
{
char *match;
int match_len, r;
return NULL;
if (r < 0)
return NULL;
}
"add_disjunction() -> None\n\n"
"Inserts a logical OR between matches added before and afterwards.");
{
int r;
r = sd_journal_add_disjunction(self->j);
if (r < 0)
return NULL;
}
"flush_matches() -> None\n\n"
"Clear all current match filters.");
{
}
"seek_head() -> None\n\n"
"Jump to the beginning of the journal.\n"
"This method invokes sd_journal_seek_head().\n"
"See man:sd_journal_seek_head(3).");
{
int r;
r = sd_journal_seek_head(self->j);
return NULL;
}
"seek_tail() -> None\n\n"
"Jump to the end of the journal.\n"
"This method invokes sd_journal_seek_tail().\n"
"See man:sd_journal_seek_tail(3).");
{
int r;
r = sd_journal_seek_tail(self->j);
return NULL;
}
"seek_realtime(realtime) -> None\n\n"
"Seek to nearest matching journal entry to `realtime`. Argument\n"
"`realtime` can must be an integer unix timestamp.");
{
double timedouble;
int r;
return NULL;
return NULL;
}
return NULL;
}
"seek_monotonic(monotonic[, bootid]) -> None\n\n"
"Seek to nearest matching journal entry to `monotonic`. Argument\n"
"`monotonic` is an timestamp from boot in seconds.\n"
"Argument `bootid` is a string representing which boot the\n"
"monotonic time is reference to. Defaults to current bootid.");
{
double timedouble;
int r;
return NULL;
return NULL;
}
if (bootid) {
return NULL;
} else {
r = sd_id128_get_boot(&id);
return NULL;
}
return NULL;
}
"wait([timeout]) -> state change (integer)\n\n"
"Wait for a change in the journal. Argument `timeout` specifies\n"
"the maximum number of seconds to wait before returning\n"
"regardless of wheter the journal has changed. If `timeout` is not given\n"
"or is 0, then block forever.\n"
"Will return constants: NOP if no change; APPEND if new\n"
"entries have been added to the end of the journal; and\n"
"INVALIDATE if journal files have been added or removed.");
{
int r;
return NULL;
r = sd_journal_wait(self->j,
return NULL;
return long_FromLong(r);
}
"seek_cursor(cursor) -> None\n\n"
"Seek to journal entry by given unique reference `cursor`.");
{
const char *cursor;
int r;
return NULL;
return NULL;
}
{
return self;
}
{
if (PyErr_Occurred())
return NULL;
return dict;
} else {
return NULL;
}
}
"query_unique(field) -> a set of values\n\n"
"Return a set of unique values appearing in journal for the\n"
"given `field`. Note this does not respect any journal matches.");
{
char *query;
int r;
const void *uniq;
return NULL;
return NULL;
const char *delim_ptr;
delim_ptr + 1,
}
return value_set;
}
"get_catalog() -> str\n\n"
"Retrieve a message catalog entry for the current journal entry.\n"
"Wraps man:sd_journal_get_catalog(3).");
{
int r;
return NULL;
return unicode_FromString(msg);
}
"Threshold for field size truncation in bytes.\n\n"
"Fields longer than this will be truncated to the threshold size.\n"
"Defaults to 64Kb.");
{
int r;
return NULL;
return long_FromSize_t(cvalue);
}
{
int r;
return -1;
}
if (!long_Check(value)){
return -1;
}
}
"True iff journal is closed");
{
}
static PyGetSetDef Reader_getsetters[] = {
{(char*) "data_threshold",
(char*) data_threshold__doc__,
NULL},
{(char*) "closed",
NULL,
(char*) closed__doc__,
NULL},
{NULL}
};
static PyMethodDef Reader_methods[] = {
{"add_disjunction", (PyCFunction) Reader_add_disjunction, METH_NOARGS, Reader_add_disjunction__doc__},
{"seek_monotonic", (PyCFunction) Reader_seek_monotonic, METH_VARARGS, Reader_seek_monotonic__doc__},
{NULL} /* Sentinel */
};
static PyTypeObject ReaderType = {
"_reader._Reader", /*tp_name*/
sizeof(Reader), /*tp_basicsize*/
0, /*tp_itemsize*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Reader__doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
Reader_iter, /* tp_iter */
Reader_iternext, /* tp_iternext */
Reader_methods, /* tp_methods */
0, /* tp_members */
Reader_getsetters, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
#define SUMMARY \
"Module that reads the systemd journal similar to journalctl."
#if PY_MAJOR_VERSION >= 3
static PyModuleDef _reader_module = {
"_reader",
-1,
};
#endif
#if PY_MAJOR_VERSION >= 3
static bool initialized = false;
#endif
#if PY_MAJOR_VERSION >= 3
PyInit__reader(void)
#else
init_reader(void)
#endif
{
PyObject* m;
if (PyType_Ready(&ReaderType) < 0)
#if PY_MAJOR_VERSION >= 3
return NULL;
#else
return;
#endif
#if PY_MAJOR_VERSION >= 3
m = PyModule_Create(&_reader_module);
if (m == NULL)
return NULL;
if (!initialized) {
initialized = true;
}
#else
if (m == NULL)
return;
#endif
#if PY_MAJOR_VERSION >= 3
#endif
#if PY_MAJOR_VERSION >= 3
#endif
#if PY_MAJOR_VERSION >= 3
Py_DECREF(m);
return NULL;
#endif
}
#if PY_MAJOR_VERSION >= 3
return m;
#endif
}