-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcache.hpp
389 lines (357 loc) · 10.4 KB
/
cache.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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#ifndef FILECACHE_HPP
#define FILECACHE_HPP
#include <cstdlib>
#include <cstdio>
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include <cstdint>
#include <filesystem>
#include <functional>
#include "putils_c.h"
namespace putils {
#define DEF_CACHE_SIZE 1048576LL * 32LL
class Cache
{
public:
typedef std::int64_t size_type;
Cache() {
fname = "./tmp.dat";
m_cache_size = DEF_CACHE_SIZE;
fp = nullptr;
curr_pos = 0;
curr_file = 0;
mode = 0;
m_file_size = 0;
m_mem_size = 0;
cache = new char[m_cache_size+1];
cache[m_cache_size] = '\0';
save_me = false;
}
explicit Cache(const std::string& dir_str,const std::string& name_str) {
fname = dir_str + std::string("/") + name_str;
m_cache_size = DEF_CACHE_SIZE;
fp = nullptr;
curr_pos = 0;
curr_file = 0;
mode = 0;
m_file_size = 0;
m_mem_size = 0;
cache = new char[m_cache_size+1];
cache[m_cache_size] = '\0';
save_me = false;
// create directory
{
namespace fs = std::filesystem;
fs::path p(dir_str);
if (!fs::exists(p)) {
fs::create_directory(p);
}
}
}
explicit Cache(const std::string& dir_str,const std::string& name_str,
size_type cache_size_) {
fname = dir_str + std::string("/") + name_str;
m_cache_size = cache_size_;
fp = nullptr;
curr_pos = 0;
curr_file = 0;
mode = 0;
m_mem_size = 0;
m_file_size = 0;
cache = new char[m_cache_size+1];
cache[m_cache_size] = '\0';
save_me = false;
// create directory
{
namespace fs = std::filesystem;
fs::path p(dir_str);
if (!fs::exists(p)) {
fs::create_directory(p);
}
}
}
explicit Cache(const std::string& name_str,
size_type cache_size_) {
fname = name_str;
m_cache_size = cache_size_;
fp = nullptr;
curr_pos = 0;
curr_file = 0;
mode = 0;
m_mem_size = 0;
m_file_size = 0;
cache = new char[m_cache_size+1];
cache[m_cache_size] = '\0';
save_me = false;
}
explicit Cache(size_type m_cache_size_) {
fname = "tmp.dat";
m_cache_size = m_cache_size_;
fp = nullptr;
curr_pos = 0;
curr_file = 0;
mode = 0;
m_file_size = 0;
m_mem_size = 0;
cache = new char[m_cache_size+1];
cache[m_cache_size] = '\0';
save_me = false;
}
Cache(const Cache&) = delete;
~Cache() {
close();
if (save_me) {
std::string mname = fname + ".meta";
std::ofstream out(mname.c_str());
out.write((const char*)&m_file_size,sizeof(int64_t));
out.write((const char*)&m_mem_size,sizeof(int64_t));
out.write((const char*)&m_cache_size,sizeof(int64_t));
out.write(cache,m_cache_size);
out.close();
} else {
remove(fname.c_str());
}
delete [] cache;
cache = nullptr;
}
size_t hash_cache() {
return std::hash<std::string>{}(std::string(cache));
}
void load()
{
close();
if ( cache ) {
delete [] cache;
}
std::string mname = fname + ".meta";
std::ifstream in(mname.c_str());
in.read((char*)&m_file_size,sizeof(int64_t));
in.read((char*)&m_mem_size,sizeof(int64_t));
in.read((char*)&m_cache_size,sizeof(int64_t));
cache = new char[m_cache_size+1];
cache[m_cache_size]='\0';
in.read(cache,m_cache_size);
in.close();
std::cout << "loaded\n";
std::cout << "file size = " << m_file_size << "\n";
std::cout << "mem size = " << m_mem_size << "\n";
std::cout << "cache size = " << m_cache_size << "\n";
std::cout << "hash = " << std::hash<std::string>{}(std::string(cache)) << "\n";
std::cout << "\n";
save_me = true;
curr_file = 0;
curr_pos = 0;
mode = 0;
}
void info()
{
std::cout << "file size = " << m_file_size << "\n";
std::cout << "mem size = " << m_mem_size << "\n";
std::cout << "cache size = " << m_cache_size << "\n";
std::cout << "hash = " << std::hash<std::string>{}(std::string(cache)) << "\n";
}
std::string get_file_name() const noexcept {
return std::string(fname);
}
void set_save(bool b = true) {
save_me = b;
}
void set_fname(const std::string& dir_str,const std::string& filename_str=std::string("tmp"))
{
fname = dir_str + std::string("/") + filename_str;
}
size_type mem_size() const noexcept {
return m_mem_size;
}
size_type file_size() const noexcept {
return m_file_size;
}
size_type total_size() const noexcept {
return (m_file_size + m_mem_size);
}
constexpr size_type cache_size() const noexcept {
return m_cache_size;
}
void close() {
if (mode==0) return;
if (fp) {
fclose(fp);
fp = nullptr;
}
if (curr_pos && mode==1) {
if ( curr_file == 1 ) m_file_size = curr_pos;
else m_mem_size = curr_pos;
}
mode = 0;
}
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() {
if (mode!=0) close();
fp = Fmemopen(cache,m_cache_size,"r");
curr_file = 0;
curr_pos = 0;
mode = 2;
}
void open_for_writing() {
if (mode!=0) close();
fp = Fmemopen(cache,m_cache_size,"w");
curr_file = 0;
curr_pos = 0;
m_file_size = 0;
m_mem_size = 0;
mode = 1;
}
void open_for_appending() {
if (mode!=0) close();
constexpr size_type edge = 256LL;
if ( m_file_size!=0 ) {
fp = Fopen(fname.c_str(),"a");
Fseek(fp,m_file_size,SEEK_SET);
curr_file = 1;
curr_pos = m_file_size;
mode = 1;
m_file_size = 0;
} else {
fp = Fmemopen(cache,m_cache_size,"a");
Fseek(fp,m_mem_size,SEEK_SET);
curr_file = 0;
curr_pos = m_mem_size;
mode = 1;
m_mem_size = 0;
m_file_size = 0;
}
}
template < class Tp > void read(Tp *ptr,size_type n) {
if (n==0) return;
if (ptr==nullptr) {
std::cerr << "null pointer in read!\n";
exit(EXIT_FAILURE);
}
if ( curr_file == 1 ) {
if ( ( n * sizeof(Tp)) > m_file_size) {
std::cerr << "Attempt to read past end of file\n";
exit(-1);
}
Fread(ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
size_type n_left = (m_mem_size - curr_pos)/sizeof(Tp);
if (n_left >= n ) {
Fread(ptr,sizeof(Tp),n,fp);
curr_pos += sizeof(Tp) * n;
return;
}
if (n_left) {
Fread(ptr,sizeof(Tp),n_left,fp);
curr_pos += sizeof(Tp) * n_left;
}
fclose(fp);
fp = Fopen(fname.c_str(),"r");
curr_pos = 0;
curr_file = 1;
return read((ptr+n_left),(n-n_left));
}
void write(const void *ptr,size_type n) {
return write<char>(reinterpret_cast<const char*>(ptr),n);
}
void read(void *ptr,size_type n) {
return read<char>(reinterpret_cast<char*>(ptr),n);
}
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(ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
size_type n_left = (m_cache_size-curr_pos)/sizeof(Tp);
if (n_left >= n ) {
Fwrite(ptr,sizeof(Tp),n,fp);
curr_pos += n * sizeof(Tp);
return;
}
if ( n_left)
{
Fwrite(ptr,sizeof(Tp),n_left,fp);
curr_pos += n_left * sizeof(Tp);
}
m_mem_size = curr_pos;
fclose(fp);
fp = Fopen(fname.c_str(),"w");
curr_file = 1;
curr_pos = 0;
return write((ptr+n_left),(n-n_left));
}
void seek(size_type pos)
{
int cmode = mode;
close();
if (cmode == 2) {
mode = 2;
if (pos < m_cache_size) {
fp = Fmemopen(cache,m_cache_size,"r");
Fseek(fp,pos,SEEK_SET);
curr_pos = pos;
curr_file = 0;
}else{
pos -= m_mem_size;
fp = Fopen(fname.c_str(),"r");
Fseek(fp,pos,SEEK_SET);
curr_pos = pos;
curr_file = 1;
}
return;
}
if (mode == 1) {
mode = 1;
if (pos < m_cache_size) {
fp = Fmemopen(cache,m_cache_size,"a");
Fseek(fp,pos,SEEK_SET);
curr_pos = pos;
curr_file = 0;
m_file_size = 0;
m_mem_size = pos;
}else{
pos -= m_cache_size;
fp = Fopen(fname.c_str(),"r");
Fseek(fp,pos,SEEK_SET);
curr_pos = pos;
curr_file = 1;
m_file_size = pos;
}
}
if (mode==0) {
std::cerr << "cannot seek on closed filesystem!\n";
}else{
std::cerr << "illegal file mode " << cmode << " in seek\n";
}
exit(EXIT_FAILURE);
}
private:
char * cache;
size_type m_cache_size;
size_type curr_pos;
size_type curr_file;
size_type m_mem_size;
size_type m_file_size;
std::string fname;
FILE *fp;
int mode;
bool save_me;
};
}
#endif