]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/condition.h
dbus: fix minor memory leak when sending job change signals
[thirdparty/systemd.git] / src / core / condition.h
CommitLineData
52661efd
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
c2f1db8f 3#pragma once
52661efd
LP
4
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
52661efd
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
52661efd 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
52661efd
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24#include <stdbool.h>
25
26#include "list.h"
27
28typedef enum ConditionType {
29 CONDITION_PATH_EXISTS,
8092a428 30 CONDITION_PATH_EXISTS_GLOB,
2b583ce6 31 CONDITION_PATH_IS_DIRECTORY,
0d60602c 32 CONDITION_PATH_IS_SYMBOLIC_LINK,
ab7f148f 33 CONDITION_PATH_IS_MOUNT_POINT,
d0516109 34 CONDITION_PATH_IS_READ_WRITE,
36af55d9 35 CONDITION_DIRECTORY_NOT_EMPTY,
742a862b 36 CONDITION_FILE_NOT_EMPTY,
82e487c5 37 CONDITION_FILE_IS_EXECUTABLE,
52661efd 38 CONDITION_KERNEL_COMMAND_LINE,
039655a4 39 CONDITION_VIRTUALIZATION,
07e833bc 40 CONDITION_SECURITY,
62590f23 41 CONDITION_CAPABILITY,
c0d6e764 42 CONDITION_HOST,
240dbaa4 43 CONDITION_AC_POWER,
d257ddef 44 CONDITION_NULL,
52661efd
LP
45 _CONDITION_TYPE_MAX,
46 _CONDITION_TYPE_INVALID = -1
47} ConditionType;
48
49typedef struct Condition {
50 ConditionType type;
51 char *parameter;
267632f0
LP
52
53 bool trigger:1;
54 bool negate:1;
52661efd
LP
55
56 LIST_FIELDS(struct Condition, conditions);
57} Condition;
58
267632f0 59Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate);
52661efd
LP
60void condition_free(Condition *c);
61void condition_free_list(Condition *c);
62
63bool condition_test(Condition *c);
64bool condition_test_list(Condition *c);
65
66void condition_dump(Condition *c, FILE *f, const char *prefix);
67void condition_dump_list(Condition *c, FILE *f, const char *prefix);
68
44a6b1b6
ZJS
69const char* condition_type_to_string(ConditionType t) _const_;
70int condition_type_from_string(const char *s) _pure_;