| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | daemon: add wrapper for sd_is_socket_sockaddr and tests | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 2 | -5/+54 | |
| | | | | | | | | | Specifying the address without does not work. | |||||
| | * | _daemon: allow specifying flowinfo | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 1 | -4/+15 | |
| | | | | | | | | | Not particularly useful, but let's have it for completeness. | |||||
| | * | util: add compatibility for old glibc | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 1 | -0/+4 | |
| | | | | | | | | | Oh, Ubuntu! | |||||
| | * | daemon: add basic support for sd_is_socket_sockaddr | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 3 | -5/+252 | |
| | | | | | | | | | Later on a proper wrapper in daemon.py should be added. | |||||
| | * | _daemon,_reader: return ENOSYS instead of NotImplemented | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 2 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | In _reader we were raising OSError(errno=ENOSYS), but in _dameon we were raising NotImplementedError. Let's always use ENOSYS. Also, make the messages in _reader more specific. Fixes #33. | |||||
| | * | tests: skip journal.stream tests on ENOENT error | Zbigniew Jędrzejewski-Szmek | 2016-12-15 | 2 | -12/+23 | |
| | | | | | | | | | | | | | | | | | When running in a chroot, doctests that called journal.stream would fail with ENOENT. Move the tests to test_journal, where we can skip tests properly (without uglyfying the documentation). Fixes #32. | |||||
| * | | replace dict.iteritems() with dict.items() to support py3 (#39) | Jeongsoo, Park | 2017-03-11 | 2 | -12/+50 | |
| | | | | | | | py3 doesn't have dict.iteritems() anymore. | |||||
| * | | test_daemon: xfail test_notify_with_socket if bind() fails (#42) | Mike Gilbert | 2017-03-11 | 1 | -1/+4 | |
| | | | | | | | | | | | This bind() call may fail if TMPDIR is too long. Bug: https://bugs.gentoo.org/610368 | |||||
| * | | Python 3.6 invalid escape sequence deprecation fixes (#43) | Ville Skyttä | 2017-03-11 | 1 | -2/+2 | |
| |/ | | | https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior | |||||
| * | Include all fields from record (#30) | Oleksii Shevchuk | 2016-10-27 | 1 | -1/+16 | |
| | | | | | This approach allows to use LoggerAdapter+extra or .info(.., extra={}) to transparently add extra fields to journal. | |||||
| * | id128: add SD_MESSAGE_TRUNCATED_CORE from upcoming systemd-232 | Zbigniew Jędrzejewski-Szmek | 2016-10-17 | 2 | -0/+2 | |
| | | ||||||
| * | journal: allow stream() to be used without any arguments | Zbigniew Jędrzejewski-Szmek | 2016-10-17 | 1 | -3/+12 | |
| | | | | | | | | | | It's fairly easy to provide a reasonable default for the first argument. Let's do that. Also, the documentation was misleading, suggesting that the function itself can be passed as file parameter to print(). Use a different name for the temporary variable to clarify that. | |||||
| * | journal: bump default log level for stream() to INFO | Zbigniew Jędrzejewski-Szmek | 2016-10-17 | 1 | -1/+1 | |
| | | | | | | By default debug messages are ignored, and INFO should be used for "normal" messages. | |||||
| * | _reader: use proper ifdef guard for sd_j_open_files_fd | Zbigniew Jędrzejewski-Szmek | 2016-09-22 | 1 | -3/+7 | |
| | | ||||||
| * | tests: add workaround for pre-232 system returning EINVAL on some flags | Zbigniew Jędrzejewski-Szmek | 2016-09-22 | 1 | -5/+15 | |
| | | ||||||
| * | docs: fix sphinx format warning | Zbigniew Jędrzejewski-Szmek | 2016-09-22 | 1 | -3/+3 | |
| | | | | | build/lib.linux-x86_64-3.5/systemd/journal.py:docstring of systemd.journal.stream:15: WARNING: Literal block expected; none found. | |||||
| * | tests: skip fdstore tests if not implemented | Zbigniew Jędrzejewski-Szmek | 2016-09-22 | 1 | -3/+15 | |
| | | | | | Should fix #12. | |||||
| * | Store id128-constants.h in the repository | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 4 | -2/+92 | |
| | | | | | | | | | | | | | | | Instead of generating the list of message ids anew during every build, the file is generated manually and committed into the repository. Also, the list of defines is stored in id128-defines.h, also kept in the repository. Both files should only grow. This should make build easier. But it also fixes a problem with systemd, which occasionally drops message definitions. We will keep them forever, so it should be safe to rely on the presence of message definitions which systemd does not use anymore. Fixes #23. | |||||
| * | journal: convert seek_realtime argument to microseconds | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 2 | -7/+32 | |
| | | | | | | | | | | | | | | This somewhat breaks backwards compatibility, but not for the previously documented arguments: floats are now interpreted differently, but ints and datetime.datetime objects are interpreted the same as before. But the documentation clearly stated that only ints and datetime.datetime objects were allowed. This makes seek_realtime match seek_monotonic and other functions which take time and follows the principle of least surprise. Fixes #21. | |||||
| * | tests: use a context manager, skip new functions if missing | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 1 | -21/+16 | |
| | | ||||||
| * | reader: add SD_JOURNAL_OS_ROOT and rework flag passing | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 3 | -24/+50 | |
| | | | | | | | | | | | | | | | | | | Let's pass any flags through to the journal functions without checking validity. Those functions do their own checking, so there's no need to second-guess. The semantics for _Reader(flags=0) are a bit changed: before, this would be transformed into sd_journal_open(SD_J_LOCAL_ONLY). Now, this results in sd_journal_open(0). Previous behaviour should be achieved by not specifying the flags at all. This change is necessary, because previously it was not possible to pass flags=0 to sd_journal_open(0), i.e. it was not possible to "merge" journals through the Python interface. Similarly, Reader(flags=0) now means to open all journals, and Reader(flags=None) is the same as Reader(flags=LOCAL_ONLY). | |||||
| * | journal: add support for sd_journal_open_files_fd | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 1 | -15/+81 | |
| | | ||||||
| * | journal: make sd_journal_enumerate return text strings | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 1 | -1/+1 | |
| | | | | | | Those are field names and they should always be ASCII, and converting them to str automatically makes the answer more useful. | |||||
| * | journal: allow sd_journal_open_directory_fd to be used | Zbigniew Jędrzejewski-Szmek | 2016-09-21 | 3 | -53/+125 | |
| | | ||||||
| * | Reformat documentation to be more PEP257-compliant | Zbigniew Jędrzejewski-Szmek | 2016-09-20 | 2 | -125/+137 | |
| | | | | | | | | | | | Wrapping the sources to ~80 columns means that the formatted output is annoying to read. Rewrap to ~74 columns in the output. Also remove some obsolete descritions of journal permissions and refer to journalctl(1) instead. Add some missing docstrings. | |||||
| * | tests: check enumerate_fields, has_runtime_fiels, has_persistent_files | Zbigniew Jędrzejewski-Szmek | 2016-09-20 | 1 | -0/+47 | |
| | | ||||||
| * | journal: add wrappers for sd_has_*_files | Zbigniew Jędrzejewski-Szmek | 2016-09-20 | 1 | -31/+77 | |
| | | ||||||
| * | journal: add wrapper for sd_journal_enumerate | Zbigniew Jędrzejewski-Szmek | 2016-09-20 | 1 | -31/+79 | |
| | | ||||||
| * | journal: check errors properly in query_unique | Zbigniew Jędrzejewski-Szmek | 2016-09-20 | 1 | -5/+20 | |
| | | ||||||
| * | Fix typo (#26) | Michael Biebl | 2016-07-16 | 1 | -1/+1 | |
| | | ||||||
| * | Use log.warning instead of deprecated log.warn in example code | Ville Skyttä | 2016-05-21 | 1 | -2/+2 | |
| | | ||||||
| * | Spelling fixes | Ville Skyttä | 2016-05-21 | 1 | -2/+2 | |
| | | ||||||
| * | test_daemon: Define a default value for SO_PASSCRED | Mike Gilbert | 2016-01-20 | 1 | -1/+3 | |
| | | | | | The socket module seems to be missing this in python2.7. | |||||
| * | Fixes Reader.seek_monotonic(datetime.timedelta) | Michael Herold | 2015-12-10 | 1 | -1/+1 | |
| | | ||||||
| * | reader: avoid gcc warning | Zbigniew Jędrzejewski-Szmek | 2015-12-02 | 1 | -1/+1 | |
| | | | | | | | | gcc warns that r might be uninitialized, because it doesn't know that r will be initialized in the 'if' statement. Initialize the variable to avoid the warning. | |||||
| * | tests: mirror is-systemd-running test from systemdv231 | Zbigniew Jędrzejewski-Szmek | 2015-10-28 | 1 | -1/+1 | |
| | | ||||||
| * | Python2 does not have ConnectionError | Zbigniew Jędrzejewski-Szmek | 2015-10-27 | 1 | -5/+10 | |
| | | ||||||
| * | tests: add tests for notify() | Zbigniew Jędrzejewski-Szmek | 2015-10-26 | 1 | -1/+36 | |
| | | ||||||
| * | daemon: wrap sd_pid_notify[_with_pids] | Zbigniew Jędrzejewski-Szmek | 2015-10-26 | 2 | -10/+79 | |
| | | | | | Closes #8. | |||||
| * | Merge branch 'tests' | Zbigniew Jędrzejewski-Szmek | 2015-10-25 | 3 | -165/+471 | |
| |\ | ||||||
| | * | tests: work around bug in sd_is_mq | Zbigniew Jędrzejewski-Szmek | 2015-10-25 | 1 | -3/+20 | |
| | | | | | | | | | The fix was committed in v226-362-g0260d1d542. | |||||
| | * | Do not assume specific output from the journal | Zbigniew Jędrzejewski-Szmek | 2015-10-25 | 1 | -2/+1 | |
| | | | | | | | | | | | While we *usually* get those messages from udev, in many tests environments this will not be true, so just do not try to check the output at all. | |||||
| | * | tests: add simplistic tests for Reader matches | Zbigniew Jędrzejewski-Szmek | 2015-09-16 | 1 | -1/+33 | |
| | | | | | | | | | | | | | | | It would be nice to run those tests against fake journal files with the right content to actually test the matches. But those tests are still useful because they test that the interface works as expected. | |||||
| | * | journal: allow numbers in field identifiers | Zbigniew Jędrzejewski-Szmek | 2015-09-17 | 1 | -2/+2 | |
| | | | ||||||
| | * | tests: add tests for Reader initialization | Zbigniew Jędrzejewski-Szmek | 2015-09-17 | 2 | -1/+40 | |
| | | | ||||||
| | * | journal: reindent to 4 spaces | Zbigniew Jędrzejewski-Szmek | 2015-09-17 | 1 | -158/+156 | |
| | | | ||||||
| | * | tests: start adding tests for JournalHandler | Zbigniew Jędrzejewski-Szmek | 2015-09-17 | 1 | -0/+34 | |
| | | | ||||||
| | * | Normalize some strange indentation | Zbigniew Jędrzejewski-Szmek | 2015-09-08 | 1 | -7/+8 | |
| | | | ||||||
| | * | tests: add more tests for socket functions | Zbigniew Jędrzejewski-Szmek | 2015-09-06 | 1 | -1/+85 | |
| | | | ||||||
| | * | tests: adapt to python2.7 output again | Zbigniew Jędrzejewski-Szmek | 2015-09-05 | 1 | -3/+2 | |
| | | | ||||||
