forked from etr/libhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomet_manager.cpp
More file actions
298 lines (275 loc) · 9.16 KB
/
comet_manager.cpp
File metadata and controls
298 lines (275 loc) · 9.16 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
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
297
298
/*
This file is part of libhttpserver
Copyright (C) 2011, 2012, 2013, 2014, 2015 Sebastiano Merlino
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA
*/
#include <errno.h>
#include <iostream>
#include "details/comet_manager.hpp"
#include <sys/time.h>
using namespace std;
namespace httpserver
{
namespace details
{
comet_manager::comet_manager()
{
pthread_rwlock_init(&comet_guard, NULL);
pthread_mutex_init(&cleanmux, NULL);
pthread_cond_init(&cleancond, NULL);
}
comet_manager::~comet_manager()
{
pthread_rwlock_destroy(&comet_guard);
pthread_mutex_destroy(&cleanmux);
pthread_cond_destroy(&cleancond);
}
void comet_manager::send_message_to_topic (
const string& topic,
const string& message,
const httpserver::http::http_utils::start_method_T& start_method
)
{
pthread_rwlock_wrlock(&comet_guard);
for(set<http::httpserver_ska>::const_iterator it = q_waitings[topic].begin();
it != q_waitings[topic].end();
++it
)
{
q_messages[(*it)].push_back(message);
q_signal.insert((*it));
if(start_method != http::http_utils::INTERNAL_SELECT)
{
pthread_mutex_lock(&q_blocks[(*it)].first);
pthread_cond_signal(&q_blocks[(*it)].second);
pthread_mutex_unlock(&q_blocks[(*it)].first);
}
map<http::httpserver_ska, long>::const_iterator itt;
if((itt = q_keepalives.find(*it)) != q_keepalives.end())
{
struct timeval curtime;
gettimeofday(&curtime, NULL);
q_keepalives[*it] = curtime.tv_sec;
}
}
pthread_rwlock_unlock(&comet_guard);
if(start_method != http::http_utils::INTERNAL_SELECT)
{
pthread_mutex_lock(&cleanmux);
pthread_cond_signal(&cleancond);
pthread_mutex_unlock(&cleanmux);
}
}
void comet_manager::register_to_topics (
const vector<string>& topics,
const http::httpserver_ska& connection_id,
int keepalive_secs,
string keepalive_msg,
const httpserver::http::http_utils::start_method_T& start_method
)
{
pthread_rwlock_wrlock(&comet_guard);
for(vector<string>::const_iterator it = topics.begin();
it != topics.end(); ++it
)
q_waitings[*it].insert(connection_id);
if(keepalive_secs != -1)
{
struct timeval curtime;
gettimeofday(&curtime, NULL);
q_keepalives[connection_id] = curtime.tv_sec;
q_keepalives_mem[connection_id] = make_pair(
keepalive_secs, keepalive_msg
);
}
if(start_method != http::http_utils::INTERNAL_SELECT)
{
pthread_mutex_t m;
pthread_cond_t c;
pthread_mutex_init(&m, NULL);
pthread_cond_init(&c, NULL);
q_blocks[connection_id] =
make_pair(m, c);
}
pthread_rwlock_unlock(&comet_guard);
}
size_t comet_manager::read_message(const http::httpserver_ska& connection_id,
string& message
)
{
pthread_rwlock_wrlock(&comet_guard);
deque<string>& t_deq = q_messages[connection_id];
message.assign(t_deq.front());
t_deq.pop_front();
pthread_rwlock_unlock(&comet_guard);
return message.size();
}
size_t comet_manager::get_topic_consumers(
const string& topic,
set<http::httpserver_ska>& consumers
)
{
pthread_rwlock_rdlock(&comet_guard);
for(set<http::httpserver_ska>::const_iterator it = q_waitings[topic].begin();
it != q_waitings[topic].end(); ++it
)
{
consumers.insert((*it));
}
std::set<httpserver::http::httpserver_ska>::size_type size = consumers.size();
pthread_rwlock_unlock(&comet_guard);
return size;
}
bool comet_manager::pop_signaled(const http::httpserver_ska& consumer,
const httpserver::http::http_utils::start_method_T& start_method
)
{
if(start_method == http::http_utils::INTERNAL_SELECT)
{
pthread_rwlock_wrlock(&comet_guard);
set<http::httpserver_ska>::iterator it = q_signal.find(consumer);
if(it != q_signal.end())
{
if(q_messages[consumer].empty())
{
q_signal.erase(it);
pthread_rwlock_unlock(&comet_guard);
return false;
}
pthread_rwlock_unlock(&comet_guard);
return true;
}
else
{
pthread_rwlock_unlock(&comet_guard);
return false;
}
}
else
{
pthread_rwlock_rdlock(&comet_guard);
pthread_mutex_lock(&q_blocks[consumer].first);
struct timespec t;
struct timeval curtime;
{
bool to_unlock = true;
while(q_signal.find(consumer) == q_signal.end())
{
if(to_unlock)
{
pthread_rwlock_unlock(&comet_guard);
to_unlock = false;
}
gettimeofday(&curtime, NULL);
t.tv_sec = curtime.tv_sec + q_keepalives_mem[consumer].first;
t.tv_nsec = 0;
int rslt = pthread_cond_timedwait(&q_blocks[consumer].second,
&q_blocks[consumer].first, &t
);
if(rslt == ETIMEDOUT)
{
pthread_rwlock_wrlock(&comet_guard);
send_message_to_consumer(consumer,
q_keepalives_mem[consumer].second, false, start_method
);
pthread_rwlock_unlock(&comet_guard);
}
}
if(to_unlock)
pthread_rwlock_unlock(&comet_guard);
}
if(q_messages[consumer].size() == 0)
{
pthread_rwlock_wrlock(&comet_guard);
q_signal.erase(consumer);
pthread_mutex_unlock(&q_blocks[consumer].first);
pthread_rwlock_unlock(&comet_guard);
return false;
}
pthread_rwlock_rdlock(&comet_guard);
pthread_mutex_unlock(&q_blocks[consumer].first);
pthread_rwlock_unlock(&comet_guard);
return true;
}
return false;
}
void comet_manager::complete_request(const http::httpserver_ska& connection_id)
{
pthread_rwlock_wrlock(&comet_guard);
q_messages.erase(connection_id);
q_blocks.erase(connection_id);
q_signal.erase(connection_id);
q_keepalives.erase(connection_id);
typedef map<string, set<http::httpserver_ska> >::iterator conn_it;
for(conn_it it = q_waitings.begin(); it != q_waitings.end(); ++it)
{
it->second.erase(connection_id);
}
pthread_rwlock_unlock(&comet_guard);
}
void comet_manager::comet_select(unsigned long long* timeout_secs,
unsigned long long* timeout_microsecs,
const httpserver::http::http_utils::start_method_T& start_method
)
{
pthread_rwlock_wrlock(&comet_guard);
for(map<http::httpserver_ska, long>::iterator it = q_keepalives.begin(); it != q_keepalives.end(); ++it)
{
struct timeval curtime;
gettimeofday(&curtime, NULL);
int waited_time = curtime.tv_sec - (*it).second;
if(waited_time >= q_keepalives_mem[(*it).first].first)
{
send_message_to_consumer((*it).first, q_keepalives_mem[(*it).first].second, true, start_method);
}
else
{
unsigned long long to_wait_time = (q_keepalives_mem[(*it).first].first - waited_time);
if(to_wait_time < *timeout_secs)
{
*timeout_secs = to_wait_time;
*timeout_microsecs = 0;
}
}
}
pthread_rwlock_unlock(&comet_guard);
}
void comet_manager::send_message_to_consumer(
const http::httpserver_ska& connection_id,
const std::string& message,
bool to_lock,
const httpserver::http::http_utils::start_method_T& start_method
)
{
//This function need to be externally locked on write
q_messages[connection_id].push_back(message);
map<http::httpserver_ska, long>::const_iterator it;
if((it = q_keepalives.find(connection_id)) != q_keepalives.end())
{
struct timeval curtime;
gettimeofday(&curtime, NULL);
q_keepalives[connection_id] = curtime.tv_sec;
}
q_signal.insert(connection_id);
if(start_method != http::http_utils::INTERNAL_SELECT)
{
if(to_lock)
pthread_mutex_lock(&q_blocks[connection_id].first);
pthread_cond_signal(&q_blocks[connection_id].second);
if(to_lock)
pthread_mutex_unlock(&q_blocks[connection_id].first);
}
}
} //details
} //httpserver