-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcheckpoint.cpp
420 lines (368 loc) · 11.7 KB
/
checkpoint.cpp
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
417
418
419
/*
* checkpoint.cpp
*
* Created on: Jun 12, 2014
* Author: minh
*/
#include "checkpoint.h"
#include "tools.h"
#include "timeutil.h"
#include "gzstream.h"
#include <cstdio>
const char* CKP_HEADER = "--- # IQ-TREE Checkpoint ver >= 1.6";
const char* CKP_HEADER_OLD = "--- # IQ-TREE Checkpoint";
Checkpoint::Checkpoint() {
filename = "";
prev_dump_time = 0;
dump_interval = 60; // dumping at most once per 60 seconds
dump_count = 0;
struct_name = "";
compression = true;
header = CKP_HEADER;
}
Checkpoint::~Checkpoint() {
}
void Checkpoint::setFileName(string filename) {
this->filename = filename;
}
void Checkpoint::load(istream &in) {
string line;
string struct_name;
size_t pos;
int listid = 0;
while (!in.eof()) {
safeGetline(in, line);
pos = line.find('#');
if (pos != string::npos)
line.erase(pos);
line.erase(line.find_last_not_of("\n\r\t")+1);
// trimString(line);
if (line.empty()) continue;
if (line[0] != ' ') {
struct_name = "";
}
// trimString(line);
line.erase(0, line.find_first_not_of(" \n\r\t"));
if (line.empty()) continue;
pos = line.find(": ");
if (pos != string::npos) {
// mapping
(*this)[struct_name + line.substr(0, pos)] = line.substr(pos+2);
} else if (line[line.length()-1] == ':') {
// start a new struct
line.erase(line.length()-1);
trimString(line);
struct_name = line + CKP_SEP;
listid = 0;
continue;
} else {
// collection
(*this)[struct_name + convertIntToString(listid)] = line;
listid++;
}
}
}
bool Checkpoint::load() {
ASSERT(filename != "");
if (!fileExists(filename)) return false;
try {
igzstream in;
// set the failbit and badbit
in.exceptions(ios::failbit | ios::badbit);
in.open(filename.c_str());
// remove the failbit
in.exceptions(ios::badbit);
string line;
if (!safeGetline(in, line)) {
in.close();
return false;
}
if (line == CKP_HEADER_OLD)
throw "Incompatible checkpoint file from version 1.5.X or older.\nEither overwrite it with -redo option or run older version";
if (line != header)
throw ("Invalid checkpoint file " + filename);
// call load from the stream
load(in);
in.clear();
// set the failbit again
in.exceptions(ios::failbit | ios::badbit);
in.close();
return true;
} catch (ios::failure &) {
outError(ERR_READ_INPUT);
} catch (const char *str) {
outError(str);
} catch (string &str) {
outError(str);
}
return false;
}
void Checkpoint::setCompression(bool compression) {
this->compression = compression;
}
/**
set the header line to overwrite the default header
@param header header line
*/
void Checkpoint::setHeader(string header) {
this->header = "--- # " + header;
}
void Checkpoint::setDumpInterval(double interval) {
dump_interval = interval;
}
void Checkpoint::dump(ostream &out) {
string struct_name;
size_t pos;
int listid = 0;
for (iterator i = begin(); i != end(); i++) {
if ((pos = i->first.find(CKP_SEP)) != string::npos) {
if (struct_name != i->first.substr(0, pos)) {
struct_name = i->first.substr(0, pos);
out << struct_name << ':' << endl;
listid = 0;
}
// check if key is a collection
out << ' ' << i->first.substr(pos+1) << ": " << i->second << endl;
} else
out << i->first << ": " << i->second << endl;
}
}
void Checkpoint::dump(bool force) {
if (filename == "")
return;
if (!force && getRealTime() < prev_dump_time + dump_interval) {
return;
}
prev_dump_time = getRealTime();
string filename_tmp = filename + ".tmp";
if (fileExists(filename_tmp)) {
outWarning("IQ-TREE was killed while writing temporary checkpoint file " + filename_tmp);
outWarning("You should increase checkpoint interval from the default 60 seconds");
outWarning("via -cptime option to avoid too frequent checkpoint for large datasets");
}
try {
ostream *out;
if (compression)
out = new ogzstream(filename_tmp.c_str());
else
out = new ofstream(filename_tmp.c_str());
out->exceptions(ios::failbit | ios::badbit);
*out << header << endl;
// call dump stream
dump(*out);
if (compression)
((ogzstream*)out)->close();
else
((ofstream*)out)->close();
delete out;
// cout << "Checkpoint dumped" << endl;
if (fileExists(filename)) {
if (std::remove(filename.c_str()) != 0)
outError("Cannot remove file ", filename);
}
if (std::rename(filename_tmp.c_str(), filename.c_str()) != 0)
outError("Cannot rename file ", filename_tmp);
} catch (ios::failure &) {
outError(ERR_WRITE_OUTPUT, filename.c_str());
}
if (Params::getInstance().print_all_checkpoints) {
// Feature request by Nick Goldman
dump_count++;
filename_tmp = (string)Params::getInstance().out_prefix + "." + convertIntToString(dump_count) + ".ckp.gz";
try {
ostream *out;
if (compression)
out = new ogzstream(filename_tmp.c_str());
else
out = new ofstream(filename_tmp.c_str());
out->exceptions(ios::failbit | ios::badbit);
*out << header << endl;
// call dump stream
dump(*out);
if (compression)
((ogzstream*)out)->close();
else
((ofstream*)out)->close();
delete out;
} catch (ios::failure &) {
outError(ERR_WRITE_OUTPUT, filename_tmp.c_str());
}
} else {
// check that the dumping time is too long and increase dump_interval if necessary
double dump_time = getRealTime() - prev_dump_time;
if (dump_time*20 > dump_interval) {
dump_interval = ceil(dump_time*20);
cout << "NOTE: " << dump_time << " seconds to dump checkpoint file, increase to "
<< dump_interval << endl;
}
}
}
bool Checkpoint::hasKey(string key) {
return (find(struct_name + key) != end());
}
bool Checkpoint::hasKeyPrefix(string key_prefix) {
string prefix = key_prefix;
if (!struct_name.empty()) {
prefix = struct_name + key_prefix;
}
auto i = lower_bound(prefix);
if (i != end()) {
if (i->first.compare(0, prefix.size(), prefix) == 0)
return true;
}
return false;
}
int Checkpoint::eraseKeyPrefix(string key_prefix) {
int count = 0;
iterator first_it = lower_bound(key_prefix);
iterator i;
for (i = first_it; i != end(); i++) {
if (i->first.compare(0, key_prefix.size(), key_prefix) == 0)
count++;
else
break;
}
if (count)
erase(first_it, i);
return count;
}
int Checkpoint::keepKeyPrefix(string key_prefix) {
map<string,string> newckp;
int count = 0;
erase(begin(), lower_bound(key_prefix));
for (iterator i = begin(); i != end(); i++) {
if (i->first.compare(0, key_prefix.size(), key_prefix) == 0)
count++;
else {
erase(i, end());
break;
}
}
return count;
}
/*-------------------------------------------------------------
* series of get function to get value of a key
*-------------------------------------------------------------*/
bool Checkpoint::getBool(string key, bool &ret) {
string value;
if (!get(key, value)) return false;
if (value == "true")
ret = true;
else if (value == "false")
ret = false;
else
outError("Invalid boolean value " + value + " for key " + key);
return true;
}
bool Checkpoint::getBool(string key) {
bool ret;
if (!getBool(key, ret))
return false;
return ret;
}
/*-------------------------------------------------------------
* series of put function to put pair of (key,value)
*-------------------------------------------------------------*/
void Checkpoint::putBool(string key, bool value) {
if (value)
put(key, "true");
else
put(key, "false");
}
/*-------------------------------------------------------------
* nested structures
*-------------------------------------------------------------*/
void Checkpoint::startStruct(string name) {
struct_name = struct_name + name + CKP_SEP;
}
/**
end the current struct
*/
void Checkpoint::endStruct() {
size_t pos = struct_name.find_last_of(CKP_SEP, struct_name.length()-2);
if (pos == string::npos)
struct_name = "";
else
struct_name.erase(pos+1);
}
void Checkpoint::startList(int nelem) {
list_element.push_back(-1);
if (nelem > 0)
list_element_precision.push_back((int)ceil(log10(nelem)));
else
list_element_precision.push_back(0);
}
void Checkpoint::setListElement(int id) {
list_element.back() = id;
stringstream ss;
ss << setw(list_element_precision.back()) << setfill('0') << list_element.back();
struct_name += ss.str() + CKP_SEP;
}
void Checkpoint::addListElement() {
list_element.back()++;
if (list_element.back() > 0) {
size_t pos = struct_name.find_last_of(CKP_SEP, struct_name.length()-2);
ASSERT(pos != string::npos);
struct_name.erase(pos+1);
}
stringstream ss;
ss << setw(list_element_precision.back()) << setfill('0') << list_element.back();
// ss << list_element.back();
struct_name += ss.str() + CKP_SEP;
}
void Checkpoint::endList() {
ASSERT(!list_element.empty());
if (list_element.back() >= 0) {
size_t pos = struct_name.find_last_of(CKP_SEP, struct_name.length()-2);
ASSERT(pos != string::npos);
struct_name.erase(pos+1);
}
list_element.pop_back();
list_element_precision.pop_back();
}
void Checkpoint::getSubCheckpoint(Checkpoint *target, string partial_key) {
int len = partial_key.length();
for (auto it = lower_bound(partial_key); it != end() && it->first.substr(0, len) == partial_key; it++) {
target->put(it->first.substr(len+1), it->second);
}
}
void Checkpoint::putSubCheckpoint(Checkpoint *source, string partial_key) {
if (!partial_key.empty())
startStruct(partial_key);
for (auto it = source->begin(); it != source->end(); it++) {
put(it->first, it->second);
}
if (!partial_key.empty())
endStruct();
}
void Checkpoint::transferSubCheckpoint(Checkpoint *target, string partial_key, bool overwrite) {
int len = partial_key.length();
for (auto it = lower_bound(partial_key); it != end() && it->first.substr(0, len) == partial_key; it++) {
if (overwrite || !target->hasKey(it->first))
target->put(it->first, it->second);
}
}
/*-------------------------------------------------------------
* CheckpointFactory
*-------------------------------------------------------------*/
CheckpointFactory::CheckpointFactory() {
checkpoint = NULL;
}
void CheckpointFactory::setCheckpoint(Checkpoint *checkpoint) {
this->checkpoint = checkpoint;
}
Checkpoint *CheckpointFactory::getCheckpoint() {
return checkpoint;
}
void CheckpointFactory::startCheckpoint() {
checkpoint->startStruct("CheckpointFactory");
}
void CheckpointFactory::saveCheckpoint() {
// do nothing
}
void CheckpointFactory::restoreCheckpoint() {
// do nothing
}
void CheckpointFactory::endCheckpoint() {
checkpoint->endStruct();
}