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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
#include "MirFoxCommons_pch.h"
#include "MirFoxCommons_messageQueueBySM.h"
///////////////// MQ CONSTS /////////////////
const char * MQCONST_MQ_NAME_PREFIX = "mirfox_mq_"; //mirfox_mq_<##id>
const boost::interprocess::offset_t MQCONST_MQMIRSM_STATUS_OFFSET = 0;
const std::size_t MQCONST_MQMIRSM_STATUS_SIZE = sizeof(char); //1B //'E'-Empty 'M'-Message exists
const boost::interprocess::offset_t MQCONST_MQMIRSM_MENUITEMTYPE_OFFSET = MQCONST_MQMIRSM_STATUS_OFFSET + MQCONST_MQMIRSM_STATUS_SIZE;
const std::size_t MQCONST_MQMIRSM_MENUITEMTYPE_SIZE = sizeof(char); //1B
const boost::interprocess::offset_t MQCONST_MQMIRSM_USERACTIONTYPE_OFFSET = MQCONST_MQMIRSM_MENUITEMTYPE_OFFSET + MQCONST_MQMIRSM_MENUITEMTYPE_SIZE;
const std::size_t MQCONST_MQMIRSM_USERACTIONTYPE_SIZE = sizeof(char); //1B
const boost::interprocess::offset_t MQCONST_MQMIRSM_USERBUTTON_OFFSET = MQCONST_MQMIRSM_USERACTIONTYPE_OFFSET + MQCONST_MQMIRSM_USERACTIONTYPE_SIZE;
const std::size_t MQCONST_MQMIRSM_USERBUTTON_SIZE = sizeof(char); //1B
const boost::interprocess::offset_t MQCONST_MQMIRSM_TARGETHANDLE_OFFSET = MQCONST_MQMIRSM_USERBUTTON_OFFSET + MQCONST_MQMIRSM_USERBUTTON_SIZE;
const std::size_t MQCONST_MQMIRSM_TARGETHANDLE_SIZE = sizeof(uint64_t); //8B
const boost::interprocess::offset_t MQCONST_MQMIRSM_TEXTARRAY_OFFSET = MQCONST_MQMIRSM_TARGETHANDLE_OFFSET + MQCONST_MQMIRSM_TARGETHANDLE_SIZE;
const std::size_t MQCONST_MQMIRSM_TEXTARRAY_SIZEC = MQCONST_MQSM_TEXT_SIZEC; //2042
const std::size_t MQCONST_MQMIRSM_TEXTARRAY_SIZE = sizeof(wchar_t) * MQCONST_MQMIRSM_TEXTARRAY_SIZEC; //4084B
const std::size_t MQCONST_MQMIRSM_TOTAL_SIZE = MQCONST_MQMIRSM_STATUS_SIZE + MQCONST_MQMIRSM_MENUITEMTYPE_SIZE + MQCONST_MQMIRSM_USERACTIONTYPE_SIZE + MQCONST_MQMIRSM_USERBUTTON_SIZE + MQCONST_MQMIRSM_TARGETHANDLE_SIZE + MQCONST_MQMIRSM_TEXTARRAY_SIZE;
/////////////////////PUBLIC///////////////////////////
//static fields definitions
/*static*/ MessageQueueUtils * MessageQueueUtils::m_pOnlyOneInstance;
//constructor
MessageQueueUtils::MessageQueueUtils()
: logger(MFLogger::getInstance())
{
unloadedMQProcessId = -1;
//one mutex per all messagequeues schould be enough
smMutex = CreateMutex(nullptr, FALSE, L"Local\\mirfoxMqMirSm");
}
MessageQueueUtils::~MessageQueueUtils()
{
CloseHandle(smMutex);
}
std::string
MessageQueueUtils::getMqName(uint16_t processId)
{
std::stringstream mqName;
mqName << MQCONST_MQ_NAME_PREFIX;
if (processId <= 9){
mqName << "0";
}
mqName << processId;
logger->log_p(L"messageQueueBySM::getMqName = [%S]", mqName.str().c_str());
return mqName.str();
}
int
MessageQueueUtils::createMessageQueue(std::string mqName)
{
try{
//TODO access to mqMirSm is not synchronied, i think it's not neccessery
mqMirSm = new boost::interprocess::windows_shared_memory(
boost::interprocess::open_or_create, //TODO what if sm exists
mqName.c_str(),
boost::interprocess::read_write,
getMqMirSmTotalSize()
);
logger->log(L"MessageQueueUtils::createMessageQueue created mq by sm");
} catch (const boost::interprocess::interprocess_exception& ex) {
logger->log_p(L"MessageQueueUtils::createMessageQueue interprocess_exception: [%S] native_error=[%d] error_code=[%d]", ex.what(), ex.get_native_error(), ex.get_error_code() );
return 1; //error
} catch (...){
logger->log(L"MessageQueueUtils::createMessageQueue EXCEPTION: unknown");
return 1; //error
}
//initialize
boost::interprocess::mapped_region region1(
*mqMirSm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_STATUS_OFFSET,
MQCONST_MQMIRSM_STATUS_SIZE
);
char* statusPtr = static_cast<char*>(region1.get_address());
*statusPtr = 'E';
return 0; //ok
}
void
MessageQueueUtils::unloadMessageQueue(uint16_t unloadedMQProcessId)
{
logger->log_p(L"MessageQueueUtils::unloadMessageQueue unloadedMQProcessId = [%u]", unloadedMQProcessId);
this->unloadedMQProcessId = unloadedMQProcessId;
if (mqMirSm){
delete mqMirSm;
mqMirSm = nullptr;
} else {
logger->log(L"MessageQueueUtils::unloadMessageQueue - mqMirSm was NULL");
}
}
/**
* return true if message was received and variables are available
*/
bool
MessageQueueUtils::tryReceiveMessage(char& menuItemType, char& userActionType, char& userButton, uint64_t& targetHandle, wchar_t*& userActionSelection, size_t uasBuffCSize)
{
try{
WaitForSingleObject(smMutex, 100000);
boost::interprocess::mapped_region region1(
*mqMirSm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_STATUS_OFFSET,
MQCONST_MQMIRSM_STATUS_SIZE
);
char* mqmirsmStatusPtr = static_cast<char*>(region1.get_address());
if (*mqmirsmStatusPtr != 'M'){
ReleaseMutex(smMutex);
return false;
}
//there is a new message in the queue (sm mode) *mqmirsmStatusPtr=='M'
//transfer data from shared memory to variables
boost::interprocess::mapped_region region2(
*mqMirSm,
boost::interprocess::read_only,
MQCONST_MQMIRSM_MENUITEMTYPE_OFFSET,
MQCONST_MQMIRSM_MENUITEMTYPE_SIZE
);
menuItemType = *(static_cast<char*>(region2.get_address()));
boost::interprocess::mapped_region region3(
*mqMirSm,
boost::interprocess::read_only,
MQCONST_MQMIRSM_USERACTIONTYPE_OFFSET,
MQCONST_MQMIRSM_USERACTIONTYPE_SIZE
);
userActionType = *(static_cast<char*>(region3.get_address()));
boost::interprocess::mapped_region region4(
*mqMirSm,
boost::interprocess::read_only,
MQCONST_MQMIRSM_USERBUTTON_OFFSET,
MQCONST_MQMIRSM_USERBUTTON_SIZE
);
userButton = *(static_cast<char*>(region4.get_address()));
boost::interprocess::mapped_region region5(
*mqMirSm,
boost::interprocess::read_only,
MQCONST_MQMIRSM_TARGETHANDLE_OFFSET,
MQCONST_MQMIRSM_TARGETHANDLE_SIZE
);
targetHandle = *(static_cast<uint64_t*>(region5.get_address()));
boost::interprocess::mapped_region region6(
*mqMirSm,
boost::interprocess::read_only,
MQCONST_MQMIRSM_TEXTARRAY_OFFSET,
MQCONST_MQMIRSM_TEXTARRAY_SIZE
);
wchar_t* userActionSelectionPtr = static_cast<wchar_t*>(region6.get_address());
wcsncpy_s(userActionSelection, uasBuffCSize, userActionSelectionPtr, MQCONST_MQMIRSM_TEXTARRAY_SIZEC);
//update shared memory status to Empty
*mqmirsmStatusPtr = 'E';
ReleaseMutex(smMutex);
} catch (const boost::interprocess::interprocess_exception& ex) {
logger->log_p(L"MessageQueueUtils::tryReceiveMessage interprocess_exception: [%S] native_error=[%d] error_code=[%d]", ex.what(), ex.get_native_error(), ex.get_error_code() );
return false;
} catch (...){
logger->log(L"MessageQueueUtils::tryReceiveMessage EXCEPTION: unknown");
return false;
}
logger->log_p(L"MessageQueueUtils::tryReceiveMessage (mq mode) RECEIVED DATA: menuItemType = [%c] userActionType = [%c] userButton = [%c] targetHandle = [%I64u]",
menuItemType, userActionType, userButton, targetHandle);
return true;
}
void
MessageQueueUtils::sendMessage(int clientRecordId, char menuItemType, char userActionType, char userButton, uint64_t targetHandle, std::wstring userActionSelection)
{
logger->log(L"MessageQueueUtils::sendMessage");
//if text to send is too long
if (userActionSelection.size() > MQCONST_MQSM_TEXT_SIZEC){
userActionSelection.resize(MQCONST_MQSM_TEXT_SIZEC - 3);
userActionSelection.append(TEXT("..."));
}
try{
boost::interprocess::windows_shared_memory* sm = new boost::interprocess::windows_shared_memory(
boost::interprocess::open_only,
getMqName(clientRecordId).c_str(),
boost::interprocess::read_write);
if (sm == nullptr){
logger->log(L"MessageQueueUtils::sendMessage (sm mode) sm == NULL");
return; //error
}
int counter = 0;
const int MQ_WAIT_TIME = 200; //[ms]
const int MAX_MQ_WAIT_COUNTER = 10; //10 * 200ms = 2s
bool sentSuccess = false;
do {
counter++;
WaitForSingleObject(smMutex, INFINITE);
boost::interprocess::mapped_region region1(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_STATUS_OFFSET,
MQCONST_MQMIRSM_STATUS_SIZE
);
char* mqmirsmStatusPtr = static_cast<char*>(region1.get_address());
if (*mqmirsmStatusPtr == 'E'){
boost::interprocess::mapped_region region2(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_MENUITEMTYPE_OFFSET,
MQCONST_MQMIRSM_MENUITEMTYPE_SIZE
);
char* menuItemTypePtr = static_cast<char*>(region2.get_address());
*menuItemTypePtr = menuItemType;
boost::interprocess::mapped_region region3(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_USERACTIONTYPE_OFFSET,
MQCONST_MQMIRSM_USERACTIONTYPE_SIZE
);
char* userActionTypePtr = static_cast<char*>(region3.get_address());
*userActionTypePtr = userActionType;
boost::interprocess::mapped_region region4(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_USERBUTTON_OFFSET,
MQCONST_MQMIRSM_USERBUTTON_SIZE
);
char* userButtonPtr = static_cast<char*>(region4.get_address());
*userButtonPtr = userButton;
boost::interprocess::mapped_region region5(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_TARGETHANDLE_OFFSET,
MQCONST_MQMIRSM_TARGETHANDLE_SIZE
);
uint64_t* targetHandlePtr = static_cast<uint64_t*>(region5.get_address());
*targetHandlePtr = targetHandle;
boost::interprocess::mapped_region region6(
*sm,
boost::interprocess::read_write,
MQCONST_MQMIRSM_TEXTARRAY_OFFSET,
MQCONST_MQMIRSM_TEXTARRAY_SIZE
);
wchar_t* userActionSelectionPtr = static_cast<wchar_t*>(region6.get_address());
memset(userActionSelectionPtr, 0, MQCONST_MQMIRSM_TEXTARRAY_SIZE);
memcpy(userActionSelectionPtr, userActionSelection.c_str(), userActionSelection.length() * sizeof(wchar_t));
//update shared memory status to Message
*mqmirsmStatusPtr = 'M';
sentSuccess = true;
}
// else wait and repeat try
ReleaseMutex(smMutex);
if (!sentSuccess){
SleepEx(MQ_WAIT_TIME, TRUE);
}
} while (sentSuccess == false && counter <= MAX_MQ_WAIT_COUNTER);
if (!sentSuccess){
logger->log(L"MessageQueueUtils::sendMessage (sm mode) - MAX_MQ_WAIT_COUNTER exceeded but still sentSuccess == false");
}
delete sm;
} catch (const boost::interprocess::interprocess_exception& ex) {
logger->log_p(L"MessageQueueUtils::sendMessage (sm mode) interprocess_exception: [%S] native_error=[%d] error_code=[%d]", ex.what(), ex.get_native_error(), ex.get_error_code() );
return; //error
} catch (...){
logger->log(L"MessageQueueUtils::sendMessage (sm mode) EXCEPTION: unknown");
return; //error
}
}
//return total size of mqMirSm in Bytes
std::size_t
MessageQueueUtils::getMqMirSmTotalSize()
{
logger->log_p(L"MQCONST_MQMIRSM_TOTAL_SIZE (schould be 4096B) = [" SCNuPTR L"]", MQCONST_MQMIRSM_TOTAL_SIZE);
return MQCONST_MQMIRSM_TOTAL_SIZE;
}
|