summaryrefslogtreecommitdiffstats
path: root/nsframework/framework_unified/client/include/native_service/ns_message_center_if.h
blob: cfd350f6fa81d375b256199f4722acbbf2819228 (plain)
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
/*
 * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file
 * @brief \~english APIs to Open/Close and Send/Receive on message queues and shared memory.
 *
 */
/** @addtogroup BaseSystem
 *  @{
 */
/** @addtogroup native_service
 *  @ingroup BaseSystem
 *  @{
 */
/** @addtogroup framework_unified
 *  @ingroup native_service
 *  @{
 */
/** @addtogroup native
 *  @ingroup framework_unified
 *  @{
 */
#ifndef __NATIVESERVICES_MESSAGE_CENTER_IF_H__  // NOLINT  (build/header_guard)
#define __NATIVESERVICES_MESSAGE_CENTER_IF_H__

#include <native_service/frameworkunified_types.h>
#include <native_service/ns_shared_mem_if.h>


#ifdef __cplusplus
extern "C" {
#endif


////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McOpenReceiver
/// \~english @par Brief
///        Opens a handle to a Receiver message queue.
/// \~english @param[in] name
///        PCSTR - name of the message queue you want to receiver messages on
/// \~english @retval Handle to a recevier's message queue (If INVALID_HANDLE is returned its an error)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Size of message queue name string specified by argument(name) is larger then 20byte. [NULL]
///       - Message queue name specified by argument(name) is NULL. [NULL]
///       - Size of name normalised from argument(name) for message queue is larger then 15byte[16byte when starts with
///       "/"]. [NULL]
///       - Failed to create(malloc) buffer to storage name normalised from argument(name) for message queue. [NULL]
///       - Failed to get(mq_open) message queue. [NULL]
///       - Failed to create(malloc) buffer to storage management information of message queue. [NULL]
/// \~english @par Detail
///       Create a message queue whose name is specified by argument, and return a handle for receiving message. \n
///       The message queue created in this API is used to receive message, but not to send message. \n
///       You can use message queue in McOpenSender to send message.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McReceive, McClose
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenReceiver(PCSTR name);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McOpenReceiverNotBlocked
/// \~english @par Brief
///        Opens a handle to a Receiver message queue. Operations on this queue are
///        non-blocking if queue is empty or full.
/// \~english @param[in] name
///        PCSTR - name of the message queue you want to receiver messages on
/// \~english @retval Handle to a recevier's message queue (If INVALID_HANDLE is returned its an error)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Size of message queue name string specified by argument(name) is larger then 20byte. [NULL]
///       - Message queue name specified by argument(name) is NULL. [NULL]
///       - Size of name normalised from argument(name) for message queue is larger then 15byte[16byte when starts with
///       "/"]. [NULL]
///       - Failed to create(malloc) buffer to storage name normalised from argument(name) for message queue. [NULL]
///       - Failed to get(mq_open) message queue. [NULL]
///       - Failed to create(malloc) buffer to storage management information of message queue. [NULL]
/// \~english @par Detail
///       Create a message queue whose name is specified by argument, and return a handle for receiving message. \n
///       The message queue created in this API is used to receive message, but not to send message. \n
///       You can use message queue in McOpenSender to send message.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McReceive, McClose, McOpenSenderNotBlocked
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenReceiverNotBlocked(PCSTR name);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McOpenSyncReceiver
/// \~english @par Brief
///        Opens a handle to a response Receiver message queue.
/// \~english @param[in] name
///        PCSTR - name of the message queue you want to receiver messages on
/// \~english @retval Handle to a recevier's message queue (If INVALID_HANDLE is returned its an error)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Size of message queue name string specified by argument(name) is larger then 20byte. [NULL]
///       - Message queue name specified by argument(name) is NULL. [NULL]
///       - Size of name normalised from argument(name) for message queue(don't start with "/") is larger then 19byte.
///       [NULL]
///       - Size of name normalised from argument(name) for message queue(start with "/") is larger then 20byte. [NULL]
///       - Failed to create(malloc) buffer to storage name normalised from argument(name) for message queue. [NULL]
///       - Failed to get(mq_open) message queue. [NULL]
///       - Failed to create(malloc) buffer to storage management information of message queue. [NULL]
/// \~english @par Detail
///       Create a message queue whose name is specified by argument, and return a handle for receiving message
///       by synchronous communication.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///        When the application used the message queue acquired by this API, note the following.
///        - Use McCreateInvokerName to obtain the receive message queue handle to be passed to the parameter name.
///        - It can not be used transmission because it is for reception.
///          McOpenSender must be used for the message queue trasmission.
///        - Cannot be used other than for waiting for response during synchronous communication.
///          (because the maxmum number of messages in the queue is specified as 2)
///        - When a message queue name (name) that has not been normalized is specified, transmission falis unless 18 byte are specified.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McCreateInvokerName, McInvokeSync, McClose
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenSyncReceiver(PCSTR name);


////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McOpenSender
/// \~english @par Brief
///        The opens a handle for sending messages to another message queue.
/// \~english @param[in] name
///        PCSTR - name of the message queue you want to send messages too
/// \~english @retval Handle for sending messages to a queue (If INVALID_HANDLE is returned its an error)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Size of message queue name string specified by argument(name) is larger then 20byte. [NULL]
///       - Message queue name specified by argument(name) is NULL. [NULL]
///       - Size of name normalised from argument(name) for message queue is larger then 15byte[16byte when starts with
///       "/"]. [NULL]
///       - Failed to create(malloc) buffer to storage name normalised from argument(name) for message queue. [NULL]
///       - Failed to get(mq_open) message queue. [NULL]
///       - Failed to create(malloc) buffer to storage management information of message queue. [NULL]
/// \~english @par Detail
///       Create a message queue whose name is specified by argument, and return a handle for sending message. \n
///       The message queue created in this API is used to send message, but not to receive message. \n
///       You can use message queue in McOpenReceiver to receive message.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McSend, McClose
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenSender(PCSTR name);

////////////////////////////////////////////////////////////////////////////////////////////
/// The opens a handle for sending messages to another message queue.
/// operations on this queue are non-blocking if queue is empty or full.
///
/// \param [in] name
///         PCSTR - name of the message queue you want to send messages too
///
/// \return HANDLE
///         handle - for sending messages to a queue (If INVALID_HANDLE is returned its an error)
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenSenderNotBlocked(PCSTR name);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McOpenSyncSender
/// \~english @par Brief
///        The opens a handle for sending responce to another message queue.
/// \~english @param[in] name
///        PCSTR - name of the message queue you want to send messages too
/// \~english @retval Handle for sending response to a queue (If INVALID_HANDLE is returned its an error)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Size of message queue name string specified by argument(name) is larger then 20byte. [NULL]
///       - Message queue name specified by argument(name) is NULL. [NULL]
///       - Size of name normalised from argument(name) for message queue(don't start with "/") is larger then 19byte.
///       [NULL]
///       - Size of name normalised from argument(name) for message queue(start with "/") is larger then 20byte. [NULL]
///       - Failed to create(malloc) buffer to storage name normalised from argument(name) for message queue. [NULL]
///       - Failed to get(mq_open) message queue. [NULL]
///       - Failed to create(malloc) buffer to storage management information of message queue. [NULL]
/// \~english @par Detail
///       Create a message queue whose name is specified by argument, and return a handle for sending message. \n
///       The message queue created in this API is used to send message, but not to receive message. \n
///       You can use message queue in McOpenReceiver to receive message.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McSend, McClose
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McOpenSyncSender(PCSTR name);

/////////////////////////////////////////
#include <pthread.h>
HANDLE McOpenSenderChild(PCSTR name, pthread_t childid);
/////////////////////////////////////////

/////////////////////////////////////////
EFrameworkunifiedStatus McJoinChild(HANDLE hChildApp);
/////////////////////////////////////////

/////////////////////////////////////////
EFrameworkunifiedStatus McGetChildThreadPriority(HANDLE hChildApp, PSI_32 threadPrio);
/////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McReceive
/// \~english @par Brief
///        Retrieves data from a message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the recvMessage, McOpenRecevier
/// \~english @param[out] source
///        PSTR - app that sent this message
/// \~english @param[out] cmd
///        UI_32* - command message that has been received.
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[out] data
///        PVOID - pointer to the data to be received
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK Success
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldBuf - Invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldQName - Invalid message queue name
/// \~english @retval eFrameworkunifiedStatusInvldParam - Invalid parameter
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - Invalid File-Descriptor
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - An interrupt is generated by the system call (signal)
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - Invalid buffer-size
/// \~english @retval eFrameworkunifiedStatusFail - Invalid handle of message queue for receiving message
/// \~english @par Preconditons
///        Message queue(McOpenReceiver etc.) for receiving message is created.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Data buffer specified by argument(data) for receiving message is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Size of data buffer specified by argument(length) for receiving message is 0. [eFrameworkunifiedStatusInvldBuf]
///       - Buffer to storage application name specified by argument(source) for sending message is NULL.
///       [eFrameworkunifiedStatusInvldQName]
///       - Buffer to storage commond ID of protocol on the service specified by argument(cmd) is NULL.
///       [eFrameworkunifiedStatusInvldParam]
///       - Size of application name of sender getted from received message is lager then 20byte. [eFrameworkunifiedStatusInvldBuf]
///       - Handle specified by argument(hMessage) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - HANDLE specified by argument(hMessage) is not appropriate(which is invalid). [eFrameworkunifiedStatusFail]
///       - Message queue type of handle specified by argument(hMessage) is not receiving type. [eFrameworkunifiedStatusFail]
///       - File descriptor for receiving message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when receiving message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for receiving message is invalid. [eFrameworkunifiedStatusInvldBufSize]
/// \~english @par Detail
///        Receives data from message queue specified by argument.
///        Sets application of sender(source), commond ID of protocol on the service(cmd), receiving data(data), and
///        return.
///        It will block until getting message from message queue.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///        Since data is exchanged only in the message queue, the data size that can be received is up to 4096 bytes.
/// \~english @par
///        The caller must guarantee the allocation of the area for the receive data buffer
///        and the consistency of the sizes set in the arguments.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McSend
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McReceive(HANDLE hMessage, PSTR source, UI_32 *cmd, UI_32 length, PVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McReceiveWithSession
/// \~english @par Brief
///        Retrieves data from a message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the recvMessage, McOpenRecevier
/// \~english @param[out] source
///        PSTR - app that sent this message
/// \~english @param[out] cmd
///        UI_32* - command message that has been received.
/// \~english @param[out] sessionid
///        UI_32* - Session ID
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[out] data
///        PVOID - pointer to the data to be received
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK Success
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldBuf - Invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldQName - Invalid message queue name
/// \~english @retval eFrameworkunifiedStatusInvldParam - Invalid parameter
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - Invalid File-Descriptor
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - An interrupt is generated by the system call (signal)
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - Invalid buffer-size
/// \~english @retval eFrameworkunifiedStatusFail - Invalid handle of message queue for receiving message
/// \~english @par Preconditons
///        Message queue(McOpenReceiver etc.) for receiving message is created.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Buffer to storage session ID specified by argument(sessionid) is NULL. [eFrameworkunifiedStatusInvldParam]
///       - Buffer to storage handle of message queue specified by argument(hMessage) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - Data buffer specified by argument(data) for receiving message is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Size of data buffer specified by argument(length) for receiving message is 0. [eFrameworkunifiedStatusInvldBuf]
///       - Buffer to storage application name specified by argument(source) for sending message is NULL.
///       [eFrameworkunifiedStatusInvldQName]
///       - Buffer to storage commond ID of protocol on the service specified by argument(cmd) is NULL.
///       [eFrameworkunifiedStatusInvldParam]
///       - Size of application name of sender getted from received message is lager then 20byte. [eFrameworkunifiedStatusInvldBuf]
///       - Handle specified by argument(hMessage) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - HANDLE specified by argument(hMessage) is not appropriate(which is invalid). [eFrameworkunifiedStatusFail]
///       - Message queue type of handle specified by argument(hMessage) is not receiving type. [eFrameworkunifiedStatusFail]
///       - File descriptor for receiving message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when receiving message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for receiving message is invalid. [eFrameworkunifiedStatusInvldBufSize]
/// \~english @par Detail
///        Receives data from message queue specified by argument.Sets application of sender(source),
///        commond ID of protocol on the service(cmd), receiving data(data), session id(sessionid), and return.
///        It will block until getting message from message queue.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///        The caller must guarantee the allocation of the area for the receive data buffer
///        and the consistency of the sizes set in the arguments.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McSendWithSession
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McReceiveWithSession(HANDLE hMessage, PSTR source, UI_32 *cmd,  UI_32 *sessionid,
                                UI_32 length, PVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetLength
/// \~english @par Brief
///        Get the length of data that needs to be retrieved.
/// \~english @param[in] data
///        PVOID - pointer to the data was received from the McReceive Call
/// \~english @retval UI_32 indicates the number of bytes that in the message
/// \~english @par
///        if return is 0 or less then invalid data was passed.
/// \~english @par Preconditons
///        - Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///        - Data of received message(data) is NULL. [0]
/// \~english @par Detail
///        Return message data length specified by the header of received message. \n
///        Use this data length as the buffer size specified by McGetDataOfSize.
/// \~english @par
///        This API does not distinguish between error and no data.
/// \~english @par
///        The parameter data of this API must be the data obtained from the message queue by McReceive, etc.
///        (Since the data obtained from the message queue incudes header information,
///         this API acquires necessary iformation from the header)
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McReceive, McReceiveWithSession, McGetDataOfSize
////////////////////////////////////////////////////////////////////////////////////////////
UI_32 McGetLength(PVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetDataPointer
/// \~english @par Brief
///        Get header address of data from received message.
/// \~english @param[in] data
///        PVOID - received message data
/// \~english @retval PVOID - data address of received message
/// \~english @par Preconditons
///        Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///        - Data of received message(data) is NULL. [NULL]
/// \~english @par Detail
///        Get header address of data from received message excepting the header and system information.
/// \~english @par
///        Please note the following points when using this API for application.
///        - Since the pointer acquired by this API is part of the received message passed as an argument to this API,
///          the pointer must not be released by specifying he address acquired by this API.
///        - The parameter data of this API must be the data obtained from the message queue by McReceive, etc.
///          (Since the data obtained from the message queue incudes header information,
///           this API acquires necessary iformation from the header)
///        - When the next message is received, the internally held data is discarded.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McReceive, McReceiveWithSession, McGetDataOfSize
////////////////////////////////////////////////////////////////////////////////////////////
PVOID McGetDataPointer(PVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetDataOfSize
/// \~english @par Brief
///        Get the message data, this may be from a queue or shared memory where the maximum
///        size of the data should not exceed the maximum size passed in.
///        And deletes the data if it is stored in shared memory.
/// \~english @param[in] data
///        PVOID - pointer to the data was received from the McReceive Call
/// \~english @param[in] to
///        PVOID - pointer to the data to be received
/// \~english @param[in] uiSize
///        UI_32 - maximum size of the buffer to which the received data is copied
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK - success
/// \~english @retval eFrameworkunifiedStatusInvldBuf - invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldHandle - invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - invalid handle type
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - invalid buffer size
/// \~english @retval eFrameworkunifiedStatusErrOther - invalid shared memory ID specified by received message
/// \~english @par Preconditons
///        - Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///         - Size specified by argument(uiSize) is smaller then size of received message data(data).
///         [eFrameworkunifiedStatusInvldBufSize]
///         - Data of received message(data) is NULL. [eFrameworkunifiedStatusInvldBuf]
///         - Pointer to buffer(to) which is used to storage data getted from message is NULL. [eFrameworkunifiedStatusInvldBuf]
///         - Received message data specified by argument(data) is invalid. [eFrameworkunifiedStatusInvldHndlType]
///         - Failed to access(shm_open/fstat/mmap) the shared memory of received message data(data).
///         [eFrameworkunifiedStatusErrOther]
///         - Shared memory ID specified by received message is invalid. [FrameworkunifiedStatusErrOther]
/// \~english @par Detail
///        Get data from received message excepting the header and system information.
///        Delete data storaged in shared memory after getting the data successfully.
/// \~english @par
///        Please note the following points when using this API for application.
///        - In the case where he received message data becomes 0byte, there is no need to call this API,
///          and be careful not to allocate the memory for the received message data by 0byte.
///        - Error details related to shared memory access canno be detected.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McGetLength
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McGetDataOfSize(PVOID data, PVOID to, UI_32 uiSize);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetDataOfSizeWithSMRetain
/// \~english @par Brief
///        Get the message data, this may be from a queue or shared memory where the maximum
///        size of the data should not exceed the maximum size passed in.
///        Does not delete the data if it is stored in shared memory.
/// \~english @param[in] data
///        PVOID - pointer to the data was received from the McReceive Call
/// \~english @param[in] to
///        PVOID - pointer to the data to be received
/// \~english @param[in] uiSize
///        UI_32 - maximum size of the buffer to which the received data is copied
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK - success
/// \~english @retval eFrameworkunifiedStatusInvldBuf - invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldHandle - invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - invalid handle type
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - invalid buffer size
/// \~english @retval eFrameworkunifiedStatusErrOther - invalid shared memory ID specified by received message
/// \~english @par Preconditons
///        - Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///         - Size specified by argument(uiSize) is smaller then size of received message data(data).
///         [eFrameworkunifiedStatusInvldBufSize]
///         - Data of received message(data) is NULL. [eFrameworkunifiedStatusInvldBuf]
///         - Pointer to buffer(to) which is used to storage data getted from message is NULL. [eFrameworkunifiedStatusInvldBuf]
///         - Received message data specified by argument(data) is invalid. [eFrameworkunifiedStatusInvldHndlType]
///         - Failed to access(shm_open/fstat/mmap) the shared memory of received message data(data).
///         [eFrameworkunifiedStatusErrOther]
///         - Shared memory ID specified by received message is invalid. [FrameworkunifiedStatusErrOther]
/// \~english @par Detail
///        Get data from received message excepting the header and system information.
///        Does not delete data storaged in shared memory after getting the data successfully.
/// \~english @par
///        Please note the following points when using this API for application.
///        - In the case where he received message data becomes 0byte, there is no need to call this API,
///          and be careful not to allocate the memory for the received message data by 0byte.
///        - Error details related to shared memory access canno be detected.
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
///        McReceive
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McGetDataOfSizeWithSMRetain(PVOID data, PVOID to, UI_32 uiSize);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetSysInfoData
/// \~english @par Brief
///        Gets the data from system info buffer from message header.
/// \~english @param[in] data
///        PVOID - pointer to the data was received from the McReceive Call
/// \~english @param[out] to
///        PVOID - pointer to the data to be received
/// \~english @retval EFrameworkunifiedStatus indicates if the close was successfully
/// \~english @retval eFrameworkunifiedStatusOK Success
/// \~english @retval eFrameworkunifiedStatusInvldBuf - Invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @par Preconditons
///        Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Data of received message(data) is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Pointer to buffer(to) which is used to storage system info getted from message is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Received message data specified by argument(data) is invalid. [eFrameworkunifiedStatusInvldHndlType]
/// \~english @par Detail
///        Gets system info from received message, and set argument(to) with it. \n
///        If there is no system info in received message,and set argument(to) with "\0".
/// \~english @par
///        Please note the following points when using this API for application.
///        - The parameter data of this API must be the data obtained from the message queue by McReceive, etc.
///          (Since the data obtained from the message queue incudes header information,
///           this API acquires necessary iformation from the header)
///        - Since the system information is 64 bytes (including the null character), the area of 64 byte must be allocated in the argument to fo this API.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McReceive, McReceiveWithSession
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McGetSysInfoData(PVOID data, PVOID to);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McClearData
/// \~english @par Brief
///        Clears the data that may be pending for the a message in shared memory.
/// \~english @param[in] data
///        PVOID - pointer to the data was received from the McReceive Call
/// \~english @retval EFrameworkunifiedStatus indicates if the data was clear successfully
/// \~english @retval eFrameworkunifiedStatusOK - success
/// \~english @retval eFrameworkunifiedStatusInvldBuf - invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldParam - invalid parameter
/// \~english @retval eFrameworkunifiedStatusInvldID - invalid ID
/// \~english @retval eFrameworkunifiedStatusFail - other errors
/// \~english @par Preconditons
///        - Message is received by McReceive and so on.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///         - Data of received message(data) is NULL. [eFrameworkunifiedStatusInvldBuf]
///         - Received message data specified by argument(data) is invalid. [eFrameworkunifiedStatusInvldParam]
///         - Shared memory ID in received message is invalid. [eFrameworkunifiedStatusInvldParam]
///         - Shared memory specified by ID in received message does not exist. [eFrameworkunifiedStatusInvldID]
///         - Failed to delete shared memory specified by ID in received message. [eFrameworkunifiedStatusFail]
/// \~english @par Detail
///         Delete data from received message.
///         And delete the received message data if it is stored in shared memory.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McReceive, McReceiveWithSession
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McClearData(PVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McSend
/// \~english @par Brief
///        Sends data to a message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSender
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @param[in] cmd
///        UI_32 - command id aka the message that's being sent
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[in] data
///        PCVOID - pointer to the data to be sent
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK - Success
/// \~english @retval eFrameworkunifiedStatusNullPointer - NULL pointer specified
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - Invalid type of handle
/// \~english @retval eFrameworkunifiedStatusInvldQName - Illegal Message Queue name
/// \~english @retval eFrameworkunifiedStatusMsgQFull - Message queue is full
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF I- nvalid File-Descriptor
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - An interrupt is generated by the system call (signal)
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - Invalid buffer-size
/// \~english @retval eFrameworkunifiedStatusFail - Some sort of error occurred
/// \~english @retval eFrameworkunifiedStatusErrOther - other errors(Failed to open/allocate shared memory)
/// \~english @retval eFrameworkunifiedStatusInvldParam - Invalid parameter
/// \~english @par Preconditons
///        - Message queue(McOpenSender) for sending message is created.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Message queue name of HANDLE specified in the argument (hService) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - Message queue name of HANDLE specified in the argument (hService) exceeds 20byte. [eFrameworkunifiedStatusInvldHandle]
///       - Message queue HANDLE in HANDLE specified in the argument (hService) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - HANDLE specified in the argument message queue HANDLE in (hService) is not appropriate (which is invalid).
///       [eFrameworkunifiedStatusInvldHandle]
///       - Application name of sender specified in the argument (source) is NULL. [eFrameworkunifiedStatusInvldQName]
///       - Application name of sender specified in the argument (source) exceeds 20byte. [eFrameworkunifiedStatusInvldQName]
///       - Sender data does not match sender data size(size is larger then 0, and data is NULL). [eFrameworkunifiedStatusInvldBuf]
///       - Message queue type of handle specified by argument(hMessage) is not sending type. [eFrameworkunifiedStatusInvldHndlType]
///       - Message queue is full. [eFrameworkunifiedStatusMsgQFull]
///       - File descriptor for sending message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when sending message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for sending message is invalid. [eFrameworkunifiedStatusInvldBufSize]
///       - Some errors occur, when sending message. [eFrameworkunifiedStatusFail]
///       - Failed to access(shm_open/ftruncate/mmap) the shared memory for sending message data. [eFrameworkunifiedStatusErrOther]
///       - Sending data size specified in the argument (length) is out of range. [eFrameworkunifiedStatusInvldParam]
/// \~english @par Detail
///       It is an asynchronous API. It provides function to send message by message queue. \n
///       Message queue name created by McOpenSender is the sender.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///       Command ID must be within the range PROTOCOL_FRAMEWORKUNIFIED_BASE_CMD(0x10) to PROTOCOL_FRAMEWORKUNIFIED_MAX_CMD(0xFFFFFFF0).
///       Even if a command ID out of range is specified, a message is sent by the command ID (no erro occurs).
///       Command ID out of range are resered ID used for session connection, etc.
/// \~english @par
///       Please note the following points when using this API for application.
///       - The maximum transmission data size (ength) described above is a theoretical value,
///         and the maximum actually usable data size depends on the environment requirements.\n
///         The maximum value is the upper limit of the type (UNIT_MAX) minus the following size.\n
///         Message header section \n
///       - Operation cannot be guaranteed when the size of the allocated area indicated by the address
///         of the pointer (data) to the data buffer does not match the size specified by the size of the data buffer (length).
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McSendWithSession, McReceive
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McSend(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 length, PCVOID data);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McSendWithSession
/// \~english @par Brief
///        Sends data to a message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSender
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @param[in] cmd
///        UI_32 - command id aka the message that's being sent
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[in] data
///        PCVOID - pointer to the data to be sent
/// \~english @param[in] sessionid
///        UI_32 - session id
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK - Success
/// \~english @retval eFrameworkunifiedStatusNullPointer - NULL pointer specified
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - Invalid type of handle
/// \~english @retval eFrameworkunifiedStatusInvldQName - Illegal Message Queue name
/// \~english @retval eFrameworkunifiedStatusMsgQFull - Message queue is full
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - Invalid File-Descriptor
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - An interrupt is generated by the system call (signal)
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - Invalid buffer-size
/// \~english @retval eFrameworkunifiedStatusFail - Some sort of error occurred
/// \~english @retval eFrameworkunifiedStatusErrOther - other errors(Failed to open/allocate shared memory)
/// \~english @retval eFrameworkunifiedStatusInvldParam - Invalid parameter
/// \~english @par Preconditons
///        - Message queue(McOpenSender) for sending message is created.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Message queue HANDLE in HANDLE specified in the argument (hService) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - HANDLE specified in the argument message queue HANDLE in (hService) is not appropriate (which is invalid).
///       [eFrameworkunifiedStatusInvldHandle]
///       - Application name of sender specified in the argument (source) is NULL. [eFrameworkunifiedStatusInvldQName]
///       - Application name of sender specified in the argument (source) exceeds 20byte. [eFrameworkunifiedStatusInvldQName]
///       - Sender data does not match sender data size(size is larger then 0, and data is NULL). [eFrameworkunifiedStatusInvldBuf]
///       - Message queue type of handle specified by argument(hMessage) is not sending type. [eFrameworkunifiedStatusInvldHndlType]
///       - Message queue is full. [eFrameworkunifiedStatusMsgQFull]
///       - File descriptor for sending message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when sending message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for sending message is invalid. [eFrameworkunifiedStatusInvldBufSize]
///       - Some errors occur, when sending message. [eFrameworkunifiedStatusFail]
///       - Failed to access(shm_open/ftruncate/mmap) the shared memory for sending message data. [eFrameworkunifiedStatusErrOther]
///       - Sending data size specified in the argument (length) is out of range. [eFrameworkunifiedStatusInvldParam]
/// \~english @par Detail
///       It is an asynchronous API. It provides function to send message by message queue. \n
///       Message queue name created by McOpenSender is the sender.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///       Command ID must be within the range PROTOCOL_FRAMEWORKUNIFIED_BASE_CMD(0x10) to PROTOCOL_FRAMEWORKUNIFIED_MAX_CMD(0xFFFFFFF0).
/// \~english @par
///        Please note the following points when using this API for application.
///        - McSend should be used if no sessionid is specified.
///        - To communicate with an application that uses NS Framework Dispatcher, use FrameworkunifiedSendMsg, etc.
///        - The maximum transmission data size (length) described above is a theoretical value,
///          and the maximum actually usable data size depends on the environment requirements.\n
///        - The maximum value is the upper limit of the type (UNIT_MAX) minus the following size.\n
///          Message header section\n
///        - Operation cannot be guaranteed when the size of the allocated area indicated by the address
///          of the pointer (data) to the data buffer does not match the size specified by the size of the data buffer (length).
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McSend, McReceiveWithSession, FrameworkunifiedSendMsg
//////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McSendWithSession(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 length, PCVOID data, UI_32 sessionid);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McSendWithPriority
/// \~english @par Brief
///        Sends data to a message queue, inserts based on priority given.
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSender
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @param[in] cmd
///        UI_32 - command id aka the message that's being sent
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[in] data
///        PCVOID - pointer to the data to be sent
/// \~english @param[in] sessionid
///        UI_32 - session id
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK(success)
/// \~english @retval eFrameworkunifiedStatusFail(anything else)
/// \~english @par Preconditons
///        none
/// \~english @par Change of internal status
///        - The internal state is not changed.
/// \~english @par Conditions of processing failure
///       - Function pointer specified by the argument is NULL.
///       - It is an incorrect value(hMessage) or hMessage is NULL.
///       - It is an incorrect value(source) or hMessage is NULL.
///       - It is an incorrect value(data) or hMessage is NULL.
///       - It is an incorrect value(priority).
///       - It is an incorrect value(sessionid).
/// \~english @par Detail
///       Invoke callback function with arguments to send data to message queue based on priority given.\n
///       If callback function is null and expectedCalls is '0', using default function 'McSendWithPriority' to send
///       data to message queue based on priority given.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///       Command ID must be within the range PROTOCOL_FRAMEWORKUNIFIED_BASE_CMD(0x10) to PROTOCOL_FRAMEWORKUNIFIED_MAX_CMD(0xFFFFFFF0).
/// \~english @par
///        Please note the following points when using this API for application.
///        - McSend should be used if no sessionid is specified.
///        - To communicate with an application that uses NS Framework Dispatcher, use FrameworkunifiedSendMsg, etc.
///        - The maximum transmission data size (length) described above is a theoretical value,
///          and the maximum actually usable data size depends on the environment requirements.\n
///          The maximum value is the upper limit of the type (UNIT_MAX) minus the following size.\n
///          Message header section\n
///        - Operation cannot be guaranteed when the size of the allocated area indicated by the address
///          of the pointer (data) to the data buffer does not match the size specified by the size of the data buffer (length).
/// \~english @par
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
//         McOpenSender, McSend, McSendWithSession, FrameworkunifiedSendMsg
//////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McSendWithPriority(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 length, PCVOID data,
                              EFrameworkunifiedMessagePriorties priority, UI_32 sessionid);

// EFrameworkunifiedStatus McSendWithPriorityWithSession(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 length, PCVOID data,
// EFrameworkunifiedMessagePriorties priority, UI_32 sessionid);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McInvokeSync
/// \~english @par Brief
///        Synchronous Invoke. Send data to message queue, and Receive data from message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSender
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @param[in] cmd
///        UI_32 - command id aka the message that's being sent
/// \~english @param[in] msgLength
///        UI_32 - length of the data buffer provided
/// \~english @param[in] msgData
///        PCVOID - pointer to the data to be sent
/// \~english @param[in] sessionid
///        UI_32 - session ID
/// \~english @param[in] hRcvMessage
///        HANDLE - handle to the receive message queue, McOpenSyncReceiver
/// \~english @param[in] responseLength
///        UI_32 -  length of the responnce receive buffer provided
/// \~english @param[out] responseData
///        PVOID -  pointer to the data to be receive
/// \~english @param[out] receivedLength
///        UI_32* - length of the data to be receive
/// \~english @retval EFrameworkunifiedStatus indicates invoke response or message sent error or response receive error
/// \~english @retval eFrameworkunifiedStatusOK - success
/// \~english @retval eFrameworkunifiedStatusInvldParam - Invalid parameter
/// \~english @retval eFrameworkunifiedStatusInvldHandle - Invalid handle
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - Invalid handle type
/// \~english @retval eFrameworkunifiedStatusInvldQName - Invalid message queue name
/// \~english @retval eFrameworkunifiedStatusMsgQFull - Message queue is full
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - Invalid file descriptor
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - An interrupt is generated by the system call (signal)
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - Invalid buffer size
/// \~english @retval eFrameworkunifiedStatusInvldBuf - Invalid buffer
/// \~english @retval eFrameworkunifiedStatusBadConnection - Can't connect with Socket
/// \~english @retval eFrameworkunifiedStatusFail - Some sort of error occurred
/// \~english @retval eFrameworkunifiedStatusErrOther - other errors(Failed to open/allocate shared memory)
/// \~english @par Preconditons
///       - Message queue specified by argument hMessage and hRcvMessage is useful.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - Message queue handle specified in the argument (hMessage) for sending message is NULL.
///       [eFrameworkunifiedStatusInvldHandle]
///       - Message queue handle specified in the argument (hMessage) for sending message is not appropriate (which is
///       invalid). [eFrameworkunifiedStatusInvldHandle]
///       - Message queue handle specified in the argument (hRcvMessage) for receiving message is NULL.
///       [eFrameworkunifiedStatusInvldHandle]
///       - Message queue handle specified in the argument (hRcvMessage) for receiving message is not appropriate (which
///       is invalid). [eFrameworkunifiedStatusInvldHandle]
///       - Size of buffer(responseLength) which is used to storage received message is not 0,
///         but the pointer to this buffer(responseData) is NULL. [eFrameworkunifiedStatusInvldHandle]
///       - Failed to create buffer to storage the response message. [eFrameworkunifiedStatusFail]
///       - Failed to generete random number of the sequence ID for sending message. [eFrameworkunifiedStatusFail]
///       - Data size of sending message is not 0, but the message data(msgData) is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Application name of sender specified in the argument (source) is NULL. [eFrameworkunifiedStatusInvldQName]
///       - Application name of sender specified in the argument (source) exceeds 20byte. [eFrameworkunifiedStatusInvldQName]
///       - Name of message queue handle specified in the argument (hMessage) for sending message is NULL.
///       [eFrameworkunifiedStatusInvldHandle]
///       - Name of message queue handle specified in the argument (hMessage) for sending message exceeds 20byte.
///       [eFrameworkunifiedStatusInvldHandle]
///       - Size of sending message specified in the argument is not 0,
///         but the pointer to sending message is NULL. [eFrameworkunifiedStatusInvldBuf]
///       - Message queue type of handle specified by argument(hMessage) is not sending type. [eFrameworkunifiedStatusInvldHndlType]
///       - Message queue for sending message is full. [eFrameworkunifiedStatusMsgQFull]
///       - File descriptor of message queue for sending message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when sending message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for sending message is invalid. [eFrameworkunifiedStatusInvldBufSize]
///       - Some errors occur, when sending message. [eFrameworkunifiedStatusFail]
///       - Failed to access the shared memory for sending message data. [eFrameworkunifiedStatusErrOther]
///       - Failed to connect with the socket(socket/bind/connect) for checking the connection with application of
///       sender. [eFrameworkunifiedStatusFail]
///       - Failed to wait(epoll_create/epoll_ctl/epoll_wait) for receiving response message. [eFrameworkunifiedStatusFail]
///       - Failed to reconnect with the socket(socket/bind/connect) for checking the connection with application of
///       sender. [eFrameworkunifiedStatusBadConnection]
///       - Application name of sender in response message exceeds 20byte.[eFrameworkunifiedStatusInvldBuf]
///       - Message queue type of handle specified by argument(hMessage) is not receiving type.
///       [eFrameworkunifiedStatusInvldHndlType]
///       - File descriptor of message queue for receiving message is invalid. [eFrameworkunifiedStatusErrNoEBADF]
///       - An interrupt is generated by the system call (signal) when receiving message. [eFrameworkunifiedStatusErrNoEINTR]
///       - Size of buffer for receiving message is invalid. [eFrameworkunifiedStatusInvldBufSize]
///       - Received message is storaged in shared memory, but data size of shared memory is 0. [eFrameworkunifiedStatusErrOther]
///       - Failed to create buffer(calloc) to storage date getted from shared memory. [eFrameworkunifiedStatusFail]
///       - Failed to access(shm_open/fstat/mmap) the shared memory for receiving message data. [eFrameworkunifiedStatusErrOther]
///       - Data size of received message specified by argument(receivedLength) is NULL. [eFrameworkunifiedStatusInvldParam]
///       - Sending data size specified in the argument (msgLength) is out of range. [eFrameworkunifiedStatusInvldParam]
/// \~english @par Detail
///        It provides synchronous communication for message queue between sender and receiver specified in the
///        argument. \n
///        As it is a synchronous function, after sending a message, the sender will wait until getting response form
///        receiver.
///        After receiving the response, set responseData with the received data and return.
/// \~english @par
///        This API provides the inter-process communication function by the message queue for the application
///        which does not use the inter-process communication by NS Framework Dispatcher.
/// \~english @par
///        When data larger than the receive message storage buffer size (resposeLength) is received,
///        the write size to the receive message storage buffer (responseData) does not exceed the specified size,
///        but the receive size is set in the receive message data length (recievedLength) as is.
/// \~english @par
///        The caller must guarantee the allocation of the receive message storage buffer (resonseData) area
///        and the consistency of the receive message stoage buffer sizes (resposeLength).
/// \~english @par
///        Please note the following points when using this API for application.
///        - This API stores up to the storage buffer length (responseLength) and returs eFrameworkunifiedStatusOK even
///          if the received reply message is larger than the storage buffer (responseData) size.\n
///          Therefore, the application shoud compare the received message length (recievedLenght) and the storage buffer length (responseLength) even
///          if this API returns eFrameworkunifiedStatusOK, and detect the above.
///        - Specify 0 for the sessionid of argument.
///          If a value other than 0 is specified, no error occurs and the value is used as is.
///        - To communicate with an application that uses NS Framework Dispatcher, use FrameworkunifiedInvokeSync, etc.
///        - The maximum data lenght (msgLength) of sent messages is a theoretical value,
///          and the maximum value that can be actually used is environment-depedent.\n
///          The maximum value is the upper limit of the type (UNIT_MAX) minus the following size.\n
///          Message header section, System information department in messages\n
///        - Operation cannot be guaranteed when the size of the allocated area indicated by the address
///          of the pointer (msgData) to the data buffer does not match the size specified by the size of the data buffer (msgLength).
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McOpenSyncReceiver, FrameworkunifiedInvokeSync
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McInvokeSync(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 msgLength, PCVOID msgData, UI_32 sessionid,
                        HANDLE hRcvMessage, UI_32 responseLength, PVOID responseData, UI_32 *receivedLength);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McSendSyncResponse
/// \~english @par Brief
///        Sends response to a message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSyncSender
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @param[in] cmd
///        UI_32 - command id aka the message that's being sent
/// \~english @param[in] seq_id
///        UI_32 - response sequence ID
/// \~english @param[in] ret_val
///        EFrameworkunifiedStatus - response status
/// \~english @param[in] length
///        UI_32 - length of the data buffer provided
/// \~english @param[in] data
///        PCVOID - pointer to the data to be sent
/// \~english @retval eFrameworkunifiedStatusOK success
/// \~english @retval eFrameworkunifiedStatusInvldHandle - If handle is NULL or invalid
/// \~english @retval eFrameworkunifiedStatusInvldHndlType -if handle type is invalid
/// \~english @retval eFrameworkunifiedStatusInvldQName - if MQ name is invalid
/// \~english @retval eFrameworkunifiedStatusMsgQFull - if MQ is full
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - if fd is invalid
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR - if system call(signal) interupt occurs
/// \~english @retval eFrameworkunifiedStatusInvldBufSize -if buffer size is invalid
/// \~english @retval eFrameworkunifiedStatusInvldBuf  -if buffer is invalid
/// \~english @retval eFrameworkunifiedStatusFail - any other error
/// \~english @retval eFrameworkunifiedStatusErrOther -other error(memory open/allocate fail)
/// \~english @par Preconditons
///       - The message queue specified by argument hMessage of this API must be allocated
///         in advance by McOpenSender and McOpenSyncSender.
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - sending MQ handle(designated by parameter)is NULL[eFrameworkunifiedStatusInvldHandle]
///       - sending MQ handle(designated by parameter)is invalid[eFrameworkunifiedStatusInvldHandle]
///       - the type of sending MQ handle(designated by parameter)is not sending type[eFrameworkunifiedStatusInvldHndlType]
///       - application name(source,designated by parameter)is NULL[eFrameworkunifiedStatusInvldQName]
///       - the length of application name(designated by parameter)is over 20byte[eFrameworkunifiedStatusInvldQName]
///       - sending data not in accordance with the size of sending data(eg:size is not 0 but data is NULL)
///       [eFrameworkunifiedStatusInvldBuf]
///       - sending data MQ is full [eFrameworkunifiedStatusMsgQFull]
///       - fd of sending data MQ is invalid [eFrameworkunifiedStatusErrNoEBADF]
///       - system call(signal) interupt occurs during MQ receiveing process[eFrameworkunifiedStatusErrNoEINTR]
///       - the size of receiveing MQ buffer is invalid[eFrameworkunifiedStatusInvldBufSize]
///       - error occurs during MQ receiveing process [eFrameworkunifiedStatusFail]
///       - failed to access shared memmory for sending message[eFrameworkunifiedStatusErrOther]
///       - failed to allocate buffer for data retriving from shared memmory[eFrameworkunifiedStatusFail]
/// \~english @par Detail
///        set the response data to buffer and call this API
///        when need to response to synchronous message get from synchronous communication(McInvokeSync)
/// \~english @par
///        This API applies communication function(using message queue)between processes to the application which do not
///        use
///        Dispatcher of NS Framework
/// \~english @par
///        cautions when using this API
///        - Use FrameworkunifiedSetSyncResponseData if communacate with application which use the Dispatcher of NS Framework\n
///        - the limit of size for sending data is according to system
///          but the total size of SSystemMsgHeader and ResponseHeader shared memmory header is 48byte
///          size limit should be(UINT_MAX-48byte)
///        - operation is not guaranteed if the size which shown in data buffer pointer(data) is not in
///          accordance with the length set in data buffer
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McOpenSyncReceiver, McInvokeSync, FrameworkunifiedSetSyncResponseData
//////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McSendSyncResponse(HANDLE hMessage, PCSTR source, UI_32 cmd, UI_32 seq_id, EFrameworkunifiedStatus ret_val, UI_32 length,
                              PCVOID data);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McCreateInvokerName
/// \~english @par Brief
///        Create synchronous invoke response MQ name.
/// \~english @param[in] source
///        PCSTR - source service name
/// \~english @param[in] sessionid
///        UI_32 - session id
/// \~english @param[in] invokerName
///        PSTR - create invoker name buffer
/// \~english @param[in] size
///        UI_32 - InvokerName buffer size
/// \~english @retval EFrameworkunifiedStatus indicates if the close was successfully
/// \~english @retval eFrameworkunifiedStatusOK
/// \~english @retval eFrameworkunifiedStatusInvldParam -if parameter is invalid
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - sender application name(source,designated by parameter) is NULL[eFrameworkunifiedStatusInvldParam]
///       - synchronous communication MQ name(invokerName,designated by parameter) is NULL[eFrameworkunifiedStatusInvldParam]
///       - the size of synchronous communication MQ name buffer(designated by parameter)is NULL[eFrameworkunifiedStatusInvldParam]
/// \~english @par Detail
///        This API will add specific letters to the end of sender application name and return it as synchronous
///        communication MQ name
///        This name will be used when application create the MQ through McOpenSyncReceiver
/// \~english @par
///        cautions when using this API:
///        - the synchronous communication MQ name(invokerName) buffer size should be larger than the length of source
///        application
///          name(at least 4byte larger)
///        - source application name(designated by parameter) should be less than 15byte(according to NS framework
///        spec,error occurs
///          if message name length is over 20byte
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSyncReceiver
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McCreateInvokerName(PCSTR source, UI_32 sessionid, PSTR invokerName, UI_32 size);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McClose
/// \~english @par Brief
///        Close a connection to a Receiver message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle that will be closed
/// \~english @retval EFrameworkunifiedStatus indicates if the close was successfully
/// \~english @retval eFrameworkunifiedStatusOK success
/// \~english @retval eFrameworkunifiedStatusInvldHandle - If hMessage is NULL or invalid
/// \~english @retval eFrameworkunifiedStatusInvldHndlType - if hMessage  is invalid
/// \~english @par Preconditons
///           message queue(McOpenSender, McOpenReceiver) is created in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(hMessage,designated by parameter) is NULL[eFrameworkunifiedStatusInvldHandle]
///       - handle(hMessage,designated by parameter) is invalid[eFrameworkunifiedStatusInvldHandle]
///       - the type of handle(designated by parameter) is neither sending or receiveing[eFrameworkunifiedStatusInvldHndlType]
///       - fail to close the message queue(mq_close)[eFrameworkunifiedStatusInvldHandle]
/// \~english @par Detail
///        close the message sending or receiveing message queue which is designated by parameter\n
///        Application can call this API to close the message queue which is created by McOpenSender
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McOpenReceiver, McOpenSyncReceiver
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McClose(HANDLE hMessage);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetDataUSID
/// \~english @par Brief
///        Get the USID is the Unique Shared Memory ID.e. from the message that was received.
/// \~english @param[in] pData
///        void* -  pointer to the data was received from the McReceive Call
/// \~english @retval TMemID Type of memory buffer identifiers(unsigned int).
/// \~english @retval NoneZero(Success)
/// \~english @retval Zero(Failed)
/// \~english @par Preconditons
///        none
/// \~english @par Change of internal status
///        - The internal state is not changed.
/// \~english @par Conditions of processing failure
///       - Function pointer specified by the argument is NULL.
///       - It is an incorrect value(pData) or pData is NULL.
/// \~english @par Detail
///       Invoke callback function with arguments to get the USID from the message that was received.\n
///       If callback function is null and expectedCalls is '0', using default function 'McGetDataUSID' to get the USID
///       from the message that was received.\n
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
//         FrameworkunifiedGetDataUSID, FrameworkunifiedForwardMessage
//////////////////////////////////////////////////////////////////////////////////////////////
TMemID McGetDataUSID(PVOID pData);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetMsgSrc
/// \~english @par Brief
///        Gets the constant pointer to source message queue.
/// \~english @param[in] data
///        PVOID -  pointer to the data to be received
/// \~english @retval PCSTR message queue's address
///        CONST char* - constant pointer to source message queue
/// \~english @retval NotNull(Success)
/// \~english @retval Null(Failed)
/// \~english @par Preconditons
///        none
/// \~english @par Change of internal status
///        - The internal state is not changed.
/// \~english @par Conditions of processing failure
///       - Function pointer specified by the argument is NULL.
///       - It is an incorrect value(data) or data is NULL.
/// \~english @par Detail
///       Invoke callback function with arguments to get the constant pointer to source message queue.\n
///       If callback function is null and expectedCalls is '0', using default function 'McGetMsgSrc' to the constant
///       pointer to source message queue.\n
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
//         frameworkunifiedSendSyncResponse, frameworkunifiedProcessSyncResponse
//////////////////////////////////////////////////////////////////////////////////////////////
PCSTR McGetMsgSrc(PVOID data);


//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McForward
/// \~english @par Brief
///        Forward a Message to indicate that there is a Shared Memory
/// \~english @param[in] hMessage
///        HANDLE - handle to the send message queue, McOpenSender
/// \~english @param[in] source
///        PCSTR -  the sender of this forwarding message.
/// \~english @param[in] iCmd
///        UI_32 - Command Id message to forward
/// \~english @param[in] USID
///        UI_32 - Unique Shared memory Id
/// \~english @retval EFrameworkunifiedStatus indicates if the close was successfully
///        CONST char* - constant pointer to source message queue
/// \~english @retval Success(eFrameworkunifiedStatusOK)
/// \~english @retval Failed(anything else)
/// \~english @par Preconditons
///        none
/// \~english @par Change of internal status
///        - The internal state is not changed.
/// \~english @par Conditions of processing failure
///       - Function pointer specified by the argument is NULL.
///       - It is an incorrect value(hMessage) or hMessage is NULL.
///       - It is an incorrect value(source) or source is NULL.
///       - It is an incorrect value(iCmd).
///       - It is an incorrect value(USID).
/// \~english @par Detail
///       Invoke callback function with arguments to forward a Message.\n
///       If callback function is null and expectedCalls is '0', using default function 'McForward' to forward a
///       Message.
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
//         FrameworkunifiedForwardMessage
//////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McForward(HANDLE hMessage, PCSTR source, UI_32 iCmd, TMemID USID);


////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McFlushReceiver
/// \~english @par Brief
///        Flush's all data on HANDLE's Receiver message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle to the recvMessage queue that will be flushed
/// \~english @retval void
/// \~english @par Preconditons
///       message queue(McOpenReceiver)is created in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(hMessage,designated by parameter) is NULL
///       - handle(hMessage,designated by parameter) is invalid [-1]
///       - the type of handle(designated by parameter) is neither sending or receiveing[-1]
/// \~english @par Detail
///         message will not be flushed if process failed
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenSender, McOpenReceiver, McOpenSyncReceiver
////////////////////////////////////////////////////////////////////////////////////////////
void McFlushReceiver(HANDLE hMessage);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetQueueName
/// \~english @par Brief
///        Gets the name of the message queue.
/// \~english @param[in] hMessage
///         HANDLE - handle of the message queue,
///                  (handle created with McOpenReceiver or McOpenSender)
/// \~english @retval PCSTR name - name of the message queue if handle is valid else NULL
/// \~english @par Preconditons
///        Dispatcher for application should be created and initilized(FrameworkunifiedCreateDispatcherWithoutLoop)in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(hMessage,designated by parameter) is NULL
///       - handle(hMessage,designated by parameter) is invalid [-1]
///       - the type of handle(designated by parameter) is neither sending or receiveing[-1]
/// \~english @par Detail
///       return the name of specific message queue
///       this APL is used for application to supervize message queue
/// \~english @par
///        This API applies communication function(using message queue)between processes to the application which do not
///        use
///        Dispatcher of NS Framework
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McOpenSender
////////////////////////////////////////////////////////////////////////////////////////////
PCSTR McGetQueueName(HANDLE hMessage);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McGetQueueFD
/// \~english @par Brief
///        Gets the fd of the message queue.
/// \~english @param[in] hMessage
///        HANDLE - handle of the message queue.(handle created with McOpenReceiver or McOpenSender)
/// \~english @retval int fd - fd of the message queue if handle is valid else -1
/// \~english @par Preconditons
///        - Dispatcher for application is created and initialized(FrameworkunifiedCreateDispatcherWithoutLoop) in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(hMessage,designated by parameter) is NULL
///       - handle(hMessage,designated by parameter) is invalid [-1]
///       - the type of handle(designated by parameter) is neither sending or receiveing[-1]
/// \~english @par Detail
///       return the fd of specific message queue
///       this APL is used for application to supervize message queue
/// \~english @par
///        This API applies communication function(using message queue)between processes to the application which do not
///        use
///        Dispatcher of NS Framework
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McOpenReceiver, McOpenSender
////////////////////////////////////////////////////////////////////////////////////////////
int McGetQueueFD(HANDLE hMessage);

//////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McTranslateError
/// \~english @par Brief
///        Translates global error variables into FW EFrameworkunifiedStatus
/// \~english @param[in] error
///        int - error variable
/// \~english @retval EFrameworkunifiedStatus indicates frameworkunified error type
/// \~english @par
///        EFrameworkunifiedStatus Enum
/// \~english @code
///           typedef enum eFrameworkunifiedStatus {
///             eFrameworkunifiedStatusEmptyMediaList    = -10, ///< Empty media list
///             eFrameworkunifiedStatusSessionLimitMaxedOut  = -9,  ///< Maximum session limit reached
///             eFrameworkunifiedStatusDbRecNotFound       = -8, ///< Database record not found
///             eFrameworkunifiedStatusDbResultError       = -7, ///< Database result error
///             eFrameworkunifiedStatusDbExecuteFail       = -6, ///< Database execute fail
///             eFrameworkunifiedStatusSemCloseFail        = -5, ///< Semaphore close failed
///             eFrameworkunifiedStatusSemUnlockFail       = -4, ///< Semaphore unlock failed
///             eFrameworkunifiedStatusSemLockFail         = -3, ///< Semaphore lock failed
///             eFrameworkunifiedStatusFail                = -2, ///< Failed
///             eFrameworkunifiedStatusErrOther            = -1, ///< Unknown error
///             eFrameworkunifiedStatusOK                  = 0,  ///< Success / Pass / OK
///             eFrameworkunifiedStatusInvldBuf            = 1,  ///< Invalid buffer
///             eFrameworkunifiedStatusInvldHandle         = 2,  ///< Invalid handle
///             eFrameworkunifiedStatusInvldHndlType       = 3,  ///< Invalid handle type
///             eFrameworkunifiedStatusInvldQName        = 4,  ///< Invalid messasge queue name
///             eFrameworkunifiedStatusMsgQFull            = 5,  ///< Message queue full
///             eFrameworkunifiedStatusInvldNotification   = 6,///< The Notification event not present
///             eFrameworkunifiedStatusInvldParam        = 7,  ///< Invalid parameter
///             eFrameworkunifiedStatusInvldBufSize        = 8,  ///< Buf size too small
///             eFrameworkunifiedStatusInvldID             = 9,  ///< Unrecognized ID
///             eFrameworkunifiedStatusCannotRelease       = 10, ///< Cannot release resource
///             eFrameworkunifiedStatusBadConnection       = 11, ///< Could not locate resource
///             eFrameworkunifiedStatusExit            = 12,  ///< Normal application termination
///             eFrameworkunifiedStatusNotImplemented      = 13,  ///< incomplete feature
///             eFrameworkunifiedStatusThreadBusy          = 14,  ///< Joined thread is already being joined
///             eFrameworkunifiedStatusThreadSelfJoin      = 15,  ///< Thread is joining itself
///             eFrameworkunifiedStatusThreadInvalidVal    = 16, ///< Invalid value passed
///             eFrameworkunifiedStatusThreadNotExist      = 17,  ///< The thread does not exist
///             eFrameworkunifiedStatusFault               = 18,  ///< A fault occurred while attempting to make call
///             eFrameworkunifiedStatusServNotFound        = 19,  ///< Service not present in serv dir
///             eFrameworkunifiedStatusServerInUse         = 20,  ///< Service already processing 1 client request
///             eFrameworkunifiedStatusDbIndexing        = 21,  ///< Database Indexing in progress
///             eFrameworkunifiedStatusNullPointer       = 22,
///             eFrameworkunifiedStatusMsgNotProcessed     = 23,
///             eFrameworkunifiedStatusFileLoadSuccess     = 24, ///< File Load Success
///             eFrameworkunifiedStatusFileLoadError       = 25, ///< File Load Error
///             eFrameworkunifiedStatusAccessError         = 26, ///< Error when accessing resource
///             eFrameworkunifiedStatusDuplicate           = 27, ///< Duplicate entry
///             eFrameworkunifiedStatusMsgQEmpty             = 28, ///< Message queue empty
///             eFrameworkunifiedStatusThreadAlreadyRunning  = 29,
///             eFrameworkunifiedStatusErrNoEBADF            = 30,  ///< Bad file descriptor
///             eFrameworkunifiedStatusErrNoEAGAIN           = 31,  ///< Resource unavailable, try again
///             eFrameworkunifiedStatusErrNoEINTR            = 32,  ///< Interrupted system call
///             eFrameworkunifiedStatusSessionErr      = 33,  ///< Error in session handling
///             eFrameworkunifiedStatusDBCorrupt       = 34,  ///< Database corrupt
///             eFrameworkunifiedStatusDBFileNotFound    = 35  ///< Database file not found
///           } EFrameworkunifiedStatus, *PEFrameworkunifiedStatus;
///            @endcode
/// \~english @par Preconditons
///        none
/// \~english @par Change of internal status
///        - The internal state is not changed.
/// \~english @par Conditions of processing failure
///       - Function pointer specified by the argument is NULL.
///       - It is an incorrect value(error).
/// \~english @par Detail
///       Invoke callback function with arguments to translates global error variables.\n
///       If callback function is null and expectedCalls is '0', using default function 'McTranslateError' to translates
///       global error variables.
/// \~english @par Classification
///        Public
/// \~english @par Type
///        Sync only
/// \~english @see
//         none
//////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McTranslateError(int error);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McZcSetParam
/// \~english @par Brief
///        set variable parameter to messeg-sending header
/// \~english @param[in] handle
///        HANDLE - handle to the send message queue, McZcOpenSender
/// \~english @param[in] cmd
///        UI_32 -cmd for sending(ID to identify protocol of service)
/// \~english @param[in] length
///        UI_32 -size of buffer for message-sending
/// \~english @retval EFrameworkunifiedStatus indicates if the message was set successfully
/// \~english @retval eFrameworkunifiedStatusOK sucess
/// \~english @retval eFrameworkunifiedStatusInvldHandle - If hMessage is NULL or invalid
/// \~english @retval eFrameworkunifiedStatusInvldBuf - invalid buffer
/// \~english @retval eFrameworkunifiedStatusInvldBufSize - invalid buffer size
/// \~english @par Preconditons
///        message queue is created by McZcOpenSender in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(designated by parameter) is NULL[NULL]
///       - handle(designated by parameter) is invalid [NULL]
///       - the buffer for sending in handle(designated by parameter) is NULL[NULL]
///       - the size of data for sending(designated by parameter)(except header) is larger than the size of
///       sending-buffer[eFrameworkunifiedStatusInvldBufSize]
/// \~english @par Detail
///        set the variable sending cmd and sending data length in sending buffer of message-sending handle
///        This API will only do the initialization of message header.detail setting of data for sending will be done\n
///        Application can use McZcGetBuf to do data setting
/// \~english @par
///       CMD ID should be in (PROTOCOL_FRAMEWORKUNIFIED_BASE_CMD(0x10) to PROTOCOL_FRAMEWORKUNIFIED_MAX_CMD(0xFFFFFFF0))
/// \~english @par
///        cautions when using this API
///        - detail data sending size should be in accordance with the data sending size which is set in this API
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McZcGetBuf, McZcSend
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McZcSetParam(HANDLE handle, UI_32 cmd, UI_32 length);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McZcGetBuf
/// \~english @par Brief
///       get the fist address of buffer for sending
/// \~english @param[in] handle
///        HANDLE - handle to the send message queue, McZcOpenSender
/// \~english @retval PVOID  the first address of buffer for data-sending
/// \~english @retval NULL NULL pointer(fail to get)
/// \~english @par Preconditons
///        message queue is created by McZcOpenSender in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(designated by parameter) is NULL[NULL]
///       - handle(designated by parameter) is invalid [NULL]
///       - the buffer for sending in handle(designated by parameter) is NULL[NULL]
/// \~english @par Detail
///        get the first address of data(excpet the message-header)from sending-buffer in message-sending handle
///        application will set the address got as sending message
/// \~english @par
///        cautions When using the application
///        - result will not be guaranteed if  the handle set is different from message-sending queue handle
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McZcGetBuf
////////////////////////////////////////////////////////////////////////////////////////////
PVOID McZcGetBuf(HANDLE handle);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McZcSend
/// \~english @par Brief
///       send message
/// \~english @param[in] hMessage
///        HANDLE - handle to the sendMessage, McZcOpenSender
/// \~english @retval EFrameworkunifiedStatus indicates if the message was sent successfully
/// \~english @retval eFrameworkunifiedStatusOK success
/// \~english @retval eFrameworkunifiedStatusInvldHandle - If hMessage is NULL or invalid
/// \~english @retval eFrameworkunifiedStatusInvldBuf - buffer is invalid
/// \~english @retval eFrameworkunifiedStatusInvldHndlType -handle type is invalid
/// \~english @retval eFrameworkunifiedStatusMsgQFull - message queue is full
/// \~english @retval eFrameworkunifiedStatusErrNoEBADF - file descriptor invalid
/// \~english @retval eFrameworkunifiedStatusErrNoEINTR -system call(signal) interupt
/// \~english @retval eFrameworkunifiedStatusInvldBufSize -invalid buffer size
/// \~english @par Preconditons
///        message queuqe is created by McZcOpenSender
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - handle(hMessage,designated by parameter)is NULL[eFrameworkunifiedStatusInvldHandle]
///       - handle(hMessage,designated by parameter)is invalid[eFrameworkunifiedStatusInvldHandle]
///       - the sending-buffer in handle(hMessage,designated by parameter)is NULL[eFrameworkunifiedStatusInvldBuf]
///       - the type of message queue in handle(hMessage,designated by parameter)is not sending
///       type[eFrameworkunifiedStatusInvldHndlType]
///       - message-sending queue is full[eFrameworkunifiedStatusMsgQFull]
///       - file descriptor of message-sending queue is invalid[eFrameworkunifiedStatusErrNoEBADF]
///       - system call(singal) interupts during the message sending process[eFrameworkunifiedStatusErrNoEINTR]
///       - the size of buffer for message-sending is invalid[eFrameworkunifiedStatusInvldBufSize]
/// \~english @par Detail
///        send message using specific message-sending handle.\n
///        data for sending should be set to message-sending handle(hMessage)beforhead using McZcSetParam, McZcGetBuf
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Method
/// \~english @see McZcOpenSender, McZcSetParam, McZcGetBuf
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McZcSend(HANDLE hMessage);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McZcOpenSender
/// \~english @par Brief
///        create message-sending queuqe
/// \~english @param[in] source
///        PCSTR - app (You) the sender
/// \~english @retval Handle for sending messages to a queue (If INVALID_HANDLE is returned its an error)
/// \~english @retval NULL NULL pointer(fail to get)
/// \~english @par Preconditons
///        - none
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - message queue name(designated by parameter)is NULL[NULL]
///       - the length of message queue name(designated by parameter)(source) is over 20byte[NULL]
///       - fail to get memmory for restoring formated message queue name [NULL]
///       - length of formated message queue name is over 15byte or 16byte(when initial letter is'/')[NULL]
///       - fail to get message queue(mq_open)[NULL]
///       - fail to get memmory for message queue info managment(malloc)[NULL]
///       - fail to get memory for sending buffer[NULL]
/// \~english @par Detail
///         create message queuqe and return the handle
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McZcSetParam, McZcGetBuf, McZcSend, McZcClose
////////////////////////////////////////////////////////////////////////////////////////////
HANDLE McZcOpenSender(PCSTR source);

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup McZcClose
/// \~english @par Brief
///       close the handle to message queue
/// \~english @param[in] handle
///        HANDLE - handle to the send message queue, handle got through McZcOpenSender
/// \~english @retval EFrameworkunifiedStatus indicates if the message was close successfully
/// \~english @retval eFrameworkunifiedStatusOK
/// \~english @retval eFrameworkunifiedStatusInvldHandle - If hMessage is NULL or invalid
/// \~english @retval eFrameworkunifiedStatusInvldHndlType If handle type is invalid
/// \~english @par Preconditons
///       - message queue is created by McZcOpenSender in advance
/// \~english @par Change of internal status
///        - none
/// \~english @par Conditions of processing failure
///       - message handle(designated by parameters) is NULL[eFrameworkunifiedStatusInvldHandle]
///       - message handle(designated by parameters) is invalid [eFrameworkunifiedStatusInvldHandle]
///       - message handle type(designated by parameters) is not match(neither send or receive)[eFrameworkunifiedStatusInvldHndlType]
///       - fail to close message queue(mq_close)[eFrameworkunifiedStatusInvldHandle]
/// \~english @par Detail
///        Close message-sending or message-receiving  handle(designated by parameters)\n
///        application call this function to close message queue which is created by McZcOpenSender.
/// \~english @par Classification
///          Public
/// \~english @par Type
///          Sync only
/// \~english @see McZcOpenSender
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus McZcClose(HANDLE handle);

#ifdef __cplusplus
}
#endif
#endif /* __NATIVESERVICES_MESSAGE_CENTER_IF_H__ */  // NOLINT  (build/header_guard)
/** @}*/
/** @}*/
/** @}*/
/** @}*/
//@}