chiark / gitweb /
unit: rework trigger dependency logic
[elogind.git] / src / core / automount.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
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
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
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
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 typedef struct Automount Automount;
25
26 #include "unit.h"
27
28 typedef enum AutomountState {
29         AUTOMOUNT_DEAD,
30         AUTOMOUNT_WAITING,
31         AUTOMOUNT_RUNNING,
32         AUTOMOUNT_FAILED,
33         _AUTOMOUNT_STATE_MAX,
34         _AUTOMOUNT_STATE_INVALID = -1
35 } AutomountState;
36
37 typedef enum AutomountResult {
38         AUTOMOUNT_SUCCESS,
39         AUTOMOUNT_FAILURE_RESOURCES,
40         _AUTOMOUNT_RESULT_MAX,
41         _AUTOMOUNT_RESULT_INVALID = -1
42 } AutomountResult;
43
44 struct Automount {
45         Unit meta;
46
47         AutomountState state, deserialized_state;
48
49         char *where;
50
51         int pipe_fd;
52         mode_t directory_mode;
53         Watch pipe_watch;
54         dev_t dev_id;
55
56         Set *tokens;
57
58         AutomountResult result;
59 };
60
61 extern const UnitVTable automount_vtable;
62
63 int automount_send_ready(Automount *a, int status);
64
65 int automount_add_one_mount_link(Automount *a, Mount *m);
66
67 const char* automount_state_to_string(AutomountState i);
68 AutomountState automount_state_from_string(const char *s);
69
70 const char* automount_result_to_string(AutomountResult i);
71 AutomountResult automount_result_from_string(const char *s);