GraphItem.cpp
10.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
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
#include "stdafx.h"
#include "GraphItem.h"
GraphItem::GraphItem(const char *filename)
{
fin.open(filename);
if (!fin)
throw std::exception("graph file is not available");
graph = new Graph();
read_more();
}
GraphItem::~GraphItem()
{
fin.close();
}
void GraphItem::read_more()
{
/**
* Parse Paper dataset
* - paper_key, [author_list], publish_year
* Column Delimiter: ||
* Author list Delimiter: &&
*/
std::string line;
vector<std::string> tokens;
vector<std::string> authors;
/*vector<pair<string, string>> edges;*/
//vector<simple_edge> edges_indexes;
int line_cnt = 0;
qDebug() << "* graph reading start";
//한 줄씩 읽어서 Parse
int node_cnt = 0;
while (std::getline(fin, line) && !line.empty()) {
//boost::split 이용해 문자열 분리
//tokens[0]: Paper-key. ex) conf/iastedCSN/KeimS06
//tokens[1]: Authors. ex) Werner Keim&&Arpad L. Scholtz
//tokens[2]: Published year.
boost::split(tokens, line, boost::is_any_of("||"), boost::token_compress_on);
boost::split(authors, tokens[1], boost::is_any_of("&&"), boost::token_compress_on);
const string& paper_key = tokens[0];
if (node_ids.left.find(paper_key) == node_ids.left.end()) {
node_ids.insert(bm_type::value_type(paper_key, node_cnt + whole_node_cnt));
++node_cnt;
}
for (auto author : authors) {
edges.push_back(pair<string, string>(paper_key, author));
if (node_ids.left.find(author) == node_ids.left.end()) {
node_ids.insert(bm_type::value_type(author, node_cnt + whole_node_cnt));
++node_cnt;
}
}
//debug
++line_cnt;
if (line_cnt >= READ_LINE_UNIT) break;
}
qDebug() << "* graph reading complete";
qDebug() << "* # of read line: " << line_cnt;
qDebug() << "* # of nodes: " << node_cnt;
//qDebug() << "* # of edges: " << edges.size();
//edge conversion
//<string, string> to <int, int>
//using boost::bimap (bidirectional map)
edges_indexes.clear();
for (auto edge : edges) {
edges_indexes.push_back({
node_ids.left.find(edge.first)->get_right(),
node_ids.left.find(edge.second)->get_right()
});
}
//Graph graph(edges_indexes.begin(), edges_indexes.end(), node_ids.size());
//graph = new Graph(edges_indexes.begin(), edges_indexes.end(), node_ids.size());
//for (auto& e: edges_indexes) {
// boost::add_edge(e.first, e.second, graph);
//}
if (graph) {
delete graph;
graph = nullptr;
}
graph = new Graph(edges_indexes.begin(), edges_indexes.end(), node_ids.size());
//set index property
qDebug() << "* set vertex property start";
vertex_iterator vi, vi_end;
int i = 0;
for (boost::tie(vi, vi_end) = vertices(*graph); vi != vi_end; ++vi) {
//Vertex Property 설정
//index: n ~ ...
//name : map의 value(i) 기준으로 찾은 Key
// map --> map<string, int> (boost bidirectional map)
std::string node_label = node_ids.right.find(i)->get_left();
boost::put(vertex_index, *graph, *vi, i);
boost::put(vertex_name, *graph, *vi, node_label);
boost::put(vertex_record, *graph, *vi, 0);
//qDebug() << "** index: " << i << ", name: " << node_label.c_str();
//node type 설정
if (boost::regex_match(node_label, paper_reg)) {
//Paper
boost::put(vertex_type, *graph, *vi, NODE_TYPE::NODE_PAPER);
} else {
//Author
boost::put(vertex_type, *graph, *vi, NODE_TYPE::NODE_AUTHOR);
}
++i;
}
qDebug() << "* set vertex property end";
whole_node_cnt += node_cnt;
//qDebug("* set edges weight start");
////모든 edge의 weight를 1로 설정
//typename graph_traits<Graph>::edge_iterator ei, ei_end;
//for (boost::tie(ei, ei_end)=boost::edges(*graph); ei!=ei_end; ++ei) {
// boost::put(edge_weight, *graph, *ei, 1);
//}
//qDebug("* set edges weight end");
//
//
//qDebug("* path highlighting start");
////find start, end node's id
//int start_idx, end_idx;
//for (boost::tie(vi, vi_end)=vertices(*graph); vi!=vi_end; ++vi) {
// string node_name = boost::get(vertex_name, *graph, *vi);
// if (node_name == "Seong Chul Cho") {
// start_idx = boost::get(vertex_index, *graph, *vi);
// } else if (node_name == "Hyung Jin Kim") {
// end_idx = boost::get(vertex_index, *graph, *vi);
// }
//}
//typedef boost::graph_traits<Graph>::vertex_descriptor vertex_descriptor;
//vector<vertex_descriptor> parents(num_vertices(*graph));
//vector<int> distances(num_vertices(*graph));
//vertex_descriptor start_vertex = vertex(start_idx, *graph);
//dijkstra_shortest_paths(*graph, start_vertex,
// predecessor_map(&parents[0]).distance_map(&distances[0]));
////path finding
//vertex_descriptor current = boost::vertex(end_idx, *graph);
//while (current != boost::vertex(start_idx, *graph)) {
//}
//qDebug("* path highlighting end");
//graph layout calculation
//using boost::random_graph_layout and boost::kamada_kawai_spring_layout
//vertex마다 계산된 좌표를 property에 적용
//예제 코드: http://www.boost.org/doc/libs/1_63_0/libs/graph/test/layout_test.cpp
//(-> 콘솔 기반)
qDebug() << "* make graph layout start";
minstd_rand gen;
Topology topology(gen, (double)SCREEN_SIZE);
Topology::point_type origin;
origin[0] = origin[1] = (double)SCREEN_SIZE;
Topology::point_difference_type extent;
extent[0] = extent[1] = (double)SCREEN_SIZE;
rectangle_topology<> rect_top(gen,
-SCREEN_SIZE / 2, -SCREEN_SIZE / 2,
SCREEN_SIZE / 2, SCREEN_SIZE / 2);
switch (LAYOUT_MODE) {
case GRAPH_LAYOUT::RANDOM_LAYOUT:
random_graph_layout(*graph, get(vertex_position, *graph), rect_top);
break;
case GRAPH_LAYOUT::CIRCLE_LAYOUT:
circle_graph_layout(*graph, get(vertex_position, *graph), SCREEN_SIZE / 2);
break;
case GRAPH_LAYOUT::FRUCHTERMAN_REINGOLD_LAYOUT:
fruchterman_reingold_force_directed_layout(*graph,
get(vertex_position, *graph),
topology,
attractive_force(square_distance_attractive_force())
.cooling(linear_cooling<double>(50))
);
break;
}
qDebug() << "* make graph layout end";
//clear lists
nodeList.clear();
edgeList.clear();
//add edges
auto position = boost::get(vertex_position, *graph);
auto label = boost::get(vertex_name, *graph);
auto nodeType = boost::get(vertex_type, *graph);
edge_iterator ei, ei_end;
vertex_descriptor u, v;
for (boost::tie(ei, ei_end) = boost::edges(*graph); ei != ei_end; ++ei) {
u = source(*ei, *graph);
v = target(*ei, *graph);
Point p1 = position[u];
Point p2 = position[v];
//make edge item and push it to list
EdgeItem *edge;
edge = new EdgeItem(p1[0], p1[1], p2[0], p2[1], QColor(Qt::black), 0);
edge->setPos(p1[0], p1[1]);
edgeList << edge;
}
//add nodes
for (boost::tie(vi, vi_end) = vertices(*graph); vi != vi_end; ++vi) {
Point p = position[*vi];
auto nt = nodeType[*vi];
std::string name = label[*vi];
//make node item and push it to list
NodeItem *node;
if (nt == NODE_TYPE::NODE_PAPER) {
node = new NodeItem(p[0], p[1], QColor(Qt::darkGreen), QString(name.c_str()), nt);
}
else {
node = new NodeItem(p[0], p[1], QColor(Qt::green), QString(name.c_str()), nt);
}
node->setPos(QPointF(p[0], p[1]));
nodeList << node;
}
}
//override
QRectF GraphItem::boundingRect() const
{
//TODO
return QRectF(-SCREEN_SIZE/2, -SCREEN_SIZE/2, SCREEN_SIZE, SCREEN_SIZE);
}
QPainterPath GraphItem::shape() const
{
QPainterPath path;
return path;
}
void GraphItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
if (!graph)
return;
//print edges
for (auto edge: edgeList) {
edge->paint(painter, option, widget);
}
//print nodes
for (auto node: nodeList) {
node->paint(painter, option, widget);
}
}
void GraphItem::might_know()
{
// 알 수도 있는 연구원 찾기
vertex_iterator vi, vi_end, vtarget;
Graph::adjacency_iterator ai, ai_end;
vector<string> might_know_vec;
auto label = get(vertex_name, *graph);
auto nodeType = get(vertex_type, *graph);
// 회색 색칠
for (auto& n : nodeList) {
if (n->getLabel().toStdString() != TARGET_AUTHOR_NAME) {
n->setColor(QColor(Qt::lightGray));
} else {
n->setColor(QColor(Qt::blue));
}
}
// find target node
for (boost::tie(vi, vi_end) = boost::vertices(*graph); vi!=vi_end; ++vi) {
if (label[*vi] == std::string(TARGET_AUTHOR_NAME)) {
vtarget = vi;
break;
}
}
// bfs
//std::queue<vertex_iterator> q;
//q.push(vtarget);
//while (!q.empty()) {
// /*auto next_vi = q.front();
// q.pop();
// if (nodeType[*next_vi] == NODE_TYPE::NODE_PAPER)
// continue;
// for (boost::tie(ai, ai_end) = boost::adjacent_vertices(*next_vi, *graph);
// ai != ai_end; ++ai) {
// if (nodeType[*ai] == NODE_TYPE::NODE_PAPER)
// continue;
// else
// q.push(ai);
// }*/
//}
for (boost::tie(ai, ai_end) = boost::adjacent_vertices(*vtarget, *graph);
ai != ai_end;
++ai) {
might_know_vec.push_back(label[*ai]);
}
// highlight
for (auto& n: nodeList) {
if (std::find(might_know_vec.begin(), might_know_vec.end(), n->getLabel().toStdString())
!= might_know_vec.end()) {
//found
n->setColor(Qt::red);
}
}
}
void GraphItem::reset_color()
{
for (auto& n: nodeList) {
if (n->getType() == NODE_PAPER) {
n->setColor(QColor(Qt::darkGreen));
} else {
n->setColor(QColor(Qt::green));
}
}
}
void GraphItem::topK_highlight()
{
// 저자 노드별 실적 계산
vertex_iterator vi, vi_end;
Graph::adjacency_iterator ai, ai_end;
auto nodeLabel = boost::get(vertex_name, *graph);
auto nodeType = boost::get(vertex_type, *graph);
auto numOfRecords = boost::get(vertex_record, *graph);
//실적 count 초기화
//for (boost::tie(vi, vi_end) = boost::vertices(*graph); vi != vi_end; ++vi) {
// if (nodeType[*vi] != NODE_TYPE::NODE_AUTHOR) {
// continue;
// }
// boost::put(vertex_record, *graph, *vi, 0);
//}
// <record, label>
TopKHeap<pair<int, string>> heap(TOP_K);
for (boost::tie(vi, vi_end) = boost::vertices(*graph); vi != vi_end; ++vi) {
if (nodeType[*vi] != NODE_TYPE::NODE_AUTHOR) {
continue;
}
int record_cnt = 0;
for (boost::tie(ai, ai_end) = boost::adjacent_vertices(*vi, *graph);
ai != ai_end; ++ai) {
if (nodeType[*ai] == NODE_TYPE::NODE_PAPER) {
++record_cnt;
}
}
boost::put(vertex_record, *graph, *vi, record_cnt);
heap.push(make_pair(record_cnt, nodeLabel[*vi]));
//qDebug() << record_cnt;
}
//get top K records
pair<int, string> topk_arr[TOP_K];
for (int i = 0; i < TOP_K; ++i) {
topk_arr[i] = heap.pop();
qDebug() << "topk["<<i<<"] = " << topk_arr[i].first << ", " << QString::fromStdString(topk_arr[i].second);
}
for (auto& n: nodeList) {
auto label = n->getLabel();
n->setColor(QColor(Qt::lightGray));
for (auto& p: topk_arr) {
if (label.toStdString() == p.second) {
n->setColor(QColor(Qt::red));
break;
}
}
}
}
//event handler
void GraphItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
}
void GraphItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
}
void GraphItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
}