Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / browser / xwalk_browser_main_parts_android.cc
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "xwalk/runtime/browser/xwalk_browser_main_parts_android.h"
6
7 #include <string>
8
9 #include "base/android/path_utils.h"
10 #include "base/base_paths_android.h"
11 #include "base/files/file_path.h"
12 #include "base/file_util.h"
13 #include "base/message_loop/message_loop.h"
14 #include "base/path_service.h"
15 #include "base/threading/sequenced_worker_pool.h"
16 #include "cc/base/switches.h"
17 #include "content/public/browser/android/compositor.h"
18 #include "content/public/browser/browser_thread.h"
19 #include "content/public/browser/cookie_store_factory.h"
20 #include "content/public/common/content_switches.h"
21 #include "content/public/common/result_codes.h"
22 #include "grit/net_resources.h"
23 #include "net/android/network_change_notifier_factory_android.h"
24 #include "net/base/network_change_notifier.h"
25 #include "net/base/net_module.h"
26 #include "net/base/net_util.h"
27 #include "net/cookies/cookie_monster.h"
28 #include "net/cookies/cookie_store.h"
29 #include "ui/base/layout.h"
30 #include "ui/base/l10n/l10n_util_android.h"
31 #include "ui/base/resource/resource_bundle.h"
32 #include "xwalk/extensions/browser/xwalk_extension_service.h"
33 #include "xwalk/extensions/common/xwalk_extension.h"
34 #include "xwalk/extensions/common/xwalk_extension_switches.h"
35 #include "xwalk/runtime/browser/android/cookie_manager.h"
36 #include "xwalk/runtime/browser/runtime_context.h"
37 #include "xwalk/runtime/browser/xwalk_runner.h"
38 #include "xwalk/runtime/common/xwalk_runtime_features.h"
39
40 namespace {
41
42 base::StringPiece PlatformResourceProvider(int key) {
43   if (key == IDR_DIR_HEADER_HTML) {
44     base::StringPiece html_data =
45         ui::ResourceBundle::GetSharedInstance().GetRawDataResource(
46             IDR_DIR_HEADER_HTML);
47     return html_data;
48   }
49   return base::StringPiece();
50 }
51
52 }  // namespace
53
54 namespace xwalk {
55
56 using content::BrowserThread;
57 using extensions::XWalkExtension;
58
59 XWalkBrowserMainPartsAndroid::XWalkBrowserMainPartsAndroid(
60     const content::MainFunctionParams& parameters)
61     : XWalkBrowserMainParts(parameters) {
62 }
63
64 XWalkBrowserMainPartsAndroid::~XWalkBrowserMainPartsAndroid() {
65 }
66
67 void XWalkBrowserMainPartsAndroid::PreEarlyInitialization() {
68   net::NetworkChangeNotifier::SetFactory(
69       new net::NetworkChangeNotifierFactoryAndroid());
70
71   CommandLine::ForCurrentProcess()->AppendSwitch(
72       cc::switches::kCompositeToMailbox);
73
74   // Initialize the Compositor.
75   content::Compositor::Initialize();
76
77   XWalkBrowserMainParts::PreEarlyInitialization();
78 }
79
80 void XWalkBrowserMainPartsAndroid::PreMainMessageLoopStart() {
81   CommandLine* command_line = CommandLine::ForCurrentProcess();
82   // Disable ExtensionProcess for Android.
83   // External extensions will run in the BrowserProcess (in process mode).
84   command_line->AppendSwitch(switches::kXWalkDisableExtensionProcess);
85
86   // Only force to enable WebGL for Android for IA platforms because
87   // we've tested the WebGL conformance test. For other platforms, just
88   // follow up the behavior defined by Chromium upstream.
89 #if defined(ARCH_CPU_X86)
90   command_line->AppendSwitch(switches::kIgnoreGpuBlacklist);
91 #endif
92
93 #if defined(ENABLE_WEBRTC)
94   // Disable HW encoding/decoding acceleration for WebRTC on Android.
95   // FIXME: Remove these switches for Android when Android OS is removed from
96   // GPU accelerated_video_decode blacklist or we stop ignoring the GPU
97   // blacklist.
98   command_line->AppendSwitch(switches::kDisableWebRtcHWDecoding);
99   command_line->AppendSwitch(switches::kDisableWebRtcHWEncoding);
100 #endif
101
102   // For fullscreen video playback, the ContentVideoView is still buggy, so
103   // we switch back to ContentVideoViewLegacy for temp.
104   // TODO(shouqun): Remove this flag when ContentVideoView is ready.
105   command_line->AppendSwitch(
106       switches::kDisableOverlayFullscreenVideoSubtitle);
107
108   XWalkBrowserMainParts::PreMainMessageLoopStart();
109
110   startup_url_ = GURL();
111 }
112
113 void XWalkBrowserMainPartsAndroid::PostMainMessageLoopStart() {
114   base::MessageLoopForUI::current()->Start();
115 }
116
117 void XWalkBrowserMainPartsAndroid::PreMainMessageLoopRun() {
118   net::NetModule::SetResourceProvider(PlatformResourceProvider);
119   if (parameters_.ui_task) {
120     parameters_.ui_task->Run();
121     delete parameters_.ui_task;
122     run_default_message_loop_ = false;
123   }
124
125   xwalk_runner_->PreMainMessageLoopRun();
126
127   extension_service_ = xwalk_runner_->extension_service();
128
129   // Prepare the cookie store.
130   base::FilePath user_data_dir;
131   if (!PathService::Get(base::DIR_ANDROID_APP_DATA, &user_data_dir)) {
132     NOTREACHED() << "Failed to get app data directory for Crosswalk";
133   }
134
135   base::FilePath cookie_store_path = user_data_dir.Append(
136       FILE_PATH_LITERAL("Cookies"));
137   scoped_refptr<base::SequencedTaskRunner> background_task_runner =
138       BrowserThread::GetBlockingPool()->GetSequencedTaskRunner(
139           BrowserThread::GetBlockingPool()->GetSequenceToken());
140
141   content::CookieStoreConfig cookie_config(
142       cookie_store_path,
143       content::CookieStoreConfig::RESTORED_SESSION_COOKIES,
144       NULL, NULL);
145   cookie_config.client_task_runner =
146       BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO);
147   cookie_config.background_task_runner = background_task_runner;
148   cookie_store_ = content::CreateCookieStore(cookie_config);
149   cookie_store_->GetCookieMonster()->SetPersistSessionCookies(true);
150   SetCookieMonsterOnNetworkStackInit(cookie_store_->GetCookieMonster());
151 }
152
153 void XWalkBrowserMainPartsAndroid::PostMainMessageLoopRun() {
154   XWalkBrowserMainParts::PostMainMessageLoopRun();
155
156   base::MessageLoopForUI::current()->Start();
157 }
158
159 void XWalkBrowserMainPartsAndroid::CreateInternalExtensionsForExtensionThread(
160     content::RenderProcessHost* host,
161     extensions::XWalkExtensionVector* extensions) {
162   // On Android part, the ownership of each extension object will be transferred
163   // to XWalkExtensionServer after this method is called. It is a rule enforced
164   // by extension system that XWalkExtensionServer must own the extension
165   // objects and extension instances.
166   extensions::XWalkExtensionVector::const_iterator it = extensions_.begin();
167   for (; it != extensions_.end(); ++it)
168     extensions->push_back(*it);
169 }
170
171 void XWalkBrowserMainPartsAndroid::RegisterExtension(
172     scoped_ptr<XWalkExtension> extension) {
173   // Since the creation of extension object is driven by Java side, and each
174   // Java extension is backed by a native extension object. However, the Java
175   // object may be destroyed by Android lifecycle management without destroying
176   // the native side object. We keep the reference to native extension object
177   // to make sure we can reuse the native object if Java extension is re-created
178   // on resuming.
179   extensions_.push_back(extension.release());
180 }
181
182 XWalkExtension* XWalkBrowserMainPartsAndroid::LookupExtension(
183     const std::string& name) {
184   extensions::XWalkExtensionVector::const_iterator it = extensions_.begin();
185   for (; it != extensions_.end(); ++it) {
186     XWalkExtension* extension = *it;
187     if (name == extension->name()) return extension;
188   }
189
190   return NULL;
191 }
192
193 }  // namespace xwalk