This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
file.h
116 lines (102 loc) · 4.02 KB
/
file.h
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <stdbool.h>
#include "block_cache.h"
#include "block_mac.h"
struct fs;
struct transaction;
#define FS_PATH_MAX (64 + 128)
struct file_handle {
struct list_node node;
struct block_mac to_commit_block_mac;
struct block_mac committed_block_mac;
struct block_mac block_mac;
data_block_t to_commit_size;
data_block_t size;
bool used_by_tr;
};
/**
* struct file_info - On-disk file entry
* @size: File size in bytes.
* @reserved: Reserved for future use. Write 0, read ignore.
* @path: File path and name.
*/
struct file_info {
data_block_t size;
uint64_t reserved;
char path[FS_PATH_MAX];
};
/**
* struct file_iterate_state - File iterator state
*/
struct file_iterate_state {
/**
* file - Found file callback
* @iter: Iterator object.
* @tr: Transaction object.
* @block_mac: File entry block_mac.
* @added: %true if file was added in current transaction and has not
* yet been committed
*/
bool (*file)(struct file_iterate_state *iter,
struct transaction *tr,
const struct block_mac *block_mac,
bool added, bool removed);
};
size_t get_file_block_size(struct fs *fs);
const void *file_get_block(struct transaction *tr, struct file_handle *file,
data_block_t file_block, obj_ref_t *ref);
void *file_get_block_write(struct transaction *tr, struct file_handle *file,
data_block_t file_block, bool read,
obj_ref_t *ref);
void file_block_put(const void *data, obj_ref_t *data_ref);
void file_block_put_dirty(struct transaction *tr,
struct file_handle *file, data_block_t file_block,
void *data, obj_ref_t *data_ref);
const struct file_info *file_get_info(struct transaction *tr,
const struct block_mac *block_mac,
obj_ref_t *ref);
void file_info_put(const struct file_info *data, obj_ref_t *data_ref);
bool file_get_size(struct transaction *tr,
struct file_handle *file,
data_block_t *size);
void file_set_size(struct transaction *tr,
struct file_handle *file,
data_block_t size);
void file_print(struct transaction *tr, const struct file_handle *file);
void files_print(struct transaction *tr);
void file_transaction_complete(struct transaction *tr,
struct block_mac *new_files_block_mac);
void file_transaction_complete_failed(struct transaction *tr);
void file_transaction_success(struct transaction *tr);
void file_transaction_failed(struct transaction *tr);
/* TODO: move to dir? */
enum file_create_mode {
FILE_OPEN_NO_CREATE,
FILE_OPEN_CREATE,
FILE_OPEN_CREATE_EXCLUSIVE,
};
bool file_open(struct transaction *tr,
const char *path,
struct file_handle *file,
enum file_create_mode create);
void file_close(struct file_handle *file);
bool file_delete(struct transaction *tr, const char *path); /* returns true if path was found */
bool file_move(struct transaction *tr, struct file_handle *file,
const char *dest_path, enum file_create_mode dest_create);
bool file_iterate(struct transaction *tr, const char *start_path, bool added,
struct file_iterate_state *state);