-
Notifications
You must be signed in to change notification settings - Fork 1
/
fileio.cpp
555 lines (470 loc) · 14 KB
/
fileio.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
#define _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <cstdlib>
#include "gmpwrapper.h"
#include "fileio.h"
#include "pal.h"
#include "prime.h"
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <functional>
#define STRING_BASE (62)
SmartFile make_smartfile(const char* FilePath, const char* Mode)
{
return SmartFile(std::fopen(FilePath, Mode), std::fclose);
}
std::string GetBasePrimeFileName(const AllPrimebotSettings& Settings)
{
if (Settings.PrimeSettings.StartValue.empty())
{
return
std::to_string(Settings.PrimeSettings.Bitsize)
+ "-"
+ std::to_string(Settings.PrimeSettings.RngSeed);
}
else
{
return
Settings.PrimeSettings.StartValue
+ "-"
+ std::to_string(Settings.PrimeSettings.StartValueBase);
}
}
std::string GetPrimeFileName(const AllPrimebotSettings& Settings)
{
return
GetBasePrimeFileName(Settings)
+ ".txt";
}
std::string GetPrimeFileNameBinary(const AllPrimebotSettings& Settings)
{
return
GetBasePrimeFileName(Settings)
+ ".bin";
}
bool PrimeFileIo::CreatePrimeFile(const std::string& BasePath, const std::string& Name)
{
// If File == nullptr, create the file and path because it doesn't exist yet.
// If failure, then try again next time. This should save 8% CPU during printing.
if (File == nullptr)
{
bool Result = MakeDirectory(BasePath.c_str());
if (!Result)
{
std::cerr << "Failed to make directory: " << BasePath << std::endl;
return Result;
}
FullFilePath = BasePath + '/' + Name;
File = make_smartfile(FullFilePath.c_str(), "a+b");
if (File == nullptr)
{
std::cerr << "Failed to open file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
return true;
}
else
{
return true;
}
}
bool PrimeFileIo::GetFirstPrimeFromFile()
{
if (First.get_ui() == 0)
{
// Determine if at the beginning of the file by seeking to the end.
// This only affects read operations since the file was opened for append.
if (std::fseek(File.get(), 0, SEEK_END))
{
std::cerr << "Failed to seek file, " << FullFilePath << " " << std::strerror(errno) << std::endl;
return false;
}
if (std::ftell(File.get()) == 0)
{
// Empty file, rewind.
std::rewind(File.get());
}
else
{
// Read the first prime from the file.
std::rewind(File.get());
if (!mpz_inp_raw(First.get_mpz_t(), File.get()))
{
std::cerr << "Failed reading prime from file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
std::rewind(File.get());
}
return true;
}
else
{
return true;
}
}
bool PrimeFileIo::WritePrimeToTextFile(const std::string& BasePath, const std::string& Name, const std::string& Prime)
{
bool Result;
Result = MakeDirectory(BasePath.c_str());
if (!Result)
{
std::cerr << "Failed to make directory: " << BasePath << std::endl;
return Result;
}
FullFilePath = BasePath + '/' + Name;
std::ofstream File(FullFilePath, std::ios::app);
if (!File.is_open())
{
std::cerr << "Failed to open file: " << FullFilePath << std::endl;
return false;
}
File << Prime << "\n";
File.close();
return !File.fail();
}
bool PrimeFileIo::WritePrimeToBinaryFile(const std::string& BasePath, const std::string& Name, const std::string& Prime)
{
bool Result;
Result = CreatePrimeFile(BasePath, Name);
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to create file" << std::endl;
return Result;
}
// If the file is non-empty, then it will save some time
Result = GetFirstPrimeFromFile();
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to read first prime from file." << std::endl;
return Result;
}
mpz_class Current(Prime, STRING_BASE);
if (First != 0)
{
Current -= First;
}
else
{
First = Current;
}
if (mpz_out_raw(File.get(), Current.get_mpz_t()) == 0)
{
std::cerr << "Failed writing first prime to file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
return true;
}
bool PrimeFileIo::WritePrimesToTextFile(const std::string& BasePath, const std::string& Name, const mpz_list& Primes)
{
bool Result;
Result = MakeDirectory(BasePath.c_str());
if (!Result)
{
std::cerr << "Failed to make directory: " << BasePath << std::endl;
return Result;
}
FullFilePath = BasePath + '/' + Name;
std::ofstream File(FullFilePath, std::ios::out | std::ios::app);
if (!File.is_open())
{
std::cerr << "Failed to open file: " << FullFilePath << std::endl;
return false;
}
for (const mpz_class& p : Primes)
{
File << p.get_str(STRING_BASE) << "\n";
}
File.close();
return !File.fail();
}
bool PrimeFileIo::WritePrimesToTextFile(const std::string& BasePath, const std::string& Name, const std::vector<std::unique_ptr<char[]>>& Primes)
{
bool Result;
Result = MakeDirectory(BasePath.c_str());
if (!Result)
{
std::cerr << "Failed to make directory: " << BasePath << std::endl;
return Result;
}
FullFilePath = BasePath + '/' + Name;
std::ofstream File(FullFilePath, std::ios::out | std::ios::app);
if (!File.is_open())
{
std::cerr << "Failed to open file: " << FullFilePath << std::endl;
return false;
}
for (auto& p : Primes)
{
File << p.get() << "\n";
}
File.close();
return !File.fail();
}
mpz_list PrimeFileIo::ReadPrimesFromTextFile(const std::string& FullFilePath)
{
mpz_list Primes;
mpz_class Current;
std::ifstream PrimeFile(FullFilePath, std::ios::in);
std::string CurrentStr;
if (!std::getline(PrimeFile, CurrentStr))
{
std::cerr << "Failed reading first prime from file, " << FullFilePath << std::endl;
PrimeFile.close();
return Primes;
}
mpz_class First(CurrentStr, STRING_BASE);
Primes.push_back(First);
while (std::getline(PrimeFile, CurrentStr))
{
Current = mpz_class(CurrentStr, STRING_BASE);
//Current += First; // TODO: uncomment when implement differencing to text path
Primes.push_back(Current);
}
if (PrimeFile.fail())
{
std::cerr << "Failed to read from file, " << FullFilePath << std::endl;
}
PrimeFile.close();
return Primes;
}
bool PrimeFileIo::WritePrimesToBinaryFile(const std::string& BasePath, const std::string& Name, const mpz_list& Primes)
{
bool Result;
Result = CreatePrimeFile(BasePath, Name);
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to create file" << std::endl;
return Result;
}
// If the file is non-empty, then it will save some time
Result = GetFirstPrimeFromFile();
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to read first prime from file." << std::endl;
return Result;
}
auto pitr = Primes.begin();
if (First == 0)
{
// The file is new! Write the first prime
if (mpz_out_raw(File.get(), pitr->get_mpz_t()) == 0)
{
std::cerr << "Failed writing first prime to file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
First = *pitr;
++pitr;
}
for (; pitr != Primes.end(); ++pitr)
{
mpz_class Diff(*pitr);
Diff -= First;
if (mpz_out_raw(File.get(), Diff.get_mpz_t()) == 0)
{
if (std::ferror(File.get()))
{
std::cerr << "Failed writing prime to file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
}
}
if (IoCount++ % FlushInterval == 0)
{
std::fflush(File.get());
}
return true;
}
bool PrimeFileIo::WritePrimesToBinaryFile(const std::string& BasePath, const std::string& Name, const std::vector<std::unique_ptr<char[]>>& Primes)
{
bool Result;
Result = CreatePrimeFile(BasePath, Name);
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to create file" << std::endl;
return Result;
}
// If the file is non-empty, then it will save some time
Result = GetFirstPrimeFromFile();
if (!Result)
{
std::cerr << __FUNCTION__ << " failed to read first prime from file." << std::endl;
return Result;
}
auto pitr = Primes.begin();
if (First == 0)
{
mpz_class Temp((*pitr).get(), STRING_BASE);
// The file is new! Write the first prime
if (mpz_out_raw(File.get(), Temp.get_mpz_t()) == 0)
{
std::cerr << "Failed writing first prime to file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
First = Temp;
++pitr;
}
for (;pitr != Primes.end(); ++pitr)
{
mpz_class Current((*pitr).get(), STRING_BASE);
Current -= First;
if (mpz_out_raw(File.get(), Current.get_mpz_t()) == 0)
{
if (std::ferror(File.get()))
{
std::cerr << "Failed writing prime to file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return false;
}
}
}
if (IoCount++ % FlushInterval == 0)
{
std::fflush(File.get());
}
return true;
}
mpz_list PrimeFileIo::ReadPrimesFromBinaryFile(std::string FullFilePath)
{
mpz_list Primes;
mpz_class Current;
SmartFile PrimeFile = make_smartfile(FullFilePath.c_str(), "rb");
if (PrimeFile == nullptr)
{
std::cerr << "Failed to open file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return {};
}
// Read first prime for offset calculations
if (!mpz_inp_raw(First.get_mpz_t(), PrimeFile.get()))
{
std::cerr << "Failed reading first prime from file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return Primes;
}
Primes.push_back(First);
while (!std::feof(PrimeFile.get()) && !std::ferror(PrimeFile.get()))
{
if (!mpz_inp_raw(Current.get_mpz_t(), PrimeFile.get()))
{
if (!std::feof(PrimeFile.get()))
{
std::cerr << "Failed reading prime from file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return Primes;
}
else
{
break;
}
}
Current += First;
Primes.push_back(Current);
}
return Primes;
}
PrimeFileIo::PrimeFileIo(const AllPrimebotSettings & Settings) :
First(0),
Settings(Settings),
File(nullptr, std::fclose)
{
if (Settings.FileSettings.Flags.Binary)
{
FileName = ::GetPrimeFileNameBinary(Settings);
}
else
{
FileName = ::GetPrimeFileName(Settings);
}
if (Settings.FileSettings.Flags.Print)
{
FullFilePath = Settings.FileSettings.Path;
}
}
mpz_list PrimeFileIo::ReadPrimes()
{
if (Settings.FileSettings.Flags.Binary)
{
return ReadPrimesFromBinaryFile(Settings.FileSettings.Path);
}
else
{
return ReadPrimesFromTextFile(Settings.FileSettings.Path);
}
}
bool PrimeFileIo::WritePrime(std::string Prime)
{
if (Settings.FileSettings.Flags.Binary)
{
return WritePrimeToBinaryFile(Settings.FileSettings.Path, FileName, Prime);
}
else
{
return WritePrimeToTextFile(Settings.FileSettings.Path, FileName, Prime);
}
}
bool PrimeFileIo::WritePrimes(const mpz_list & Primes)
{
if (Settings.FileSettings.Flags.Binary)
{
return WritePrimesToBinaryFile(Settings.FileSettings.Path, FileName, Primes);
}
else
{
return WritePrimesToTextFile(Settings.FileSettings.Path, FileName, Primes);
}
}
bool PrimeFileIo::WritePrimes(const std::vector<std::unique_ptr<char[]>>& Primes)
{
if (Settings.FileSettings.Flags.Binary)
{
return WritePrimesToBinaryFile(Settings.FileSettings.Path, FileName, Primes);
}
else
{
return WritePrimesToTextFile(Settings.FileSettings.Path, FileName, Primes);
}
}
void PrimeFileIo::PrintPrimes()
{
if (Settings.FileSettings.Flags.Binary)
{
mpz_class Current;
File = make_smartfile(FullFilePath.c_str(), "rb");
if (File == nullptr)
{
std::cerr << "Failed to open file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return;
}
// Read first prime for offset calculations
if (!mpz_inp_raw(First.get_mpz_t(), File.get()))
{
std::cerr << "Failed reading first prime from file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return;
}
while (!std::feof(File.get()) && !std::ferror(File.get()))
{
if (!mpz_inp_raw(Current.get_mpz_t(), File.get()))
{
if (!std::feof(File.get()))
{
std::cerr << "Failed reading prime from file, " << FullFilePath << ": " << std::strerror(errno) << std::endl;
return;
}
else
{
break;
}
}
Current += First;
gmp_fprintf(stdout, "%Zd\n", Current.get_mpz_t());
}
}
else
{
mpz_list Primes = ReadPrimesFromTextFile(Settings.FileSettings.Path);
for (mpz_class & p : Primes)
{
// Compromise: gmp_printf on windows can't figure out the
// stdio file handles. But this works fine.
gmp_fprintf(stdout, "%Zd\n", p.get_mpz_t());
}
}
}