summaryrefslogtreecommitdiff
path: root/src/apk_fs.h
blob: cb4e343fa65572d794d9382e16870f8619f1f686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* apk_fs.h - Alpine Package Keeper (APK)
 *
 * Copyright (C) 2021 Timo Teräs <timo.teras@iki.fi>
 * All rights reserved.
 *
 * SPDX-License-Identifier: GPL-2.0-only
 */

#ifndef APK_FS_H
#define APK_FS_H

#include "apk_context.h"
#include "apk_io.h"
#include "apk_pathbuilder.h"

#define APK_FS_PRIO_DISK	0
#define APK_FS_PRIO_UVOL	1

#define APK_FS_CTRL_COMMIT	1
#define APK_FS_CTRL_APKNEW	2
#define APK_FS_CTRL_CANCEL	3
#define APK_FS_CTRL_DELETE	4

#define APK_FS_DIR_MODIFIED	1

struct apk_fsdir_ops;

struct apk_fsdir {
	struct apk_ctx *ac;
	const struct apk_fsdir_ops *ops;
	struct apk_pathbuilder pb;
	apk_blob_t pkgctx;
};

struct apk_fsdir_ops {
	uint8_t priority;

	int (*dir_create)(struct apk_fsdir *, mode_t);
	int (*dir_delete)(struct apk_fsdir *);
	int (*dir_check)(struct apk_fsdir *, mode_t, uid_t, gid_t);
	int (*dir_update_perms)(struct apk_fsdir *, mode_t, uid_t, gid_t);

	int (*file_extract)(struct apk_ctx *, const struct apk_file_info *, struct apk_istream *, apk_progress_cb, void *, unsigned int, apk_blob_t);
	int (*file_control)(struct apk_fsdir *, apk_blob_t, int);
	int (*file_info)(struct apk_fsdir *, apk_blob_t, unsigned int, struct apk_file_info *);
};

#define APK_FSEXTRACTF_NO_CHOWN		0x0001
#define APK_FSEXTRACTF_NO_OVERWRITE	0x0002

int apk_fs_extract(struct apk_ctx *, const struct apk_file_info *, struct apk_istream *, apk_progress_cb, void *, unsigned int, apk_blob_t);

void apk_fsdir_get(struct apk_fsdir *, apk_blob_t dir, struct apk_ctx *, apk_blob_t);

static inline uint8_t apk_fsdir_priority(struct apk_fsdir *fs) {
	return fs->ops->priority;
}

static inline int apk_fsdir_create(struct apk_fsdir *fs, mode_t mode) {
	return fs->ops->dir_create(fs, mode);
}
static inline int apk_fsdir_delete(struct apk_fsdir *fs) {
	return fs->ops->dir_delete(fs);
}
static inline int apk_fsdir_check(struct apk_fsdir *fs, mode_t mode, uid_t uid, gid_t gid) {
	return fs->ops->dir_check(fs, mode, uid, gid);
}
static inline int apk_fsdir_update_perms(struct apk_fsdir *fs, mode_t mode, uid_t uid, gid_t gid) {
	return fs->ops->dir_update_perms(fs, mode, uid, gid);
}

static inline int apk_fsdir_file_control(struct apk_fsdir *fs, apk_blob_t filename, int ctrl) {
	return fs->ops->file_control(fs, filename, ctrl);
}
static inline int apk_fsdir_file_info(struct apk_fsdir *fs, apk_blob_t filename, unsigned int flags, struct apk_file_info *fi) {
	return fs->ops->file_info(fs, filename, flags, fi);
}

#endif