blob: 23933809ee62345459af75ca5da26325dff52fd5 (
plain)
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
|
/* SPDX-License-Identifier: LGPL-3.0-or-later */
/*
* internal.h
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#ifndef INTERNAL_H
#define INTERNAL_H
#include "config.h"
#include "sqfs/block_processor.h"
#include "sqfs/block_writer.h"
#include "sqfs/frag_table.h"
#include "sqfs/compressor.h"
#include "sqfs/inode.h"
#include "sqfs/table.h"
#include "sqfs/error.h"
#include "sqfs/block.h"
#include "sqfs/io.h"
#include "hash_table.h"
#include "threadpool.h"
#include "util.h"
#include <string.h>
#include <stdlib.h>
#include <assert.h>
typedef struct {
sqfs_u32 index;
sqfs_u32 offset;
sqfs_u32 size;
sqfs_u32 hash;
} chunk_info_t;
enum {
BLK_FLAG_MANUAL_SUBMISSION = 0x10000000,
BLK_FLAG_INTERNAL = 0x10000000,
};
typedef struct sqfs_block_t {
struct sqfs_block_t *next;
sqfs_inode_generic_t **inode;
sqfs_u32 io_seq_num;
sqfs_u32 flags;
sqfs_u32 size;
sqfs_u32 checksum;
/* For data blocks: index within the inode.
For fragment fragment blocks: fragment table index. */
sqfs_u32 index;
/* User data pointer */
void *user;
sqfs_u8 data[];
} sqfs_block_t;
typedef struct worker_data_t {
struct worker_data_t *next;
sqfs_compressor_t *cmp;
size_t scratch_size;
sqfs_u8 scratch[];
} worker_data_t;
struct sqfs_block_processor_t {
sqfs_object_t obj;
sqfs_frag_table_t *frag_tbl;
sqfs_block_t *frag_block;
sqfs_block_writer_t *wr;
sqfs_block_processor_stats_t stats;
sqfs_inode_generic_t **inode;
sqfs_block_t *blk_current;
sqfs_u32 blk_flags;
sqfs_u32 blk_index;
void *user;
struct hash_table *frag_ht;
sqfs_block_t *free_list;
size_t max_block_size;
size_t max_backlog;
size_t backlog;
bool begin_called;
sqfs_file_t *file;
sqfs_compressor_t *uncmp;
thread_pool_t *pool;
worker_data_t *workers;
sqfs_block_t *io_queue;
sqfs_u32 io_seq_num;
sqfs_u32 io_deq_seq_num;
};
SQFS_INTERNAL
int process_completed_block(sqfs_block_processor_t *proc, sqfs_block_t *blk);
SQFS_INTERNAL
int process_completed_fragment(sqfs_block_processor_t *proc,
sqfs_block_t *frag,
sqfs_block_t **blk_out);
#endif /* INTERNAL_H */
|