2014-12-19 20:42:50 +03:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
# pragma once
/***
This file is part of systemd .
2014-12-19 22:43:18 +03:00
Copyright 2014 Lennart Poettering
2014-12-19 20:42:50 +03:00
systemd is free software ; you can redistribute it and / or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public License
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
# include "time-util.h"
# include "hashmap.h"
typedef enum ImageType {
IMAGE_DIRECTORY ,
IMAGE_SUBVOLUME ,
IMAGE_GPT ,
_IMAGE_TYPE_MAX ,
_IMAGE_TYPE_INVALID = - 1
} ImageType ;
typedef struct Image {
ImageType type ;
char * name ;
char * path ;
bool read_only ;
2014-12-25 05:19:19 +03:00
usec_t crtime ;
2014-12-19 20:42:50 +03:00
usec_t mtime ;
2014-12-28 04:05:28 +03:00
uint64_t size ;
uint64_t size_exclusive ;
uint64_t limit ;
uint64_t limit_exclusive ;
2014-12-19 20:42:50 +03:00
} Image ;
Image * image_unref ( Image * i ) ;
void image_hashmap_free ( Hashmap * map ) ;
2014-12-19 22:43:18 +03:00
DEFINE_TRIVIAL_CLEANUP_FUNC ( Image * , image_unref ) ;
DEFINE_TRIVIAL_CLEANUP_FUNC ( Hashmap * , image_hashmap_free ) ;
2014-12-19 22:07:23 +03:00
int image_find ( const char * name , Image * * ret ) ;
2014-12-19 20:42:50 +03:00
int image_discover ( Hashmap * map ) ;
2014-12-27 04:35:47 +03:00
int image_remove ( Image * i ) ;
2014-12-27 19:44:04 +03:00
int image_rename ( Image * i , const char * new_name ) ;
int image_clone ( Image * i , const char * new_name , bool read_only ) ;
int image_read_only ( Image * i , bool b ) ;
2014-12-27 04:35:47 +03:00
2014-12-19 20:42:50 +03:00
const char * image_type_to_string ( ImageType t ) _const_ ;
ImageType image_type_from_string ( const char * s ) _pure_ ;
2015-01-15 01:09:02 +03:00
bool image_name_is_valid ( const char * s ) _pure_ ;
int image_path_lock ( const char * path , int operation , LockFile * global , LockFile * local ) ;
int image_name_lock ( const char * name , int operation , LockFile * ret ) ;