-
Notifications
You must be signed in to change notification settings - Fork 9
/
Merge.cpp
329 lines (262 loc) · 7.1 KB
/
Merge.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
#include "Kangaroo.h"
#include <fstream>
#include "SECPK1/IntGroup.h"
#include "Timer.h"
#include <string.h>
#define _USE_MATH_DEFINES
#include <math.h>
#include <algorithm>
#ifndef WIN64
#include <dirent.h>
#include <pthread.h>
#endif
using namespace std;
bool Kangaroo::MergeWork(std::string& file1,std::string& file2,std::string& dest,bool printStat) {
if(IsDir(file1) && IsDir(file2)) {
return MergeWorkPartPart(file1,file2);
}
if(IsDir(file1)) {
return MergeWorkPart(file1,file2,true);
}
if(dest.length()==0) {
::printf("MergeWork: destination argument missing\n");
return true;
}
double t0;
double t1;
uint32_t v1;
uint32_t v2;
t0 = Timer::get_tick();
// ---------------------------------------------------
FILE* f1 = ReadHeader(file1,&v1,HEADW);
if(f1 == NULL)
return false;
uint32_t dp1;
Point k1;
uint64_t count1;
double time1;
Int RS1;
Int RE1;
// Read global param
::fread(&dp1,sizeof(uint32_t),1,f1);
::fread(&RS1.bits64,32,1,f1); RS1.bits64[4] = 0;
::fread(&RE1.bits64,32,1,f1); RE1.bits64[4] = 0;
::fread(&k1.x.bits64,32,1,f1); k1.x.bits64[4] = 0;
::fread(&k1.y.bits64,32,1,f1); k1.y.bits64[4] = 0;
::fread(&count1,sizeof(uint64_t),1,f1);
::fread(&time1,sizeof(double),1,f1);
k1.z.SetInt32(1);
if(!secp->EC(k1)) {
::printf("MergeWork: key1 does not lie on elliptic curve\n");
fclose(f1);
return true;
}
// ---------------------------------------------------
FILE* f2 = ReadHeader(file2,&v2,HEADW);
if(f2 == NULL) {
fclose(f1);
return true;
}
uint32_t dp2;
Point k2;
uint64_t count2;
double time2;
Int RS2;
Int RE2;
// Read global param
::fread(&dp2,sizeof(uint32_t),1,f2);
::fread(&RS2.bits64,32,1,f2); RS2.bits64[4] = 0;
::fread(&RE2.bits64,32,1,f2); RE2.bits64[4] = 0;
::fread(&k2.x.bits64,32,1,f2); k2.x.bits64[4] = 0;
::fread(&k2.y.bits64,32,1,f2); k2.y.bits64[4] = 0;
::fread(&count2,sizeof(uint64_t),1,f2);
::fread(&time2,sizeof(double),1,f2);
if(v1 != v2) {
::printf("MergeWork: cannot merge workfile of different version\n");
fclose(f1);
fclose(f2);
return true;
}
k2.z.SetInt32(1);
if(!secp->EC(k2)) {
::printf("MergeWork: key2 does not lie on elliptic curve\n");
fclose(f1);
fclose(f2);
return true;
}
if(!RS1.IsEqual(&RS2) || !RE1.IsEqual(&RE2)) {
::printf("MergeWork: File range differs\n");
::printf("RS1: %s\n",RS1.GetBase16().c_str());
::printf("RE1: %s\n",RE1.GetBase16().c_str());
::printf("RS2: %s\n",RS2.GetBase16().c_str());
::printf("RE2: %s\n",RE2.GetBase16().c_str());
fclose(f1);
fclose(f2);
return true;
}
if(!k1.equals(k2)) {
::printf("MergeWork: key differs, multiple keys not yet supported\n");
fclose(f1);
fclose(f2);
return true;
}
::printf("File %s: [DP%d]\n",file1.c_str(),dp1);
::printf("File %s: [DP%d]\n",file2.c_str(),dp2);
endOfSearch = false;
// Set starting parameters
keysToSearch.clear();
keysToSearch.push_back(k1);
keyIdx = 0;
collisionInSameHerd = 0;
rangeStart.Set(&RS1);
rangeEnd.Set(&RE1);
InitRange();
InitSearchKey();
t0 = Timer::get_tick();
#ifndef WIN64
setvbuf(stdout, NULL, _IONBF, 0);
#endif
::printf("Merging");
// Open output file
string tmpName = dest + ".tmp";
FILE* f = fopen(tmpName.c_str(),"wb");
if(f == NULL) {
::printf("\nMergeWork: Cannot open %s for writing\n",tmpName.c_str());
::printf("%s\n",::strerror(errno));
fclose(f1);
fclose(f2);
return true;
}
dpSize = (dp1 < dp2) ? dp1 : dp2;
if( !SaveHeader(tmpName,f,HEADW,count1 + count2,time1 + time2) ) {
fclose(f1);
fclose(f2);
fclose(f);
return true;
}
uint64_t nbDP = 0;
uint32_t hDP;
uint32_t hDuplicate;
Int d1;
uint32_t type1;
Int d2;
uint32_t type2;
for(uint32_t h=0;h<HASH_SIZE && !endOfSearch;h++) {
if(h % (HASH_SIZE / 64) == 0) ::printf(".");
int mStatus = HashTable::MergeH(h,f1,f2,f,&hDP,&hDuplicate,&d1,&type1,&d2,&type2);
switch(mStatus) {
case ADD_OK:
break;
case ADD_COLLISION:
CollisionCheck(&d1,type1,&d2,type2);
break;
}
nbDP += hDP;
collisionInSameHerd += hDuplicate;
}
fclose(f1);
fclose(f2);
fclose(f);
t1 = Timer::get_tick();
if(!endOfSearch) {
remove(dest.c_str());
rename(tmpName.c_str(),dest.c_str());
::printf("Done [%s]\n",GetTimeStr(t1-t0).c_str());
} else {
// remove tmp file
remove(tmpName.c_str());
return true;
}
if(printStat) {
#ifdef WIN64
::printf("Dead kangaroo: %I64d\n",collisionInSameHerd);
#else
::printf("Dead kangaroo: %" PRId64 "\n",collisionInSameHerd);
#endif
::printf("Total f1+f2: DP count 2^%.2f\n",log2((double)nbDP));
} else {
offsetTime = time1 + time2;
offsetCount = count1 + count2;
}
return false;
}
typedef struct File {
std::string name;
uint64_t size;
} File;
bool sortBySize(const File& lhs,const File& rhs) { return lhs.size > rhs.size; }
void Kangaroo::MergeDir(std::string& dirName,std::string& dest) {
vector<File> listFiles;
#ifdef WIN64
WIN32_FIND_DATA ffd;
HANDLE hFind;
hFind = FindFirstFile((dirName.c_str()+string("\\*")).c_str(),&ffd);
if( hFind==INVALID_HANDLE_VALUE ) {
::printf("FindFirstFile Error: %d\n",GetLastError());
return;
}
do {
if((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)==0) {
uint32_t version;
string fName = dirName.c_str() + string("\\") + string(ffd.cFileName);
FILE *f = ReadHeader(fName,&version,HEADW);
if(f) {
File e;
e.name = fName;
_fseeki64(f,0,SEEK_END);
e.size = (uint64_t)_ftelli64(f);
listFiles.push_back(e);
fclose(f);
}
}
} while(FindNextFile(hFind,&ffd) != 0);
FindClose(hFind);
#else
DIR *dir;
struct dirent *ent;
if ((dir = opendir(dirName.c_str())) != NULL) {
while ((ent = readdir(dir)) != NULL) {
if ( ent->d_type != 0x8) continue;
uint32_t version;
string fName = dirName + "/" + string(ent->d_name);
FILE *f = ReadHeader(fName,&version,HEADW);
if(f) {
File e;
e.name = fName;
fseeko(f,0,SEEK_END);
e.size = (uint64_t)ftello(f);
listFiles.push_back(e);
fclose(f);
}
}
closedir(dir);
} else {
::printf("opendir(%s) Error:\n",dirName.c_str());
perror("");
return;
}
#endif
std::sort(listFiles.begin(),listFiles.end(),sortBySize);
int lgth = (int)listFiles.size();
if(IsDir(dest)==1) {
// Partitioned merge
bool end = false;
for(int i = 0; i < lgth && !end; i++) {
::printf("\n## File #%d/%d\n",i+1,lgth);
end = MergeWorkPart(dest,listFiles[i].name,i == lgth - 1);
}
} else {
// Standard merge
if(listFiles.size() < 2) {
::printf("MergeDir: less than 2 work files in the directory\n");
return;
}
int i = 0;
::printf("\n## File #1/%d\n",lgth - 1);
bool end = MergeWork(listFiles[0].name,listFiles[1].name,dest,lgth == 2);
for(int i = 2; i < lgth && !end; i++) {
::printf("\n## File #%d/%d\n",i,lgth - 1);
end = MergeWork(dest,listFiles[i].name,dest,i == lgth - 1);
}
}
}