]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/machine/image.h
machined: add new GetImage() bus call for retrieving the bus path for an image
[thirdparty/systemd.git] / src / machine / image.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 2013 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 #include "time-util.h"
25 #include "hashmap.h"
26
27 typedef enum ImageType {
28 IMAGE_DIRECTORY,
29 IMAGE_SUBVOLUME,
30 IMAGE_GPT,
31 _IMAGE_TYPE_MAX,
32 _IMAGE_TYPE_INVALID = -1
33 } ImageType;
34
35 typedef struct Image {
36 ImageType type;
37 char *name;
38 char *path;
39 bool read_only;
40
41 usec_t mtime;
42 usec_t btime;
43 } Image;
44
45 Image *image_unref(Image *i);
46
47 void image_hashmap_free(Hashmap *map);
48
49 int image_find(const char *name, Image **ret);
50 int image_discover(Hashmap *map);
51
52 char *image_bus_path(const char *name);
53
54 DEFINE_TRIVIAL_CLEANUP_FUNC(Image*, image_unref);
55 DEFINE_TRIVIAL_CLEANUP_FUNC(Hashmap*, image_hashmap_free);
56
57 const char* image_type_to_string(ImageType t) _const_;
58 ImageType image_type_from_string(const char *s) _pure_;