Upstream version 5.34.98.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 "base/android/path_utils.h"
8 #include "base/base_paths_android.h"
9 #include "base/files/file_path.h"
10 #include "base/file_util.h"
11 #include "base/message_loop/message_loop.h"
12 #include "base/path_service.h"
13 #include "base/threading/sequenced_worker_pool.h"
14 #include "cc/base/switches.h"
15 #include "content/public/browser/android/compositor.h"
16 #include "content/public/browser/browser_thread.h"
17 #include "content/public/browser/cookie_store_factory.h"
18 #include "content/public/common/content_switches.h"
19 #include "content/public/common/result_codes.h"
20 #include "grit/net_resources.h"
21 #include "net/android/network_change_notifier_factory_android.h"
22 #include "net/base/network_change_notifier.h"
23 #include "net/base/net_module.h"
24 #include "net/base/net_util.h"
25 #include "net/cookies/cookie_monster.h"
26 #include "net/cookies/cookie_store.h"
27 #include "ui/base/layout.h"
28 #include "ui/base/l10n/l10n_util_android.h"
29 #include "ui/base/resource/resource_bundle.h"
30 #include "xwalk/extensions/browser/xwalk_extension_service.h"
31 #include "xwalk/extensions/common/xwalk_extension.h"
32 #include "xwalk/extensions/common/xwalk_extension_switches.h"
33 #include "xwalk/runtime/browser/android/cookie_manager.h"
34 #include "xwalk/runtime/browser/runtime_context.h"
35 #include "xwalk/runtime/browser/xwalk_runner.h"
36 #include "xwalk/runtime/common/xwalk_runtime_features.h"
37
38 namespace {
39
40 base::StringPiece PlatformResourceProvider(int key) {
41   if (key == IDR_DIR_HEADER_HTML) {
42     base::StringPiece html_data =
43         ui::ResourceBundle::GetSharedInstance().GetRawDataResource(
44             IDR_DIR_HEADER_HTML);
45     return html_data;
46   }
47   return base::StringPiece();
48 }
49
50 }  // namespace
51
52 namespace xwalk {
53
54 using content::BrowserThread;
55 using extensions::XWalkExtension;
56
57 XWalkBrowserMainPartsAndroid::XWalkBrowserMainPartsAndroid(
58     const content::MainFunctionParams& parameters)
59     : XWalkBrowserMainParts(parameters) {
60 }
61
62 XWalkBrowserMainPartsAndroid::~XWalkBrowserMainPartsAndroid() {
63 }
64
65 void XWalkBrowserMainPartsAndroid::PreEarlyInitialization() {
66   net::NetworkChangeNotifier::SetFactory(
67       new net::NetworkChangeNotifierFactoryAndroid());
68
69   CommandLine::ForCurrentProcess()->AppendSwitch(
70       cc::switches::kCompositeToMailbox);
71
72   // Initialize the Compositor.
73   content::Compositor::Initialize();
74
75   XWalkBrowserMainParts::PreEarlyInitialization();
76 }
77
78 void XWalkBrowserMainPartsAndroid::PreMainMessageLoopStart() {
79   CommandLine* command_line = CommandLine::ForCurrentProcess();
80   // Disable ExtensionProcess for Android.
81   // External extensions will run in the BrowserProcess (in process mode).
82   command_line->AppendSwitch(switches::kXWalkDisableExtensionProcess);
83
84   // Only force to enable WebGL for Android for IA platforms because
85   // we've tested the WebGL conformance test. For other platforms, just
86   // follow up the behavior defined by Chromium upstream.
87 #if defined(ARCH_CPU_X86)
88   command_line->AppendSwitch(switches::kIgnoreGpuBlacklist);
89 #endif
90
91   // Disable HW encoding/decoding acceleration for WebRTC on Android.
92   // FIXME: Remove these switches for Android when Android OS is removed from
93   // GPU accelerated_video_decode blacklist or we stop ignoring the GPU
94   // blacklist.
95   command_line->AppendSwitch(switches::kDisableWebRtcHWDecoding);
96   command_line->AppendSwitch(switches::kDisableWebRtcHWEncoding);
97
98   // WebAudio is disabled on android x86 platform, and only enabled on android
99   // ARM platform by default, we must enable it explicitly on x86 platform.
100   // TODO(liyin): Remove enable webaudio switch when it is enabled by default.
101 #if defined(ARCH_CPU_X86)
102   if (!command_line->HasSwitch(switches::kEnableWebAudio))
103     command_line->AppendSwitch(switches::kEnableWebAudio);
104 #endif
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