X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Flogs-show.h;h=06082800c8bb59ce2a0df12f641dd0aa6bb1042b;hb=0c0271841ab45595f71528c50bcf1904d4b841d5;hp=58ff9e5760bd8b39101f07fc2f2ca2cf8cd1db39;hpb=498261871dfa2a930ec84b13a176e3bdc43aa212;p=elogind.git diff --git a/src/shared/logs-show.h b/src/shared/logs-show.h index 58ff9e576..06082800c 100644 --- a/src/shared/logs-show.h +++ b/src/shared/logs-show.h @@ -33,6 +33,8 @@ typedef enum OutputMode { OUTPUT_VERBOSE, OUTPUT_EXPORT, OUTPUT_JSON, + OUTPUT_JSON_PRETTY, + OUTPUT_JSON_SSE, OUTPUT_CAT, _OUTPUT_MODE_MAX, _OUTPUT_MODE_INVALID = -1 @@ -40,17 +42,21 @@ typedef enum OutputMode { typedef enum OutputFlags { OUTPUT_SHOW_ALL = 1 << 0, - OUTPUT_MONOTONIC_MODE = 1 << 1, - OUTPUT_FOLLOW = 1 << 2, - OUTPUT_WARN_CUTOFF = 1 << 3, - OUTPUT_FULL_WIDTH = 1 << 4, - OUTPUT_COLOR = 1 << 5 + OUTPUT_FOLLOW = 1 << 1, + OUTPUT_WARN_CUTOFF = 1 << 2, + OUTPUT_FULL_WIDTH = 1 << 3, + OUTPUT_COLOR = 1 << 4 } OutputFlags; -int output_journal(sd_journal *j, OutputMode mode, unsigned line, - unsigned n_columns, OutputFlags flags); +int output_journal( + FILE *f, + sd_journal *j, + OutputMode mode, + unsigned n_columns, + OutputFlags flags); int show_journal_by_unit( + FILE *f, const char *unit, OutputMode mode, unsigned n_columns, @@ -58,5 +64,11 @@ int show_journal_by_unit( unsigned how_many, OutputFlags flags); +void json_escape( + FILE *f, + const char* p, + size_t l, + OutputFlags flags); + const char* output_mode_to_string(OutputMode m); OutputMode output_mode_from_string(const char *s);