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