Adding missing wayland initialization.
[platform/framework/web/webkit-efl.git] / Source / WebKit2 / PluginProcess / efl / PluginProcessMainEfl.cpp
1 /*
2  * Copyright (C) 2011 Igalia S.L.
3  * Copyright (C) 2011 Apple Inc.
4  * Copyright (C) 2011 Samsung Electronics
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
17  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
19  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25  * THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include "config.h"
29 #include "PluginProcessMainEfl.h"
30
31 #include "PluginProcess.h"
32 #include <Ecore.h>
33 #ifdef HAVE_ECORE_X
34 #include <Ecore_X.h>
35 #else
36 #include <Ecore_Wayland.h>
37 #endif
38 #include <WebCore/RunLoop.h>
39 #include <runtime/InitializeThreading.h>
40 #include <wtf/MainThread.h>
41
42 #if defined(XP_UNIX)
43 #include <X11/Xlib.h>
44 #endif
45
46 #if ENABLE(TIZEN_SCAN_PLUGIN)
47 #include "NetscapePlugin.h"
48 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
49
50 using namespace WebCore;
51
52 namespace WebKit {
53
54 #if defined(XP_UNIX)
55 static int webkiteflXError(Display* xdisplay, XErrorEvent* error)
56 {
57     char errorMessage[64];
58     XGetErrorText(xdisplay, error->error_code, errorMessage, 63);
59     printf("The program received an X Window System error.\n"
60               "This probably reflects a bug in a browser plugin.\n"
61               "The error was '%s'.\n"
62               "  (Details: serial %ld error_code %d request_code %d minor_code %d)\n",
63               errorMessage,
64               error->serial, error->error_code,
65               error->request_code, error->minor_code);
66     return 0;
67 }
68 #endif
69
70 WK_EXPORT int PluginProcessMainEfl(int argc, char* argv[])
71 {
72 #if ENABLE(TIZEN_SCAN_PLUGIN)
73     ASSERT(argc == 2 || argc == 3);
74     bool scanPlugin = !strcmp(argv[1], "-scanPlugin");
75     ASSERT(argc == 2 || (argc == 3 && scanPlugin));
76 #else
77     ASSERT(argc == 2);
78 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
79
80     if (!eina_init())
81         return 1;
82
83 #ifdef HAVE_ECORE_X
84     if (!ecore_x_init(0))
85         return 1;
86 #else
87     if(!ecore_wl_init(0))
88         return 1;
89 #endif
90
91     JSC::initializeThreading();
92     WTF::initializeMainThread();
93 #if !LOG_DISABLED && ENABLE(TIZEN_LOG)
94     WebCore::initializeLoggingChannelsIfNecessary();
95 #endif
96
97 #if ENABLE(TIZEN_SCAN_PLUGIN)
98     if (scanPlugin) {
99 #if ENABLE(TIZEN_LOG)
100         TIZEN_LOGI("[Plugins] scan plugin");
101 #endif
102         String pluginPath(argv[2]);
103         if (!NetscapePluginModule::scanPlugin(pluginPath))
104             return 1;
105         return 0;
106     }
107 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
108
109     RunLoop::initializeMainRunLoop();
110
111 #if defined(XP_UNIX)
112     XSetErrorHandler(webkiteflXError);
113 #endif
114
115     int socket = atoi(argv[1]);
116     WebKit::PluginProcess::shared().initialize(socket, RunLoop::main());
117     RunLoop::run();
118
119     return 0;
120 }
121
122 } // namespace WebKit