Update wrt-security_0.0.42
[framework/web/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 <string>
24
25 #include <dpl/application.h>
26 #include <dpl/log/log.h>
27 #include <dpl/single_instance.h>
28 #include <dpl/wrt-dao-ro/global_config.h>
29
30 #include "security_daemon.h"
31 #include <vcore/VCore.h>
32
33 static const std::string DAEMON_INSTANCE_UUID =
34     "5ebf3f24-dad6-4a27-88b4-df7970efe7a9";
35
36 int main(int argc, char* argv[])
37 {
38     DPL::SingleInstance instance;
39     if (!instance.TryLock(DAEMON_INSTANCE_UUID)) {
40         LogError("Security Daemon is already running");
41         return -1;
42     }
43
44     ValidationCore::VCoreInit(
45         WrtDB::GlobalConfig::GetFingerprintListFile(),
46         WrtDB::GlobalConfig::GetFingerprintListSchema(),
47         WrtDB::GlobalConfig::GetVCoreDatabaseFilePath());
48
49     auto& daemon = SecurityDaemonSingleton::Instance();
50
51     daemon.initialize(argc, argv);
52
53     //Run daemon
54     auto retVal = daemon.execute();
55
56     daemon.shutdown();
57     instance.Release();
58     ValidationCore::VCoreDeinit();
59
60     return retVal;
61 }