1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/foreign_session_helper.h"
#include <jni.h>
#include "base/android/jni_string.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/prefs/scoped_user_pref_update.h"
#include "chrome/browser/profiles/profile_android.h"
#include "chrome/browser/sync/glue/session_model_associator.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "chrome/browser/ui/android/tab_model/tab_model.h"
#include "chrome/browser/ui/android/tab_model/tab_model_list.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/web_contents.h"
#include "jni/ForeignSessionHelper_jni.h"
using base::android::ScopedJavaGlobalRef;
using base::android::ScopedJavaLocalRef;
using base::android::AttachCurrentThread;
using base::android::ConvertUTF16ToJavaString;
using base::android::ConvertUTF8ToJavaString;
using base::android::ConvertJavaStringToUTF8;
using browser_sync::SessionModelAssociator;
using browser_sync::SyncedSession;
namespace {
SessionModelAssociator* GetSessionModelAssociator(Profile* profile) {
ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()->
GetForProfile(profile);
// Only return the associator if it exists and it is done syncing sessions.
if (!service || !service->ShouldPushChanges())
return NULL;
return service->GetSessionModelAssociator();
}
void CopyTabsToJava(
JNIEnv* env,
const SessionWindow* window,
ScopedJavaLocalRef<jobject>& j_window) {
for (std::vector<SessionTab*>::const_iterator tab_it = window->tabs.begin();
tab_it != window->tabs.end(); ++tab_it) {
const SessionTab &tab = **tab_it;
if (tab.navigations.empty())
continue;
const ::sessions::SerializedNavigationEntry& current_navigation =
tab.navigations.at(tab.current_navigation_index);
GURL tab_url = current_navigation.virtual_url();
if (tab_url.SchemeIs(chrome::kChromeNativeScheme) ||
(tab_url.SchemeIs(chrome::kChromeUIScheme) &&
tab_url.host() == chrome::kChromeUINewTabHost))
continue;
Java_ForeignSessionHelper_pushTab(
env, j_window.obj(),
ConvertUTF8ToJavaString(env, tab_url.spec()).Release(),
ConvertUTF16ToJavaString(env, current_navigation.title()).Release(),
tab.timestamp.ToInternalValue(), tab.tab_id.id());
}
}
void CopyWindowsToJava(
JNIEnv* env,
const SyncedSession* session,
ScopedJavaLocalRef<jobject>& j_session) {
for (SyncedSession::SyncedWindowMap::const_iterator it =
session->windows.begin(); it != session->windows.end(); ++it) {
const SessionWindow* window = it->second;
ScopedJavaLocalRef<jobject> last_pushed_window;
last_pushed_window.Reset(
Java_ForeignSessionHelper_pushWindow(
env, j_session.obj(), window->timestamp.ToInternalValue(),
window->window_id.id()));
CopyTabsToJava(env, window, last_pushed_window);
}
}
} // namespace
static jint Init(JNIEnv* env, jclass clazz, jobject profile) {
ForeignSessionHelper* foreign_session_helper = new ForeignSessionHelper(
ProfileAndroid::FromProfileAndroid(profile));
return reinterpret_cast<jint>(foreign_session_helper);
}
ForeignSessionHelper::ForeignSessionHelper(Profile* profile)
: profile_(profile) {
ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()->
GetForProfile(profile);
registrar_.Add(this, chrome::NOTIFICATION_SYNC_CONFIGURE_DONE,
content::Source<ProfileSyncService>(service));
registrar_.Add(this, chrome::NOTIFICATION_FOREIGN_SESSION_UPDATED,
content::Source<Profile>(profile));
registrar_.Add(this, chrome::NOTIFICATION_FOREIGN_SESSION_DISABLED,
content::Source<Profile>(profile));
}
ForeignSessionHelper::~ForeignSessionHelper() {
}
void ForeignSessionHelper::Destroy(JNIEnv* env, jobject obj) {
delete this;
}
jboolean ForeignSessionHelper::IsTabSyncEnabled(JNIEnv* env, jobject obj) {
ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()->
GetForProfile(profile_);
return service && service->GetActiveDataTypes().Has(syncer::PROXY_TABS);
}
void ForeignSessionHelper::SetOnForeignSessionCallback(JNIEnv* env,
jobject obj,
jobject callback) {
callback_.Reset(env, callback);
}
void ForeignSessionHelper::Observe(
int type, const content::NotificationSource& source,
const content::NotificationDetails& details) {
if (callback_.is_null())
return;
JNIEnv* env = AttachCurrentThread();
switch (type) {
case chrome::NOTIFICATION_FOREIGN_SESSION_DISABLED:
// Tab sync is disabled, so clean up data about collapsed sessions.
profile_->GetPrefs()->ClearPref(
prefs::kNtpCollapsedForeignSessions);
// Purposeful fall through.
case chrome::NOTIFICATION_SYNC_CONFIGURE_DONE:
case chrome::NOTIFICATION_FOREIGN_SESSION_UPDATED:
Java_ForeignSessionCallback_onUpdated(env, callback_.obj());
break;
default:
NOTREACHED();
}
}
jboolean ForeignSessionHelper::GetForeignSessions(JNIEnv* env,
jobject obj,
jobject result) {
SessionModelAssociator* associator = GetSessionModelAssociator(profile_);
if (!associator)
return false;
std::vector<const browser_sync::SyncedSession*> sessions;
if (!associator->GetAllForeignSessions(&sessions))
return false;
// Use a pref to keep track of sessions that were collapsed by the user.
// To prevent the pref from accumulating stale sessions, clear it each time
// and only add back sessions that are still current.
DictionaryPrefUpdate pref_update(profile_->GetPrefs(),
prefs::kNtpCollapsedForeignSessions);
DictionaryValue* pref_collapsed_sessions = pref_update.Get();
scoped_ptr<DictionaryValue> collapsed_sessions(
pref_collapsed_sessions->DeepCopy());
pref_collapsed_sessions->Clear();
ScopedJavaLocalRef<jobject> last_pushed_session;
ScopedJavaLocalRef<jobject> last_pushed_window;
// Note: we don't own the SyncedSessions themselves.
for (size_t i = 0; i < sessions.size(); ++i) {
const browser_sync::SyncedSession* session = sessions[i];
const bool is_collapsed = collapsed_sessions->HasKey(session->session_tag);
if (is_collapsed)
pref_collapsed_sessions->SetBoolean(session->session_tag, true);
last_pushed_session.Reset(
Java_ForeignSessionHelper_pushSession(
env,
result,
ConvertUTF8ToJavaString(env, session->session_tag).Release(),
ConvertUTF8ToJavaString(env, session->session_name).Release(),
ConvertUTF8ToJavaString(env,
session->DeviceTypeAsString()).Release(),
session->modified_time.ToInternalValue()));
CopyWindowsToJava(env, session, last_pushed_session);
}
return true;
}
jboolean ForeignSessionHelper::OpenForeignSessionTab(JNIEnv* env,
jobject obj,
jstring session_tag,
jint tab_id) {
SessionModelAssociator* associator = GetSessionModelAssociator(profile_);
if (!associator) {
LOG(ERROR) << "Null SessionModelAssociator returned.";
return false;
}
const SessionTab* tab;
if (!associator->GetForeignTab(ConvertJavaStringToUTF8(env, session_tag),
tab_id, &tab)) {
LOG(ERROR) << "Failed to load foreign tab.";
return false;
}
if (tab->navigations.empty()) {
LOG(ERROR) << "Foreign tab no longer has valid navigations.";
return false;
}
TabModel* tab_model = TabModelList::GetTabModelWithProfile(profile_);
DCHECK(tab_model);
if (!tab_model)
return false;
std::vector<content::NavigationEntry*> entries =
sessions::SerializedNavigationEntry::ToNavigationEntries(
tab->navigations, profile_);
content::WebContents* new_web_contents = content::WebContents::Create(
content::WebContents::CreateParams(profile_));
int selected_index = tab->normalized_navigation_index();
new_web_contents->GetController().Restore(
selected_index,
content::NavigationController::RESTORE_LAST_SESSION_EXITED_CLEANLY,
&entries);
tab_model->CreateTab(new_web_contents);
return true;
}
void ForeignSessionHelper::SetForeignSessionCollapsed(JNIEnv* env, jobject obj,
jstring session_tag,
jboolean is_collapsed) {
// Store session tags for collapsed sessions in a preference so that the
// collapsed state persists.
PrefService* prefs = profile_->GetPrefs();
DictionaryPrefUpdate update(prefs, prefs::kNtpCollapsedForeignSessions);
if (is_collapsed)
update.Get()->SetBoolean(ConvertJavaStringToUTF8(env, session_tag), true);
else
update.Get()->Remove(ConvertJavaStringToUTF8(env, session_tag), NULL);
}
void ForeignSessionHelper::DeleteForeignSession(JNIEnv* env, jobject obj,
jstring session_tag) {
SessionModelAssociator* associator = GetSessionModelAssociator(profile_);
if (associator)
associator->DeleteForeignSession(ConvertJavaStringToUTF8(env, session_tag));
}
// static
bool ForeignSessionHelper::RegisterForeignSessionHelper(JNIEnv* env) {
return RegisterNativesImpl(env);
}
|