-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
82 lines (56 loc) · 1.43 KB
/
main.cpp
File metadata and controls
82 lines (56 loc) · 1.43 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
#include <iostream>
#include "C/Controller.h"
#include <pthread.h>
#include <chrono>
#include <thread>
#if (__linux__)
#include<X11/Xlib.h>
#endif
class Thread
{
public:
static void* listen(void * param)
{
Controller * controller = (Controller*) param;
while(controller->getServerStatus())
{
controller->listen();
}
pthread_exit(0);
}
};
int main()
{
#if (__linux__)
if(!XInitThreads())return 0;
#endif
Controller *controller=new Controller(new Server(6000),new View());
pthread_t thread;
pthread_attr_t attr;
pthread_attr_init(&attr);
if(controller->start())
{
std::cout<<"Server Start"<<std::endl;
if (controller->bind())
{
std::cout<<"Waiting to connect..."<<std::endl;
if (controller->listen())
{
pthread_create(&thread, &attr, Thread::listen, controller);
while (true)
{
if(controller->getConnectionClientCount()<=0)break;
if (controller->read_write())
{
controller->printMessage();
}
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
}
}
}
std::cout<<"Error code ";
controller->printErrorCode();
delete controller;
return EXIT_SUCCESS;
}