-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
92 lines (53 loc) · 1.4 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
#include <iostream>
#include <string>
#include <fstream>
#include <boost/asio.hpp>
#include <boost/asio/spawn.hpp>
#include <boost/coroutine/all.hpp>
#include <db_connector.h>
#include <global_dcl.h>
#include <connection.h>
#include <compressor_module.h>
#include <hash_module.h>
using namespace std;
class conn {
public:
void start_server();
bool get_server_status();
conn(boost::asio::io_context& ctx, domain end_p_url)
: server(ctx, end_p_url) {
cout << "loading server " << endl;
}
private:
connections server;
hasher_class hasher;
shrink_operands shrink;
};
void conn::start_server() {
connectToDatabase();
auto env_writter=[&](){
std::ofstream path(ENV);
if (path.is_open()){
try{
std::string gen=hasher.hash(this->shrink.compress(GLOBAL));
path<<gen<<endl;
path.close();
} catch(const std::exception e){
cout<<"unable to write env - "<<e.what()<<endl;
};
};
};
env_writter();
server.start_server();
}
bool conn::get_server_status() {
return server.get_status();
};
int main(){
domain url{"localhost", "8080"};
boost::asio::io_context context;
conn server(context, url);
server.start_server();
context.run();
return 0;
}