-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitoringThread.cpp
254 lines (221 loc) · 7.95 KB
/
monitoringThread.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
//******************************************************************************
//
// Copyright (c) 2019, Brandon To
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of the author nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//******************************************************************************
#include "monitoringThread.hpp"
#include "log.hpp"
#include "solClientThread.hpp"
#include "utils.hpp"
namespace topicMonitor
{
MonitoringThread* MonitoringThread::instance_mps = nullptr;
MonitoringThread::MonitoringThread(void)
{
luaState_mp = luaL_newstate();
if (luaState_mp == nullptr)
LOG(FATAL, "Could not create lua state");
// Makes all libraries available to lua.
//
// TODO (BTO): May want to look into only making a subset of libraries
// available to lua.
//
luaL_openlibs(luaState_mp);
}
MonitoringThread::~MonitoringThread(void)
{
lua_close(luaState_mp);
}
void
MonitoringThread::handleWorkTypeMessageReceived(
WorkEntryMessageReceived* entry_p)
{
solClient_returnCode_t rc;
solClient_opaqueMsg_pt msg_p = entry_p->getMsg();
solClient_destination_t dest;
rc = solClient_msg_getDestination(msg_p, &dest, sizeof(dest));
if (rc != SOLCLIENT_OK)
{
LOG(ERROR, "Could not get message topic");
return;
}
const char* topic_p = dest.dest;
if (envTable_m.find(topic_p) == envTable_m.end())
{
LOG(ERROR, "Topic '" << topic_p << "' not found in table");
return;
}
const char* env_p = envTable_m[topic_p].c_str();
const char* data_p;
rc = solClient_msg_getBinaryAttachmentString(msg_p, &data_p);
if (rc != SOLCLIENT_OK)
{
LOG(ERROR, "Could not get message payload");
return;
}
if (utils::lua::callMessageFunc(luaState_mp, env_p, data_p)
!= returnCode_t::SUCCESS)
{
const char* errorMsg_p = lua_tostring(luaState_mp, -1);
LOG(ERROR, LUA_MESSAGE_FUNC << "() failed with error \"" << errorMsg_p
<< "\"");
lua_pop(luaState_mp, 1);
return;
}
}
void
MonitoringThread::handleWorkTypeSubscribe(WorkEntrySubscribe* entry_p)
{
returnCode_t rc;
const SubscriptionInfo& info = entry_p->getSubscriptionInfo();
// Loads lua file into lua state
//
rc = utils::lua::loadFileInEnv(luaState_mp,
info.getFilename(),
info.getFilename());
if (rc == returnCode_t::FAILURE)
{
const char* error_p = lua_tostring(luaState_mp, -1);
LOG(WARN, "Could not load " << info.getFilename() << ", error = \""
<< error_p << "\"");
lua_pop(luaState_mp, 1);
goto unsubscribe;
}
// Check for existence of message function
//
if (!utils::lua::isFuncInEnv(luaState_mp,
info.getFilename(),
LUA_MESSAGE_FUNC))
{
LOG(WARN, "No " << LUA_MESSAGE_FUNC << "() function found in "
<< info.getFilename());
goto unsubscribe;
}
// Check for existence of timer function
//
if (info.getTimeout() && !utils::lua::isFuncInEnv(luaState_mp,
info.getFilename(),
LUA_TIMER_FUNC))
{
LOG(WARN, "No " << LUA_TIMER_FUNC << "() function found in "
<< info.getFilename());
goto unsubscribe;
}
if (info.getTimeout())
{
timeoutWheel_m.add(info.getTopic(), info.getTimeout());
}
// Update table with subscription if everything goes well
//
envTable_m[info.getTopic()] = info.getFilename();
LOG(INFO, "monitoringThread subscribed to topic '" << info.getTopic()
<< "'");
return;
unsubscribe:
// Unsubscribe from topic
//
SolClientThread::instance()->topicUnsubscribe(info.getTopic());
return;
}
void
MonitoringThread::handleWorkTypeUnsubscribe(WorkEntryUnsubscribe* entry_p)
{
LOG(WARN, __FUNCTION__ << "() unimplemented");
}
void
MonitoringThread::handleWorkTypeTimerTick(WorkEntryTimerTick* entry_p)
{
timeoutWheel_m.tick();
}
void
MonitoringThread::handleWorkTypeTimeout(WorkEntryTimeout* entry_p)
{
std::string topic = entry_p->getTopic();
LOG(INFO, "Executing timer function for topic '" << topic << "'");
if (envTable_m.find(topic) == envTable_m.end())
{
LOG(ERROR, "Topic '" << topic << "' not found in table");
return;
}
const char* env_p = envTable_m[topic].c_str();
if (utils::lua::callTimerFunc(luaState_mp, env_p)
!= returnCode_t::SUCCESS)
{
const char* errorMsg_p = lua_tostring(luaState_mp, -1);
LOG(ERROR, LUA_TIMER_FUNC << "() failed with error \"" << errorMsg_p
<< "\"");
lua_pop(luaState_mp, 1);
return;
}
timeoutWheel_m.add(topic, entry_p->getTimeout());
}
// TODO (BTO): Consider using a worker thread pool to dispatch MESSAGE_RECEIVED
// work items, taking special care to not schedule messages on the
// same topic to two different worker threads at the same time and
// preserve ordering.
//
returnCode_t
MonitoringThread::start(void)
{
WorkEntry* entry_p = nullptr;
for (;;entry_p = nullptr)
{
entry_p = workQueue_m.pop();
if (entry_p == nullptr)
LOG(FATAL, "NULL work entry received");
LOG(DEBUG, "Handling work entry of type '"
<< workTypeToString(entry_p->getType()) << "'");
switch (entry_p->getType())
{
case workType_t::MESSAGE_RECEIVED:
handleWorkTypeMessageReceived(
static_cast<WorkEntryMessageReceived*>(entry_p));
break;
case workType_t::SUBSCRIBE:
handleWorkTypeSubscribe(
static_cast<WorkEntrySubscribe*>(entry_p));
break;
case workType_t::UNSUBSCRIBE:
handleWorkTypeUnsubscribe(
static_cast<WorkEntryUnsubscribe*>(entry_p));
break;
case workType_t::TIMER_TICK:
handleWorkTypeTimerTick(
static_cast<WorkEntryTimerTick*>(entry_p));
break;
case workType_t::TIMEOUT:
handleWorkTypeTimeout(
static_cast<WorkEntryTimeout*>(entry_p));
break;
default:
LOG(ERROR, "Unknown work type received in work entry.");
return returnCode_t::FAILURE;
}
delete entry_p;
}
return returnCode_t::SUCCESS;
}
} /* namespace topicMonitor */