Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / 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
28 int main(int /*argc*/, char */*argv*/[])
29 {
30     UNHANDLED_EXCEPTION_HANDLER_BEGIN
31     {
32         DPL::Log::LogSystemSingleton::Instance().SetTag("PLUGINS_INSTALLER");
33         LogDebug("Plugins installation started.");
34
35         printf("Installing plugins...\n");
36         PluginsInstallerSingleton::Instance().initialize();
37         int installed =
38             PluginsInstallerSingleton::Instance().installAllPlugins();
39         PluginsInstallerSingleton::Instance().deinitialize();
40         printf("Completed: %d plugins installed.\n", installed);
41
42         LogDebug("All plugins installed successfuly");
43         return 0;
44     }
45     UNHANDLED_EXCEPTION_HANDLER_END
46 }