1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
7 This file is part of systemd.
9 Copyright 2010 Lennart Poettering
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.
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.
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/>.
25 typedef struct Path Path;
30 typedef enum PathState {
36 _PATH_STATE_INVALID = -1
39 typedef enum PathType {
41 PATH_DIRECTORY_NOT_EMPTY,
44 _PATH_TYPE_INVALID = -1
47 typedef struct PathSpec {
52 LIST_FIELDS(struct PathSpec, spec);
65 LIST_HEAD(PathSpec, specs);
69 PathState state, deserialized_state;
72 bool inotify_triggered;
75 mode_t directory_mode;
78 void path_unit_notify(Unit *u, UnitActiveState new_state);
80 /* Called from the mount code figure out if a mount is a dependency of
81 * any of the paths of this path object */
82 int path_add_one_mount_link(Path *p, Mount *m);
84 extern const UnitVTable path_vtable;
86 const char* path_state_to_string(PathState i);
87 PathState path_state_from_string(const char *s);
89 const char* path_type_to_string(PathType i);
90 PathType path_type_from_string(const char *s);