-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
212 lines (188 loc) · 5.72 KB
/
main.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
#include <iostream>
#include <hiredis/hiredis.h>
#include "impl/api/RedisGraph.h"
//#define TEST_EXP
#define TEST_API
// Helper function to deflat the redisReply
void flattenList(redisReply *head)
{
/*Base case*/
if (head == NULL)
return;
redisReply *tmp;
/* Find tail node of first level linked list */
redisReply *tail = head->element[head->elements-1];
// while (tail->element != NULL)
// tail = tail->element;
// One by one traverse through all nodes of first level
// linked list till we reach the tail node
redisReply *cur = head;
while (cur != tail)
{
// If current node has a child
if (cur->element)
{
// then append the child at the end of current list
tail->element = cur->element;
// and update the tail to new last node
tmp = cur->element[0];
while (tmp->next)
tmp = tmp->next;
tail = tmp;
}
// Change current node
cur = cur->next;
}
}
// Helper function to process redisReply to a vector
void print_data(redisReply *reply, std::vector<std::string> &data)
{
if(reply->element == nullptr)
{
std::string data_string;
if(reply->type == REDIS_REPLY_INTEGER){
data_string = std::to_string(reply->integer);
}
else{
data_string = reply->str;
}
std::cout<<data_string<<"\n";
data.push_back(data_string);
}
for(int i=0; i<reply->elements; i++){
print_data(reply->element[i], data);
}
}
void test_implementation()
{
unsigned int j, isunix = 0;
redisContext *c;
redisReply *reply;
redisReader *reader;
reader = redisReaderCreate();
std::vector<std::string> data;
const char *hostname = "127.0.0.1";
int port = 6379;
struct timeval timeout = { 1, 500000 }; // 1.5 seconds
c = redisConnectWithTimeout(hostname, port, timeout);
if (c == NULL || c->err) {
if (c) {
printf("Connection error: %s\n", c->errstr);
redisFree(c);
} else {
printf("Connection error: can't allocate redis context\n");
}
exit(1);
}
// CREATE (:person {name:'Pam', age:27})-[:works {since: 2010}]->(:employer {name:'Dunder Mifflin'})
/* GRAPH server */
// "MATCH (n1)-[r]->(n2) RETURN n1, r, n2.name"
// "CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}), (:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}), (:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"
/**
* 1) 1) "n1"
2) "r"
3) "n2"
2) 1) 1) 1) 1) "id"
2) (integer) 0
2) 1) "labels"
2) 1) "person"
3) 1) "properties"
2) 1) 1) "name"
2) "Pam"
2) 1) "age"
2) (integer) 27
2) 1) 1) "id"
2) (integer) 0
2) 1) "type"
2) "works"
3) 1) "src_node"
2) (integer) 0
4) 1) "dest_node"
2) (integer) 1
5) 1) "properties"
2) 1) 1) "since"
2) (integer) 2010
3) 1) 1) "id"
2) (integer) 1
2) 1) "labels"
2) 1) "employer"
3) 1) "properties"
2) 1) 1) "name"
2) "Dunder Mifflin"
3) 1) "Query internal execution time: 1.476144 milliseconds"
*/
printf("GRAPH.QUERY %s %s", "Test", "MATCH (n1)-[r]->(n2) RETURN n1, r, n2");
reply = (redisReply *)redisCommand(c,"GRAPH.QUERY %s %s %s", "Test", "MATCH (n1)-[r]->(n2) RETURN n1, r, n2", "--compact");
//redisReaderGetReply(reinterpret_cast<redisReader *>(redisReaderCreate), reinterpret_cast<void **>(reply));
redisReply **resultSet = reply->element;
redisReply* temp;
std::vector<redisReply*> stack;
std::set<redisReply*> visited;
print_data(reply, data);
// flattenList(reply);
// int num_elements;
// temp = reply;
// num_elements = reply->elements;
// for(int i=0; i<num_elements; i++)
// {
// stack.push_back(temp->element[i]);
// }
//
// while(true)
// {
// if(stack.empty()){
// break;
// }
// temp = stack[stack.size()-1];
// num_elements = temp->elements;
// for(int i=0; i<=num_elements; i++)
// {
// if(temp->element != nullptr)
// {
// stack.push_back(temp->element[i]);
// temp = stack[stack.size()-1];
// num_elements = temp->elements;
// } else{
// stack.pop_back();
// visited.insert(temp);
// break;
// }
//
// }
// }
//int num_elements = resultSet->elements;
printf("GRAPH: %s\n", reply->str);
freeReplyObject(reply);
// SET Method
reply = (redisReply*)redisCommand(c,"SET foo hello");
printf("SET: %s\n", reply->str);
freeReplyObject(reply);
// GET
reply = (redisReply*)redisCommand(c,"GET foo");
printf("GET foo: %s\n", reply->str);
freeReplyObject(reply);
reply = (redisReply*)redisCommand(c,"PING %s", "Hello World");
printf("RESPONSE: %s\n", reply->str);
printf("error: %s\n", c->errstr);
freeReplyObject(reply);
/* Disconnects and frees the context */
redisFree(c);
}
void test_api()
{
RedisGraph redisGraph;
redisGraph.set_graph("Test");
redisGraph.query("MATCH (n1)-[r]->(n2) RETURN n1, r, n2");
std::vector<std::string> raw_data = redisGraph.get_raw_data();
ResultSet resultSet = redisGraph.getResultSet();
std::cout<<"Done\n";
}
int main(int argc, char **argv) {
#ifdef TEST_EXP
test_implementation();
#endif
#ifdef TEST_API
test_api();
#endif
return 0;
}