]> git.ipfire.org Git - thirdparty/systemd.git/blame - util.h
first attempt at proper service/socket logic
[thirdparty/systemd.git] / util.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef fooutilhfoo
4#define fooutilhfoo
5
6#include <inttypes.h>
7#include <time.h>
8#include <sys/time.h>
9#include <stdbool.h>
5cb5a6ff 10#include <stdlib.h>
60918275
LP
11
12typedef uint64_t usec_t;
13
034c6ed7
LP
14#define MSEC_PER_SEC 1000ULL
15#define USEC_PER_SEC 1000000ULL
16#define USEC_PER_MSEC 1000ULL
17#define NSEC_PER_SEC 1000000000ULL
18#define NSEC_PER_MSEC 1000000ULL
60918275
LP
19#define NSEC_PER_USEC 1000ULL
20
21usec_t now(clockid_t clock);
22
23usec_t timespec_load(const struct timespec *ts);
24struct timespec *timespec_store(struct timespec *ts, usec_t u);
25
26usec_t timeval_load(const struct timeval *tv);
27struct timeval *timeval_store(struct timeval *tv, usec_t u);
28
29#define streq(a,b) (strcmp((a),(b)) == 0)
30
31#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
32
33#define new0(t, n) ((t*) calloc((n), sizeof(t)))
34
35#define malloc0(n) (calloc((n), 1))
36
37static inline const char* yes_no(bool b) {
38 return b ? "yes" : "no";
39}
40
41static inline const char* strempty(const char *s) {
42 return s ? s : "";
43}
44
45static inline const char* strnull(const char *s) {
46 return s ? s : "(null)";
47}
48
04fd6fe4
LP
49static inline const char *strna(const char *s) {
50 return s ? s : "n/a";
51}
52
53static inline bool is_path_absolute(const char *p) {
54 return *p == '/';
55}
56
60918275
LP
57bool endswith(const char *s, const char *postfix);
58bool startswith(const char *s, const char *prefix);
59
42f4e3c4 60int close_nointr(int fd);
60918275 61
85261803
LP
62int parse_boolean(const char *v);
63
64int safe_atou(const char *s, unsigned *ret_u);
65int safe_atoi(const char *s, int *ret_i);
66
034c6ed7
LP
67int safe_atolu(const char *s, unsigned long *ret_u);
68int safe_atoli(const char *s, long int *ret_i);
69
70int safe_atollu(const char *s, unsigned long long *ret_u);
71int safe_atolli(const char *s, long long int *ret_i);
72
a41e8209 73char *split_spaces(const char *c, size_t *l, char **state);
034c6ed7 74char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 75
034c6ed7 76#define FOREACH_WORD(word, length, s, state) \
a41e8209
LP
77 for ((state) = NULL, (word) = split_spaces((s), &(l), &(state)); (word); (word) = split_spaces((s), &(l), &(state)))
78
034c6ed7
LP
79#define FOREACH_WORD_QUOTED(word, length, s, state) \
80 for ((state) = NULL, (word) = split_quoted((s), &(l), &(state)); (word); (word) = split_quoted((s), &(l), &(state)))
81
82const char *sigchld_code(int code);
83
84pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
85
86int write_one_line_file(const char *fn, const char *line);
87int read_one_line_file(const char *fn, char **line);
88
60918275 89#endif