chiark / gitweb /
util: introduce streq_ptr() for comparing strings or their pointers
[elogind.git] / util.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef fooutilhfoo
4 #define fooutilhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <inttypes.h>
26 #include <time.h>
27 #include <sys/time.h>
28 #include <stdbool.h>
29 #include <stdlib.h>
30
31 typedef uint64_t usec_t;
32
33 #define MSEC_PER_SEC  1000ULL
34 #define USEC_PER_SEC  1000000ULL
35 #define USEC_PER_MSEC 1000ULL
36 #define NSEC_PER_SEC  1000000000ULL
37 #define NSEC_PER_MSEC 1000000ULL
38 #define NSEC_PER_USEC 1000ULL
39
40 /* What is interpreted as whitespace? */
41 #define WHITESPACE " \t\n\r"
42 #define NEWLINE "\n\r"
43
44 usec_t now(clockid_t clock);
45
46 usec_t timespec_load(const struct timespec *ts);
47 struct timespec *timespec_store(struct timespec *ts, usec_t u);
48
49 usec_t timeval_load(const struct timeval *tv);
50 struct timeval *timeval_store(struct timeval *tv, usec_t u);
51
52 #define streq(a,b) (strcmp((a),(b)) == 0)
53
54 bool streq_ptr(const char *a, const char *b);
55
56 #define new(t, n) ((t*) malloc(sizeof(t)*(n)))
57
58 #define new0(t, n) ((t*) calloc((n), sizeof(t)))
59
60 #define malloc0(n) (calloc((n), 1))
61
62 static inline const char* yes_no(bool b) {
63         return b ? "yes" : "no";
64 }
65
66 static inline const char* strempty(const char *s) {
67         return s ? s : "";
68 }
69
70 static inline const char* strnull(const char *s) {
71         return s ? s : "(null)";
72 }
73
74 static inline const char *strna(const char *s) {
75         return s ? s : "n/a";
76 }
77
78 static inline bool is_path_absolute(const char *p) {
79         return *p == '/';
80 }
81
82 bool endswith(const char *s, const char *postfix);
83 bool startswith(const char *s, const char *prefix);
84
85 bool first_word(const char *s, const char *word);
86
87 int close_nointr(int fd);
88 void close_nointr_nofail(int fd);
89
90 int parse_boolean(const char *v);
91
92 int safe_atou(const char *s, unsigned *ret_u);
93 int safe_atoi(const char *s, int *ret_i);
94
95 int safe_atolu(const char *s, unsigned long *ret_u);
96 int safe_atoli(const char *s, long int *ret_i);
97
98 int safe_atollu(const char *s, unsigned long long *ret_u);
99 int safe_atolli(const char *s, long long int *ret_i);
100
101 char *split(const char *c, size_t *l, const char *separator, char **state);
102 char *split_quoted(const char *c, size_t *l, char **state);
103
104 #define FOREACH_WORD(word, length, s, state)                            \
105         for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
106
107 #define FOREACH_WORD_SEPARATOR(word, length, s, separator, state)       \
108         for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
109
110 #define FOREACH_WORD_QUOTED(word, length, s, state)                     \
111         for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
112
113 char **split_path_and_make_absolute(const char *p);
114
115 pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
116
117 int write_one_line_file(const char *fn, const char *line);
118 int read_one_line_file(const char *fn, char **line);
119
120 char *strappend(const char *s, const char *suffix);
121
122 int readlink_malloc(const char *p, char **r);
123
124 char *file_name_from_path(const char *p);
125 bool is_path(const char *p);
126
127 bool path_is_absolute(const char *p);
128 char *path_make_absolute(const char *p, const char *prefix);
129 char *path_make_absolute_cwd(const char *p);
130 char **strv_path_make_absolute_cwd(char **l);
131
132 int reset_all_signal_handlers(void);
133
134 char *strstrip(char *s);
135 char *delete_chars(char *s, const char *bad);
136 char *truncate_nl(char *s);
137
138 char *file_in_same_dir(const char *path, const char *filename);
139 int mkdir_parents(const char *path, mode_t mode);
140
141 int get_process_name(pid_t pid, char **name);
142
143 char hexchar(int x);
144 int unhexchar(char c);
145 char octchar(int x);
146 int unoctchar(char c);
147 char decchar(int x);
148 int undecchar(char c);
149
150 char *cescape(const char *s);
151 char *cunescape(const char *s);
152
153 char *path_kill_slashes(char *path);
154
155 bool path_startswith(const char *path, const char *prefix);
156
157 char *ascii_strlower(char *path);
158
159 char *xescape(const char *s, const char *bad);
160
161 char *bus_path_escape(const char *s);
162 char *bus_path_unescape(const char *s);
163
164 bool ignore_file(const char *filename);
165
166 bool chars_intersect(const char *a, const char *b);
167
168 #define DEFINE_STRING_TABLE_LOOKUP(name,type)                           \
169         const char *name##_to_string(type i) {                          \
170                 if (i < 0 || i >= (type) ELEMENTSOF(name##_table))      \
171                         return NULL;                                    \
172                 return name##_table[i];                                 \
173         }                                                               \
174         type name##_from_string(const char *s) {                        \
175                 type i;                                                 \
176                 unsigned u = 0;                                         \
177                 assert(s);                                              \
178                 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++)    \
179                         if (streq(name##_table[i], s))                  \
180                                 return i;                               \
181                 if (safe_atou(s, &u) >= 0 &&                            \
182                     u < ELEMENTSOF(name##_table))                       \
183                         return (type) u;                                \
184                 return (type) -1;                                       \
185         }                                                               \
186         struct __useless_struct_to_allow_trailing_semicolon__
187
188
189 int fd_nonblock(int fd, bool nonblock);
190 int fd_cloexec(int fd, bool cloexec);
191
192 int close_all_fds(const int except[], unsigned n_except);
193
194 extern char * __progname;
195
196 const char *ioprio_class_to_string(int i);
197 int ioprio_class_from_string(const char *s);
198
199 const char *sigchld_code_to_string(int i);
200 int sigchld_code_from_string(const char *s);
201
202 const char *log_facility_to_string(int i);
203 int log_facility_from_string(const char *s);
204
205 const char *log_level_to_string(int i);
206 int log_level_from_string(const char *s);
207
208 const char *sched_policy_to_string(int i);
209 int sched_policy_from_string(const char *s);
210
211 const char *rlimit_to_string(int i);
212 int rlimit_from_string(const char *s);
213
214 #endif