-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbindiff.cpp
More file actions
72 lines (61 loc) · 1.6 KB
/
bindiff.cpp
File metadata and controls
72 lines (61 loc) · 1.6 KB
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
#include<iostream>
#include<fstream>
using namespace std;
int main(int argc, char *argv[]) {
if(argc != 3) {
cout<<"Provide 2 filenames to compare."<<endl;
return 1;
}
ifstream in1(argv[1]);
if(!in1.is_open()) {
cout<<"Couldn't open file \""<<argv[1]<<"\"."<<endl;
return 2;
}
int size1 = 0;
in1.seekg(0,ios::end);
size1 = in1.tellg();
in1.seekg(0,ios::beg);
ifstream in2(argv[2]);
if(!in2.is_open()) {
cout<<"Couldn't open file \""<<argv[2]<<"\"."<<endl;
return 2;
}
int size2 = 0;
in2.seekg(0,ios::end);
size2 = in2.tellg();
in2.seekg(0,ios::beg);
char buf1[512] = {0};
char buf2[512] = {0};
bool samesize = (size1 == size2);
int mismatch = 0;
int chunks = min(size1,size2)/512;
int rem = min(size1,size2)%512;
for(int i=0; i<chunks;i++) {
in1.read(buf1,512);
in2.read(buf2,512);
for(int j=0;j<512;j++) {
if(buf1[j] != buf2[j]) {
cout<<"Mismatch at "<<i*512+j<<endl;
mismatch++;
}
}
}
in1.read(buf1,rem);
in2.read(buf2,rem);
for(int i=0;i<min(size1,size2)%512;i++) {
if(buf1[i] != buf2[i]) {
cout<<"Mismatch at "<<chunks*512+i<<endl;
mismatch++;
}
}
if(samesize && mismatch==0) {
cout<<"Files are identical."<<endl;
}
else if(mismatch==0) {
cout<<"Files are identical, up to the size of the smaller file."<<endl;
}
else {
cout<<mismatch<<" bytes were different."<<endl;
}
return 0;
}