-
Notifications
You must be signed in to change notification settings - Fork 4
/
write_to_db.cpp
299 lines (248 loc) · 10.6 KB
/
write_to_db.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
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
//clear; rm -frv write_to_db.o; g++-7 -g -fPIC -Wall -c write_to_db.cpp
//C_C++ Header
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdio.h>
#include <string>
#include <string.h>
#include <cstring>
//algorithm fürs string klein machen
#include <algorithm>
//Zum Casten von Char Hex Array nach string (bei md5sum)
#include <iomanip>
#include <iostream>
#include <vector>
#include <sys/time.h>
#include <sstream>
#include <fstream>
#include <pthread.h>
#include <thread>
#include <time.h>
//Network Header
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <netdb.h>
#include <string.h>
#include <stdlib.h>
#include <vector>
#include <algorithm>
#include <iterator>
using namespace std;
extern string write_block_to_db;
extern vector<string> config_file_parameter;
extern bool datensatz_existiert;
extern string pure_bc_block;
bool invalidChar (char c)
{
return !(c>=0 && c <128);
}
void write_to_db()
{
//cout<<"WRITE TO LOCAL REDIS"<<endl;
//write_block_to_db = "ZURÜCK" ;
//cout<<"\e[1m"<<"write_to_db.cpp"<<"\e[0m"<<endl;
//####################################################################
//Debug to File by sap_bcc.cpp
//ofstream debug_file_1;
//debug_file_1.open ("/tmp/bc_server.cpp_debug_file.log", ios::app );
//####################################################################
//cout<<"write_to_db.cpp z55 write_block_to_db UNGEFILTERT#"<<write_block_to_db<<"#"<<endl;
//Newline \n abschneiden###
int wo_ist_newline = -1;
int wo_ist_cr = -1;
//wo_ist_newline = write_block_to_db.find_last_not_of("\n");
//cout<<"wo_ist_newline#"<<wo_ist_newline<<endl;
//write_block_to_db = write_block_to_db.substr(wo_ist_newline + 1, write_block_to_db.length() );
try{write_block_to_db = write_block_to_db.substr(wo_ist_newline + 1, write_block_to_db.length() );}catch( std::out_of_range& exception ){cout<<"Error write_to_db.cpp write_block_to_db std::out_of_range"<<endl;}
wo_ist_newline = write_block_to_db.find("\n");
if(wo_ist_newline != -1)
{
//write_block_to_db = write_block_to_db.erase(write_block_to_db.find_last_not_of("\n"));
//write_block_to_db = write_block_to_db.erase(write_block_to_db.find_last_not_of("\r\n"));
char chars[] = "\n";
for (unsigned int i = 0; i < strlen(chars); ++i)
{
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars[i]), write_block_to_db.end());
}
wo_ist_cr = write_block_to_db.find("\r");
//write_block_to_db = write_block_to_db.substr(wo_ist_cr,write_block_to_db.length());
try{write_block_to_db = write_block_to_db.substr(wo_ist_cr,write_block_to_db.length());}catch( std::out_of_range& exception ){cout<<"Error write_to_db.cpp write_block_to_db std::out_of_range"<<endl;}
char chars2[] = "\r";
for (unsigned int j = 0; j < strlen(chars2); ++j)
{
// you need include <algorithm> to use general algorithms like std::remove()
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars2[j]), write_block_to_db.end());
}
char chars3[] = "\"";
for (unsigned int k = 0; k < strlen(chars3); ++k)
{
// you need include <algorithm> to use general algorithms like std::remove()
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars3[k]), write_block_to_db.end());
}
/*
//\x0b\x99\x7f entfernen Obacht beim späteren validieren der Ketten !!!!!!!!!!!!!!!!!!!!!
char chars4[] = "x0b@";
for (unsigned int l = 0; l < strlen(chars4); ++l)
{
// you need include <algorithm> to use general algorithms like std::remove()
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars4[l]), write_block_to_db.end());
}
char chars5[] = "x99@";
for (unsigned int m = 0; m < strlen(chars5); ++m)
{
// you need include <algorithm> to use general algorithms like std::remove()
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars5[m]), write_block_to_db.end());
}
char chars6[] = "x7f@";
for (unsigned int n = 0; n < strlen(chars6); ++n)
{
// you need include <algorithm> to use general algorithms like std::remove()
write_block_to_db.erase(std::remove(write_block_to_db.begin(), write_block_to_db.end(), chars6[n]), write_block_to_db.end());
}
*/
}
write_block_to_db.erase(remove_if(write_block_to_db.begin(),write_block_to_db.end(), invalidChar), write_block_to_db.end());
//############################
//Alles bis zu bc-id entfernen
int wo_ist_bc_id = -1;
wo_ist_bc_id = write_block_to_db.find("bc-id:");
//cout<<"wo_ist_bc_id#"<<wo_ist_bc_id<<"#"<<endl;
if (wo_ist_bc_id > 0)
{
try{write_block_to_db = write_block_to_db.substr(wo_ist_bc_id,write_block_to_db.length());}catch( std::out_of_range& exception ){cout<<"Error write_to_db.cpp write_block_to_db std::out_of_range"<<endl;}
//cout<<"SCHREIBE DATENSATZ in DB in write_to_db.cpp z. 132#"<<write_block_to_db<<"#"<<endl;
}
//#########################
//cout<<"write_to_db.cpp z122 write_block_to_db GEFILTERT#"<<write_block_to_db<<"#"<<endl;
//cout<<"SCHREIBE DATENSATZ in DB in write_to_db.cpp z. 140#"<<write_block_to_db<<"#"<<endl;
//cout<<"SCHREIBE DATENSATZ in DB#"<<endl;
//################################################################################################################################################
/*
pure_bc_block = write_block_to_db;
cout<<"pure_bc_block in write_to_db.cpp#"<<pure_bc_block<<"#"<<endl;
//int finde_dollar_minus_1 = - 1 ;
//finde_dollar_minus_1 = pure_bc_block.find("$-1");
//if (pure_bc_block == "$-1\n")
//if (finde_dollar_minus_1 != -1)
if (pure_bc_block == "")
{
cout<<"pure_bc_block bzw. write_block_to_db ist LEER"<<endl;
cout<<"ENDE RETURN"<<endl;
return;
}
*/
/*
else
{
//cout<<"jump into filter_pure_bc_block.cpp from write_to_db.cpp"<<endl;
//void filter_pure_bc_block();
//filter_pure_bc_block();
//Filter
cout<<"jump into check_block_exists.cpp from write_to_db.cpp"<<endl;
void check_block_exists();
check_block_exists();
if (datensatz_existiert == true)
{
cout<<"Block EXISTIERT write_to_db.cpp z.57"<<endl;
datensatz_existiert = false;
return;
}
cout<<"durchführe write_to_db.cpp"<<endl;
//datensatz_existiert = false;
}
*/
//################################################################################################################################################
/*
//#####Sucher HEX Zeichen "\xAB usw.
int find_hex = - 1 ;
find_hex = write_block_to_db.find("\\x");
cout<<"hex gefunden pos:"<<find_hex<<endl;
*/
/*
int find_x7f = -1;
find_x7f = write_block_to_db.find("-220\\^\?");
cout<<"find_x7f#"<<find_x7f<<endl;
//write_block_to_db.erase(write_block_to_db(write_block_to_db.begin(),write_block_to_db.end(), invalidChar), write_block_to_db.end());
if (find_x7f != -1)
{
cout<<"write_block_to_db 1#"<<write_block_to_db<<endl;
//write_block_to_db.erase(write_block_to_db.find_last_not_of("x7f"));
write_block_to_db.erase(write_block_to_db.find_last_not_of("-220^?"));
cout<<"find_x7f"<<find_x7f<<endl;
cout<<"write_block_to_db 2#"<<write_block_to_db<<endl;
cout<<"gelöscht x7f"<<endl;
}
*/
//cout<<"write_block_to_db 2#"<<write_block_to_db<<endl;
int s4 = 666;
//string bc_peer = "127.0.0.1";
string bc_peer = config_file_parameter[2];
//string bc_peer_port = "6379";
string bc_peer_port = config_file_parameter[3];
//bc_peer = erreichbare_peers[i];
//bc_peer = "172.17.190.80";
//cout<<"bc_peer#"<<bc_peer<<endl;
//cout<<"Lese vorhandene Block Ketten ein"<<endl;
struct hostent *host;//Hostname struktuieren
host = gethostbyname(bc_peer.c_str()); //eventuell die IP in DNS Namen umwandeln
struct sockaddr_in addr;
addr.sin_addr = *(struct in_addr*)host->h_addr;
//int s;
s4 = socket(PF_INET, SOCK_STREAM, 0); //Socket aufbauen. wenn -1 dann ist fehlgeschlagen
int bc_peer_port_int = atoi(bc_peer_port.c_str());
addr.sin_port = htons(bc_peer_port_int);//Connection Portnummer des Servers festlegen
addr.sin_family = AF_INET;
int connect_status = 666;
if (connect_status == -1)
{
cout<<"Socket error auf der Gegenseite# "<<connect_status<<endl;
//continue;
exit(666);
}
//connect() timeout setzen //http://openbook.rheinwerk-verlag.de/linux_unix_programmierung/Kap11-015.htm#RxxKap11015040003941F043100 //https://stackoverflow.com/questions/2597608/c-socket-connection-timeout
struct timeval timeout;
timeout.tv_sec = 10;
timeout.tv_usec = 0;
setsockopt (s4, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof (timeout));
setsockopt (s4, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof (timeout));
connect_status = connect(s4,(struct sockaddr*)&addr, sizeof(addr)); //http://pubs.opengroup.org/onlinepubs/009695399/functions/connect.html
//Redis Command Anzahl der Werte in der Liste
//string bc_command = "LLEN blockchain_list\r\n";
string bc_command;
//bc_command = "flushall\r\n";
//cout<<"bc_command#"<<bc_command<<"#"<<endl;
//send(s4, bc_command.c_str(), bc_command.length(),0);//Daten senden
//bc_command = "LPUSH 'blockchain_list' '" + write_block_to_db + "'\r\n";
bc_command = "LPUSH \"blockchain_list\" \"" + write_block_to_db + "\"\r\n";
//cout<<"bc_command in write_to_db.cpp z249#"<<bc_command<<"#"<<endl;
//cout<<"bc_command in write_to_db.cpp z250 ###"<<write_block_to_db<<"###"<<endl;
send(s4, bc_command.c_str(), bc_command.length(),0);//Daten senden
//cout<<"bc_command z. 207#"<<bc_command<<endl;
//bc_command = "RPOPLPUSH \"blockchain_list\" \"" + write_block_to_db + "\"\r\n";
//redis-cli RPOPLPUSH blockchain_list
string redis_quit_command = "quit\r\n" ;
char* request2 = (char*)redis_quit_command.c_str();
int send_status = 666;
send_status = send(s4, request2, strlen(request2),0);
//cout<<"send_status QUIT#"<<send_status<<endl;
ssize_t bytes_1 = 0;
char response[1024];
bytes_1 = recv(s4, response, sizeof(response), 0);
//cout<<"response QUIT#"<<response<<endl;
bzero (response, sizeof(response));
//cout<<"leere write_block_to_db und pure_bc_block in write_block_to_db.cpp"<<endl;
//write_block_to_db = "";
//pure_bc_block = "";
//cout<<"ENDE write_to_db.cpp"<<endl;
//cout<<"\t"<<endl;
//cout<<"##########################################################################################################################"<<endl;
close(s4);
//debug_file_1<<"write_to_db.cpp z216 bc_command#"<<bc_command<<"#"<<endl;
//###################################################
//Debug file schliesen.
//debug_file_1.close();
//###################################################
}