2010-10-13 04:15:41 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
# ifndef fooconditionhfoo
# define fooconditionhfoo
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
2010-10-13 04:15:41 +04:00
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-10-13 04:15:41 +04:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-10-13 04:15:41 +04:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
# include <stdbool.h>
# include "list.h"
typedef enum ConditionType {
CONDITION_PATH_EXISTS ,
2011-07-07 04:07:39 +04:00
CONDITION_PATH_EXISTS_GLOB ,
2011-03-25 07:07:20 +03:00
CONDITION_PATH_IS_DIRECTORY ,
2011-09-21 03:29:38 +04:00
CONDITION_PATH_IS_SYMBOLIC_LINK ,
2011-09-21 02:44:51 +04:00
CONDITION_PATH_IS_MOUNT_POINT ,
2010-11-15 22:06:49 +03:00
CONDITION_DIRECTORY_NOT_EMPTY ,
2011-07-12 06:25:02 +04:00
CONDITION_FILE_IS_EXECUTABLE ,
2010-10-13 04:15:41 +04:00
CONDITION_KERNEL_COMMAND_LINE ,
2011-02-22 00:07:55 +03:00
CONDITION_VIRTUALIZATION ,
2011-04-03 20:16:59 +04:00
CONDITION_SECURITY ,
2011-10-11 17:16:52 +04:00
CONDITION_CAPABILITY ,
2010-11-11 00:28:19 +03:00
CONDITION_NULL ,
2010-10-13 04:15:41 +04:00
_CONDITION_TYPE_MAX ,
_CONDITION_TYPE_INVALID = - 1
} ConditionType ;
typedef struct Condition {
ConditionType type ;
char * parameter ;
2011-03-08 05:04:47 +03:00
bool trigger : 1 ;
bool negate : 1 ;
2010-10-13 04:15:41 +04:00
LIST_FIELDS ( struct Condition , conditions ) ;
} Condition ;
2011-03-08 05:04:47 +03:00
Condition * condition_new ( ConditionType type , const char * parameter , bool trigger , bool negate ) ;
2010-10-13 04:15:41 +04:00
void condition_free ( Condition * c ) ;
void condition_free_list ( Condition * c ) ;
bool condition_test ( Condition * c ) ;
bool condition_test_list ( Condition * c ) ;
void condition_dump ( Condition * c , FILE * f , const char * prefix ) ;
void condition_dump_list ( Condition * c , FILE * f , const char * prefix ) ;
const char * condition_type_to_string ( ConditionType t ) ;
int condition_type_from_string ( const char * s ) ;
# endif