Upstream version 8.36.156.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   // Disable HW encoding/decoding acceleration for WebRTC on Android.
94   // FIXME: Remove these switches for Android when Android OS is removed from
95   // GPU accelerated_video_decode blacklist or we stop ignoring the GPU
96   // blacklist.
97   command_line->AppendSwitch(switches::kDisableWebRtcHWDecoding);
98   command_line->AppendSwitch(switches::kDisableWebRtcHWEncoding);
99
100   // For fullscreen video playback, the ContentVideoView is still buggy, so
101   // we switch back to ContentVideoViewLegacy for temp.
102   // TODO(shouqun): Remove this flag when ContentVideoView is ready.
103   command_line->AppendSwitch(
104       switches::kDisableOverlayFullscreenVideoSubtitle);
105
106   XWalkBrowserMainParts::PreMainMessageLoopStart();
107
108   startup_url_ = GURL();
109 }
110
111 void XWalkBrowserMainPartsAndroid::PostMainMessageLoopStart() {
112   base::MessageLoopForUI::current()->Start();
113 }
114
115 void XWalkBrowserMainPartsAndroid::PreMainMessageLoopRun() {
116   net::NetModule::SetResourceProvider(PlatformResourceProvider);
117   if (parameters_.ui_task) {
118     parameters_.ui_task->Run();
119     delete parameters_.ui_task;
120     run_default_message_loop_ = false;
121   }
122
123   xwalk_runner_->PreMainMessageLoopRun();
124
125   extension_service_ = xwalk_runner_->extension_service();
126
127   // Prepare the cookie store.
128   base::FilePath user_data_dir;
129   if (!PathService::Get(base::DIR_ANDROID_APP_DATA, &user_data_dir)) {
130     NOTREACHED() << "Failed to get app data directory for Crosswalk";
131   }
132
133   base::FilePath cookie_store_path = user_data_dir.Append(
134       FILE_PATH_LITERAL("Cookies"));
135   scoped_refptr<base::SequencedTaskRunner> background_task_runner =
136       BrowserThread::GetBlockingPool()->GetSequencedTaskRunner(
137           BrowserThread::GetBlockingPool()->GetSequenceToken());
138
139   content::CookieStoreConfig cookie_config(
140       cookie_store_path,
141       content::CookieStoreConfig::RESTORED_SESSION_COOKIES,
142       NULL, NULL);
143   cookie_config.client_task_runner =
144       BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO);
145   cookie_config.background_task_runner = background_task_runner;
146   cookie_store_ = content::CreateCookieStore(cookie_config);
147   cookie_store_->GetCookieMonster()->SetPersistSessionCookies(true);
148   SetCookieMonsterOnNetworkStackInit(cookie_store_->GetCookieMonster());
149 }
150
151 void XWalkBrowserMainPartsAndroid::PostMainMessageLoopRun() {
152   XWalkBrowserMainParts::PostMainMessageLoopRun();
153
154   base::MessageLoopForUI::current()->Start();
155 }
156
157 void XWalkBrowserMainPartsAndroid::CreateInternalExtensionsForExtensionThread(
158     content::RenderProcessHost* host,
159     extensions::XWalkExtensionVector* extensions) {
160   // On Android part, the ownership of each extension object will be transferred
161   // to XWalkExtensionServer after this method is called. It is a rule enforced
162   // by extension system that XWalkExtensionServer must own the extension
163   // objects and extension instances.
164   extensions::XWalkExtensionVector::const_iterator it = extensions_.begin();
165   for (; it != extensions_.end(); ++it)
166     extensions->push_back(*it);
167 }
168
169 void XWalkBrowserMainPartsAndroid::RegisterExtension(
170     scoped_ptr<XWalkExtension> extension) {
171   // Since the creation of extension object is driven by Java side, and each
172   // Java extension is backed by a native extension object. However, the Java
173   // object may be destroyed by Android lifecycle management without destroying
174   // the native side object. We keep the reference to native extension object
175   // to make sure we can reuse the native object if Java extension is re-created
176   // on resuming.
177   extensions_.push_back(extension.release());
178 }
179
180 XWalkExtension* XWalkBrowserMainPartsAndroid::LookupExtension(
181     const std::string& name) {
182   extensions::XWalkExtensionVector::const_iterator it = extensions_.begin();
183   for (; it != extensions_.end(); ++it) {
184     XWalkExtension* extension = *it;
185     if (name == extension->name()) return extension;
186   }
187
188   return NULL;
189 }
190
191 }  // namespace xwalk