summaryrefslogtreecommitdiff
path: root/src/analyze
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-02-21 10:09:06 +0100
committerLennart Poettering <lennart@poettering.net>2022-02-21 17:22:23 +0100
commit30bddc066ac185f28f2a4372d1fece174add0b13 (patch)
tree9b474b421b6580a89a84453c292caef782a09b57 /src/analyze
parent67e993b9e0edf50a03d32ee79ecee57cfb1349fe (diff)
downloadsystemd-30bddc066ac185f28f2a4372d1fece174add0b13.tar.gz
analyze: split out "timespan" verb into its own .c/.h file
Diffstat (limited to 'src/analyze')
-rw-r--r--src/analyze/analyze-timespan.c74
-rw-r--r--src/analyze/analyze-timespan.h4
-rw-r--r--src/analyze/analyze.c73
-rw-r--r--src/analyze/analyze.h6
-rw-r--r--src/analyze/meson.build8
5 files changed, 94 insertions, 71 deletions
diff --git a/src/analyze/analyze-timespan.c b/src/analyze/analyze-timespan.c
new file mode 100644
index 0000000000..8a0fbe534c
--- /dev/null
+++ b/src/analyze/analyze-timespan.c
@@ -0,0 +1,74 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+
+#include "analyze.h"
+#include "analyze-timespan.h"
+#include "calendarspec.h"
+#include "format-table.h"
+#include "glyph-util.h"
+#include "strv.h"
+#include "terminal-util.h"
+
+int dump_timespan(int argc, char *argv[], void *userdata) {
+ char **input_timespan;
+
+ STRV_FOREACH(input_timespan, strv_skip(argv, 1)) {
+ _cleanup_(table_unrefp) Table *table = NULL;
+ usec_t output_usecs;
+ TableCell *cell;
+ int r;
+
+ r = parse_time(*input_timespan, &output_usecs, USEC_PER_SEC);
+ if (r < 0) {
+ log_error_errno(r, "Failed to parse time span '%s': %m", *input_timespan);
+ time_parsing_hint(*input_timespan, /* calendar= */ true, /* timestamp= */ true, /* timespan= */ false);
+ return r;
+ }
+
+ table = table_new("name", "value");
+ if (!table)
+ return log_oom();
+
+ table_set_header(table, false);
+
+ assert_se(cell = table_get_cell(table, 0, 0));
+ r = table_set_ellipsize_percent(table, cell, 100);
+ if (r < 0)
+ return r;
+
+ r = table_set_align_percent(table, cell, 100);
+ if (r < 0)
+ return r;
+
+ assert_se(cell = table_get_cell(table, 0, 1));
+ r = table_set_ellipsize_percent(table, cell, 100);
+ if (r < 0)
+ return r;
+
+ r = table_add_many(table,
+ TABLE_STRING, "Original:",
+ TABLE_STRING, *input_timespan);
+ if (r < 0)
+ return table_log_add_error(r);
+
+ r = table_add_cell_stringf(table, NULL, "%ss:", special_glyph(SPECIAL_GLYPH_MU));
+ if (r < 0)
+ return table_log_add_error(r);
+
+ r = table_add_many(table,
+ TABLE_UINT64, output_usecs,
+ TABLE_STRING, "Human:",
+ TABLE_TIMESPAN, output_usecs,
+ TABLE_SET_COLOR, ansi_highlight());
+ if (r < 0)
+ return table_log_add_error(r);
+
+ r = table_print(table, NULL);
+ if (r < 0)
+ return r;
+
+ if (input_timespan[1])
+ putchar('\n');
+ }
+
+ return 0;
+}
diff --git a/src/analyze/analyze-timespan.h b/src/analyze/analyze-timespan.h
new file mode 100644
index 0000000000..32ad1923f1
--- /dev/null
+++ b/src/analyze/analyze-timespan.h
@@ -0,0 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
+
+int dump_timespan(int argc, char *argv[], void *userdata);
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c
index 456a43c8fc..4f26d0c9c7 100644
--- a/src/analyze/analyze.c
+++ b/src/analyze/analyze.c
@@ -12,9 +12,11 @@
#include "sd-bus.h"
#include "alloc-util.h"
+#include "analyze.h"
#include "analyze-condition.h"
#include "analyze-elf.h"
#include "analyze-security.h"
+#include "analyze-timespan.h"
#include "analyze-verify.h"
#include "bus-error.h"
#include "bus-locator.h"
@@ -2028,7 +2030,7 @@ static int dump_filesystems(int argc, char *argv[], void *userdata) {
return 0;
}
-static void parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan) {
+void time_parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan) {
if (calendar && calendar_spec_from_string(p, NULL) >= 0)
log_notice("Hint: this expression is a valid calendar specification. "
"Use 'systemd-analyze calendar \"%s\"' instead?", p);
@@ -2040,71 +2042,6 @@ static void parsing_hint(const char *p, bool calendar, bool timestamp, bool time
"Use 'systemd-analyze timespan \"%s\"' instead?", p);
}
-static int dump_timespan(int argc, char *argv[], void *userdata) {
- char **input_timespan;
-
- STRV_FOREACH(input_timespan, strv_skip(argv, 1)) {
- _cleanup_(table_unrefp) Table *table = NULL;
- usec_t output_usecs;
- TableCell *cell;
- int r;
-
- r = parse_time(*input_timespan, &output_usecs, USEC_PER_SEC);
- if (r < 0) {
- log_error_errno(r, "Failed to parse time span '%s': %m", *input_timespan);
- parsing_hint(*input_timespan, true, true, false);
- return r;
- }
-
- table = table_new("name", "value");
- if (!table)
- return log_oom();
-
- table_set_header(table, false);
-
- assert_se(cell = table_get_cell(table, 0, 0));
- r = table_set_ellipsize_percent(table, cell, 100);
- if (r < 0)
- return r;
-
- r = table_set_align_percent(table, cell, 100);
- if (r < 0)
- return r;
-
- assert_se(cell = table_get_cell(table, 0, 1));
- r = table_set_ellipsize_percent(table, cell, 100);
- if (r < 0)
- return r;
-
- r = table_add_many(table,
- TABLE_STRING, "Original:",
- TABLE_STRING, *input_timespan);
- if (r < 0)
- return table_log_add_error(r);
-
- r = table_add_cell_stringf(table, NULL, "%ss:", special_glyph(SPECIAL_GLYPH_MU));
- if (r < 0)
- return table_log_add_error(r);
-
- r = table_add_many(table,
- TABLE_UINT64, output_usecs,
- TABLE_STRING, "Human:",
- TABLE_TIMESPAN, output_usecs,
- TABLE_SET_COLOR, ansi_highlight());
- if (r < 0)
- return table_log_add_error(r);
-
- r = table_print(table, NULL);
- if (r < 0)
- return r;
-
- if (input_timespan[1])
- putchar('\n');
- }
-
- return 0;
-}
-
static int test_timestamp_one(const char *p) {
_cleanup_(table_unrefp) Table *table = NULL;
TableCell *cell;
@@ -2114,7 +2051,7 @@ static int test_timestamp_one(const char *p) {
r = parse_timestamp(p, &usec);
if (r < 0) {
log_error_errno(r, "Failed to parse \"%s\": %m", p);
- parsing_hint(p, true, false, true);
+ time_parsing_hint(p, /* calendar= */ true, /* timestamp= */ false, /* timespan= */ true);
return r;
}
@@ -2204,7 +2141,7 @@ static int test_calendar_one(usec_t n, const char *p) {
r = calendar_spec_from_string(p, &spec);
if (r < 0) {
log_error_errno(r, "Failed to parse calendar specification '%s': %m", p);
- parsing_hint(p, false, true, true);
+ time_parsing_hint(p, /* calendar= */ false, /* timestamp= */ true, /* timespan= */ true);
return r;
}
diff --git a/src/analyze/analyze.h b/src/analyze/analyze.h
new file mode 100644
index 0000000000..72824e221b
--- /dev/null
+++ b/src/analyze/analyze.h
@@ -0,0 +1,6 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
+
+#include <stdbool.h>
+
+void time_parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan);
diff --git a/src/analyze/meson.build b/src/analyze/meson.build
index fbc4d7e20d..df5fa216cc 100644
--- a/src/analyze/meson.build
+++ b/src/analyze/meson.build
@@ -1,15 +1,17 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
systemd_analyze_sources = files('''
- analyze.c
analyze-condition.c
analyze-condition.h
analyze-elf.c
analyze-elf.h
- analyze-verify.c
- analyze-verify.h
analyze-security.c
analyze-security.h
+ analyze-timespan.c
+ analyze-timespan.h
+ analyze-verify.c
+ analyze-verify.h
+ analyze.c
'''.split())
tests += [