chiark / gitweb /
mount-setup: change system mount propagation to shared by default
[elogind.git] / src / core / transaction.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef footransactionhfoo
4 #define footransactionhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
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   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 typedef struct Transaction Transaction;
26
27 #include "unit.h"
28 #include "manager.h"
29 #include "job.h"
30 #include "hashmap.h"
31
32 struct Transaction {
33         /* Jobs to be added */
34         Hashmap *jobs;      /* Unit object => Job object list 1:1 */
35         Job *anchor_job;      /* the job the user asked for */
36 };
37
38 Transaction *transaction_new(void);
39 void transaction_free(Transaction *tr);
40
41 int transaction_add_job_and_dependencies(
42                 Transaction *tr,
43                 JobType type,
44                 Unit *unit,
45                 Job *by,
46                 bool matters,
47                 bool override,
48                 bool conflicts,
49                 bool ignore_requirements,
50                 bool ignore_order,
51                 DBusError *e);
52 int transaction_activate(Transaction *tr, Manager *m, JobMode mode, DBusError *e);
53 int transaction_add_isolate_jobs(Transaction *tr, Manager *m);
54 void transaction_abort(Transaction *tr);
55
56 #endif