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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
|
// Copyright 2012 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 "components/sessions/core/tab_restore_service_helper.h"
#include <stddef.h>
#include <algorithm>
#include <iterator>
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram.h"
#include "base/stl_util.h"
#include "components/sessions/core/live_tab.h"
#include "components/sessions/core/live_tab_context.h"
#include "components/sessions/core/serialized_navigation_entry.h"
#include "components/sessions/core/session_types.h"
#include "components/sessions/core/tab_restore_service_client.h"
#include "components/sessions/core/tab_restore_service_observer.h"
namespace sessions {
// TabRestoreServiceHelper::Observer -------------------------------------------
TabRestoreServiceHelper::Observer::~Observer() {}
void TabRestoreServiceHelper::Observer::OnClearEntries() {}
void TabRestoreServiceHelper::Observer::OnRestoreEntryById(
SessionID::id_type id,
Entries::const_iterator entry_iterator) {
}
void TabRestoreServiceHelper::Observer::OnAddEntry() {}
// TabRestoreServiceHelper -----------------------------------------------------
TabRestoreServiceHelper::TabRestoreServiceHelper(
TabRestoreService* tab_restore_service,
Observer* observer,
TabRestoreServiceClient* client,
TabRestoreService::TimeFactory* time_factory)
: tab_restore_service_(tab_restore_service),
observer_(observer),
client_(client),
restoring_(false),
time_factory_(time_factory) {
DCHECK(tab_restore_service_);
}
TabRestoreServiceHelper::~TabRestoreServiceHelper() {
for (auto& observer : observer_list_)
observer.TabRestoreServiceDestroyed(tab_restore_service_);
}
void TabRestoreServiceHelper::AddObserver(
TabRestoreServiceObserver* observer) {
observer_list_.AddObserver(observer);
}
void TabRestoreServiceHelper::RemoveObserver(
TabRestoreServiceObserver* observer) {
observer_list_.RemoveObserver(observer);
}
void TabRestoreServiceHelper::CreateHistoricalTab(LiveTab* live_tab,
int index) {
if (restoring_)
return;
LiveTabContext* context = client_->FindLiveTabContextForTab(live_tab);
if (closing_contexts_.find(context) != closing_contexts_.end())
return;
auto local_tab = base::MakeUnique<Tab>();
PopulateTab(local_tab.get(), index, context, live_tab);
if (local_tab->navigations.empty())
return;
AddEntry(std::move(local_tab), true, true);
}
void TabRestoreServiceHelper::BrowserClosing(LiveTabContext* context) {
closing_contexts_.insert(context);
auto window = base::MakeUnique<Window>();
window->selected_tab_index = context->GetSelectedIndex();
window->timestamp = TimeNow();
window->app_name = context->GetAppName();
for (int tab_index = 0; tab_index < context->GetTabCount(); ++tab_index) {
auto tab = base::MakeUnique<Tab>();
PopulateTab(tab.get(), tab_index, context,
context->GetLiveTabAt(tab_index));
if (!tab->navigations.empty()) {
tab->browser_id = context->GetSessionID().id();
window->tabs.push_back(std::move(tab));
}
}
if (window->tabs.size() == 1 && window->app_name.empty()) {
// Short-circuit creating a Window if only 1 tab was present. This fixes
// http://crbug.com/56744.
AddEntry(std::move(window->tabs[0]), true, true);
} else if (!window->tabs.empty()) {
window->selected_tab_index = std::min(
static_cast<int>(window->tabs.size() - 1), window->selected_tab_index);
AddEntry(std::move(window), true, true);
}
}
void TabRestoreServiceHelper::BrowserClosed(LiveTabContext* context) {
closing_contexts_.erase(context);
}
void TabRestoreServiceHelper::ClearEntries() {
if (observer_)
observer_->OnClearEntries();
entries_.clear();
NotifyTabsChanged();
}
const TabRestoreService::Entries& TabRestoreServiceHelper::entries() const {
return entries_;
}
std::vector<LiveTab*> TabRestoreServiceHelper::RestoreMostRecentEntry(
LiveTabContext* context) {
if (entries_.empty())
return std::vector<LiveTab*>();
return RestoreEntryById(context, entries_.front()->id,
WindowOpenDisposition::UNKNOWN);
}
std::unique_ptr<TabRestoreService::Tab>
TabRestoreServiceHelper::RemoveTabEntryById(SessionID::id_type id) {
auto it = GetEntryIteratorById(id);
if (it == entries_.end())
return nullptr;
if ((*it)->type != TabRestoreService::TAB)
return nullptr;
auto tab = std::unique_ptr<Tab>(static_cast<Tab*>(it->release()));
entries_.erase(it);
return tab;
}
std::vector<LiveTab*> TabRestoreServiceHelper::RestoreEntryById(
LiveTabContext* context,
SessionID::id_type id,
WindowOpenDisposition disposition) {
Entries::iterator entry_iterator = GetEntryIteratorById(id);
if (entry_iterator == entries_.end()) {
// Don't hoark here, we allow an invalid id.
return std::vector<LiveTab*>();
}
if (observer_)
observer_->OnRestoreEntryById(id, entry_iterator);
restoring_ = true;
auto& entry = **entry_iterator;
// If the entry's ID does not match the ID that is being restored, then the
// entry is a window from which a single tab will be restored.
bool restoring_tab_in_window = entry.id != id;
// |context| will be NULL in cases where one isn't already available (eg,
// when invoked on Mac OS X with no windows open). In this case, create a
// new browser into which we restore the tabs.
std::vector<LiveTab*> live_tabs;
switch (entry.type) {
case TabRestoreService::TAB: {
auto& tab = static_cast<const Tab&>(entry);
LiveTab* restored_tab = nullptr;
context = RestoreTab(tab, context, disposition, &restored_tab);
live_tabs.push_back(restored_tab);
context->ShowBrowserWindow();
break;
}
case TabRestoreService::WINDOW: {
LiveTabContext* current_context = context;
auto& window = static_cast<Window&>(entry);
// When restoring a window, either the entire window can be restored, or a
// single tab within it. If the entry's ID matches the one to restore,
// then the entire window will be restored.
if (!restoring_tab_in_window) {
context = client_->CreateLiveTabContext(window.app_name);
for (size_t tab_i = 0; tab_i < window.tabs.size(); ++tab_i) {
const Tab& tab = *window.tabs[tab_i];
LiveTab* restored_tab = context->AddRestoredTab(
tab.navigations, context->GetTabCount(),
tab.current_navigation_index, tab.extension_app_id,
static_cast<int>(tab_i) == window.selected_tab_index, tab.pinned,
tab.from_last_session, tab.platform_data.get(),
tab.user_agent_override);
if (restored_tab) {
restored_tab->LoadIfNecessary();
client_->OnTabRestored(
tab.navigations.at(tab.current_navigation_index).virtual_url());
live_tabs.push_back(restored_tab);
}
}
// All the window's tabs had the same former browser_id.
if (auto browser_id = window.tabs[0]->browser_id) {
UpdateTabBrowserIDs(browser_id, context->GetSessionID().id());
}
} else {
// Restore a single tab from the window. Find the tab that matches the
// ID
// in the window and restore it.
for (auto tab_i = window.tabs.begin(); tab_i != window.tabs.end();
++tab_i) {
SessionID::id_type restored_tab_browser_id;
{
const Tab& tab = **tab_i;
if (tab.id != id)
continue;
restored_tab_browser_id = tab.browser_id;
LiveTab* restored_tab = nullptr;
context = RestoreTab(tab, context, disposition, &restored_tab);
live_tabs.push_back(restored_tab);
window.tabs.erase(tab_i);
}
// If restoring the tab leaves the window with nothing else, delete it
// as well.
if (window.tabs.empty()) {
entries_.erase(entry_iterator);
} else {
// Update the browser ID of the rest of the tabs in the window so if
// any one is restored, it goes into the same window as the tab
// being restored now.
UpdateTabBrowserIDs(restored_tab_browser_id,
context->GetSessionID().id());
for (auto& tab_j : window.tabs)
tab_j->browser_id = context->GetSessionID().id();
}
break;
}
}
context->ShowBrowserWindow();
if (disposition == WindowOpenDisposition::CURRENT_TAB &&
current_context && current_context->GetActiveLiveTab()) {
current_context->CloseTab();
}
break;
}
}
if (!restoring_tab_in_window) {
entries_.erase(entry_iterator);
}
restoring_ = false;
NotifyTabsChanged();
return live_tabs;
}
bool TabRestoreServiceHelper::IsRestoring() const {
return restoring_;
}
void TabRestoreServiceHelper::NotifyTabsChanged() {
for (auto& observer : observer_list_)
observer.TabRestoreServiceChanged(tab_restore_service_);
}
void TabRestoreServiceHelper::NotifyLoaded() {
for (auto& observer : observer_list_)
observer.TabRestoreServiceLoaded(tab_restore_service_);
}
void TabRestoreServiceHelper::AddEntry(std::unique_ptr<Entry> entry,
bool notify,
bool to_front) {
if (!FilterEntry(*entry) || (entries_.size() >= kMaxEntries && !to_front)) {
return;
}
if (to_front)
entries_.push_front(std::move(entry));
else
entries_.push_back(std::move(entry));
PruneEntries();
if (notify)
NotifyTabsChanged();
if (observer_)
observer_->OnAddEntry();
}
void TabRestoreServiceHelper::PruneEntries() {
Entries new_entries;
for (auto& entry : entries_) {
if (FilterEntry(*entry) && new_entries.size() < kMaxEntries) {
new_entries.push_back(std::move(entry));
}
}
entries_ = std::move(new_entries);
}
TabRestoreService::Entries::iterator
TabRestoreServiceHelper::GetEntryIteratorById(SessionID::id_type id) {
for (Entries::iterator i = entries_.begin(); i != entries_.end(); ++i) {
if ((*i)->id == id)
return i;
// For Window entries, see if the ID matches a tab. If so, report the window
// as the Entry.
if ((*i)->type == TabRestoreService::WINDOW) {
auto& window = static_cast<const Window&>(**i);
for (const auto& tab : window.tabs) {
if (tab->id == id) {
return i;
}
}
}
}
return entries_.end();
}
// static
bool TabRestoreServiceHelper::ValidateEntry(const Entry& entry) {
switch (entry.type) {
case TabRestoreService::TAB:
return ValidateTab(static_cast<const Tab&>(entry));
case TabRestoreService::WINDOW:
return ValidateWindow(static_cast<const Window&>(entry));
}
NOTREACHED();
return false;
}
void TabRestoreServiceHelper::PopulateTab(Tab* tab,
int index,
LiveTabContext* context,
LiveTab* live_tab) {
const int pending_index = live_tab->GetPendingEntryIndex();
int entry_count =
live_tab->IsInitialBlankNavigation() ? 0 : live_tab->GetEntryCount();
if (entry_count == 0 && pending_index == 0)
entry_count++;
tab->navigations.resize(static_cast<int>(entry_count));
for (int i = 0; i < entry_count; ++i) {
SerializedNavigationEntry entry = (i == pending_index)
? live_tab->GetPendingEntry()
: live_tab->GetEntryAtIndex(i);
tab->navigations[i] = entry;
}
tab->timestamp = TimeNow();
tab->current_navigation_index = live_tab->GetCurrentEntryIndex();
tab->tabstrip_index = index;
tab->extension_app_id = client_->GetExtensionAppIDForTab(live_tab);
tab->user_agent_override = live_tab->GetUserAgentOverride();
tab->platform_data = live_tab->GetPlatformSpecificTabData();
// Delegate may be NULL during unit tests.
if (context) {
tab->browser_id = context->GetSessionID().id();
tab->pinned = context->IsTabPinned(tab->tabstrip_index);
}
}
LiveTabContext* TabRestoreServiceHelper::RestoreTab(
const Tab& tab,
LiveTabContext* context,
WindowOpenDisposition disposition,
LiveTab** live_tab) {
LiveTab* restored_tab;
if (disposition == WindowOpenDisposition::CURRENT_TAB && context) {
restored_tab = context->ReplaceRestoredTab(
tab.navigations, tab.current_navigation_index, tab.from_last_session,
tab.extension_app_id, tab.platform_data.get(), tab.user_agent_override);
} else {
// We only respsect the tab's original browser if there's no disposition.
if (disposition == WindowOpenDisposition::UNKNOWN && tab.browser_id) {
context = client_->FindLiveTabContextWithID(tab.browser_id);
}
int tab_index = -1;
// |context| will be NULL in cases where one isn't already available (eg,
// when invoked on Mac OS X with no windows open). In this case, create a
// new browser into which we restore the tabs.
if (context && disposition != WindowOpenDisposition::NEW_WINDOW) {
tab_index = tab.tabstrip_index;
} else {
context = client_->CreateLiveTabContext(std::string());
if (tab.browser_id)
UpdateTabBrowserIDs(tab.browser_id, context->GetSessionID().id());
}
// Place the tab at the end if the tab index is no longer valid or
// we were passed a specific disposition.
if (tab_index < 0 || tab_index > context->GetTabCount() ||
disposition != WindowOpenDisposition::UNKNOWN) {
tab_index = context->GetTabCount();
}
restored_tab = context->AddRestoredTab(
tab.navigations, tab_index, tab.current_navigation_index,
tab.extension_app_id,
disposition != WindowOpenDisposition::NEW_BACKGROUND_TAB, tab.pinned,
tab.from_last_session, tab.platform_data.get(),
tab.user_agent_override);
restored_tab->LoadIfNecessary();
}
client_->OnTabRestored(
tab.navigations.at(tab.current_navigation_index).virtual_url());
if (live_tab)
*live_tab = restored_tab;
return context;
}
bool TabRestoreServiceHelper::ValidateTab(const Tab& tab) {
return !tab.navigations.empty() &&
static_cast<size_t>(tab.current_navigation_index) <
tab.navigations.size();
}
bool TabRestoreServiceHelper::ValidateWindow(const Window& window) {
if (static_cast<size_t>(window.selected_tab_index) >= window.tabs.size()) {
return false;
}
for (const auto& tab : window.tabs) {
if (!ValidateTab(*tab)) {
return false;
}
}
return true;
}
bool TabRestoreServiceHelper::IsTabInteresting(const Tab& tab) {
if (tab.navigations.empty())
return false;
if (tab.navigations.size() > 1)
return true;
return tab.pinned ||
tab.navigations.at(0).virtual_url() != client_->GetNewTabURL();
}
bool TabRestoreServiceHelper::IsWindowInteresting(const Window& window) {
if (window.tabs.empty())
return false;
if (window.tabs.size() > 1)
return true;
return IsTabInteresting(*window.tabs[0]);
}
bool TabRestoreServiceHelper::FilterEntry(const Entry& entry) {
if (!ValidateEntry(entry))
return false;
switch (entry.type) {
case TabRestoreService::TAB:
return IsTabInteresting(static_cast<const Tab&>(entry));
case TabRestoreService::WINDOW:
return IsWindowInteresting(static_cast<const Window&>(entry));
}
NOTREACHED();
return false;
}
void TabRestoreServiceHelper::UpdateTabBrowserIDs(SessionID::id_type old_id,
SessionID::id_type new_id) {
for (const auto& entry : entries_) {
if (entry->type == TabRestoreService::TAB) {
auto& tab = static_cast<Tab&>(*entry);
if (tab.browser_id == old_id)
tab.browser_id = new_id;
}
}
}
base::Time TabRestoreServiceHelper::TimeNow() const {
return time_factory_ ? time_factory_->TimeNow() : base::Time::Now();
}
} // namespace sessions
|