tizen 2.3 release
[framework/web/wearable/wrt-security.git] / src / main.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        main.cpp
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version     1.0
20  * @brief       This is main routing for Security Daemon
21  */
22
23 #include <systemd/sd-daemon.h>
24 #include <dpl/log/log.h>
25 #include <dpl/single_instance.h>
26 #include <privacy_manager_daemon.h>
27
28 #include "security_daemon.h"
29
30 #include <pthread.h>
31 #include <glib.h>
32 #include <Ecore.h>
33
34 static const std::string DAEMON_INSTANCE_UUID =
35     "5ebf3f24-dad6-4a27-88b4-df7970efe7a9";
36
37 static Ecore_Event_Handler *g_exitHandler;
38 static Eina_Bool exitHandler(void */*data*/, int /*type*/, void */*event*/)
39 {
40     privacy_manager_daemon_stop();
41     privacy_manager_daemon_shutdown();
42
43     auto& daemon = SecurityDaemonSingleton::Instance();
44     daemon.shutdown();                   
45
46     ecore_event_handler_del(g_exitHandler);
47
48     ecore_main_loop_quit();
49
50     return ECORE_CALLBACK_CANCEL;
51 }      
52
53 static Eina_Bool startHandler(void */*data*/)
54 {
55     int retVal;
56         auto& daemon = SecurityDaemonSingleton::Instance();
57         
58         privacy_manager_daemon_initialize();
59
60         privacy_manager_daemon_start();
61         
62         int argc = 0;
63         char* argv = NULL;
64
65         daemon.initialize(argc, &argv);
66     retVal = daemon.execute();
67     if (retVal != 0)
68     {
69         LogError("Failed to execute daemon.");
70         ecore_main_loop_quit();
71         
72         return ECORE_CALLBACK_CANCEL;
73     }
74
75         // Notification to systemd
76         sd_notify(0, "READY=1");
77
78     return ECORE_CALLBACK_CANCEL;
79 }
80
81 int main(int argc, char* argv[])
82 {
83         DPL::SingleInstance instance;
84         
85         Try {
86                 if (!instance.TryLock(DAEMON_INSTANCE_UUID)) {
87                         LogError("Security Daemon is already running");
88                         return -1;
89                 }
90     } Catch (DPL::SingleInstance::Exception::LockError) {
91         LogError("Failed to lock/unlock Security Daemon instance.");
92         return -1;
93     }
94         
95     if (!ecore_init())
96     {
97         LogError("Ecore cannot be initialized");
98         return -1;
99     }
100         
101     ecore_timer_add(0.1, &startHandler, NULL);
102     g_exitHandler = ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, &exitHandler, NULL);
103     ecore_main_loop_begin();
104     ecore_shutdown();
105
106         Try {
107             instance.Release();
108     } Catch (DPL::SingleInstance::Exception::LockError) {
109         LogError("Failed to release Security Daemon instance.");
110         return -1;
111     }
112
113     return 0;
114 }