X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Flogs-show.h;h=a835112c99c50dab7de53e6b40ed2ffcb8e839e8;hb=076a24adf4bfbb9c5aa8167e102c253c7e1c651e;hp=2e9cf63891ba887501467c9e9dd0358a4c4eaeb5;hpb=92a1fd9e95954a557d6fe27b56f5ef1b89fc2f5e;p=elogind.git diff --git a/src/shared/logs-show.h b/src/shared/logs-show.h index 2e9cf6389..a835112c9 100644 --- a/src/shared/logs-show.h +++ b/src/shared/logs-show.h @@ -1,7 +1,6 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#ifndef foologsshowhfoo -#define foologsshowhfoo +#pragma once /*** This file is part of systemd. @@ -23,34 +22,23 @@ ***/ #include +#include +#include #include #include "util.h" +#include "output-mode.h" -typedef enum OutputMode { - OUTPUT_SHORT, - OUTPUT_SHORT_MONOTONIC, - OUTPUT_VERBOSE, - OUTPUT_EXPORT, - OUTPUT_JSON, - OUTPUT_CAT, - _OUTPUT_MODE_MAX, - _OUTPUT_MODE_INVALID = -1 -} 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, -} 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,7 +46,21 @@ int show_journal_by_unit( unsigned how_many, OutputFlags flags); +int show_journal_by_user_unit( + FILE *f, + const char *unit, + OutputMode mode, + unsigned n_columns, + usec_t not_before, + unsigned how_many, + uid_t uid, + 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); - -#endif