forked from simongog/sdsl-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
int_vector_mapper.hpp
416 lines (391 loc) · 16.6 KB
/
int_vector_mapper.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#ifndef SDSL_INT_VECTOR_MAPPER
#define SDSL_INT_VECTOR_MAPPER
#include "int_vector.hpp"
#include "memory_management.hpp"
#include <cstdio>
#include <ios>
namespace sdsl
{
template <uint8_t t_width = 0,std::ios_base::openmode t_mode = std::ios_base::out|std::ios_base::in>
class int_vector_mapper
{
static_assert(t_width <= 64,
"int_vector_mapper: width must be at most 64 bits.");
public:
typedef typename int_vector<t_width>::difference_type difference_type;
typedef typename int_vector<t_width>::value_type value_type;
typedef typename int_vector<t_width>::size_type size_type;
typedef typename int_vector<t_width>::int_width_type width_type;
public:
const size_type append_block_size = 1000000;
private:
uint8_t* m_mapped_data = nullptr;
uint64_t m_file_size_bytes = 0;
off_t m_data_offset = 0;
int m_fd = -1;
int_vector<t_width> m_wrapper;
std::string m_file_name;
bool m_delete_on_close;
public:
int_vector_mapper() = delete;
int_vector_mapper(const int_vector_mapper&) = delete;
int_vector_mapper& operator=(const int_vector_mapper&) = delete;
public:
~int_vector_mapper()
{
if (m_mapped_data) {
if (t_mode&std::ios_base::out) { // write was possible
if (m_data_offset) {
// update size in the on disk representation and
// truncate if necessary
uint64_t* size_in_file = (uint64_t*)m_mapped_data;
if (*size_in_file != m_wrapper.m_size) {
*size_in_file = m_wrapper.m_size;
}
if (t_width==0) {
// if size is variable and we map a sdsl vector
// we might have to update the stored width
uint8_t stored_width = m_mapped_data[8];
if (stored_width != m_wrapper.m_width) {
m_mapped_data[8] = m_wrapper.m_width;
}
}
}
}
auto ret = memory_manager::mem_unmap(m_mapped_data,m_file_size_bytes);
if (ret != 0) {
std::cerr << "int_vector_mapper: error unmapping file mapping'"
<< m_file_name << "': " << ret << std::endl;
}
if (t_mode&std::ios_base::out) {
// do we have to truncate?
size_type current_bit_size = m_wrapper.m_size;
size_type data_size_in_bytes = ((current_bit_size + 63) >> 6) << 3;
if (m_file_size_bytes != data_size_in_bytes + m_data_offset) {
int tret = memory_manager::truncate_file_mmap(m_fd, data_size_in_bytes + m_data_offset);
if (tret == -1) {
std::string truncate_error
= std::string("int_vector_mapper: truncate error. ")
+ std::string(util::str_from_errno());
std::cerr << truncate_error;
}
}
}
}
if (m_fd != -1) {
auto ret = memory_manager::close_file_for_mmap(m_fd);
if (ret != 0) {
std::cerr << "int_vector_mapper: error closing file mapping'"
<< m_file_name << "': " << ret << std::endl;
}
if (m_delete_on_close) {
int ret_code = sdsl::remove(m_file_name);
if (ret_code != 0) {
std::cerr << "int_vector_mapper: error deleting file '"
<< m_file_name << "': " << ret_code << std::endl;
}
}
}
m_wrapper.m_data = nullptr;
m_wrapper.m_size = 0;
}
int_vector_mapper(int_vector_mapper&& ivm)
{
m_wrapper.m_data = ivm.m_wrapper.m_data;
m_wrapper.m_size = ivm.m_wrapper.m_size;
m_wrapper.width(ivm.m_wrapper.width());
m_file_name = ivm.m_file_name;
m_delete_on_close = ivm.m_delete_on_close;
ivm.m_wrapper.m_data = nullptr;
ivm.m_wrapper.m_size = 0;
ivm.m_mapped_data = nullptr;
ivm.m_fd = -1;
}
int_vector_mapper& operator=(int_vector_mapper&& ivm)
{
m_wrapper.m_data = ivm.m_wrapper.m_data;
m_wrapper.m_size = ivm.m_wrapper.m_size;
m_wrapper.width(ivm.m_wrapper.width());
m_file_name = ivm.m_file_name;
m_delete_on_close = ivm.m_delete_on_close;
ivm.m_wrapper.m_data = nullptr;
ivm.m_wrapper.m_size = 0;
ivm.m_mapped_data = nullptr;
ivm.m_fd = -1;
return (*this);
}
int_vector_mapper(const std::string& key,const cache_config& config)
: int_vector_mapper(cache_file_name(key, config)) {}
int_vector_mapper(const std::string filename,
bool is_plain = false,
bool delete_on_close = false) :
m_file_name(filename), m_delete_on_close(delete_on_close)
{
size_type size_in_bits = 0;
uint8_t int_width = t_width;
{
std::ifstream f(filename,std::ifstream::binary);
if (!f.is_open()) {
throw std::runtime_error(
"int_vector_mapper: file does not exist.");
}
if (!is_plain) {
int_vector<t_width>::read_header(size_in_bits, int_width, f);
}
}
m_file_size_bytes = util::file_size(m_file_name);
if (!is_plain) {
m_data_offset = t_width ? 8 : 9;
} else {
if (8 != t_width and 16 != t_width and 32 != t_width and 64 != t_width) {
throw std::runtime_error("int_vector_mapper: plain vector can "
"only be of width 8, 16, 32, 64.");
} else {
uint8_t byte_width = t_width/8;
// if( m_file_size_bytes % (t_width/8) != 0)
if ((m_file_size_bytes & bits::lo_set[bits::cnt(byte_width-1)]) != 0) {
throw std::runtime_error("int_vector_mapper: plain vector not a multiple of byte: "
+std::to_string(m_file_size_bytes)+" mod "+std::to_string(byte_width)+" != 0");
}
}
size_in_bits = m_file_size_bytes * 8;
m_data_offset = 0;
}
// open backend file depending on mode
m_fd = memory_manager::open_file_for_mmap(m_file_name, t_mode);
if (m_fd == -1) {
std::string open_error
= std::string("int_vector_mapper: open file error.")
+ std::string(util::str_from_errno());
throw std::runtime_error(open_error);
}
// prepare for mmap
m_wrapper.width(int_width);
// mmap data
m_mapped_data = (uint8_t*)memory_manager::mmap_file(m_fd,m_file_size_bytes,t_mode);
if (m_mapped_data == nullptr) {
std::string mmap_error
= std::string("int_vector_mapper: mmap error. ")
+ std::string(util::str_from_errno());
throw std::runtime_error(mmap_error);
}
m_wrapper.m_size = size_in_bits;
m_wrapper.m_data = (uint64_t*)(m_mapped_data + m_data_offset);
}
std::string file_name() const { return m_file_name; }
width_type width() const { return m_wrapper.width(); }
void width(const uint8_t new_int_width)
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'width'");
m_wrapper.width(new_int_width);
}
size_type size() const
{
return m_wrapper.size();
}
void bit_resize(const size_type bit_size)
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'bit_resize'");
size_type new_size_in_bytes = ((bit_size + 63) >> 6) << 3;
if (m_file_size_bytes != new_size_in_bytes + m_data_offset) {
if (m_mapped_data) {
auto ret = memory_manager::mem_unmap(m_mapped_data,m_file_size_bytes);
if (ret != 0) {
std::cerr << "int_vector_mapper: error unmapping file mapping'"
<< m_file_name << "': " << ret << std::endl;
}
}
int tret = memory_manager::truncate_file_mmap(m_fd, new_size_in_bytes + m_data_offset);
if (tret == -1) {
std::string truncate_error
= std::string("int_vector_mapper: truncate error. ")
+ std::string(util::str_from_errno());
throw std::runtime_error(truncate_error);
}
m_file_size_bytes = new_size_in_bytes + m_data_offset;
// perform the actual mapping
m_mapped_data = (uint8_t*)memory_manager::mmap_file(m_fd,m_file_size_bytes, t_mode);
if (m_mapped_data == nullptr) {
std::string mmap_error
= std::string("int_vector_mapper: mmap error. ")
+ std::string(util::str_from_errno());
throw std::runtime_error(mmap_error);
}
// update wrapper
m_wrapper.m_data = (uint64_t*)(m_mapped_data + m_data_offset);
}
m_wrapper.m_size = bit_size;
}
void resize(const size_type size)
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'resize'");
size_type size_in_bits = size * width();
bit_resize(size_in_bits);
}
auto begin() -> typename int_vector<t_width>::iterator {
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'begin'");
return m_wrapper.begin();
}
auto end() -> typename int_vector<t_width>::iterator {
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'end'");
return m_wrapper.end();
}
auto begin() const -> typename int_vector<t_width>::const_iterator {
return m_wrapper.begin();
}
auto end() const -> typename int_vector<t_width>::const_iterator {
return m_wrapper.end();
}
auto cbegin() const -> typename int_vector<t_width>::const_iterator {
return m_wrapper.begin();
}
auto cend() const -> typename int_vector<t_width>::const_iterator {
return m_wrapper.end();
}
auto operator[](const size_type& idx) const
-> typename int_vector<t_width>::const_reference {
return m_wrapper[idx];
}
auto operator[](const size_type& idx)
-> typename int_vector<t_width>::reference {
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'operator[]'");
return m_wrapper[idx];
}
const uint64_t* data() const { return m_wrapper.data(); }
uint64_t* data()
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'data'");
return m_wrapper.data();
}
value_type get_int(size_type idx, const uint8_t len = 64) const
{
return m_wrapper.get_int(idx, len);
}
void set_int(size_type idx, value_type x, const uint8_t len = 64)
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'set_int'");
m_wrapper.set_int(idx, x, len);
}
void push_back(value_type x)
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'push_back'");
if (capacity() < size() + 1) {
size_type old_size = m_wrapper.m_size;
size_type size_in_bits = (size() + append_block_size) * width();
bit_resize(size_in_bits);
m_wrapper.m_size = old_size;
}
// update size in wrapper only
m_wrapper.m_size += width();
m_wrapper[size()-1] = x;
}
size_type capacity() const
{
size_t data_size_in_bits = 8 * (m_file_size_bytes - m_data_offset);
return data_size_in_bits / width();
}
size_type bit_size() const
{
return m_wrapper.bit_size();
}
template<class container>
bool operator==(const container& v) const
{
return std::equal(begin(), end(), v.begin());
}
bool operator==(const int_vector<t_width>& v) const
{
return m_wrapper == v;
}
bool operator==(const int_vector_mapper& v) const
{
return m_wrapper == v.m_wrapper;
}
template<class container>
bool operator!=(const container& v) const
{
return !(*this==v);
}
void flip()
{
static_assert(t_mode & std::ios_base::out,"int_vector_mapper: must be opened in in+out mode for 'flip'");
m_wrapper.flip();
}
bool empty() const
{
return m_wrapper.empty();
}
};
template <uint8_t t_width = 0>
class temp_file_buffer
{
private:
static std::string tmp_file(const std::string& dir)
{
char tmp_file_name[1024] = {0};
#ifdef MSVC_COMPILER
auto ret = GetTempFileName(dir.c_str(),"tmp_mapper_file_", 0 ,tmp_file_name);
if (ret == 0) {
throw std::runtime_error("could not create temporary file.");
}
#else
sprintf(tmp_file_name, "%s/tmp_mapper_file_%lu_XXXXXX.sdsl",dir.c_str(),util::pid());
int fd = mkstemps(tmp_file_name,5);
if (fd == -1) {
throw std::runtime_error("could not create temporary file.");
}
close(fd);
#endif
return std::string(tmp_file_name,strlen(tmp_file_name));
}
public:
static int_vector_mapper<t_width> create()
{
#ifdef MSVC_COMPILER
char tmp_dir_name[1024] = {0};
auto tmp_dir = GetTempPath(1024,tmp_dir_name);
auto file_name = tmp_file(tmp_dir_name);
#else
auto file_name = tmp_file("/tmp");
#endif
return create(file_name);
}
static int_vector_mapper<t_width> create(const cache_config& config)
{
auto file_name = tmp_file(config.dir);
return create(file_name);
}
static int_vector_mapper<t_width> create(const std::string& file_name)
{
//write empty int_vector to init the file
int_vector<t_width> tmp_vector;
store_to_file(tmp_vector,file_name);
return int_vector_mapper<t_width,std::ios_base::out|std::ios_base::in>(file_name,false,true);
}
};
// creates emtpy int_vector<> that will not be deleted
template <uint8_t t_width = 0>
class write_out_buffer
{
public:
static int_vector_mapper<t_width> create(const std::string& key,cache_config& config)
{
auto file_name = cache_file_name(key,config);
auto tmp = create(file_name);
register_cache_file(key,config);
return std::move(tmp);
}
static int_vector_mapper<t_width> create(const std::string& file_name)
{
//write empty int_vector to init the file
int_vector<t_width> tmp_vector;
store_to_file(tmp_vector,file_name);
return int_vector_mapper<t_width,std::ios_base::out|std::ios_base::in>(file_name,false,false);
}
};
template<std::ios_base::openmode t_mode = std::ios_base::out|std::ios_base::in>
using bit_vector_mapper = int_vector_mapper<1,t_mode>;
template<uint8_t t_width = 0>
using read_only_mapper = const int_vector_mapper<t_width,std::ios_base::in>;
} // end of namespace
#endif