-
Notifications
You must be signed in to change notification settings - Fork 3
/
f5ar.h
100 lines (73 loc) · 2.56 KB
/
f5ar.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
/*
* An API for data compression in JPEG files
* using modified F5 steganography algorithm
* Written by Labunsky Artem <[email protected]>
*
* This software is based in part on the work of the Independent JPEG Group
* Distributed under the Simplified BSD License
*/
#ifndef F5C_H
#define F5C_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <stdint.h>
/* Here you can find all the error codes */
enum F5AR_CODES {
F5AR_OK = 0, F5AR_OK_COMPLETE = 1, F5AR_NOT_FOUND = 2,
F5AR_MALLOC_ERR = -1, F5AR_FILEIO_ERR = -2,
F5AR_NOT_INITIALIZED = -3, F5AR_NOT_COMPLETE = -5,
F5AR_FAILURE = -6, F5AR_IO_ERR = -7,
F5AR_WRONG_ARGS = -8
};
typedef struct {
uint8_t k;
uint64_t msg_size;
} f5archive_meta;
typedef struct {
size_t shrinkable;
size_t full;
} f5archive_capacity;
typedef struct {
int state;
f5archive_meta meta;
f5archive_capacity capacity;
struct f5archive_ctx *ctx;
} f5archive;
/* Call this before any operations */
int f5ar_init(f5archive *);
/* Compression API */
/* You can add containers sequentially calling these functions to form new order */
int f5ar_add_file(f5archive *, const char *path);
/* size will be updated via the pointer as the file size could change and should contain the original size */
int f5ar_add_mem(f5archive *archive, void *ptr, size_t* size);
/* Free all used by the archive memory and close all opened file streams */
void f5ar_destroy(f5archive *);
/* Will be called only once */
int f5ar_analyze(f5archive *);
/* Do compression and fetch the result */
int f5ar_pack(f5archive *, const char *data, size_t size);
typedef struct {
size_t size;
char body[];
} f5ar_blob;
/* Export order of every container in the archive */
f5ar_blob *f5ar_export_order(f5archive *);
/* Export only subset of containers used in the packing process */
f5ar_blob *f5ar_export_order_used(f5archive *);
/* Decompression API */
/* Use this functions to import previously exported order into the other array
* This call will destroy the existing archive order and free all associated memory
* Archive will contain only hashes in the specified order, you need to use **fill**
* functions to make it suitable for the compression and decompression ones */
int f5ar_import_order(f5archive *, f5ar_blob *);
/* Try filling any empty slots in imported order with a file */
int f5ar_fill_file(f5archive *, const char *path);
/* Same as the *add_mem() one */
int f5ar_fill_mem(f5archive *archive, void *ptr, size_t* size);
int f5ar_unpack(f5archive *, char **res_ptr, size_t *size);
#ifdef __cplusplus
}
#endif
#endif