X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Flogs-show.h;h=187ee595fbafeccc3c2ef26ac60671964cae81bb;hp=06082800c8bb59ce2a0df12f641dd0aa6bb1042b;hb=0c124f8b2c93d2c7d6eefca3bdc59b28250fc077;hpb=240a5fe83e772d08d9e1f22e90163b37eea5ab45 diff --git a/src/shared/logs-show.h b/src/shared/logs-show.h index 06082800c..187ee595f 100644 --- a/src/shared/logs-show.h +++ b/src/shared/logs-show.h @@ -22,38 +22,32 @@ ***/ #include +#include +#include -#include +#include "systemd/sd-journal.h" #include "util.h" - -typedef enum OutputMode { - OUTPUT_SHORT, - OUTPUT_SHORT_MONOTONIC, - OUTPUT_VERBOSE, - OUTPUT_EXPORT, - OUTPUT_JSON, - OUTPUT_JSON_PRETTY, - OUTPUT_JSON_SSE, - OUTPUT_CAT, - _OUTPUT_MODE_MAX, - _OUTPUT_MODE_INVALID = -1 -} OutputMode; - -typedef enum OutputFlags { - OUTPUT_SHOW_ALL = 1 << 0, - OUTPUT_FOLLOW = 1 << 1, - OUTPUT_WARN_CUTOFF = 1 << 2, - OUTPUT_FULL_WIDTH = 1 << 3, - OUTPUT_COLOR = 1 << 4 -} OutputFlags; +#include "output-mode.h" int output_journal( FILE *f, sd_journal *j, OutputMode mode, unsigned n_columns, - OutputFlags flags); + OutputFlags flags, + bool *ellipsized); + +int add_match_this_boot(sd_journal *j, const char *machine); + +int add_matches_for_unit( + sd_journal *j, + const char *unit); + +int add_matches_for_user_unit( + sd_journal *j, + const char *unit, + uid_t uid); int show_journal_by_unit( FILE *f, @@ -62,7 +56,10 @@ int show_journal_by_unit( unsigned n_columns, usec_t not_before, unsigned how_many, - OutputFlags flags); + uid_t uid, + OutputFlags flags, + bool system, + bool *ellipsized); void json_escape( FILE *f, @@ -70,5 +67,5 @@ void json_escape( size_t l, OutputFlags flags); -const char* output_mode_to_string(OutputMode m); -OutputMode output_mode_from_string(const char *s); +const char* output_mode_to_string(OutputMode m) _const_; +OutputMode output_mode_from_string(const char *s) _pure_;