-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakebin.cc
64 lines (58 loc) · 1.25 KB
/
makebin.cc
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
#include <errno.h>
#include <iostream>
#include <stdio.h>
#include <fstream>
#include <backward/strstream>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <math.h>
using namespace std;
#define ITSZ sizeof(int)
const int lineSize=1024*1024;
const int wdSize=256;
ifstream fin;
ofstream fout;
void convbin(char *inBuf, int inSize)
{
char inStr[wdSize];
istrstream ist(inBuf, inSize);
int it;
ist >> inStr;
int cid = atoi(inStr);
ist >> inStr;
int tid = atoi(inStr);
ist >> inStr;
int nitems = atoi(inStr);
fout.write((char*)&cid, ITSZ);
fout.write((char*)&tid, ITSZ);
fout.write((char*)&nitems, ITSZ);
for (int i=0; i < nitems; ++i){
ist >> inStr;
it = atoi(inStr);
//cout << it << " ";
fout.write((char*)&it, ITSZ);
}
//cout << endl;
}
int main(int argc, char **argv)
{
char inBuf[lineSize];
int inSize;
fin.open(argv[1]);
if (!fin){
perror("cannot open in file");
exit(errno);
}
fout.open(argv[2]);
if (!fout){
perror("cannot open out file");
exit(errno);
}
while(fin.getline(inBuf, lineSize)){
inSize = fin.gcount();
//cout << "IN SIZE " << inSize << endl;
convbin(inBuf, inSize);
}
}