summaryrefslogtreecommitdiffstats
path: root/nsframework/framework_unified/client/NS_NPServiceIf/src/ns_np_service_api.c
blob: d41514d19c8402236d8ea6793f279be5c8245dfa (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
/*
 * @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.
 */

///////////////////////////////////////////////////////////////////////////////
/// \ingroup  tag_NPService
/// \brief    APIs to be used by clients while invoking Notification Service.
///
/// Implementation of APIs for Publishers and Subscribers of notifications.
///
///////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
// Include Files
///////////////////////////////////////////////////////////////////////////////
#include <native_service/ns_np_service.h>
#include <native_service/ns_np_service_protocol.h>
#include <native_service/ns_np_service_if.h>
#include <native_service/ns_message_center_if.h>
#include <native_service/ns_mc_system_info.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <limits.h>
#include <other_service/strlcpy.h>

// define user name as blank for global persistence file
#define GLOBAL_PERSISTENCE    ""

// this is the maximum number of notifications that can be registered/ unregistered at once
const UI_32 maxNotification = UINT_MAX / sizeof(NC_register_notif_msg);



////////////////////////////////////////////////////////////////////////////////////////////
/// NPRegisterNotifications
/// API to send message to Notification Service to register a set of notifications
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] numNotifications
///         PCSTR - Name of Notification
/// \param [in] pNotificationArray
///         NotificationInfo - Array of notifications
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPRegisterNotifications(HANDLE hNPMsgQ, PCSTR pPublisherName, UI_32 numNotifications,
                                   NotificationInfo *pNotificationArray) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (maxNotification < numNotifications) {
    return eFrameworkunifiedStatusFail;
  }

  size_t sizeOfMsg = (sizeof(NC_register_notif_msg) * numNotifications) + sizeof(UI_32);
  if (NULL == pNotificationArray) {
    return eFrameworkunifiedStatusInvldParam;
  }

  PCHAR *pMsgBuffer = (PCHAR *)malloc(sizeOfMsg);

  if (NULL == pMsgBuffer) {
    return eFrameworkunifiedStatusFail;
  }

  NC_register_multiple_notif_msg *pNotifMsg = (NC_register_multiple_notif_msg *)pMsgBuffer;

  pNotifMsg->numNotifications = numNotifications;
  memcpy(&pNotifMsg->notifierList[0], pNotificationArray, sizeof(NC_register_notif_msg) * numNotifications);

  for(UI_32 i = 0; i < numNotifications; i++) {
    // Insert \0 at the end of character (up to 64bytes) by copying with strlcpy.
    strlcpy(pNotifMsg->notifierList[i].notificationName,
            pNotificationArray[i].notificationName,
            sizeof(pNotificationArray[i].notificationName));
  }

  eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_REGISTER_EV_REQ, (UI_32)sizeOfMsg, (PVOID)pNotifMsg) ;

  free(pMsgBuffer);
  pMsgBuffer = NULL;

  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup  NPUnRegisterNotifications
/// API to send message to Notification Service to remove a set of notifications
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] numNotifications
///         PCSTR - Name of Notification
/// \param [in] pNotificationArray
///         NotificationInfo - Array of notifications
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPUnRegisterNotifications(HANDLE hNPMsgQ, PCSTR pPublisherName, UI_32 numNotifications,
                                     NotificationInfo *pNotificationArray) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (maxNotification < numNotifications) {
    return eFrameworkunifiedStatusFail;
  }

  size_t sizeOfMsg = (sizeof(NC_unregister_notif_msg) * numNotifications) + sizeof(UI_32);
  UI_32 i = 0;
  if (NULL == pNotificationArray) {
    return eFrameworkunifiedStatusInvldParam;
  }

  PCHAR *pMsgBuffer = (PCHAR *)malloc(sizeOfMsg);

  if (NULL == pMsgBuffer) {
    return eFrameworkunifiedStatusFail;
  }

  NC_unregister_multiple_notif_msg *pNotifMsg = (NC_unregister_multiple_notif_msg *)pMsgBuffer;

  pNotifMsg->numNotifications = numNotifications;

  for (i = 0; i < numNotifications; ++i) {
    strlcpy(pNotifMsg->notificationList[i].notificationName, pNotificationArray[i].notificationName,
            sizeof(pNotifMsg->notificationList[i].notificationName));
  }

  // mb20110110 Fixed  issue 135
  eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_UNREGISTER_EV_REQ, (UI_32)sizeOfMsg, (VOID *)pMsgBuffer) ;

  free(pMsgBuffer);
  pMsgBuffer = NULL;  // mb20110110  issue 134

  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPRegisterNotification
/// API to send message to Notification Service to register a notification
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] notif_name
///         PCSTR - Name of Notification
/// \param [in] max_length
///         const UI_32 - Max size of the notification message
/// \param [in] bIsPersistent
///         const UI_8 - Flag to indicate if it has to be persistent
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPRegisterNotification(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR notificationName,
                                  const UI_32 maxLength, const EFrameworkunifiedNotificationType perstype)

{
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != notificationName) {
    if (strlen(pPublisherName) && strlen(notificationName)) {
      NotificationInfo data = {};
      strlcpy(data.notificationName, notificationName, sizeof(data.notificationName));
      data.persType = perstype;
      data.maxLength = maxLength;

      eFrameworkunifiedStatus = NPRegisterNotifications(hNPMsgQ, pPublisherName, 1, &data);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPUnRegisterNotification
/// API to send message to Notification Service to remove a notification
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] pNotification
///         PCSTR - Name of Notification
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPUnRegisterNotification(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pNotification) {

  NotificationInfo data = {};
  strlcpy(data.notificationName, pNotification, sizeof(data.notificationName));
  return (NPUnRegisterNotifications(hNPMsgQ, pPublisherName, 1, &data));
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPPublishNotification
/// API to send message to Notification Service to notify subscribers
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] pNotification
///         PCSTR - Name of Notification
/// \param [in] pData
///         VOID * - Data buffer
/// \param [in] iLength
///         const UI_32 - Size of data buffer
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPPublishNotification(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pNotification,
                                 PCVOID pData, const UI_32 iLength) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pNotification) {
    if (strlen(pPublisherName) && strlen(pNotification)) {
      if (strlen(pNotification) < MAX_STRING_SIZE_NOTIFICATION) {
        // Insert \0 at the end of characters (up to 64bytes) by copying pNotification to local variables with strlcpy.
        char tmp_notification[MAX_STRING_SIZE_NOTIFICATION] = {0};
        strlcpy(tmp_notification, pNotification, MAX_STRING_SIZE_NOTIFICATION);
        eFrameworkunifiedStatus =  McSendWithSysInfo(hNPMsgQ, pPublisherName, NPS_PUBLISH_EV_REQ,
                                        tmp_notification, iLength, pData, 0);
      } else {
        eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
      }
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPSubscribeToNotification
/// API to send message to Notification Service to add to subscription list for
/// that notification
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pSubscriberName
///         PCSTR - Name of subscriber message queue
/// \param [in] pNotification
///         PCSTR - Name of Notification
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSubscribeToNotification(HANDLE hNPMsgQ, PCSTR pSubscriberName, PCSTR pNotification) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;
  if (NULL != hNPMsgQ && NULL != pSubscriberName && NULL != pNotification) {
    if (strlen(pSubscriberName) && strlen(pNotification)) {
      NC_subscribe_msg data;
      snprintf(data.notificationName, sizeof(data.notificationName), "%s", pNotification);

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pSubscriberName, NPS_SUBSCRIBE_TO_EV_REQ, sizeof(NC_subscribe_msg), (PVOID)&data);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
// NPSubscribeToNotifications
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSubscribeToNotifications(HANDLE hNPMsgQ, PCSTR pSubscriberName, UI_32 numNotifications,
                                      SubscribeInfo *pSubscribeInfoArray) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (maxNotification < numNotifications) {
    return eFrameworkunifiedStatusFail;
  }

  size_t sizeOfMsg = (sizeof(NC_subscribe_msg) * numNotifications) + sizeof(UI_32);
  if (NULL == pSubscribeInfoArray) {
    return eFrameworkunifiedStatusInvldParam;
  }

  PCHAR *pMsgBuffer = (PCHAR *)malloc(sizeOfMsg);

  if (NULL == pMsgBuffer) {
    return eFrameworkunifiedStatusFail;
  }

  NC_subscribe_multiple_notif_msg *pSubscribeMsg = (NC_subscribe_multiple_notif_msg *)pMsgBuffer;

  pSubscribeMsg->numNotifications = numNotifications;
  memcpy(&pSubscribeMsg->notificationList[0], pSubscribeInfoArray, sizeof(NC_subscribe_msg) * numNotifications);

  for(UI_32 i = 0; i < numNotifications; i++) {
    // Insert \0 at the end of character (up to 64bytes) by copying with strlcpy.
    strlcpy(pSubscribeMsg->notificationList[i].notificationName,
            pSubscribeInfoArray[i].notificationName,
            sizeof(pSubscribeInfoArray[i].notificationName));
  }

  eFrameworkunifiedStatus = McSend(hNPMsgQ, pSubscriberName, NPS_BATCH_SUBSCRIBE_TO_EV_REQ, (UI_32)sizeOfMsg, (PVOID)pSubscribeMsg) ;

  free(pMsgBuffer);
  pMsgBuffer = NULL;

  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPUnsubscribeFromNotification
/// API to send message to Notification Service to remove from subscription list for
/// that notification
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pSubscriberName
///         PCSTR - Name of subscriber message queue
/// \param [in] pNotification
///         PCSTR - Name of Notification
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPUnsubscribeFromNotification(HANDLE hNPMsgQ, PCSTR pSubscriberName, PCSTR pNotification) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pSubscriberName && NULL != pNotification) {
    if (strlen(pSubscriberName) && strlen(pNotification)) {
      NC_unsubscribe_frm_notif_msg data;
      snprintf(data.notificationName, sizeof(data.notificationName), "%s", pNotification);

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pSubscriberName, NPS_UNSUBSCRIBE_FROM_EV_REQ, sizeof(NC_unsubscribe_frm_notif_msg),
                          (PVOID)&data);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
// NPUnsubscribeToNotifications
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPUnsubscribeFromNotifications(HANDLE hNPMsgQ, PCSTR pUnSubscriberName, UI_32 numNotifications,
                                          SubscribeInfo *pUnSubscribeInfoArray) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pUnSubscriberName) {
    if (strlen(pUnSubscriberName)) {
      if (maxNotification < numNotifications) {
        return eFrameworkunifiedStatusFail;
      }

      size_t sizeOfMsg = (sizeof(NC_subscribe_msg) * numNotifications) + sizeof(UI_32);
      if (NULL == pUnSubscribeInfoArray) {
        return eFrameworkunifiedStatusInvldParam;
      }

      PCHAR *pMsgBuffer = (PCHAR *)malloc(sizeOfMsg);

      if (NULL == pMsgBuffer) {
        return eFrameworkunifiedStatusFail;
      }

      NC_unsubscribe_multiple_notif_msg *pUnSubscribeMsg = (NC_unsubscribe_multiple_notif_msg *)pMsgBuffer;

      pUnSubscribeMsg->numNotifications = numNotifications;
      memcpy(&pUnSubscribeMsg->notificationList[0], pUnSubscribeInfoArray, sizeof(NC_subscribe_msg) * numNotifications);

      for(UI_32 i = 0; i < numNotifications; i++) {
        // Insert \0 at the end of character (up to 64bytes) by copying with strlcpy.
        strlcpy(pUnSubscribeMsg->notificationList[i].notificationName,
                pUnSubscribeInfoArray[i].notificationName,
                sizeof(pUnSubscribeInfoArray[i].notificationName));
      }

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pUnSubscriberName, NPS_BATCH_UNSUBSCRIBE_FROM_EV_REQ, (UI_32)sizeOfMsg, (PVOID)pUnSubscribeMsg) ;

      free(pMsgBuffer);
      pMsgBuffer = NULL;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPReadPersistedData
/// API to requested the persistent data corresponding to specified notification if available
/// The caller recieves an acknowledgement once NPS completes data retrieval and sends it.
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of publisher message queue
/// \param [in] notification
///         PCSTR - Name of Notification
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPReadPersistedData(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR notification) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != notification) {
    if (strlen(pPublisherName) && strlen(notification)) {
      NC_get_pers_data_msg msg;

      snprintf(msg.notificationName, sizeof(msg.notificationName), "%s", notification);

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_GET_PERS_DATA_REQ, sizeof(msg), (PVOID)&msg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// \ingroup  NPSavePersistentData
/// API to send message to Notification Service to save all persisted data that in Ram
/// to the filesystem via a file write.
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of publisher message queue
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSavePersistentData(HANDLE hNPMsgQ, PCSTR pPublisherName) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_SAVE_PERS_DATA_REQ, 0, NULL) ;

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPRegisterPersistentFile
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPRegisterPersistentFile(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pTag,
                                    BOOL bIsUserFile) {  // EFrameworkunifiedRegisterType eRegisterType)
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pTag) {
    if (strlen(pPublisherName) && strlen(pTag)) {
      NC_RegisterPersistentFileMsg tMsg;

      snprintf(tMsg.cFileTag, sizeof(tMsg.cFileTag), "%s", pTag);
      tMsg.bIsUserFile = bIsUserFile;

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_SET_PERSIST_FILE_PATH_REQ, sizeof(tMsg),
                          (PVOID)&tMsg);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPLoadPersistentFile
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPLoadPersistentFile(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pDstFilePath,
                                PCSTR pTag, HANDLE hUser) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName &&
      NULL != pDstFilePath && NULL != pTag) {
    if (strlen(pPublisherName) && strlen(pDstFilePath) && strlen(pTag)) {
      NC_LoadPersistedFileMsg tMsg = {};

      snprintf(tMsg.cFilePath, sizeof(tMsg.cFilePath), "%s", pDstFilePath);
      snprintf(tMsg.cFileTag,  sizeof(tMsg.cFileTag),  "%s", pTag);

      if (hUser) {
        NC_User *pUser = (NC_User *) hUser;
        snprintf(tMsg.cUsername,  sizeof(tMsg.cUsername),  "%s", pUser->cUsername != 0 ? pUser->cUsername : NULL);
      } else {
        strlcpy(tMsg.cUsername, GLOBAL_PERSISTENCE, sizeof(tMsg.cUsername));
      }

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_GET_PERS_FILE_REQ, sizeof(tMsg), (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPReleasePersistentFile
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPReleasePersistentFile(HANDLE hNPMsgQ, PCSTR pPublisherName, EFrameworkunifiedReleaseType eFrameworkunifiedReleaseType, PCSTR pTag,
                                   PCSTR pFullFilePath,  HANDLE hUser) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName &&
      NULL != pTag && NULL != pFullFilePath) {
    if (strlen(pPublisherName) && strlen(pTag) && strlen(pFullFilePath)) {
      NC_ReleasePersistentFileMsg tMsg = {eFrameworkunifiedReleaseType, {0}, {0}};

      snprintf(tMsg.cFilePath, sizeof(tMsg.cFilePath), "%s", pFullFilePath);
      snprintf(tMsg.cFileTag, sizeof(tMsg.cFileTag), "%s", pTag);

      if (hUser) {
        NC_User *pUser = (NC_User *) hUser;
        snprintf(tMsg.cUsername,  sizeof(tMsg.cUsername),  "%s", pUser->cUsername != 0 ? pUser->cUsername : NULL);
      } else {
        strlcpy(tMsg.cUsername, GLOBAL_PERSISTENCE, sizeof(tMsg.cUsername));
      }

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_RELEASE_PERS_FILE_REQ, sizeof(tMsg), (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}
////////////////////////////////////////////////////////////////////////////////////////////
/// NPPersistentSync
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPPersistentSync(PCSTR SrcName, HANDLE hNPMsgQ, UI_32 sessionid, PCSTR pPublisherName) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;
  CHAR data[4];
  UI_32 length;
  HANDLE hResponse;
  char mc_invoker_name[MAX_QUEUE_NAME_SIZE];

  McCreateInvokerName(SrcName, sessionid, mc_invoker_name, sizeof(mc_invoker_name));
  hResponse = McOpenSyncReceiver(&mc_invoker_name[0]);
  if (hResponse != NULL) {
    eFrameworkunifiedStatus = McInvokeSync(hNPMsgQ, pPublisherName, NPS_NPP_SYNC_REQ   , sizeof(data), data, sessionid,
                              hResponse, 0, NULL, &length);
    McClose(hResponse);
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusFail;
  }
  return eFrameworkunifiedStatus;
}
////////////////////////////////////////////////////////////////////////////////////////////
/// NPSetPersonality
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSetPersonality(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pUserName) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pUserName) {
    if (strlen(pPublisherName) && strlen(pUserName)) {
      // NC_SetPersonalityMsg tMsg;
      NC_User tMsg;

      snprintf(tMsg.cUsername, sizeof(tMsg.cUsername), "%s", pUserName);

      // eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_SET_PERSONALITY_REQ, sizeof(tMsg), (PVOID)&tMsg ) ;
      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_CHANGE_PERSONALITY_REQ, sizeof(tMsg), (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}
////////////////////////////////////////////////////////////////////////////////////////////
/// NPRegisterPersistentFolder
/// API to register persistence tag to folder that need to persist
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of publisher message queue
/// \param [in] pTag
///         PCSTR - Tag associated to folder that need to persist
/// \param [in] bIsUserFolder
///         BOOL - TRUE - user specific folder
///          FALSE - global file
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPRegisterPersistentFolder(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pTag, BOOL bIsUserFolder) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pTag) {
    if (strlen(pPublisherName) && strlen(pTag)) {
      NC_RegisterPersistentFolderMsg tMsg;

      snprintf(tMsg.cFolderTag, sizeof(tMsg.cFolderTag), "%s", pTag);
      tMsg.bIsUserFolder = bIsUserFolder;

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_SET_PERSIST_FOLDER_PATH_REQ, sizeof(tMsg),
                          (PVOID)&tMsg);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPLoadPersistentFolder
/// API to load folder to given path and associated with given tag from persistent memory
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of publisher message queue
/// \param [in] pDstFolderPath
///         PCSTR - Destination where folder needs to be loaded
/// \param [in] pTag
///         PCSTR - Tag associated to folder that need to loaded from persistent memory
/// \param [in] hUser
///         HANDLE - Handle of the user
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPLoadPersistentFolder(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pDstFolderPath,
                                  PCSTR pTag, HANDLE hUser) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName &&
      NULL != pDstFolderPath && NULL != pTag) {
    if (strlen(pPublisherName) && strlen(pDstFolderPath) && strlen(pTag)) {
      NC_LoadPersistedFolderMsg tMsg;

      snprintf(tMsg.cFolderPath, sizeof(tMsg.cFolderPath), "%s", pDstFolderPath);
      snprintf(tMsg.cFolderTag,  sizeof(tMsg.cFolderTag),  "%s", pTag);

      if (hUser) {
        NC_User *pUser = (NC_User *) hUser;
        snprintf(tMsg.cUsername,  sizeof(tMsg.cUsername),  "%s", pUser->cUsername != 0 ? pUser->cUsername : NULL);
      } else {
        strlcpy(tMsg.cUsername, GLOBAL_PERSISTENCE, sizeof(tMsg.cUsername));
      }

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_GET_PERS_FOLDER_REQ, sizeof(tMsg), (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPReleasePersistentFolder
/// API to release folder for saving with tag name to persistent memory
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of publisher message queue
/// \param [in] eFrameworkunifiedReleaseType
///         EFrameworkunifiedReleaseType - eFrameworkunifiedNotOnRelease     :not on release
///                           eFrameworkunifiedPersistOnShutdown:persist on shutdown
///                           eFrameworkunifiedPersistInstantly :persist instantly
/// \param [in] pTag
///         PCSTR - Tag associated to folder that need to persist
/// \param [in] pFullFolderPath
///         PCSTR - full folder path of folder that need to be stored in persistent memory
/// \param [in] hUser
///         HANDLE - Handle of the user
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPReleasePersistentFolder(HANDLE hNPMsgQ, PCSTR pPublisherName, EFrameworkunifiedReleaseType eFrameworkunifiedReleaseType,
                                     PCSTR pTag, PCSTR pFullFolderPath, HANDLE hUser) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName &&
      NULL != pTag && NULL != pFullFolderPath) {
    if (strlen(pPublisherName) && strlen(pFullFolderPath) && strlen(pTag)) {
      NC_ReleasePersistentFolderMsg tMsg = {eFrameworkunifiedReleaseType, {0}, {0}};

      snprintf(tMsg.cFolderPath, sizeof(tMsg.cFolderPath), "%s", pFullFolderPath);
      snprintf(tMsg.cFolderTag, sizeof(tMsg.cFolderTag), "%s", pTag);

      if (hUser) {
        NC_User *pUser = (NC_User *) hUser;
        snprintf(tMsg.cUsername,  sizeof(tMsg.cUsername),  "%s", pUser->cUsername != 0 ? pUser->cUsername : NULL);
      } else {
        strlcpy(tMsg.cUsername, GLOBAL_PERSISTENCE, sizeof(tMsg.cUsername));
      }

      eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_RELEASE_PERS_FOLDER_REQ, sizeof(tMsg), (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPChangePersonality
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPChangePersonality(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pUserName) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != pUserName && 0 != strlen(pUserName)) {
    eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_CHANGE_PERSONALITY_REQ, sizeof(pUserName), (PVOID)&pUserName) ;
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }
  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// SendStopToNSNPP
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus SendStopToNSNPP(HANDLE hNPMsgQ, PCSTR pPublisherName, EFrameworkunifiedShutdownType eShutdownType, UI_32 uiStopMsgData) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != pPublisherName && 0 != strlen(pPublisherName)) {
    NC_StopMsgData tMsg;
    tMsg.eShutdownType = eShutdownType;
    tMsg.uiStopMsgData = uiStopMsgData;

    eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_NPP_STOP_REQ, sizeof(tMsg), (PVOID)&tMsg);
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }
  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPGetReadyStatusOfNPP
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPGetReadyStatusOfNPP(HANDLE hNPMsgQ, PCSTR pRequesterName) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != pRequesterName && 0 != strlen(pRequesterName)) {
    eFrameworkunifiedStatus = McSend(hNPMsgQ, pRequesterName, NPS_GET_READYSTATUS_REQ, 0, NULL);
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }
  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPRegisterImmediateNotifications
/// API to send message to Notification Service to register a set of notifications
///
/// \param [in] hNPMsgQ
///         HANDLE - Handle to message queue of Notification service.
/// \param [in] pPublisherName
///         PCSTR - Name of Publisher message queue
/// \param [in] numNotifications
///         PCSTR - Name of Notification
/// \param [in] pNotificationArray
///         ImmediateNotificationInfo - Array of notifications
///
/// \return status
///         EFrameworkunifiedStatus - success or error
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPRegisterImmediateNotifications(HANDLE hNPMsgQ, PCSTR pPublisherName, UI_32 numNotifications,
                                            ImmediateNotificationInfo *pNotificationArray) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (maxNotification < numNotifications) {
    return eFrameworkunifiedStatusFail;
  }

  size_t sizeOfMsg = (sizeof(NC_register_immediate_notif_msg) * numNotifications) + sizeof(UI_32);
  if (NULL == pNotificationArray) {
    return eFrameworkunifiedStatusInvldParam;
  }

  PCHAR *pMsgBuffer = (PCHAR *)malloc(sizeOfMsg);

  if (NULL == pMsgBuffer) {
    return eFrameworkunifiedStatusFail;
  }

  NC_register_multiple_immediate_notif_msg *pNotifMsg = (NC_register_multiple_immediate_notif_msg *)pMsgBuffer;

  if (NULL != pNotifMsg) {
      pNotifMsg->numNotifications = numNotifications;
  }

  memcpy(&pNotifMsg->notifierList[0], pNotificationArray, sizeof(NC_register_immediate_notif_msg) * numNotifications);

  for(UI_32 i = 0; i < numNotifications; i++ ) {
    // Insert \0 at the end of character (up to 64bytes) by copying with strlcpy.
    strlcpy(pNotifMsg->notifierList[i].notificationName,
            pNotificationArray[i].notificationName,
            sizeof(pNotificationArray[i].notificationName));
  }

  eFrameworkunifiedStatus = McSend(hNPMsgQ, pPublisherName, NPS_REGISTER_NOR_EV_REQ, (UI_32)sizeOfMsg, (PVOID)pNotifMsg) ;

  if (NULL != pMsgBuffer) {
    free(pMsgBuffer);
    pMsgBuffer = NULL;
  }
  return  eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPClearPersistedData
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPClearPersistedData(HANDLE hNPMsgQ, PCSTR pRequesterName, EFrameworkunifiedClearPersistence eFrameworkunifiedClearPersistenceScope) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if ((NULL != hNPMsgQ) && (NULL != pRequesterName) && (0 != strlen(pRequesterName))) {
    NC_ClearPersistedDataReq tMsg = {};
    tMsg.ePersistenceData = eFrameworkunifiedClearPersistenceScope;

    eFrameworkunifiedStatus = McSend(hNPMsgQ,
                        pRequesterName,
                        NPS_DELETE_PERSISTED_DATA_REQ,
                        sizeof(tMsg),
                        &tMsg);
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }
  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPSetPersistNotfnDefaultValue
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSetPersistNotfnDefaultValue(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pNotification, PCVOID pData,
                                         const UI_32 iLength) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pNotification) {
    if ((0 != strlen(pPublisherName)) && (0 != strlen(pNotification))) {

      // Insert \0 at the end of characters (up to 64bytes) by copying pNotification to local variables with strlcpy.
      char tmp_notification[MAX_STRING_SIZE_NOTIFICATION] = {0};
      strlcpy(tmp_notification, pNotification, MAX_STRING_SIZE_NOTIFICATION);

      eFrameworkunifiedStatus =  McSendWithSysInfo(hNPMsgQ,
                                      pPublisherName,
                                      NPS_SET_DEFAULT_PERS_DATA,
                                      (PCHAR)tmp_notification,
                                      iLength,
                                      pData,
                                      0);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPSetPersistentNotfnType
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSetPersistentNotfnType(HANDLE hNPMsgQ, PCSTR pPublisherName, PCSTR pNotification,
                                    EFrameworkunifiedPersistCategory ePersistCategory) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pNotification) {
    if ((0 != strlen(pPublisherName)) && (0 != strlen(pNotification))) {

      // Insert \0 at the end of characters (up to 64bytes) by copying pNotification to local variables with strlcpy.
      char tmp_notification[MAX_STRING_SIZE_NOTIFICATION] = {0};
      strlcpy(tmp_notification, pNotification, MAX_STRING_SIZE_NOTIFICATION);

      eFrameworkunifiedStatus =  McSendWithSysInfo(hNPMsgQ,
                                      pPublisherName,
                                      NPS_SET_NOTFN_PERSISTENT_TYPE,
                                      (PCHAR)tmp_notification,
                                      sizeof(ePersistCategory),
                                      &ePersistCategory,
                                      0);
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPSetFilePersistentType
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSetFilePersistentType(HANDLE hNPMsgQ, PCSTR pPublisherName,
                                   PCSTR pTag, EFrameworkunifiedPersistCategory ePersistCategory) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pTag) {
    if ((0 != strlen(pPublisherName)) && (0 != strlen(pTag))) {
      NC_SetFilePersistType tMsg = {};

      tMsg.ePersistType = ePersistCategory;

      snprintf(tMsg.cTag, sizeof(tMsg.cTag), "%s", pTag);

      eFrameworkunifiedStatus = McSend(hNPMsgQ,
                          pPublisherName,
                          NPS_SET_FILE_PERSISTENT_TYPE,
                          sizeof(tMsg),
                          (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

////////////////////////////////////////////////////////////////////////////////////////////
/// NPSetFolderPersistentType
////////////////////////////////////////////////////////////////////////////////////////////
EFrameworkunifiedStatus NPSetFolderPersistentType(HANDLE hNPMsgQ, PCSTR pPublisherName,
                                     PCSTR pTag, EFrameworkunifiedPersistCategory ePersistCategory) {
  EFrameworkunifiedStatus eFrameworkunifiedStatus = eFrameworkunifiedStatusOK;

  if (NULL != hNPMsgQ && NULL != pPublisherName && NULL != pTag) {
    if ((0 != strlen(pPublisherName)) && (0 != strlen(pTag))) {
      NC_SetFolderPersistType tMsg = {};

      tMsg.ePersistType = ePersistCategory;
      snprintf(tMsg.cTag, sizeof(tMsg.cTag), "%s", pTag);

      eFrameworkunifiedStatus = McSend(hNPMsgQ,
                          pPublisherName,
                          NPS_SET_FOLDER_PERSISTENT_TYPE,
                          sizeof(tMsg),
                          (PVOID)&tMsg) ;
    } else {
      eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
    }
  } else {
    eFrameworkunifiedStatus = eFrameworkunifiedStatusInvldParam;
  }

  return eFrameworkunifiedStatus;
}

// EOF