1 // Copyright 2013 The Chromium Authors. 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.
5 #include "chrome/browser/android/shortcut_helper.h"
9 #include "base/android/jni_android.h"
10 #include "base/android/jni_string.h"
11 #include "base/basictypes.h"
12 #include "base/location.h"
13 #include "base/strings/string16.h"
14 #include "base/task/cancelable_task_tracker.h"
15 #include "base/threading/worker_pool.h"
16 #include "chrome/browser/android/tab_android.h"
17 #include "chrome/browser/favicon/favicon_service.h"
18 #include "chrome/browser/favicon/favicon_service_factory.h"
19 #include "chrome/common/render_messages.h"
20 #include "content/public/browser/user_metrics.h"
21 #include "content/public/browser/web_contents.h"
22 #include "content/public/browser/web_contents_observer.h"
23 #include "content/public/common/frame_navigate_params.h"
24 #include "jni/ShortcutHelper_jni.h"
25 #include "ui/gfx/android/java_bitmap.h"
26 #include "ui/gfx/codec/png_codec.h"
27 #include "ui/gfx/color_analysis.h"
28 #include "ui/gfx/favicon_size.h"
31 ShortcutBuilder::ShortcutBuilder(content::WebContents
* web_contents
,
32 const base::string16
& title
,
33 int launcher_large_icon_size
)
34 : launcher_large_icon_size_(launcher_large_icon_size
),
35 shortcut_type_(BOOKMARK
) {
36 Observe(web_contents
);
37 url_
= web_contents
->GetURL();
38 if (title
.length() > 0)
41 title_
= web_contents
->GetTitle();
43 // Send a message to the renderer to retrieve information about the page.
44 Send(new ChromeViewMsg_RetrieveWebappInformation(routing_id(), url_
));
47 void ShortcutBuilder::OnDidRetrieveWebappInformation(
49 bool is_mobile_webapp_capable
,
50 bool is_apple_mobile_webapp_capable
,
51 const GURL
& expected_url
) {
53 Profile::FromBrowserContext(web_contents()->GetBrowserContext());
57 LOG(ERROR
) << "Failed to parse webpage.";
60 } else if (expected_url
!= url_
) {
61 LOG(ERROR
) << "Unexpected URL returned.";
66 if (is_apple_mobile_webapp_capable
&& !is_mobile_webapp_capable
) {
67 shortcut_type_
= APP_SHORTCUT_APPLE
;
68 } else if (is_apple_mobile_webapp_capable
|| is_mobile_webapp_capable
) {
69 shortcut_type_
= APP_SHORTCUT
;
71 shortcut_type_
= BOOKMARK
;
74 // Grab the best, largest icon we can find to represent this bookmark.
75 // TODO(dfalcantara): Try combining with the new BookmarksHandler once its
76 // rewrite is further along.
77 std::vector
<int> icon_types
;
78 icon_types
.push_back(favicon_base::FAVICON
);
79 icon_types
.push_back(favicon_base::TOUCH_PRECOMPOSED_ICON
|
80 favicon_base::TOUCH_ICON
);
81 FaviconService
* favicon_service
= FaviconServiceFactory::GetForProfile(
82 profile
, Profile::EXPLICIT_ACCESS
);
84 // Using favicon if its size is not smaller than platform required size,
85 // otherwise using the largest icon among all avaliable icons.
86 int threshold_to_get_any_largest_icon
= launcher_large_icon_size_
- 1;
87 favicon_service
->GetLargestRawFaviconForURL(profile
, url_
, icon_types
,
88 threshold_to_get_any_largest_icon
,
89 base::Bind(&ShortcutBuilder::FinishAddingShortcut
,
90 base::Unretained(this)),
91 &cancelable_task_tracker_
);
94 void ShortcutBuilder::FinishAddingShortcut(
95 const favicon_base::FaviconBitmapResult
& bitmap_result
) {
96 base::WorkerPool::PostTask(
98 base::Bind(&ShortcutHelper::AddShortcutInBackground
,
107 bool ShortcutBuilder::OnMessageReceived(const IPC::Message
& message
) {
109 IPC_BEGIN_MESSAGE_MAP(ShortcutBuilder
, message
)
110 IPC_MESSAGE_HANDLER(ChromeViewHostMsg_DidRetrieveWebappInformation
,
111 OnDidRetrieveWebappInformation
)
112 IPC_MESSAGE_UNHANDLED(handled
= false)
113 IPC_END_MESSAGE_MAP()
117 void ShortcutBuilder::WebContentsDestroyed() {
121 void ShortcutBuilder::Destroy() {
122 if (cancelable_task_tracker_
.HasTrackedTasks()) {
123 cancelable_task_tracker_
.TryCancelAll();
128 void ShortcutHelper::AddShortcut(content::WebContents
* web_contents
,
129 const base::string16
& title
,
130 int launcher_large_icon_size
) {
131 // The ShortcutBuilder deletes itself when it's done.
132 new ShortcutBuilder(web_contents
, title
, launcher_large_icon_size
);
135 bool ShortcutHelper::RegisterShortcutHelper(JNIEnv
* env
) {
136 return RegisterNativesImpl(env
);
139 void ShortcutHelper::AddShortcutInBackground(
141 const base::string16
& title
,
142 ShortcutBuilder::ShortcutType shortcut_type
,
143 const favicon_base::FaviconBitmapResult
& bitmap_result
) {
144 DCHECK(base::WorkerPool::RunsTasksOnCurrentThread());
146 // Grab the average color from the bitmap.
147 SkColor color
= SK_ColorWHITE
;
148 SkBitmap favicon_bitmap
;
149 if (bitmap_result
.is_valid()) {
150 if (gfx::PNGCodec::Decode(bitmap_result
.bitmap_data
->front(),
151 bitmap_result
.bitmap_data
->size(),
153 color
= color_utils::CalculateKMeanColorOfBitmap(favicon_bitmap
);
156 int r_value
= SkColorGetR(color
);
157 int g_value
= SkColorGetG(color
);
158 int b_value
= SkColorGetB(color
);
160 // Send the data to the Java side to create the shortcut.
161 JNIEnv
* env
= base::android::AttachCurrentThread();
162 ScopedJavaLocalRef
<jstring
> java_url
=
163 base::android::ConvertUTF8ToJavaString(env
, url
.spec());
164 ScopedJavaLocalRef
<jstring
> java_title
=
165 base::android::ConvertUTF16ToJavaString(env
, title
);
166 ScopedJavaLocalRef
<jobject
> java_bitmap
;
167 if (favicon_bitmap
.getSize())
168 java_bitmap
= gfx::ConvertToJavaBitmap(&favicon_bitmap
);
170 Java_ShortcutHelper_addShortcut(env
,
171 base::android::GetApplicationContext(),
178 shortcut_type
!= ShortcutBuilder::BOOKMARK
);
180 // Record what type of shortcut was added by the user.
181 switch (shortcut_type
) {
182 case ShortcutBuilder::APP_SHORTCUT
:
183 content::RecordAction(
184 base::UserMetricsAction("webapps.AddShortcut.AppShortcut"));
186 case ShortcutBuilder::APP_SHORTCUT_APPLE
:
187 content::RecordAction(
188 base::UserMetricsAction("webapps.AddShortcut.AppShortcutApple"));
190 case ShortcutBuilder::BOOKMARK
:
191 content::RecordAction(
192 base::UserMetricsAction("webapps.AddShortcut.Bookmark"));
199 // Adds a shortcut to the current URL to the Android home screen, firing
200 // background tasks to pull all the data required.
201 // Note that we don't actually care about the tab here -- we just want
202 // its otherwise inaccessible WebContents.
203 static void AddShortcut(JNIEnv
* env
,
205 jlong tab_android_ptr
,
207 jint launcher_large_icon_size
) {
208 TabAndroid
* tab
= reinterpret_cast<TabAndroid
*>(tab_android_ptr
);
209 ShortcutHelper::AddShortcut(
211 base::android::ConvertJavaStringToUTF16(env
, title
),
212 launcher_large_icon_size
);