chiark / gitweb /
macro: add DIV_ROUND_UP()
[elogind.git] / src / shared / 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 2014 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 crtime;
42         usec_t mtime;
43
44         uint64_t size;
45         uint64_t size_exclusive;
46         uint64_t limit;
47         uint64_t limit_exclusive;
48 } Image;
49
50 Image *image_unref(Image *i);
51 void image_hashmap_free(Hashmap *map);
52
53 DEFINE_TRIVIAL_CLEANUP_FUNC(Image*, image_unref);
54 DEFINE_TRIVIAL_CLEANUP_FUNC(Hashmap*, image_hashmap_free);
55
56 int image_find(const char *name, Image **ret);
57 int image_discover(Hashmap *map);
58
59 int image_remove(Image *i);
60 int image_rename(Image *i, const char *new_name);
61 int image_clone(Image *i, const char *new_name, bool read_only);
62 int image_read_only(Image *i, bool b);
63
64 const char* image_type_to_string(ImageType t) _const_;
65 ImageType image_type_from_string(const char *s) _pure_;