mainapp.cpp
6.87 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
#include "mainapp.h"
#include "cassert"
#include "exceptions.h"
#define MAX_EVENTS 1024
#define NR_OF_THREADS 4
MainApp *MainApp::instance = nullptr;
void do_thread_work(ThreadData *threadData)
{
int epoll_fd = threadData->epollfd;
struct epoll_event events[MAX_EVENTS];
memset(&events, 0, sizeof (struct epoll_event)*MAX_EVENTS);
std::vector<MqttPacket> packetQueueIn;
uint64_t eventfd_value = 0;
while (threadData->running)
{
if (eventfd_value > 0)
{
for (Client_p client : threadData->getReadyForDequeueing())
{
//client->queuedMessagesToBuffer();
client->writeBufIntoFd();
}
threadData->clearReadyForDequeueing();
eventfd_value = 0;
}
int fdcount = epoll_wait(epoll_fd, events, MAX_EVENTS, 100);
if (fdcount < 0)
{
if (errno == EINTR)
continue;
std::cerr << "Problem waiting for fd: " << strerror(errno) << std::endl;
}
else if (fdcount > 0)
{
for (int i = 0; i < fdcount; i++)
{
struct epoll_event cur_ev = events[i];
int fd = cur_ev.data.fd;
// If this thread was actively woken up.
if (fd == threadData->event_fd)
{
read(fd, &eventfd_value, sizeof(uint64_t));
continue;
}
Client_p client = threadData->getClient(fd);
if (client)
{
try
{
if (cur_ev.events & EPOLLIN)
{
bool readSuccess = client->readFdIntoBuffer();
client->bufferToMqttPackets(packetQueueIn, client);
if (!readSuccess)
{
std::cout << "Disconnect: " << client->repr() << std::endl;
threadData->removeClient(client);
continue;
}
}
if (cur_ev.events & EPOLLOUT)
{
if (!client->writeBufIntoFd())
{
threadData->removeClient(client);
continue;
}
if (client->readyForDisconnecting())
{
threadData->removeClient(client);
continue;
}
}
if (cur_ev.events & (EPOLLERR | EPOLLHUP))
{
threadData->removeClient(client);
}
}
catch(std::exception &ex)
{
std::cerr << "Packet read/write error: " << ex.what() << std::endl;
threadData->removeClient(client);
}
}
}
}
for (MqttPacket &packet : packetQueueIn)
{
try
{
packet.handle(threadData->getSubscriptionStore());
}
catch (std::exception &ex)
{
std::cerr << "MqttPacket handling error: " << ex.what() << std::endl;
threadData->removeClient(packet.getSender());
}
}
packetQueueIn.clear();
}
}
MainApp::MainApp() :
subscriptionStore(new SubscriptionStore())
{
}
MainApp *MainApp::getMainApp()
{
if (instance == nullptr)
instance = new MainApp();
return instance;
}
void MainApp::start()
{
int listen_fd = check<std::runtime_error>(socket(AF_INET, SOCK_STREAM, 0));
// Not needed for now. Maybe I will make multiple accept threads later, with SO_REUSEPORT.
int optval = 1;
check<std::runtime_error>(setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT, &optval, sizeof(optval)));
int flags = fcntl(listen_fd, F_GETFL);
check<std::runtime_error>(fcntl(listen_fd, F_SETFL, flags | O_NONBLOCK ));
struct sockaddr_in in_addr;
in_addr.sin_family = AF_INET;
in_addr.sin_addr.s_addr = INADDR_ANY;
in_addr.sin_port = htons(1883);
check<std::runtime_error>(bind(listen_fd, (struct sockaddr *)(&in_addr), sizeof(struct sockaddr_in)));
check<std::runtime_error>(listen(listen_fd, 1024));
int epoll_fd_accept = check<std::runtime_error>(epoll_create(999));
struct epoll_event events[MAX_EVENTS];
struct epoll_event ev;
memset(&ev, 0, sizeof (struct epoll_event));
memset(&events, 0, sizeof (struct epoll_event)*MAX_EVENTS);
ev.data.fd = listen_fd;
ev.events = EPOLLIN;
check<std::runtime_error>(epoll_ctl(epoll_fd_accept, EPOLL_CTL_ADD, listen_fd, &ev));
for (int i = 0; i < NR_OF_THREADS; i++)
{
std::shared_ptr<ThreadData> t(new ThreadData(i, subscriptionStore));
std::thread thread(do_thread_work, t.get());
t->moveThreadHere(std::move(thread));
threads.push_back(t);
}
std::cout << "Listening..." << std::endl;
uint next_thread_index = 0;
started = true;
while (running)
{
int num_fds = epoll_wait(epoll_fd_accept, events, MAX_EVENTS, 100);
if (num_fds < 0)
{
if (errno == EINTR)
continue;
std::cerr << strerror(errno) << std::endl;
}
for (int i = 0; i < num_fds; i++)
{
int cur_fd = events[i].data.fd;
try
{
if (cur_fd == listen_fd)
{
std::shared_ptr<ThreadData> thread_data = threads[next_thread_index++ % NR_OF_THREADS];
std::cout << "Accepting connection on thread " << thread_data->threadnr << std::endl;
struct sockaddr addr;
memset(&addr, 0, sizeof(struct sockaddr));
socklen_t len = sizeof(struct sockaddr);
int fd = check<std::runtime_error>(accept(cur_fd, &addr, &len));
Client_p client(new Client(fd, thread_data));
thread_data->giveClient(client);
}
else
{
throw std::runtime_error("The main thread had activity on an accepted socket?");
}
}
catch (std::exception &ex)
{
std::cerr << "Problem accepting connection: " << ex.what() << std::endl;
}
}
}
close(listen_fd);
}
void MainApp::quit()
{
std::cout << "Quitting FlashMQ" << std::endl;
running = false;
for(std::shared_ptr<ThreadData> &thread : threads)
{
thread->quit();
}
}