-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFileCache.hpp
354 lines (321 loc) · 8.97 KB
/
FileCache.hpp
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
#ifndef FILECACHE_HPP
#define FILECACHE_HPP
#include <cstdlib>
#include <cstdio>
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include <cstdint>
#include <filesystem>
#include "putils_c.h"
namespace putils {
#define DEF_CACHE_SIZE 1048576LL * 64LL
class FileCache
{
public:
typedef std::int64_t size_type;
FileCache():
fp(nullptr),
m_file_name("./tmp.dat"),
cache(nullptr),
m_cache_size(DEF_CACHE_SIZE),
curr_pos(0),
curr_file(0),
m_file_size(0),
m_mem_size(0),
mode(0),
save_me(0)
{
cache = new char[m_cache_size+1];
}
explicit FileCache(const std::string& fname,size_type cache_size_):
fp(nullptr),
m_file_name(fname),
cache(nullptr),
m_cache_size(cache_size_),
curr_pos(0),
curr_file(0),
m_file_size(0),
m_mem_size(0),
mode(0),
save_me(0)
{
cache = new char[m_cache_size+1];
}
explicit FileCache(const std::string& fname):
fp(nullptr),
m_file_name(fname),
cache(nullptr),
m_cache_size(DEF_CACHE_SIZE),
curr_pos(0),
curr_file(0),
m_file_size(0),
m_mem_size(0),
mode(0),
save_me(0)
{
std::string lfname = m_file_name + ".meta";
std::ifstream in(lfname.c_str());
in.read((char*)&m_file_size,sizeof(size_type));
in.read((char*)&m_cache_size,sizeof(size_type));
in.read((char*)&m_mem_size,sizeof(size_type));
cache = new char[m_cache_size+1];
in.read(cache,m_mem_size);
in.close();
save_me = true;
}
explicit FileCache(size_type cache_size_):
fp(nullptr),
m_file_name("./tmp.dat"),
cache(nullptr),
m_cache_size(cache_size_),
curr_pos(0),
curr_file(0),
m_file_size(0),
m_mem_size(0),
mode(0),
save_me(0)
{
cache = new char[m_cache_size+1];
}
FileCache(const FileCache&) = delete;
~FileCache() {
close();
if (save_me) {
save();
} else {
remove(m_file_name.c_str());
}
delete [] cache;
cache = nullptr;
}
std::string get_file_name() const noexcept {
return std::string(m_file_name);
}
void set_save(bool b=true) {
save_me = b;
}
size_type file_size(size_type i) const noexcept {
return m_file_size;
}
size_type total_size() const noexcept {
return m_mem_size + m_file_size;
}
constexpr size_type max_size_of_cache() const noexcept {
return m_cache_size;
}
constexpr size_type memory_size() const noexcept {
return m_mem_size;
}
void save() {
close();
std::string fname = m_file_name + ".meta";
std::ofstream out(fname.c_str());
out.write((const char*)&m_file_size,sizeof(size_type));
out.write((const char*)&m_cache_size,sizeof(size_type));
out.write((const char*)&m_mem_size,sizeof(size_type));
out.write(cache,m_mem_size);
out.close();
}
void load() {
close();
if (cache) delete [] cache;
std::string fname = m_file_name + ".meta";
std::ifstream in(fname.c_str());
in.read((char*)&m_file_size,sizeof(size_type));
in.read((char*)&m_cache_size,sizeof(size_type));
in.read((char*)&m_mem_size,sizeof(size_type));
cache = new char[m_cache_size+1];
in.read(cache,m_mem_size);
in.close();
save_me = true;
}
void close() {
if (mode==0) return;
if (mode==1) {
if ( curr_file == 1 ) {
m_file_size = curr_pos;
} else {
m_mem_size = curr_pos;
}
}
if (fp) fclose(fp);
mode = 0;
fp = nullptr;
}
void open(const char *mode) {
if (mode[0] == 'r') return open_for_reading();
if (mode[0] == 'w') return open_for_writing();
if (mode[0] == 'a') return open_for_appending();
std::cerr << "illegal mode in open " << mode << "\n";
exit(EXIT_FAILURE);
}
void open_for_reading() {
close();
fp = Fmemopen(cache,m_cache_size,"r");
curr_file = 0;
curr_pos = 0;
mode = 2;
}
void open_for_writing() {
close();
fp = Fmemopen(cache,m_cache_size,"w");
curr_file = 0;
curr_pos = 0;
mode = 1;
m_mem_size = 0;
m_file_size = 0;
}
void open_for_appending() {
close();
mode = 1;
if ( m_file_size ) {
fp = Fopen(m_file_name.c_str(),"a");
curr_file = 1;
curr_pos = m_file_size;
return;
}
if ( m_mem_size == 0) {
open_for_writing();
return;
}
fp = Fmemopen(cache,m_cache_size,"w");
Fseek(fp,m_mem_size,SEEK_SET);
curr_file = 0;
curr_pos = m_mem_size;
}
void seek( size_type pos) {
size_type cmode = mode;
close();
mode = cmode;
if (mode == 0) {
std::cerr << "seek on closed file system not possible\n";
exit(EXIT_FAILURE);
}
if (pos > (m_file_size+m_mem_size)) {
std::cerr << "seek past end of data\n";
std::cerr << "pos = " << pos << " size = " << (m_mem_size + m_file_size) << "\n";
exit(EXIT_FAILURE);
}
if (pos==0) {
if (mode==1) open_for_reading();
if (mode==2) open_for_writing();
return;
}
if (pos <= m_mem_size) {
curr_file = 0;
curr_pos = pos;
if (mode==1) {
fp = Fmemopen(cache,m_cache_size,"w");
m_mem_size = pos;
m_file_size = 0;
}else{
fp = Fmemopen(cache,m_cache_size,"r");
}
Fseek(fp,pos,SEEK_SET);
return;
}else{
curr_file = 1;
curr_pos = pos;
if (mode==1) {
fp = Fopen(m_file_name.c_str(),"w");
m_file_size = pos;
}else{
fp = Fopen(m_file_name.c_str(),"r");
}
Fseek(fp,pos,SEEK_SET);
return;
}
}
void rewind() {
int cmode = mode;
close();
mode = cmode;
if (mode==1) {
open_for_writing();
} else {
open_for_reading();
}
}
template < class Tp >
void read(Tp *ptr,size_t n) {
if (n==0) return;
if (ptr==nullptr) {
std::cerr << "null pointer in read!\n";
exit(EXIT_FAILURE);
}
if (curr_file == 1) {
Fread((void*)ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
size_type left = (m_mem_size - curr_pos)/sizeof(Tp);
if (left >= n ) {
Fread((void*)ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
if ( left ) {
Fread((void*)ptr,sizeof(Tp),size_t(left),fp);
}
fclose(fp);
curr_file = 1;
curr_pos = 0;
ptr += left;
n -= left;
fp = Fopen(m_file_name.c_str(),"r");
Fread((void*)ptr,sizeof(Tp),n,fp);
}
template < class Tp >
void write(const Tp *ptr,size_type n) {
if (n==0) return;
if (ptr==nullptr) {
std::cerr << "null pointer in write!\n";
exit(EXIT_FAILURE);
}
if (curr_file == 1)
{
Fwrite((const void*)ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
size_type left = (m_cache_size - curr_pos)/sizeof(Tp);
if (left >= n ) {
Fwrite((const void*)ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
if ( left ) {
Fwrite((const void*)ptr,sizeof(Tp),size_t(left),fp);
curr_pos += left * sizeof(Tp);
}
m_mem_size = curr_pos;
curr_file = 1;
curr_pos = 0;
fclose(fp);
fp = Fopen(m_file_name.c_str(),"w");
ptr += left;
n -= left;
Fwrite((const void*)ptr,sizeof(Tp),n,fp);
}
void write(const void *ptr,size_t n) {
return write(reinterpret_cast<const char*>(ptr),n);
}
void read(void *ptr,size_t n) {
return reade(reinterpret_cast<char*>(ptr),n);
}
private:
FILE * fp;
std::string m_file_name;
char * cache; // the in-memory cache
size_type m_cache_size; // max number of bytes that fit in memory cache
size_type curr_pos;
size_type curr_file;
size_type m_file_size; // actual number of bytes in file
size_type m_mem_size; // actual number of bytes in memory cache
int mode;
bool save_me;
};
}
#endif