39a81aab17a2747ebc2b24aeaeab522a43361a47
[platform/framework/web/wrt-plugins-common.git] / src / plugins-installer / wrt_plugins_installer.cpp
1 /*
2  * Copyright (c) 2012 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 /* @file    wrt_plugins_installer.cpp
17  * @author  Andrzej Surdej(a.surdej@gmail.com)
18  * @version 1.0
19  * @brief   Main file for plugins installer
20  */
21
22 #include <plugin_installer.h>
23 #include <dpl/log/log.h>
24 #include <string>
25 #include <cstdio>
26
27 int main(int /*argc*/, char */*argv*/[])
28 {
29     DPL::Log::LogSystemSingleton::Instance().SetTag("PLUGINS_INSTALLER");
30     LogInfo("Plugins installation started.");
31
32     printf("Installing plugins...\n");
33     PluginsInstallerSingleton::Instance().initialize();
34     int installed =
35         PluginsInstallerSingleton::Instance().installAllPlugins();
36     PluginsInstallerSingleton::Instance().deinitialize();
37     printf("Completed: %d plugins installed.\n", installed);
38
39     LogInfo("All plugins installed successfuly");
40     return 0;
41 }