]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/condition.h
unit: add new ConditionHost= condition type
[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,
82e487c5 36 CONDITION_FILE_IS_EXECUTABLE,
52661efd 37 CONDITION_KERNEL_COMMAND_LINE,
039655a4 38 CONDITION_VIRTUALIZATION,
07e833bc 39 CONDITION_SECURITY,
62590f23 40 CONDITION_CAPABILITY,
c0d6e764 41 CONDITION_HOST,
d257ddef 42 CONDITION_NULL,
52661efd
LP
43 _CONDITION_TYPE_MAX,
44 _CONDITION_TYPE_INVALID = -1
45} ConditionType;
46
47typedef struct Condition {
48 ConditionType type;
49 char *parameter;
267632f0
LP
50
51 bool trigger:1;
52 bool negate:1;
52661efd
LP
53
54 LIST_FIELDS(struct Condition, conditions);
55} Condition;
56
267632f0 57Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate);
52661efd
LP
58void condition_free(Condition *c);
59void condition_free_list(Condition *c);
60
61bool condition_test(Condition *c);
62bool condition_test_list(Condition *c);
63
64void condition_dump(Condition *c, FILE *f, const char *prefix);
65void condition_dump_list(Condition *c, FILE *f, const char *prefix);
66
67const char* condition_type_to_string(ConditionType t);
68int condition_type_from_string(const char *s);