main.cpp
4.12 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
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
#include <cstdio>
#include <cinttypes> //PRId64
#include <exception>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <boost/regex.hpp>
#include <rapidjson/document.h>
#include <rapidjson/istreamwrapper.h>
#include <rapidjson/reader.h>
using namespace std;
const char* DBLP_FILENAME = "dblp.json";
const char* DBLP_COAUTHOR_FILENAME = "tmp_dblp_coauthorship.json";
const string COLUMN_DELIMITER = "||";
const string AUTHOR_DELIMITER = "&&";
boost::regex paper_reg{"(conf|journals).*"};
struct PaperRecord {
string paper_key;
vector<string> authors;
unsigned int year;
void write(ofstream& fout) {
fout << paper_key << COLUMN_DELIMITER;
for (auto it=authors.begin(); it!=authors.end(); ++it) {
if (it != authors.begin()) {
fout << AUTHOR_DELIMITER;
}
fout << *it;
}
fout << COLUMN_DELIMITER << year << endl;
}
void clear() {
paper_key.clear();
authors.clear();
year = 1;
}
void add_author(string str) {
authors.push_back(str);
}
};
struct DblpPaperHandler {
bool whole_array = false;
bool is_record = false;
bool is_authors = false;
bool is_paper = false;
uint64_t record_count = 0;
PaperRecord paper;
ofstream& ofs;
DblpPaperHandler(ofstream& fout)
: ofs(fout) {
}
//
bool Null() {
return true;
}
bool Bool(bool b) {
//cout << "Bool(" << boolalpha << b << ")" << endl;
return true;
}
bool Int(int i) {
//cout << "Int(" << i << ")" << endl;
return true;
}
bool Uint(unsigned u) {
//cout << "Uint(" << u << ")" << endl;
if (is_paper) {
paper.year = u;
}
return true;
}
bool Int64(int64_t i) {
//cout << "Int64(" << i << ")" << endl;
return true;
}
bool Uint64(uint64_t u) {
//cout << "Uint64(" << u << ")" << endl;
return true;
}
bool Double(double d) {
//cout << "Double(" << d << ")" << endl;
return true;
}
bool RawNumber(const char* str, rapidjson::SizeType length, bool copy) {
//cout << "Number(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
return true;
}
bool String(const char* str, rapidjson::SizeType length, bool copy) {
if (is_record) {
if (is_authors) {
if (!is_paper)
return true;
paper.add_author(string(str));
} else {
if (boost::regex_match(str, paper_reg)) {
is_paper = true;
paper.paper_key = string(str);
}
}
}
return true;
}
bool StartObject() {
//cout << "StartObject()" << endl;
return true;
}
bool Key(const char* str, rapidjson::SizeType length, bool copy) {
//cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
return true;
}
bool EndObject(rapidjson::SizeType memberCount) {
//cout << "EndObject(" << memberCount << ")" << endl;
return true;
}
bool StartArray() {
if (!whole_array) {
whole_array = true;
} else if (!is_record) {
is_record = true;
} else if (!is_authors) {
is_authors = true;
}
return true;
}
bool EndArray(rapidjson::SizeType elementCount) {
if (is_record) {
if (is_authors) {
is_authors = false;
} else {
if (is_paper) {
paper.write(ofs);
paper.clear();
}
is_record = false;
is_paper = false;
++record_count;
if (record_count % 100000 == 0) {
printf("* [%" PRIu64 "] \n", record_count);
}
}
} else {
whole_array = false;
printf("* total paper record: [%" PRIu64 "]\n", record_count);
}
return true;
}
};
int main() {
try {
ifstream dblp_paper_in, dblp_coauthor_in;
ofstream dblp_paper_out, dblp_coauthor_out;
dblp_paper_in.open(DBLP_FILENAME);
dblp_paper_out.open((string(DBLP_FILENAME)+string(".out")).c_str());
if (!dblp_paper_in || !dblp_paper_out) {
throw exception("dblp paper file");
}
DblpPaperHandler paper_handler(dblp_paper_out);
rapidjson::IStreamWrapper dblp_paper_isw(dblp_paper_in);
rapidjson::Reader reader;
reader.Parse(dblp_paper_isw, paper_handler);
//release
if (dblp_paper_in) dblp_paper_in.close();
if (dblp_paper_out) dblp_paper_out.close();
if (dblp_coauthor_in) dblp_coauthor_in.close();
if (dblp_coauthor_out) dblp_coauthor_out.close();
}
catch (const exception& e) {
cerr << "Error: " << e.what() << endl;
return -1;
}
return 0;
}