Tizen 2.1 base
[framework/security/security-server.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 <dpl/log/log.h>
24 #include <dpl/single_instance.h>
25
26 #include "security_daemon.h"
27
28 #include <pthread.h>
29
30 static const std::string DAEMON_INSTANCE_UUID =
31     "5ebf3f24-dad6-4a27-88b4-df7970efe7a9";
32
33 extern "C" void *security_server_main_thread(void *data);
34
35 int main(int argc, char* argv[])
36 {
37
38     pthread_t main_thread;
39
40     if (0 != pthread_create(&main_thread, NULL, security_server_main_thread, NULL)) {
41         LogError("Cannot create security server thread");
42         return -1;
43     }
44
45     DPL::SingleInstance instance;
46     try {
47         if (!instance.TryLock(DAEMON_INSTANCE_UUID)) {
48             LogError("Security Daemon is already running");
49             return -1;
50         }
51     } catch (const DPL::SingleInstance::Exception::LockError &e) {
52         LogError(e.DumpToString());
53         return -1;
54     }
55
56     auto& daemon = SecurityDaemonSingleton::Instance();
57
58     daemon.initialize(argc, argv);
59
60     //Run daemon
61     auto retVal = daemon.execute();
62
63     daemon.shutdown();
64     try {
65         instance.Release();
66     } catch (const DPL::SingleInstance::Exception::LockError &e) {
67         LogError(e.DumpToString());
68     }
69
70     return retVal;
71 }