initial import
[vuplus_webkit] / Source / WebKit2 / WebProcess / efl / WebProcessMainEfl.cpp
1 /*
2  * Copyright (C) 2011 Samsung Electronics. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "WebProcessMainEfl.h"
28
29 #include "WKBase.h"
30 #include <Ecore.h>
31 #include <WebCore/ResourceHandle.h>
32 #include <WebKit2/RunLoop.h>
33 #include <WebKit2/WebProcess.h>
34 #include <runtime/InitializeThreading.h>
35 #include <unistd.h>
36 #include <wtf/MainThread.h>
37
38 namespace WebKit {
39
40 WK_EXPORT int WebProcessMainEfl(int argc, char* argv[])
41 {
42     // WebProcess should be launched with an option.
43     if (argc != 2)
44         return 1;
45
46     if (!eina_init())
47         return 1;
48
49     if (!ecore_init()) {
50         // Could not init ecore.
51         eina_shutdown();
52         return 1;
53     }
54
55 #if ENABLE(GLIB_SUPPORT)
56     g_type_init();
57 #endif
58
59     JSC::initializeThreading();
60     WTF::initializeMainThread();
61
62     RunLoop::initializeMainRunLoop();
63
64 #if USE(SOUP)
65     SoupSession* session = WebCore::ResourceHandle::defaultSession();
66     const char* httpProxy = g_getenv("http_proxy");
67     if (httpProxy) {
68         SoupURI* proxyUri = soup_uri_new(httpProxy);
69         g_object_set(session, SOUP_SESSION_PROXY_URI, proxyUri, NULL);
70         soup_uri_free(proxyUri);
71     }
72
73     soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_SNIFFER);
74     soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_DECODER);
75 #endif
76
77     int socket = atoi(argv[1]);
78     WebProcess::shared().initialize(socket, RunLoop::main());
79     RunLoop::run();
80
81     return 0;
82
83 }
84
85 } // namespace WebKit