ae45186ea6229f61bc4e4fe3f575c6e52d8453a6
[profile/ivi/persistence-client-library.git] / src / persistence_client_library_dbus_service.c
1 /******************************************************************************
2  * Project         Persistency
3  * (c) copyright   2012
4  * Company         XS Embedded GmbH
5  *****************************************************************************/
6 /******************************************************************************
7  * This Source Code Form is subject to the terms of the
8  * Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed
9  * with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 ******************************************************************************/
11  /**
12  * @file           persistence_client_library_dbus_service.c
13  * @ingroup        Persistence client library
14  * @author         Ingo Huerner
15  * @brief          Implementation of the persistence client library dbus service.
16  * @see
17  */
18
19
20 #include "persistence_client_library_dbus_service.h"
21 #include "persistence_client_library_lc_interface.h"
22 #include "persistence_client_library_pas_interface.h"
23 #include "../include_protected/persistence_client_library_data_organization.h"
24
25 #include <stdio.h>
26 #include <errno.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30
31 pthread_cond_t  gDbusInitializedCond = PTHREAD_COND_INITIALIZER;
32 pthread_mutex_t gDbusInitializedMtx  = PTHREAD_MUTEX_INITIALIZER;
33
34 pthread_mutex_t gDbusPendingRegMtx   = PTHREAD_MUTEX_INITIALIZER;
35
36 pthread_mutex_t gMainLoopMtx         = PTHREAD_MUTEX_INITIALIZER;
37 pthread_cond_t  gMainLoopCond = PTHREAD_COND_INITIALIZER;
38
39 int gEfds;  // communication channel int dbus mainloop
40
41
42 typedef enum EDBusObjectType
43 {
44    OT_NONE = 0,
45    OT_WATCH,
46    OT_TIMEOUT
47 } tDBusObjectType;
48
49
50 typedef struct SObjectEntry
51 {
52    tDBusObjectType objtype; /** libdbus' object */
53    union
54    {
55       DBusWatch * watch;      /** watch "object" */
56       DBusTimeout * timeout;  /** timeout "object" */
57    };
58 } tObjectEntry;
59
60
61
62 /// polling structure
63 typedef struct SPollInfo
64 {
65    int nfds;
66    struct pollfd fds[10];
67    tObjectEntry objects[10];
68 } tPollInfo;
69
70
71 /// polling information
72 static tPollInfo gPollInfo;
73
74 int bContinue = 0;
75
76 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
77
78
79 /* function to unregister ojbect path message handler */
80 static void unregisterMessageHandler(DBusConnection *connection, void *user_data)
81 {
82    DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("unregisterObjectPath\n"));
83 }
84
85 /* catches messages not directed to any registered object path ("garbage collector") */
86 static DBusHandlerResult handleObjectPathMessageFallback(DBusConnection * connection, DBusMessage * message, void * user_data)
87 {
88    DBusHandlerResult result = DBUS_HANDLER_RESULT_HANDLED;
89
90    // org.genivi.persistence.admin  S I G N A L
91    if((0==strcmp("org.genivi.persistence.admin", dbus_message_get_interface(message))))
92    {
93       if(dbus_message_get_type(message) == DBUS_MESSAGE_TYPE_SIGNAL)
94       {
95          if((0==strcmp("PersistenceModeChanged", dbus_message_get_member(message))))
96          {
97             // to do handle signal
98             result = signal_persModeChange(connection, message);
99          }
100          else
101          {
102             DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback -> unknown signal:"), DLT_STRING(dbus_message_get_interface(message)) );
103          }
104       }
105    }
106    // org.genivi.persistence.admin  S I G N A L
107    else if((0==strcmp("org.genivi.persistence.adminconsumer", dbus_message_get_interface(message))))
108    {
109       if(dbus_message_get_type(message) == DBUS_MESSAGE_TYPE_SIGNAL)
110       {
111          pclNotification_s notifyStruct;
112          int validMessage = 0;
113
114          if((0==strcmp("PersistenceResChange", dbus_message_get_member(message))))
115          {
116             notifyStruct.pclKeyNotify_Status = pclNotifyStatus_changed;
117             validMessage = 1;
118          }
119          else if((0==strcmp("PersistenceResDelete", dbus_message_get_member(message))))
120          {
121             notifyStruct.pclKeyNotify_Status = pclNotifyStatus_deleted;
122             validMessage = 1;
123          }
124          else if((0==strcmp("PersistenceRes", dbus_message_get_member(message))))
125          {
126             notifyStruct.pclKeyNotify_Status = pclNotifyStatus_created;
127             validMessage = 1;
128          }
129
130          if(validMessage == 1)
131          {
132             DBusError error;
133             DBusMessage *reply;
134             dbus_error_init (&error);
135             char* ldbid;
136             char* user_no;
137             char* seat_no;
138
139             if (!dbus_message_get_args(message, &error, DBUS_TYPE_STRING, &notifyStruct.resource_id,
140                                                          DBUS_TYPE_STRING, &ldbid,
141                                                          DBUS_TYPE_STRING, &user_no,
142                                                          DBUS_TYPE_STRING, &seat_no,
143                                                          DBUS_TYPE_INVALID))
144             {
145                reply = dbus_message_new_error(message, error.name, error.message);
146
147                if (reply == 0)
148                {
149                   DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback => DBus No memory"), DLT_STRING(dbus_message_get_interface(message)) );
150                }
151
152                if (!dbus_connection_send(connection, reply, 0))
153                {
154                   DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback => DBus No memory"), DLT_STRING(dbus_message_get_interface(message)) );
155                }
156
157                result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;;
158                dbus_message_unref(reply);
159             }
160             else
161             {
162                notifyStruct.ldbid       = atoi(ldbid);
163                notifyStruct.user_no     = atoi(user_no);
164                notifyStruct.seat_no     = atoi(seat_no);
165
166                // call the registered callback function
167                if(gChangeNotifyCallback != NULL )
168                {
169                   gChangeNotifyCallback(&notifyStruct);
170                }
171                else
172                {
173                   DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback => gChangeNotifyCallback is not set (possibly NULL)") );
174                }
175                result = DBUS_HANDLER_RESULT_HANDLED;
176             }
177             dbus_connection_flush(connection);
178          }
179       }
180    }
181    // org.genivi.persistence.admin  P R O P E R T Y
182    else  if((0==strcmp("org.freedesktop.DBus.Properties", dbus_message_get_interface(message))))
183    {
184       if(dbus_message_get_type(message) == DBUS_MESSAGE_TYPE_SIGNAL)
185       {
186          if((0==strcmp("EggDBusChanged", dbus_message_get_member(message))))
187          {
188             DBusMessageIter array;
189             DBusMessageIter dict;
190             DBusMessageIter variant;
191
192             char* dictString = NULL;
193             int value = 0;
194
195             dbus_message_iter_open_container(&array, DBUS_TYPE_DICT_ENTRY, 0, &dict);
196             dbus_message_iter_get_basic(&dict, &dictString);
197
198             dbus_message_iter_open_container(&dict,DBUS_TYPE_VARIANT, NULL, &variant);
199             dbus_message_iter_get_basic(&dict, &value);
200
201             dbus_message_iter_close_container(&dict, &variant);
202             dbus_message_iter_close_container(&array, &dict);
203
204             // to do handle signal
205             result = DBUS_HANDLER_RESULT_HANDLED;
206          }
207          else
208          {
209             DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback -> unknown property:"), DLT_STRING(dbus_message_get_interface(message)) );
210          }
211       }
212       else
213       {
214          DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("handleObjectPathMessageFallback -> not a signal:"), DLT_STRING(dbus_message_get_member(message)) );
215       }
216    }
217    return result;
218 }
219
220
221
222 static void  unregisterObjectPathFallback(DBusConnection *connection, void *user_data)
223 {
224    DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("unregisterObjectPathFallback\n"));
225 }
226
227
228
229 void* run_mainloop(void* dataPtr)
230 {
231    // persistence admin message
232    static const struct DBusObjectPathVTable vtablePersAdmin
233       = {unregisterMessageHandler, checkPersAdminMsg, NULL, };
234
235    // lifecycle message
236    static const struct DBusObjectPathVTable vtableLifecycle
237       = {unregisterMessageHandler, checkLifecycleMsg, NULL, };
238
239    // fallback
240    static const struct DBusObjectPathVTable vtableFallback
241       = {unregisterObjectPathFallback, handleObjectPathMessageFallback, NULL, };
242
243    // setup the dbus
244    mainLoop(vtablePersAdmin, vtableLifecycle, vtableFallback, dataPtr);
245
246    printf("<== run_mainloop\n");
247
248    return NULL;
249 }
250
251
252
253 int setup_dbus_mainloop(void)
254 {
255    int rval = 0;
256    pthread_t thread;
257    DBusError err;
258    DBusConnection* conn = NULL;
259
260    const char *pAddress = getenv("PERS_CLIENT_DBUS_ADDRESS");
261
262    dbus_error_init(&err);
263
264    // wain until dbus main loop has been setup and running
265    pthread_mutex_lock(&gDbusInitializedMtx);
266
267    // Connect to the bus and check for errors
268    if(pAddress != NULL)
269    {
270       DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("setup_dbus_mainloop -> Use specific dbus address:"), DLT_STRING(pAddress) );
271
272       conn = dbus_connection_open_private(pAddress, &err);
273
274       if(conn != NULL)
275       {
276          if(!dbus_bus_register(conn, &err))
277          {
278             DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("dbus_bus_register() Error :"), DLT_STRING(err.message) );
279             dbus_error_free (&err);
280             pthread_mutex_unlock(&gDbusInitializedMtx);
281             return -1;
282          }
283       }
284       else
285       {
286          DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("dbus_connection_open_private() Error :"), DLT_STRING(err.message) );
287          dbus_error_free(&err);
288          pthread_mutex_unlock(&gDbusInitializedMtx);
289          return -1;
290       }
291    }
292    else
293    {
294       DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("Use default dbus bus (DBUS_BUS_SYSTEM)"));
295
296       conn = dbus_bus_get_private(DBUS_BUS_SYSTEM, &err);
297    }
298
299    // create here the dbus connection and pass to main loop
300    rval = pthread_create(&thread, NULL, run_mainloop, conn);
301    if(rval)
302    {
303      DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("pthread_create( DBUS run_mainloop ) returned an error:"), DLT_INT(rval) );
304      pthread_mutex_unlock(&gDbusInitializedMtx);
305      return -1;
306    }
307
308    // wait for condition variable
309    pthread_cond_wait(&gDbusInitializedCond, &gDbusInitializedMtx);
310
311    pthread_mutex_unlock(&gDbusInitializedMtx);
312    return rval;
313 }
314
315
316
317
318
319 static dbus_bool_t addWatch(DBusWatch *watch, void *data)
320 {
321    dbus_bool_t result = FALSE;
322
323    if (ARRAY_SIZE(gPollInfo.fds)>gPollInfo.nfds)
324    {
325       int flags = dbus_watch_get_flags(watch);
326
327       tObjectEntry * const pEntry = &gPollInfo.objects[gPollInfo.nfds];
328       pEntry->objtype = OT_WATCH;
329       pEntry->watch = watch;
330
331       gPollInfo.fds[gPollInfo.nfds].fd = dbus_watch_get_unix_fd(watch);
332
333       if (TRUE==dbus_watch_get_enabled(watch))
334       {
335          if (flags&DBUS_WATCH_READABLE)
336          {
337             gPollInfo.fds[gPollInfo.nfds].events |= POLLIN;
338          }
339          if (flags&DBUS_WATCH_WRITABLE)
340          {
341             gPollInfo.fds[gPollInfo.nfds].events |= POLLOUT;
342          }
343
344          ++gPollInfo.nfds;
345       }
346
347       result = TRUE;
348    }
349
350    return result;
351 }
352
353
354
355 static void removeWatch(DBusWatch *watch, void *data)
356 {
357    void* w_data = dbus_watch_get_data(watch);
358
359    DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("removeWatch called "), DLT_INT( (int)watch) );
360
361    if(w_data)
362       free(w_data);
363
364    dbus_watch_set_data(watch, NULL, NULL);
365 }
366
367
368
369 static void watchToggled(DBusWatch *watch, void *data)
370 {
371    DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("watchToggled called "), DLT_INT( (int)watch) );
372
373    if(dbus_watch_get_enabled(watch))
374       addWatch(watch, data);
375    else
376       removeWatch(watch, data);
377 }
378
379
380
381 static dbus_bool_t addTimeout(DBusTimeout *timeout, void *data)
382 {
383    dbus_bool_t ret = FALSE;
384
385    if (ARRAY_SIZE(gPollInfo.fds)>gPollInfo.nfds)
386    {
387       const int interval = dbus_timeout_get_interval(timeout);
388       if ((0<interval)&&(TRUE==dbus_timeout_get_enabled(timeout)))
389       {
390          const int tfd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
391          if (-1!=tfd)
392          {
393             const struct itimerspec its = { .it_value= {interval/1000, interval%1000} };
394             if (-1!=timerfd_settime(tfd, 0, &its, NULL))
395             {
396                tObjectEntry * const pEntry = &gPollInfo.objects[gPollInfo.nfds];
397                pEntry->objtype = OT_TIMEOUT;
398                pEntry->timeout = timeout;
399                gPollInfo.fds[gPollInfo.nfds].fd = tfd;
400                gPollInfo.fds[gPollInfo.nfds].events |= POLLIN;
401                ++gPollInfo.nfds;
402                ret = TRUE;
403             }
404             else
405             {
406                DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("addTimeout => timerfd_settime() failed"), DLT_STRING(strerror(errno)) );
407             }
408          }
409          else
410          {
411             DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("addTimeout => timerfd_create() failed"), DLT_STRING(strerror(errno)) );
412          }
413       }
414    }
415    else
416    {
417       DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("addTimeout => cannot create another fd to be poll()'ed"));
418    }
419
420    return ret;
421 }
422
423
424
425 static void removeTimeout(DBusTimeout *timeout, void *data)
426 {
427
428    int i = gPollInfo.nfds;
429    while ((0<i--)&&(timeout!=gPollInfo.objects[i].timeout));
430
431    if (0<i)
432    {
433       if (-1==close(gPollInfo.fds[i].fd))
434       {
435          DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("removeTimeout => close() timerfd"), DLT_STRING(strerror(errno)) );
436       }
437
438       --gPollInfo.nfds;
439       while (gPollInfo.nfds>i)
440       {
441          gPollInfo.fds[i] = gPollInfo.fds[i+1];
442          gPollInfo.objects[i] = gPollInfo.objects[i+1];
443          ++i;
444       }
445
446       gPollInfo.fds[gPollInfo.nfds].fd = -1;
447       gPollInfo.objects[gPollInfo.nfds].objtype = OT_NONE;
448    }
449 }
450
451
452
453 /** callback for libdbus' when timeout changed */
454 static void timeoutToggled(DBusTimeout *timeout, void *data)
455 {
456    int i = gPollInfo.nfds;
457    while ((0<i--)&&(timeout!=gPollInfo.objects[i].timeout));
458    DLT_LOG(gDLTContext, DLT_LOG_INFO, DLT_STRING("timeoutToggled") );
459    if (0<i)
460    {
461       const int interval = (TRUE==dbus_timeout_get_enabled(timeout))?dbus_timeout_get_interval(timeout):0;
462       const struct itimerspec its = { .it_value= {interval/1000, interval%1000} };
463       if (-1!=timerfd_settime(gPollInfo.fds[i].fd, 0, &its, NULL))
464       {
465          DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("timeoutToggled => timerfd_settime()"), DLT_STRING(strerror(errno)) );
466       }
467    }
468 }
469
470
471
472 int mainLoop(DBusObjectPathVTable vtable, DBusObjectPathVTable vtable2,
473              DBusObjectPathVTable vtableFallback, void* userData)
474 {
475    DBusError err;
476    // lock mutex to make sure dbus main loop is running
477    pthread_mutex_lock(&gDbusInitializedMtx);
478
479    DBusConnection* conn = (DBusConnection*)userData;
480    dbus_error_init(&err);
481
482    if (dbus_error_is_set(&err))
483    {
484       DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => Connection Error:"), DLT_STRING(err.message) );
485       dbus_error_free(&err);
486    }
487    else if (NULL != conn)
488    {
489       dbus_connection_set_exit_on_disconnect(conn, FALSE);
490       if (-1 == (gEfds = eventfd(0, 0)))
491       {
492          DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => eventfd() failed w/ errno:"), DLT_INT(errno) );
493       }
494       else
495       {
496          int ret;
497          memset(&gPollInfo, 0 , sizeof(gPollInfo));
498
499          gPollInfo.nfds = 1;
500          gPollInfo.fds[0].fd = gEfds;
501          gPollInfo.fds[0].events = POLLIN;
502
503          dbus_bus_add_match(conn, "type='signal',interface='org.genivi.persistence.admin',member='PersistenceModeChanged',path='/org/genivi/persistence/admin'", &err);
504
505          // register for messages
506          if (   (TRUE==dbus_connection_register_object_path(conn, "/org/genivi/NodeStateManager/LifeCycleConsumer", &vtable2, userData))
507 #if USE_PASINTERFACE == 1
508              && (TRUE==dbus_connection_register_object_path(conn, "/org/genivi/persistence/adminconsumer", &vtable, userData))
509 #endif
510              && (TRUE==dbus_connection_register_fallback(conn, "/", &vtableFallback, userData)) )
511          {
512             if(   (TRUE!=dbus_connection_set_watch_functions(conn, addWatch, removeWatch, watchToggled, NULL, NULL))
513                || (TRUE!=dbus_connection_set_timeout_functions(conn, addTimeout, removeTimeout, timeoutToggled, NULL, NULL)) )
514             {
515                DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => dbus_connection_set_watch_functions() failed"));
516             }
517             else
518             {
519                pthread_cond_signal(&gDbusInitializedCond);
520                pthread_mutex_unlock(&gDbusInitializedMtx);
521                do
522                {
523                   bContinue = 0; /* assume error */
524
525                   while (DBUS_DISPATCH_DATA_REMAINS==dbus_connection_dispatch(conn));
526
527                   while ((-1==(ret=poll(gPollInfo.fds, gPollInfo.nfds, -1)))&&(EINTR==errno));
528
529                   if (0>ret)
530                   {
531                      DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => poll() failed w/ errno "), DLT_INT(errno) );
532                   }
533                   else if (0==ret)
534                   {
535                      /* poll time-out */
536                   }
537                   else
538                   {
539                      int i;
540
541                      for (i=0; gPollInfo.nfds>i; ++i)
542                      {
543                         /* anything to do */
544                         if (0!=gPollInfo.fds[i].revents)
545                         {
546                            if (OT_TIMEOUT==gPollInfo.objects[i].objtype)
547                            {
548                               /* time-out occured */
549                               unsigned long long nExpCount = 0;
550                               if ((ssize_t)sizeof(nExpCount)!=read(gPollInfo.fds[i].fd, &nExpCount, sizeof(nExpCount)))
551                               {
552                                  DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => read failed"));
553                               }
554                               DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => timeout"));
555
556                               if (FALSE==dbus_timeout_handle(gPollInfo.objects[i].timeout))
557                               {
558                                  DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => dbus_timeout_handle() failed!?"));
559                               }
560                               bContinue = TRUE;
561                            }
562                            else if (gPollInfo.fds[i].fd == gEfds)
563                            {
564                               /* internal command */
565                               if (0!=(gPollInfo.fds[i].revents & POLLIN))
566                               {
567                                  uint16_t buf[64];
568                                  bContinue = TRUE;
569                                  while ((-1==(ret = read(gPollInfo.fds[i].fd, buf, 64)))&&(EINTR == errno));
570                                  if(ret < 0)
571                                  {
572                                     DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => read() failed"), DLT_STRING(strerror(errno)) );
573                                  }
574                                  else
575                                  {
576                                     pthread_mutex_lock(&gMainLoopMtx);
577                                     switch (buf[0])
578                                     {
579                                        case CMD_PAS_BLOCK_AND_WRITE_BACK:
580                                           process_block_and_write_data_back((buf[2]), buf[1]);
581                                           process_send_pas_request(conn, (buf[2]), buf[1]);
582                                           break;
583                                        case CMD_LC_PREPARE_SHUTDOWN:
584                                           process_prepare_shutdown((buf[2]), buf[1]);
585                                           process_send_lifecycle_request(conn, (buf[2]), buf[1]);
586                                           break;
587                                        case CMD_SEND_NOTIFY_SIGNAL:
588                                           process_send_notification_signal(conn);
589                                           break;
590                                        case CMD_REG_NOTIFY_SIGNAL:
591                                           process_reg_notification_signal(conn);
592                                           break;
593                                        case CMD_SEND_PAS_REGISTER:
594                                           process_send_pas_register(conn, (buf[1]), buf[2]);
595                                           break;
596                                        case CMD_SEND_LC_REGISTER:
597                                           process_send_lifecycle_register(conn, (buf[1]), buf[2]);
598                                           break;
599                                        case CMD_QUIT:
600                                           bContinue = 0;
601                                           break;
602
603                                        // ******************************************************
604                                        /*
605                                        case CMD_SEND_LC_REQUEST:  // remove
606                                          process_send_lifecycle_request(conn, (buf[2]), buf[1]);
607                                          break;
608                                       case CMD_SEND_PAS_REQUEST: /// remove
609                                          process_send_pas_request(conn, (buf[2]), buf[1]);
610                                          break;
611                                        */
612                                        // ******************************************************
613                                        default:
614                                           DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("mainLoop => command not handled"), DLT_INT(buf[0]) );
615                                           break;
616                                     }
617                                     pthread_cond_signal(&gMainLoopCond);
618                                     pthread_mutex_unlock(&gMainLoopMtx);
619                                  }
620                               }
621                            }
622                            else
623                            {
624                               int flags = 0;
625                               if (0!=(gPollInfo.fds[i].revents & POLLIN))
626                               {
627                                  flags |= DBUS_WATCH_READABLE;
628                               }
629                               if (0!=(gPollInfo.fds[i].revents & POLLOUT))
630                               {
631                                  flags |= DBUS_WATCH_WRITABLE;
632                               }
633                               if (0!=(gPollInfo.fds[i].revents & POLLERR))
634                               {
635                                  flags |= DBUS_WATCH_ERROR;
636                               }
637                               if (0!=(gPollInfo.fds[i].revents & POLLHUP))
638                               {
639                                  flags |= DBUS_WATCH_HANGUP;
640                               }
641
642                               bContinue = dbus_watch_handle(gPollInfo.objects[i].watch, flags);
643                            }
644                         }
645                      }
646                   }
647                }
648                while (0!=bContinue);
649             }
650 #if USE_PASINTERFACE == 1
651             dbus_connection_unregister_object_path(conn, "/org/genivi/persistence/adminconsumer");
652 #endif
653             dbus_connection_unregister_object_path(conn, "/org/genivi/NodeStateManager/LifeCycleConsumer");
654             dbus_connection_unregister_object_path(conn, "/");
655          }
656          close(gEfds);
657       }
658       dbus_connection_close(conn);
659       dbus_connection_unref(conn);
660       dbus_shutdown();
661    }
662
663    pthread_cond_signal(&gDbusInitializedCond);
664    pthread_mutex_unlock(&gDbusInitializedMtx);
665    printf("End Mainloop\n");
666    return 0;
667 }
668
669
670
671 int deliverToMainloop(tCmd mainloopCmd, unsigned int param1, unsigned int param2)
672 {
673    int rval = 0;
674
675    pthread_mutex_lock(&gMainLoopMtx);
676
677    deliverToMainloop_NM(mainloopCmd, param1, param2);
678
679    // wait for condition variable
680    pthread_cond_wait(&gMainLoopCond, &gMainLoopMtx);
681    pthread_mutex_unlock(&gMainLoopMtx);
682
683    return rval;
684 }
685
686 int deliverToMainloop_NM(tCmd mainloopCmd, unsigned int param1, unsigned int param2)
687 {
688    int rval = 0;
689    uint64_t cmd;
690
691    cmd = ( ((uint64_t)param2 << 32) | ((uint64_t)param1 << 16) | mainloopCmd);
692
693    if(-1 == write(gEfds, &cmd, (sizeof(uint64_t))))
694    {
695      DLT_LOG(gDLTContext, DLT_LOG_ERROR, DLT_STRING("deliverToMainloop => failed to write to pipe"), DLT_INT(errno));
696      rval = -1;
697    }
698
699    return rval;
700 }
701