Initialize Tizen 2.3
[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 #include <dpl/exception.h>
27 #include <dpl/platform.h>
28
29 int main(int /*argc*/, char */*argv*/[])
30 {
31     UNHANDLED_EXCEPTION_HANDLER_BEGIN
32     {
33         LogDebug("Plugins installation started.");
34
35         printf("Installing plugins...\n");
36         PluginsInstallerSingleton::Instance().initialize();
37
38 #ifdef ENABLE(DOWNLOADABLE_PLUGIN)
39         int uninstalled = PluginsInstallerSingleton::Instance().uninstallMissingAndChangedPlugins();
40         printf("# %d plugins uninstalled.\n", uninstalled);
41 #endif
42
43         int installed = PluginsInstallerSingleton::Instance().installAllPlugins();
44         printf("Completed: %d plugins installed.\n", installed);
45
46         PluginsInstallerSingleton::Instance().deinitialize();
47         LogDebug("All plugins installed successfuly");
48         return 0;
49     }
50     UNHANDLED_EXCEPTION_HANDLER_END
51 }