blob: 71a89698e7e5febcb03d8f04bd01edb7b6843e98 [file] [log] [blame]
Colin Cross28fa5bc2012-05-20 13:28:05 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _BACKED_BLOCK_H_
18#define _BACKED_BLOCK_H_
19
Colin Crossb55dcee2012-04-24 23:07:49 -070020#include <stdint.h>
21
Colin Cross411619e2012-04-24 18:51:42 -070022struct backed_block_list;
Colin Crossb55dcee2012-04-24 23:07:49 -070023struct backed_block;
Colin Cross28fa5bc2012-05-20 13:28:05 -070024
Colin Crossb55dcee2012-04-24 23:07:49 -070025enum backed_block_type {
Jerry Zhang7b444f02018-06-12 16:42:09 -070026 BACKED_BLOCK_DATA,
27 BACKED_BLOCK_FILE,
28 BACKED_BLOCK_FD,
29 BACKED_BLOCK_FILL,
Colin Crossb55dcee2012-04-24 23:07:49 -070030};
Colin Cross28fa5bc2012-05-20 13:28:05 -070031
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090032int backed_block_add_data(struct backed_block_list* bbl, void* data, uint64_t len,
Jerry Zhang7b444f02018-06-12 16:42:09 -070033 unsigned int block);
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090034int backed_block_add_fill(struct backed_block_list* bbl, unsigned int fill_val, uint64_t len,
Jerry Zhang7b444f02018-06-12 16:42:09 -070035 unsigned int block);
36int backed_block_add_file(struct backed_block_list* bbl, const char* filename, int64_t offset,
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090037 uint64_t len, unsigned int block);
38int backed_block_add_fd(struct backed_block_list* bbl, int fd, int64_t offset, uint64_t len,
Jerry Zhang7b444f02018-06-12 16:42:09 -070039 unsigned int block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070040
Jerry Zhang7b444f02018-06-12 16:42:09 -070041struct backed_block* backed_block_iter_new(struct backed_block_list* bbl);
42struct backed_block* backed_block_iter_next(struct backed_block* bb);
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090043uint64_t backed_block_len(struct backed_block* bb);
Jerry Zhang7b444f02018-06-12 16:42:09 -070044unsigned int backed_block_block(struct backed_block* bb);
45void* backed_block_data(struct backed_block* bb);
46const char* backed_block_filename(struct backed_block* bb);
47int backed_block_fd(struct backed_block* bb);
48int64_t backed_block_file_offset(struct backed_block* bb);
49uint32_t backed_block_fill_val(struct backed_block* bb);
50enum backed_block_type backed_block_type(struct backed_block* bb);
51int backed_block_split(struct backed_block_list* bbl, struct backed_block* bb, unsigned int max_len);
Colin Crossb55dcee2012-04-24 23:07:49 -070052
Jerry Zhang7b444f02018-06-12 16:42:09 -070053struct backed_block* backed_block_iter_new(struct backed_block_list* bbl);
54struct backed_block* backed_block_iter_next(struct backed_block* bb);
Colin Crossb55dcee2012-04-24 23:07:49 -070055
Jerry Zhang7b444f02018-06-12 16:42:09 -070056struct backed_block_list* backed_block_list_new(unsigned int block_size);
57void backed_block_list_destroy(struct backed_block_list* bbl);
Colin Cross28fa5bc2012-05-20 13:28:05 -070058
Jerry Zhang7b444f02018-06-12 16:42:09 -070059void backed_block_list_move(struct backed_block_list* from, struct backed_block_list* to,
60 struct backed_block* start, struct backed_block* end);
Colin Crossbdc6d392012-05-02 15:18:22 -070061
Colin Cross28fa5bc2012-05-20 13:28:05 -070062#endif