]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/machine-image.h
machined: add "machinectl remove" for removing images
[thirdparty/systemd.git] / src / shared / machine-image.h
CommitLineData
cd61c3bf
LP
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
ebeccf9e 8 Copyright 2014 Lennart Poettering
cd61c3bf
LP
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
27typedef enum ImageType {
28 IMAGE_DIRECTORY,
29 IMAGE_SUBVOLUME,
30 IMAGE_GPT,
31 _IMAGE_TYPE_MAX,
32 _IMAGE_TYPE_INVALID = -1
33} ImageType;
34
35typedef struct Image {
36 ImageType type;
37 char *name;
38 char *path;
39 bool read_only;
40
10f9c755 41 usec_t crtime;
cd61c3bf 42 usec_t mtime;
cd61c3bf
LP
43} Image;
44
45Image *image_unref(Image *i);
cd61c3bf
LP
46void image_hashmap_free(Hashmap *map);
47
ebeccf9e
LP
48DEFINE_TRIVIAL_CLEANUP_FUNC(Image*, image_unref);
49DEFINE_TRIVIAL_CLEANUP_FUNC(Hashmap*, image_hashmap_free);
50
c2ce6a3d 51int image_find(const char *name, Image **ret);
cd61c3bf
LP
52int image_discover(Hashmap *map);
53
08682124
LP
54int image_remove(Image *i);
55
cd61c3bf
LP
56const char* image_type_to_string(ImageType t) _const_;
57ImageType image_type_from_string(const char *s) _pure_;