license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 1 | // Copyright (c) 2006-2008 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. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
| 5 | #include "chrome/browser/navigation_controller.h" |
| 6 | |
| 7 | #include "base/command_line.h" |
| 8 | #include "base/file_util.h" |
| 9 | #include "base/logging.h" |
| 10 | #include "base/string_util.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 11 | #include "chrome/browser/browser_process.h" |
| 12 | #include "chrome/browser/dom_ui/dom_ui_host.h" |
| 13 | #include "chrome/browser/navigation_entry.h" |
| 14 | #include "chrome/browser/profile.h" |
| 15 | #include "chrome/browser/repost_form_warning_dialog.h" |
[email protected] | 169627b | 2008-12-06 19:30:19 | [diff] [blame] | 16 | #include "chrome/browser/sessions/session_types.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 17 | #include "chrome/browser/site_instance.h" |
| 18 | #include "chrome/browser/tab_contents.h" |
| 19 | #include "chrome/browser/tab_contents_delegate.h" |
| 20 | #include "chrome/common/chrome_switches.h" |
[email protected] | 299dabd | 2008-11-19 02:27:16 | [diff] [blame] | 21 | #include "chrome/common/navigation_types.h" |
| 22 | #include "chrome/common/resource_bundle.h" |
| 23 | #include "chrome/common/scoped_vector.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 24 | #include "net/base/net_util.h" |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 25 | #include "webkit/glue/webkit_glue.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 26 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 27 | namespace { |
| 28 | |
| 29 | // Invoked when entries have been pruned, or removed. For example, if the |
| 30 | // current entries are [google, digg, yahoo], with the current entry google, |
| 31 | // and the user types in cnet, then digg and yahoo are pruned. |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 32 | void NotifyPrunedEntries(NavigationController* nav_controller, |
| 33 | bool from_front, |
| 34 | int count) { |
| 35 | NavigationController::PrunedDetails details; |
| 36 | details.from_front = from_front; |
| 37 | details.count = count; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 38 | NotificationService::current()->Notify( |
| 39 | NOTIFY_NAV_LIST_PRUNED, |
| 40 | Source<NavigationController>(nav_controller), |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 41 | Details<NavigationController::PrunedDetails>(&details)); |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | // Ensure the given NavigationEntry has a valid state, so that WebKit does not |
| 45 | // get confused if we navigate back to it. |
| 46 | // |
| 47 | // An empty state is treated as a new navigation by WebKit, which would mean |
| 48 | // losing the navigation entries and generating a new navigation entry after |
| 49 | // this one. We don't want that. To avoid this we create a valid state which |
| 50 | // WebKit will not treat as a new navigation. |
| 51 | void SetContentStateIfEmpty(NavigationEntry* entry) { |
| 52 | if (entry->content_state().empty() && |
| 53 | (entry->tab_type() == TAB_CONTENTS_WEB || |
| 54 | entry->tab_type() == TAB_CONTENTS_NEW_TAB_UI || |
| 55 | entry->tab_type() == TAB_CONTENTS_ABOUT_UI || |
| 56 | entry->tab_type() == TAB_CONTENTS_HTML_DIALOG)) { |
| 57 | entry->set_content_state( |
| 58 | webkit_glue::CreateHistoryStateForURL(entry->url())); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | // Configure all the NavigationEntries in entries for restore. This resets |
| 63 | // the transition type to reload and makes sure the content state isn't empty. |
| 64 | void ConfigureEntriesForRestore( |
| 65 | std::vector<linked_ptr<NavigationEntry> >* entries) { |
| 66 | for (size_t i = 0; i < entries->size(); ++i) { |
| 67 | // Use a transition type of reload so that we don't incorrectly increase |
| 68 | // the typed count. |
| 69 | (*entries)[i]->set_transition_type(PageTransition::RELOAD); |
| 70 | (*entries)[i]->set_restored(true); |
| 71 | // NOTE(darin): This code is only needed for backwards compat. |
| 72 | SetContentStateIfEmpty((*entries)[i].get()); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | // See NavigationController::IsURLInPageNavigation for how this works and why. |
| 77 | bool AreURLsInPageNavigation(const GURL& existing_url, const GURL& new_url) { |
| 78 | if (existing_url == new_url || !new_url.has_ref()) |
| 79 | return false; |
| 80 | |
| 81 | url_canon::Replacements<char> replacements; |
| 82 | replacements.ClearRef(); |
| 83 | return existing_url.ReplaceComponents(replacements) == |
| 84 | new_url.ReplaceComponents(replacements); |
| 85 | } |
| 86 | |
| 87 | } // namespace |
| 88 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 89 | // TabContentsCollector --------------------------------------------------- |
| 90 | |
| 91 | // We never destroy a TabContents synchronously because there are some |
| 92 | // complex code path that cause the current TabContents to be in the call |
| 93 | // stack. So instead, we use a TabContentsCollector which either destroys |
| 94 | // the TabContents or does nothing if it has been cancelled. |
| 95 | class TabContentsCollector : public Task { |
| 96 | public: |
| 97 | TabContentsCollector(NavigationController* target, |
| 98 | TabContentsType target_type) |
| 99 | : target_(target), |
| 100 | target_type_(target_type) { |
| 101 | } |
| 102 | |
| 103 | void Cancel() { |
| 104 | target_ = NULL; |
| 105 | } |
| 106 | |
| 107 | virtual void Run() { |
| 108 | if (target_) { |
| 109 | // Note: this will cancel this task as a side effect so target_ is |
| 110 | // now null. |
| 111 | TabContents* tc = target_->GetTabContents(target_type_); |
| 112 | tc->Destroy(); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | private: |
| 117 | // The NavigationController we are acting on. |
| 118 | NavigationController* target_; |
| 119 | |
| 120 | // The TabContentsType that needs to be collected. |
| 121 | TabContentsType target_type_; |
| 122 | |
| 123 | DISALLOW_EVIL_CONSTRUCTORS(TabContentsCollector); |
| 124 | }; |
| 125 | |
| 126 | // NavigationController --------------------------------------------------- |
| 127 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 128 | // static |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 129 | size_t NavigationController::max_entry_count_ = 50; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 130 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 131 | // static |
| 132 | bool NavigationController::check_for_repost_ = true; |
| 133 | |
| 134 | // Creates a new NavigationEntry for each TabNavigation in navigations, adding |
| 135 | // the NavigationEntry to entries. This is used during session restore. |
| 136 | static void CreateNavigationEntriesFromTabNavigations( |
| 137 | const std::vector<TabNavigation>& navigations, |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 138 | std::vector<linked_ptr<NavigationEntry> >* entries) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 139 | // Create a NavigationEntry for each of the navigations. |
[email protected] | 169627b | 2008-12-06 19:30:19 | [diff] [blame] | 140 | int page_id = 0; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 141 | for (std::vector<TabNavigation>::const_iterator i = |
[email protected] | 169627b | 2008-12-06 19:30:19 | [diff] [blame] | 142 | navigations.begin(); i != navigations.end(); ++i, ++page_id) { |
| 143 | entries->push_back( |
| 144 | linked_ptr<NavigationEntry>(i->ToNavigationEntry(page_id))); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 148 | NavigationController::NavigationController(TabContents* contents, |
| 149 | Profile* profile) |
| 150 | : profile_(profile), |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 151 | pending_entry_(NULL), |
| 152 | last_committed_entry_index_(-1), |
| 153 | pending_entry_index_(-1), |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 154 | transient_entry_index_(-1), |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 155 | active_contents_(contents), |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 156 | max_restored_page_id_(-1), |
| 157 | ssl_manager_(this, NULL), |
| 158 | needs_reload_(false), |
| 159 | load_pending_entry_when_active_(false) { |
| 160 | if (contents) |
| 161 | RegisterTabContents(contents); |
| 162 | DCHECK(profile_); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | NavigationController::NavigationController( |
| 166 | Profile* profile, |
| 167 | const std::vector<TabNavigation>& navigations, |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 168 | int selected_navigation) |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 169 | : profile_(profile), |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 170 | pending_entry_(NULL), |
| 171 | last_committed_entry_index_(-1), |
| 172 | pending_entry_index_(-1), |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 173 | transient_entry_index_(-1), |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 174 | active_contents_(NULL), |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 175 | max_restored_page_id_(-1), |
| 176 | ssl_manager_(this, NULL), |
| 177 | needs_reload_(true), |
| 178 | load_pending_entry_when_active_(false) { |
| 179 | DCHECK(profile_); |
| 180 | DCHECK(selected_navigation >= 0 && |
| 181 | selected_navigation < static_cast<int>(navigations.size())); |
| 182 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 183 | // Populate entries_ from the supplied TabNavigations. |
| 184 | CreateNavigationEntriesFromTabNavigations(navigations, &entries_); |
| 185 | |
| 186 | // And finish the restore. |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 187 | FinishRestore(selected_navigation); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | NavigationController::~NavigationController() { |
| 191 | DCHECK(tab_contents_map_.empty()); |
| 192 | DCHECK(tab_contents_collector_map_.empty()); |
| 193 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 194 | DiscardNonCommittedEntriesInternal(); |
[email protected] | c099387 | 2008-08-21 19:59:44 | [diff] [blame] | 195 | |
[email protected] | 534e54b | 2008-08-13 15:40:09 | [diff] [blame] | 196 | NotificationService::current()->Notify(NOTIFY_TAB_CLOSED, |
| 197 | Source<NavigationController>(this), |
| 198 | NotificationService::NoDetails()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | TabContents* NavigationController::GetTabContents(TabContentsType t) { |
| 202 | // Make sure the TabContents is no longer scheduled for collection. |
| 203 | CancelTabContentsCollection(t); |
| 204 | return tab_contents_map_[t]; |
| 205 | } |
| 206 | |
[email protected] | f1c7411 | 2008-10-30 16:17:04 | [diff] [blame] | 207 | void NavigationController::Reload(bool check_for_repost) { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 208 | // Reloading a transient entry does nothing. |
| 209 | if (transient_entry_index_ != -1) |
| 210 | return; |
| 211 | |
| 212 | DiscardNonCommittedEntriesInternal(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 213 | int current_index = GetCurrentEntryIndex(); |
[email protected] | f1c7411 | 2008-10-30 16:17:04 | [diff] [blame] | 214 | if (check_for_repost_ && check_for_repost && current_index != -1 && |
[email protected] | a3a1d14 | 2008-12-19 00:42:30 | [diff] [blame^] | 215 | GetEntryAtIndex(current_index)->has_post_data()) { |
| 216 | // The user is asking to reload a page with POST data. Prompt to make sure |
| 217 | // they really want to do this. If they do, RepostFormWarningDialog calls us |
| 218 | // back with ReloadDontCheckForRepost. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 219 | active_contents_->Activate(); |
| 220 | RepostFormWarningDialog::RunRepostFormWarningDialog(this); |
| 221 | } else { |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 222 | // Base the navigation on where we are now... |
| 223 | int current_index = GetCurrentEntryIndex(); |
| 224 | |
| 225 | // If we are no where, then we can't reload. TODO(darin): We should add a |
| 226 | // CanReload method. |
| 227 | if (current_index == -1) |
| 228 | return; |
| 229 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 230 | DiscardNonCommittedEntriesInternal(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 231 | |
| 232 | pending_entry_index_ = current_index; |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 233 | entries_[pending_entry_index_]->set_transition_type(PageTransition::RELOAD); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 234 | NavigateToPendingEntry(true); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 238 | NavigationEntry* NavigationController::GetEntryWithPageID( |
| 239 | TabContentsType type, SiteInstance* instance, int32 page_id) const { |
| 240 | int index = GetEntryIndexWithPageID(type, instance, page_id); |
| 241 | return (index != -1) ? entries_[index].get() : NULL; |
| 242 | } |
| 243 | |
| 244 | void NavigationController::LoadEntry(NavigationEntry* entry) { |
| 245 | // When navigating to a new page, we don't know for sure if we will actually |
| 246 | // end up leaving the current page. The new page load could for example |
| 247 | // result in a download or a 'no content' response (e.g., a mailto: URL). |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 248 | DiscardNonCommittedEntriesInternal(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 249 | pending_entry_ = entry; |
| 250 | NotificationService::current()->Notify( |
| 251 | NOTIFY_NAV_ENTRY_PENDING, |
| 252 | Source<NavigationController>(this), |
| 253 | NotificationService::NoDetails()); |
| 254 | NavigateToPendingEntry(false); |
| 255 | } |
| 256 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 257 | NavigationEntry* NavigationController::GetActiveEntry() const { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 258 | if (transient_entry_index_ != -1) |
| 259 | return entries_[transient_entry_index_].get(); |
| 260 | if (pending_entry_) |
| 261 | return pending_entry_; |
| 262 | return GetLastCommittedEntry(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | int NavigationController::GetCurrentEntryIndex() const { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 266 | if (transient_entry_index_ != -1) |
| 267 | return transient_entry_index_; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 268 | if (pending_entry_index_ != -1) |
| 269 | return pending_entry_index_; |
| 270 | return last_committed_entry_index_; |
| 271 | } |
| 272 | |
| 273 | NavigationEntry* NavigationController::GetLastCommittedEntry() const { |
| 274 | if (last_committed_entry_index_ == -1) |
| 275 | return NULL; |
| 276 | return entries_[last_committed_entry_index_].get(); |
| 277 | } |
| 278 | |
| 279 | NavigationEntry* NavigationController::GetEntryAtOffset(int offset) const { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 280 | int index = (transient_entry_index_ != -1) ? |
| 281 | transient_entry_index_ + offset : |
| 282 | last_committed_entry_index_ + offset; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 283 | if (index < 0 || index >= GetEntryCount()) |
| 284 | return NULL; |
| 285 | |
| 286 | return entries_[index].get(); |
| 287 | } |
| 288 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 289 | bool NavigationController::CanGoBack() const { |
| 290 | return entries_.size() > 1 && GetCurrentEntryIndex() > 0; |
| 291 | } |
| 292 | |
| 293 | bool NavigationController::CanGoForward() const { |
| 294 | int index = GetCurrentEntryIndex(); |
| 295 | return index >= 0 && index < (static_cast<int>(entries_.size()) - 1); |
| 296 | } |
| 297 | |
| 298 | void NavigationController::GoBack() { |
| 299 | if (!CanGoBack()) { |
| 300 | NOTREACHED(); |
| 301 | return; |
| 302 | } |
| 303 | |
| 304 | // Base the navigation on where we are now... |
| 305 | int current_index = GetCurrentEntryIndex(); |
| 306 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 307 | DiscardNonCommittedEntries(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 308 | |
| 309 | pending_entry_index_ = current_index - 1; |
| 310 | NavigateToPendingEntry(false); |
| 311 | } |
| 312 | |
| 313 | void NavigationController::GoForward() { |
| 314 | if (!CanGoForward()) { |
| 315 | NOTREACHED(); |
| 316 | return; |
| 317 | } |
| 318 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 319 | bool transient = (transient_entry_index_ != -1); |
| 320 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 321 | // Base the navigation on where we are now... |
| 322 | int current_index = GetCurrentEntryIndex(); |
| 323 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 324 | DiscardNonCommittedEntries(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 325 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 326 | pending_entry_index_ = current_index; |
| 327 | // If there was a transient entry, we removed it making the current index |
| 328 | // the next page. |
| 329 | if (!transient) |
| 330 | pending_entry_index_++; |
| 331 | |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 332 | NavigateToPendingEntry(false); |
| 333 | } |
| 334 | |
| 335 | void NavigationController::GoToIndex(int index) { |
| 336 | if (index < 0 || index >= static_cast<int>(entries_.size())) { |
| 337 | NOTREACHED(); |
| 338 | return; |
| 339 | } |
| 340 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 341 | if (transient_entry_index_ != -1) { |
| 342 | if (index == transient_entry_index_) { |
| 343 | // Nothing to do when navigating to the transient. |
| 344 | return; |
| 345 | } |
| 346 | if (index > transient_entry_index_) { |
| 347 | // Removing the transient is goint to shift all entries by 1. |
| 348 | index--; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | DiscardNonCommittedEntries(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 353 | |
| 354 | pending_entry_index_ = index; |
| 355 | NavigateToPendingEntry(false); |
| 356 | } |
| 357 | |
| 358 | void NavigationController::GoToOffset(int offset) { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 359 | int index = (transient_entry_index_ != -1) ? |
| 360 | transient_entry_index_ + offset : |
| 361 | last_committed_entry_index_ + offset; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 362 | if (index < 0 || index >= GetEntryCount()) |
| 363 | return; |
| 364 | |
| 365 | GoToIndex(index); |
| 366 | } |
| 367 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 368 | void NavigationController::RemoveEntryAtIndex(int index, |
| 369 | const GURL& default_url) { |
| 370 | int size = static_cast<int>(entries_.size()); |
| 371 | DCHECK(index < size); |
| 372 | |
| 373 | DiscardNonCommittedEntries(); |
| 374 | |
| 375 | entries_.erase(entries_.begin() + index); |
| 376 | |
| 377 | if (last_committed_entry_index_ == index) { |
| 378 | last_committed_entry_index_--; |
| 379 | // We removed the currently shown entry, so we have to load something else. |
| 380 | if (last_committed_entry_index_ != -1) { |
| 381 | pending_entry_index_ = last_committed_entry_index_; |
| 382 | NavigateToPendingEntry(false); |
| 383 | } else { |
| 384 | // If there is nothing to show, show a default page. |
| 385 | LoadURL(default_url.is_empty() ? GURL("about:blank") : default_url, |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 386 | GURL(), PageTransition::START_PAGE); |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 387 | } |
| 388 | } else if (last_committed_entry_index_ > index) { |
| 389 | last_committed_entry_index_--; |
| 390 | } |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 391 | } |
| 392 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 393 | void NavigationController::Destroy() { |
[email protected] | b3345230 | 2008-08-04 19:36:36 | [diff] [blame] | 394 | // Close all tab contents owned by this controller. We make a list on the |
| 395 | // stack because they are removed from the map as they are Destroyed |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 396 | // (invalidating the iterators), which may or may not occur synchronously. |
[email protected] | b3345230 | 2008-08-04 19:36:36 | [diff] [blame] | 397 | // We also keep track of any NULL entries in the map so that we can clean |
| 398 | // them out. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 399 | std::list<TabContents*> tabs_to_destroy; |
[email protected] | b3345230 | 2008-08-04 19:36:36 | [diff] [blame] | 400 | std::list<TabContentsType> tab_types_to_erase; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 401 | for (TabContentsMap::iterator i = tab_contents_map_.begin(); |
| 402 | i != tab_contents_map_.end(); ++i) { |
[email protected] | b3345230 | 2008-08-04 19:36:36 | [diff] [blame] | 403 | if (i->second) |
| 404 | tabs_to_destroy.push_back(i->second); |
| 405 | else |
| 406 | tab_types_to_erase.push_back(i->first); |
| 407 | } |
| 408 | |
| 409 | // Clean out all NULL entries in the map so that we know empty map means all |
| 410 | // tabs destroyed. This is needed since TabContentsWasDestroyed() won't get |
| 411 | // called for types that are in our map with a NULL contents. (We don't do |
| 412 | // this by iterating over TAB_CONTENTS_NUM_TYPES because some tests create |
| 413 | // additional types.) |
| 414 | for (std::list<TabContentsType>::iterator i = tab_types_to_erase.begin(); |
| 415 | i != tab_types_to_erase.end(); ++i) { |
| 416 | TabContentsMap::iterator map_iterator = tab_contents_map_.find(*i); |
| 417 | if (map_iterator != tab_contents_map_.end()) { |
| 418 | DCHECK(!map_iterator->second); |
| 419 | tab_contents_map_.erase(map_iterator); |
| 420 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | // Cancel all the TabContentsCollectors. |
| 424 | for (TabContentsCollectorMap::iterator i = |
| 425 | tab_contents_collector_map_.begin(); |
| 426 | i != tab_contents_collector_map_.end(); ++i) { |
| 427 | DCHECK(i->second); |
| 428 | i->second->Cancel(); |
| 429 | } |
[email protected] | ccfc1a7b | 2008-08-14 16:26:20 | [diff] [blame] | 430 | tab_contents_collector_map_.clear(); |
| 431 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 432 | |
| 433 | // Finally destroy all the tab contents. |
| 434 | for (std::list<TabContents*>::iterator i = tabs_to_destroy.begin(); |
| 435 | i != tabs_to_destroy.end(); ++i) { |
| 436 | (*i)->Destroy(); |
| 437 | } |
| 438 | // We are deleted at this point. |
| 439 | } |
| 440 | |
| 441 | void NavigationController::TabContentsWasDestroyed(TabContentsType type) { |
| 442 | TabContentsMap::iterator i = tab_contents_map_.find(type); |
| 443 | DCHECK(i != tab_contents_map_.end()); |
| 444 | tab_contents_map_.erase(i); |
| 445 | |
| 446 | // Make sure we cancel any collector for that TabContents. |
[email protected] | ccfc1a7b | 2008-08-14 16:26:20 | [diff] [blame] | 447 | CancelTabContentsCollection(type); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 448 | |
| 449 | // If that was the last tab to be destroyed, delete ourselves. |
| 450 | if (tab_contents_map_.empty()) |
| 451 | delete this; |
| 452 | } |
| 453 | |
| 454 | NavigationEntry* NavigationController::CreateNavigationEntry( |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 455 | const GURL& url, const GURL& referrer, PageTransition::Type transition) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 456 | GURL real_url = url; |
| 457 | TabContentsType type; |
| 458 | |
| 459 | // If the active contents supports |url|, use it. |
| 460 | // Note: in both cases, we give TabContents a chance to rewrite the URL. |
| 461 | TabContents* active = active_contents(); |
| 462 | if (active && active->SupportsURL(&real_url)) |
| 463 | type = active->type(); |
| 464 | else |
| 465 | type = TabContents::TypeForURL(&real_url); |
| 466 | |
| 467 | NavigationEntry* entry = new NavigationEntry(type, NULL, -1, real_url, |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 468 | referrer, |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 469 | std::wstring(), transition); |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 470 | entry->set_display_url(url); |
| 471 | entry->set_user_typed_url(url); |
[email protected] | 8654b68 | 2008-11-01 23:36:17 | [diff] [blame] | 472 | if (url.SchemeIsFile()) { |
| 473 | entry->set_title(file_util::GetFilenameFromPath(UTF8ToWide(url.host() + |
| 474 | url.path()))); |
| 475 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 476 | return entry; |
| 477 | } |
| 478 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 479 | void NavigationController::AddTransientEntry(NavigationEntry* entry) { |
| 480 | // Discard any current transient entry, we can only have one at a time. |
| 481 | int index = 0; |
| 482 | if (last_committed_entry_index_ != -1) |
| 483 | index = last_committed_entry_index_ + 1; |
| 484 | DiscardTransientEntry(); |
| 485 | entries_.insert(entries_.begin() + index, linked_ptr<NavigationEntry>(entry)); |
| 486 | transient_entry_index_ = index; |
| 487 | active_contents_->NotifyNavigationStateChanged( |
| 488 | TabContents::INVALIDATE_EVERYTHING); |
| 489 | } |
| 490 | |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 491 | void NavigationController::LoadURL(const GURL& url, const GURL& referrer, |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 492 | PageTransition::Type transition) { |
| 493 | // The user initiated a load, we don't need to reload anymore. |
| 494 | needs_reload_ = false; |
| 495 | |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 496 | NavigationEntry* entry = CreateNavigationEntry(url, referrer, transition); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 497 | |
| 498 | LoadEntry(entry); |
| 499 | } |
| 500 | |
| 501 | void NavigationController::LoadURLLazily(const GURL& url, |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 502 | const GURL& referrer, |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 503 | PageTransition::Type type, |
| 504 | const std::wstring& title, |
| 505 | SkBitmap* icon) { |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 506 | NavigationEntry* entry = CreateNavigationEntry(url, referrer, type); |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 507 | entry->set_title(title); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 508 | if (icon) |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 509 | entry->favicon().set_bitmap(*icon); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 510 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 511 | DiscardNonCommittedEntriesInternal(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 512 | pending_entry_ = entry; |
| 513 | load_pending_entry_when_active_ = true; |
| 514 | } |
| 515 | |
| 516 | bool NavigationController::LoadingURLLazily() { |
| 517 | return load_pending_entry_when_active_; |
| 518 | } |
| 519 | |
| 520 | const std::wstring& NavigationController::GetLazyTitle() const { |
| 521 | if (pending_entry_) |
[email protected] | 3d627bbc | 2008-10-23 20:49:07 | [diff] [blame] | 522 | return pending_entry_->GetTitleForDisplay(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 523 | else |
| 524 | return EmptyWString(); |
| 525 | } |
| 526 | |
| 527 | const SkBitmap& NavigationController::GetLazyFavIcon() const { |
| 528 | if (pending_entry_) { |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 529 | return pending_entry_->favicon().bitmap(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 530 | } else { |
| 531 | ResourceBundle &rb = ResourceBundle::GetSharedInstance(); |
| 532 | return *rb.GetBitmapNamed(IDR_DEFAULT_FAVICON); |
| 533 | } |
| 534 | } |
| 535 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 536 | bool NavigationController::RendererDidNavigate( |
| 537 | const ViewHostMsg_FrameNavigate_Params& params, |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 538 | LoadCommittedDetails* details) { |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 539 | // Save the previous state before we clobber it. |
| 540 | if (GetLastCommittedEntry()) { |
[email protected] | ecd9d870 | 2008-08-28 22:10:17 | [diff] [blame] | 541 | details->previous_url = GetLastCommittedEntry()->url(); |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 542 | details->previous_entry_index = GetLastCommittedEntryIndex(); |
| 543 | } else { |
| 544 | details->previous_url = GURL(); |
| 545 | details->previous_entry_index = -1; |
| 546 | } |
[email protected] | ecd9d870 | 2008-08-28 22:10:17 | [diff] [blame] | 547 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 548 | // Assign the current site instance to any pending entry, so we can find it |
| 549 | // later by calling GetEntryIndexWithPageID. We only care about this if the |
| 550 | // pending entry is an existing navigation and not a new one (or else we |
| 551 | // wouldn't care about finding it with GetEntryIndexWithPageID). |
| 552 | // |
| 553 | // TODO(brettw) this seems slightly bogus as we don't really know if the |
| 554 | // pending entry is what this navigation is for. There is a similar TODO |
| 555 | // w.r.t. the pending entry in RendererDidNavigateToNewPage. |
| 556 | if (pending_entry_index_ >= 0) |
| 557 | pending_entry_->set_site_instance(active_contents_->GetSiteInstance()); |
| 558 | |
| 559 | // Do navigation-type specific actions. These will make and commit an entry. |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 560 | details->type = ClassifyNavigation(params); |
| 561 | switch (details->type) { |
| 562 | case NavigationType::NEW_PAGE: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 563 | RendererDidNavigateToNewPage(params); |
| 564 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 565 | case NavigationType::EXISTING_PAGE: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 566 | RendererDidNavigateToExistingPage(params); |
| 567 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 568 | case NavigationType::SAME_PAGE: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 569 | RendererDidNavigateToSamePage(params); |
| 570 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 571 | case NavigationType::IN_PAGE: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 572 | RendererDidNavigateInPage(params); |
| 573 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 574 | case NavigationType::NEW_SUBFRAME: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 575 | RendererDidNavigateNewSubframe(params); |
| 576 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 577 | case NavigationType::AUTO_SUBFRAME: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 578 | if (!RendererDidNavigateAutoSubframe(params)) |
| 579 | return false; |
| 580 | break; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 581 | case NavigationType::NAV_IGNORE: |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 582 | // There is nothing we can do with this navigation, so we just return to |
| 583 | // the caller that nothing has happened. |
| 584 | return false; |
| 585 | default: |
| 586 | NOTREACHED(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 587 | } |
| 588 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 589 | // All committed entries should have nonempty content state so WebKit doesn't |
| 590 | // get confused when we go back to them (see the function for details). |
| 591 | SetContentStateIfEmpty(GetActiveEntry()); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 592 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 593 | // WebKit doesn't set the "auto" transition on meta refreshes properly (bug |
| 594 | // 1051891) so we manually set it for redirects which we normally treat as |
| 595 | // "non-user-gestures" where we want to update stuff after navigations. |
| 596 | // |
| 597 | // Note that the redirect check also checks for a pending entry to |
| 598 | // differentiate real redirects from browser initiated navigations to a |
| 599 | // redirected entry. This happens when you hit back to go to a page that was |
| 600 | // the destination of a redirect, we don't want to treat it as a redirect |
| 601 | // even though that's what its transition will be. See bug 1117048. |
| 602 | // |
| 603 | // TODO(brettw) write a test for this complicated logic. |
| 604 | details->is_auto = (PageTransition::IsRedirect(params.transition) && |
| 605 | !GetPendingEntry()) || |
| 606 | params.gesture == NavigationGestureAuto; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 607 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 608 | // Now prep the rest of the details for the notification and broadcast. |
| 609 | details->entry = GetActiveEntry(); |
| 610 | details->is_in_page = IsURLInPageNavigation(params.url); |
| 611 | details->is_main_frame = PageTransition::IsMainFrame(params.transition); |
[email protected] | f072d2ce | 2008-09-17 17:16:24 | [diff] [blame] | 612 | details->serialized_security_info = params.security_info; |
[email protected] | 8a3422c9 | 2008-09-24 17:42:42 | [diff] [blame] | 613 | details->is_content_filtered = params.is_content_filtered; |
[email protected] | ecd9d870 | 2008-08-28 22:10:17 | [diff] [blame] | 614 | NotifyNavigationEntryCommitted(details); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 615 | |
[email protected] | b3345230 | 2008-08-04 19:36:36 | [diff] [blame] | 616 | // It is now a safe time to schedule collection for any tab contents of a |
| 617 | // different type, because a navigation is necessary to get back to them. |
[email protected] | 50664fd | 2008-08-28 16:10:30 | [diff] [blame] | 618 | ScheduleTabContentsCollectionForInactiveTabs(); |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 619 | return true; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 620 | } |
| 621 | |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 622 | NavigationType::Type NavigationController::ClassifyNavigation( |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 623 | const ViewHostMsg_FrameNavigate_Params& params) const { |
| 624 | // If a page makes a popup navigated to about blank, and then writes stuff |
| 625 | // like a subframe navigated to a real site, we'll get a notification with an |
| 626 | // invalid page ID. There's nothing we can do with these, so just ignore them. |
| 627 | if (params.page_id == -1) { |
| 628 | DCHECK(!GetActiveEntry()) << "Got an invalid page ID but we seem to be " |
| 629 | " navigated to a valid page. This should be impossible."; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 630 | return NavigationType::NAV_IGNORE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | if (params.page_id > active_contents_->GetMaxPageID()) { |
| 634 | // Greater page IDs than we've ever seen before are new pages. We may or may |
| 635 | // not have a pending entry for the page, and this may or may not be the |
| 636 | // main frame. |
| 637 | if (PageTransition::IsMainFrame(params.transition)) |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 638 | return NavigationType::NEW_PAGE; |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 639 | |
| 640 | // When this is a new subframe navigation, we should have a committed page |
| 641 | // for which it's a suframe in. This may not be the case when an iframe is |
| 642 | // navigated on a popup navigated to about:blank (the iframe would be |
| 643 | // written into the popup by script on the main page). For these cases, |
| 644 | // there isn't any navigation stuff we can do, so just ignore it. |
| 645 | if (!GetLastCommittedEntry()) |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 646 | return NavigationType::NAV_IGNORE; |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 647 | |
| 648 | // Valid subframe navigation. |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 649 | return NavigationType::NEW_SUBFRAME; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | // Now we know that the notification is for an existing page. Find that entry. |
| 653 | int existing_entry_index = GetEntryIndexWithPageID( |
| 654 | active_contents_->type(), |
| 655 | active_contents_->GetSiteInstance(), |
| 656 | params.page_id); |
| 657 | if (existing_entry_index == -1) { |
| 658 | // The page was not found. It could have been pruned because of the limit on |
| 659 | // back/forward entries (not likely since we'll usually tell it to navigate |
| 660 | // to such entries). It could also mean that the renderer is smoking crack. |
| 661 | NOTREACHED(); |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 662 | return NavigationType::NAV_IGNORE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 663 | } |
| 664 | NavigationEntry* existing_entry = entries_[existing_entry_index].get(); |
| 665 | |
| 666 | if (pending_entry_ && |
| 667 | pending_entry_->url() == params.url && |
| 668 | existing_entry != pending_entry_ && |
| 669 | pending_entry_->page_id() == -1 && |
| 670 | pending_entry_->url() == existing_entry->url()) { |
| 671 | // In this case, we have a pending entry for a URL but WebCore didn't do a |
| 672 | // new navigation. This happens when you press enter in the URL bar to |
| 673 | // reload. We will create a pending entry, but WebKit will convert it to |
| 674 | // a reload since it's the same page and not create a new entry for it |
| 675 | // (the user doesn't want to have a new back/forward entry when they do |
| 676 | // this). In this case, we want to just ignore the pending entry and go |
| 677 | // back to where we were (the "existing entry"). |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 678 | return NavigationType::SAME_PAGE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 679 | } |
| 680 | |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 681 | if (!PageTransition::IsMainFrame(params.transition)) { |
| 682 | // All manual subframes would get new IDs and were handled above, so we |
| 683 | // know this is auto. Since the current page was found in the navigation |
| 684 | // entry list, we're guaranteed to have a last committed entry. |
| 685 | DCHECK(GetLastCommittedEntry()); |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 686 | return NavigationType::AUTO_SUBFRAME; |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 687 | } |
| 688 | |
[email protected] | fc60f22 | 2008-12-18 17:36:54 | [diff] [blame] | 689 | // Any toplevel navigations with the same base (minus the reference fragment) |
| 690 | // are in-page navigations. We weeded out subframe navigations above. Most of |
| 691 | // the time this doesn't matter since WebKit doesn't tell us about subframe |
| 692 | // navigations that don't actually navigate, but it can happen when there is |
| 693 | // an encoding override (it always sends a navigation request). |
| 694 | if (AreURLsInPageNavigation(existing_entry->url(), params.url)) |
| 695 | return NavigationType::IN_PAGE; |
| 696 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 697 | // Since we weeded out "new" navigations above, we know this is an existing |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 698 | // (back/forward) navigation. |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 699 | return NavigationType::EXISTING_PAGE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | void NavigationController::RendererDidNavigateToNewPage( |
| 703 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 704 | NavigationEntry* new_entry; |
| 705 | if (pending_entry_) { |
| 706 | // TODO(brettw) this assumes that the pending entry is appropriate for the |
| 707 | // new page that was just loaded. I don't think this is necessarily the |
| 708 | // case! We should have some more tracking to know for sure. This goes along |
| 709 | // with a similar TODO at the top of RendererDidNavigate where we blindly |
| 710 | // set the site instance on the pending entry. |
| 711 | new_entry = new NavigationEntry(*pending_entry_); |
| 712 | |
| 713 | // Don't use the page type from the pending entry. Some interstitial page |
| 714 | // may have set the type to interstitial. Once we commit, however, the page |
| 715 | // type must always be normal. |
| 716 | new_entry->set_page_type(NavigationEntry::NORMAL_PAGE); |
| 717 | } else { |
| 718 | new_entry = new NavigationEntry(active_contents_->type()); |
| 719 | } |
| 720 | |
| 721 | new_entry->set_url(params.url); |
| 722 | new_entry->set_page_id(params.page_id); |
| 723 | new_entry->set_transition_type(params.transition); |
| 724 | new_entry->set_site_instance(active_contents_->GetSiteInstance()); |
| 725 | new_entry->set_has_post_data(params.is_post); |
| 726 | |
| 727 | InsertEntry(new_entry); |
| 728 | } |
| 729 | |
| 730 | void NavigationController::RendererDidNavigateToExistingPage( |
| 731 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 732 | // We should only get here for main frame navigations. |
| 733 | DCHECK(PageTransition::IsMainFrame(params.transition)); |
| 734 | |
| 735 | // This is a back/forward navigation. The existing page for the ID is |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 736 | // guaranteed to exist by ClassifyNavigation, and we just need to update it |
| 737 | // with new information from the renderer. |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 738 | int entry_index = GetEntryIndexWithPageID( |
| 739 | active_contents_->type(), |
| 740 | active_contents_->GetSiteInstance(), |
| 741 | params.page_id); |
| 742 | DCHECK(entry_index >= 0 && |
| 743 | entry_index < static_cast<int>(entries_.size())); |
| 744 | NavigationEntry* entry = entries_[entry_index].get(); |
| 745 | |
| 746 | // The URL may have changed due to redirects. The site instance will normally |
| 747 | // be the same except during session restore, when no site instance will be |
| 748 | // assigned. |
| 749 | entry->set_url(params.url); |
| 750 | DCHECK(entry->site_instance() == NULL || |
| 751 | entry->site_instance() == active_contents_->GetSiteInstance()); |
| 752 | entry->set_site_instance(active_contents_->GetSiteInstance()); |
| 753 | |
| 754 | // The entry we found in the list might be pending if the user hit |
| 755 | // back/forward/reload. This load should commit it (since it's already in the |
| 756 | // list, we can just discard the pending pointer). |
| 757 | // |
| 758 | // Note that we need to use the "internal" version since we don't want to |
| 759 | // actually change any other state, just kill the pointer. |
| 760 | if (entry == pending_entry_) |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 761 | DiscardNonCommittedEntriesInternal(); |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 762 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 763 | last_committed_entry_index_ = entry_index; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | void NavigationController::RendererDidNavigateToSamePage( |
| 767 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 768 | // This mode implies we have a pending entry that's the same as an existing |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 769 | // entry for this page ID. This entry is guaranteed to exist by |
| 770 | // ClassifyNavigation. All we need to do is update the existing entry. |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 771 | NavigationEntry* existing_entry = GetEntryWithPageID( |
| 772 | active_contents_->type(), |
| 773 | active_contents_->GetSiteInstance(), |
| 774 | params.page_id); |
| 775 | |
| 776 | // We assign the entry's unique ID to be that of the new one. Since this is |
| 777 | // always the result of a user action, we want to dismiss infobars, etc. like |
| 778 | // a regular user-initiated navigation. |
| 779 | existing_entry->set_unique_id(pending_entry_->unique_id()); |
| 780 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 781 | DiscardNonCommittedEntries(); |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | void NavigationController::RendererDidNavigateInPage( |
| 785 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 786 | DCHECK(PageTransition::IsMainFrame(params.transition)) << |
| 787 | "WebKit should only tell us about in-page navs for the main frame."; |
| 788 | // We're guaranteed to have an entry for this one. |
| 789 | NavigationEntry* existing_entry = GetEntryWithPageID( |
| 790 | active_contents_->type(), |
| 791 | active_contents_->GetSiteInstance(), |
| 792 | params.page_id); |
| 793 | |
| 794 | // Reference fragment navigation. We're guaranteed to have the last_committed |
| 795 | // entry and it will be the same page as the new navigation (minus the |
| 796 | // reference fragments, of course). |
| 797 | NavigationEntry* new_entry = new NavigationEntry(*existing_entry); |
| 798 | new_entry->set_page_id(params.page_id); |
| 799 | new_entry->set_url(params.url); |
| 800 | InsertEntry(new_entry); |
| 801 | } |
| 802 | |
| 803 | void NavigationController::RendererDidNavigateNewSubframe( |
| 804 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 805 | // Manual subframe navigations just get the current entry cloned so the user |
| 806 | // can go back or forward to it. The actual subframe information will be |
| 807 | // stored in the page state for each of those entries. This happens out of |
| 808 | // band with the actual navigations. |
[email protected] | 4c27ba8 | 2008-09-24 16:49:09 | [diff] [blame] | 809 | DCHECK(GetLastCommittedEntry()) << "ClassifyNavigation should guarantee " |
| 810 | << "that a last committed entry exists."; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 811 | NavigationEntry* new_entry = new NavigationEntry(*GetLastCommittedEntry()); |
| 812 | new_entry->set_page_id(params.page_id); |
| 813 | InsertEntry(new_entry); |
| 814 | } |
| 815 | |
| 816 | bool NavigationController::RendererDidNavigateAutoSubframe( |
| 817 | const ViewHostMsg_FrameNavigate_Params& params) { |
| 818 | // We're guaranteed to have a previously committed entry, and we now need to |
| 819 | // handle navigation inside of a subframe in it without creating a new entry. |
| 820 | DCHECK(GetLastCommittedEntry()); |
| 821 | |
| 822 | // Handle the case where we're navigating back/forward to a previous subframe |
| 823 | // navigation entry. This is case "2." in NAV_AUTO_SUBFRAME comment in the |
| 824 | // header file. In case "1." this will be a NOP. |
| 825 | int entry_index = GetEntryIndexWithPageID( |
| 826 | active_contents_->type(), |
| 827 | active_contents_->GetSiteInstance(), |
| 828 | params.page_id); |
| 829 | if (entry_index < 0 || |
| 830 | entry_index >= static_cast<int>(entries_.size())) { |
| 831 | NOTREACHED(); |
| 832 | return false; |
| 833 | } |
| 834 | |
| 835 | // Update the current navigation entry in case we're going back/forward. |
| 836 | if (entry_index != last_committed_entry_index_) { |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 837 | last_committed_entry_index_ = entry_index; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 838 | return true; |
| 839 | } |
| 840 | return false; |
| 841 | } |
| 842 | |
| 843 | void NavigationController::CommitPendingEntry() { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 844 | DiscardTransientEntry(); |
| 845 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 846 | if (!GetPendingEntry()) |
| 847 | return; // Nothing to do. |
| 848 | |
| 849 | // Need to save the previous URL for the notification. |
| 850 | LoadCommittedDetails details; |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 851 | if (GetLastCommittedEntry()) { |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 852 | details.previous_url = GetLastCommittedEntry()->url(); |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 853 | details.previous_entry_index = GetLastCommittedEntryIndex(); |
| 854 | } else { |
| 855 | details.previous_entry_index = -1; |
| 856 | } |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 857 | |
| 858 | if (pending_entry_index_ >= 0) { |
| 859 | // This is a previous navigation (back/forward) that we're just now |
| 860 | // committing. Just mark it as committed. |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 861 | details.type = NavigationType::EXISTING_PAGE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 862 | int new_entry_index = pending_entry_index_; |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 863 | DiscardNonCommittedEntriesInternal(); |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 864 | |
| 865 | // Mark that entry as committed. |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 866 | last_committed_entry_index_ = new_entry_index; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 867 | } else { |
| 868 | // This is a new navigation. It's easiest to just copy the entry and insert |
| 869 | // it new again, since InsertEntry expects to take ownership and also |
| 870 | // discard the pending entry. We also need to synthesize a page ID. We can |
| 871 | // only do this because this function will only be called by our custom |
| 872 | // TabContents types. For WebContents, the IDs are generated by the |
| 873 | // renderer, so we can't do this. |
[email protected] | 0e8db94 | 2008-09-24 21:21:48 | [diff] [blame] | 874 | details.type = NavigationType::NEW_PAGE; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 875 | pending_entry_->set_page_id(active_contents_->GetMaxPageID() + 1); |
| 876 | active_contents_->UpdateMaxPageID(pending_entry_->page_id()); |
| 877 | InsertEntry(new NavigationEntry(*pending_entry_)); |
| 878 | } |
| 879 | |
| 880 | // Broadcast the notification of the navigation. |
| 881 | details.entry = GetActiveEntry(); |
| 882 | details.is_auto = false; |
| 883 | details.is_in_page = AreURLsInPageNavigation(details.previous_url, |
| 884 | details.entry->url()); |
| 885 | details.is_main_frame = true; |
| 886 | NotifyNavigationEntryCommitted(&details); |
| 887 | } |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 888 | |
| 889 | int NavigationController::GetIndexOfEntry( |
| 890 | const NavigationEntry* entry) const { |
| 891 | const NavigationEntries::const_iterator i(std::find( |
| 892 | entries_.begin(), |
| 893 | entries_.end(), |
| 894 | entry)); |
| 895 | return (i == entries_.end()) ? -1 : static_cast<int>(i - entries_.begin()); |
| 896 | } |
| 897 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 898 | bool NavigationController::IsURLInPageNavigation(const GURL& url) const { |
| 899 | NavigationEntry* last_committed = GetLastCommittedEntry(); |
| 900 | if (!last_committed) |
| 901 | return false; |
| 902 | return AreURLsInPageNavigation(last_committed->url(), url); |
| 903 | } |
| 904 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 905 | void NavigationController::DiscardNonCommittedEntries() { |
| 906 | bool transient = transient_entry_index_ != -1; |
| 907 | DiscardNonCommittedEntriesInternal(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 908 | |
| 909 | // Synchronize the active_contents_ to the last committed entry. |
| 910 | NavigationEntry* last_entry = GetLastCommittedEntry(); |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 911 | if (last_entry && last_entry->tab_type() != active_contents_->type()) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 912 | TabContents* from_contents = active_contents_; |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 913 | from_contents->set_is_active(false); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 914 | |
| 915 | // Switch back to the previous tab contents. |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 916 | active_contents_ = GetTabContents(last_entry->tab_type()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 917 | DCHECK(active_contents_); |
| 918 | |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 919 | active_contents_->set_is_active(true); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 920 | |
| 921 | // If we are transitioning from two types of WebContents, we need to migrate |
| 922 | // the download shelf if it is visible. The download shelf may have been |
| 923 | // created before the error that caused us to discard the entry. |
| 924 | WebContents::MigrateShelfView(from_contents, active_contents_); |
| 925 | |
| 926 | if (from_contents->delegate()) { |
| 927 | from_contents->delegate()->ReplaceContents(from_contents, |
| 928 | active_contents_); |
| 929 | } |
| 930 | |
| 931 | // The entry we just discarded needed a different TabContents type. We no |
| 932 | // longer need it but we can't destroy it just yet because the TabContents |
| 933 | // is very likely involved in the current stack. |
| 934 | DCHECK(from_contents != active_contents_); |
| 935 | ScheduleTabContentsCollection(from_contents->type()); |
| 936 | } |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 937 | |
| 938 | // If there was a transient entry, invalidate everything so the new active |
| 939 | // entry state is shown. |
| 940 | if (transient) { |
| 941 | active_contents_->NotifyNavigationStateChanged( |
| 942 | TabContents::INVALIDATE_EVERYTHING); |
| 943 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | void NavigationController::InsertEntry(NavigationEntry* entry) { |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 947 | DCHECK(entry->transition_type() != PageTransition::AUTO_SUBFRAME); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 948 | |
| 949 | // Copy the pending entry's unique ID to the committed entry. |
| 950 | // I don't know if pending_entry_index_ can be other than -1 here. |
| 951 | const NavigationEntry* const pending_entry = (pending_entry_index_ == -1) ? |
| 952 | pending_entry_ : entries_[pending_entry_index_].get(); |
| 953 | if (pending_entry) |
| 954 | entry->set_unique_id(pending_entry->unique_id()); |
| 955 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 956 | DiscardNonCommittedEntriesInternal(); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 957 | |
| 958 | int current_size = static_cast<int>(entries_.size()); |
| 959 | |
| 960 | // Prune any entries which are in front of the current entry. |
| 961 | if (current_size > 0) { |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 962 | int num_pruned = 0; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 963 | while (last_committed_entry_index_ < (current_size - 1)) { |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 964 | num_pruned++; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 965 | entries_.pop_back(); |
| 966 | current_size--; |
| 967 | } |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 968 | if (num_pruned > 0) // Only notify if we did prune something. |
| 969 | NotifyPrunedEntries(this, false, num_pruned); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 970 | } |
| 971 | |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 972 | if (entries_.size() >= max_entry_count_) { |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 973 | RemoveEntryAtIndex(0, GURL()); |
[email protected] | c12bf1a1 | 2008-09-17 16:28:49 | [diff] [blame] | 974 | NotifyPrunedEntries(this, true, 1); |
| 975 | } |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 976 | |
| 977 | entries_.push_back(linked_ptr<NavigationEntry>(entry)); |
| 978 | last_committed_entry_index_ = static_cast<int>(entries_.size()) - 1; |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 979 | |
| 980 | // This is a new page ID, so we need everybody to know about it. |
| 981 | active_contents_->UpdateMaxPageID(entry->page_id()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | void NavigationController::SetWindowID(const SessionID& id) { |
| 985 | window_id_ = id; |
[email protected] | 534e54b | 2008-08-13 15:40:09 | [diff] [blame] | 986 | NotificationService::current()->Notify(NOTIFY_TAB_PARENTED, |
| 987 | Source<NavigationController>(this), |
| 988 | NotificationService::NoDetails()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | void NavigationController::NavigateToPendingEntry(bool reload) { |
| 992 | TabContents* from_contents = active_contents_; |
| 993 | |
| 994 | // For session history navigations only the pending_entry_index_ is set. |
| 995 | if (!pending_entry_) { |
| 996 | DCHECK(pending_entry_index_ != -1); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 997 | pending_entry_ = entries_[pending_entry_index_].get(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | // Reset the security states as any SSL error may have been resolved since we |
| 1001 | // last visited that page. |
[email protected] | eb34392b | 2008-08-19 15:42:20 | [diff] [blame] | 1002 | pending_entry_->ssl() = NavigationEntry::SSLStatus(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1003 | |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 1004 | if (from_contents && from_contents->type() != pending_entry_->tab_type()) |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1005 | from_contents->set_is_active(false); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1006 | |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1007 | TabContents* contents = GetTabContentsCreateIfNecessary(*pending_entry_); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1008 | |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1009 | contents->set_is_active(true); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1010 | active_contents_ = contents; |
| 1011 | |
| 1012 | if (from_contents && from_contents != contents) { |
| 1013 | if (from_contents->delegate()) |
| 1014 | from_contents->delegate()->ReplaceContents(from_contents, contents); |
| 1015 | } |
| 1016 | |
[email protected] | e9ba447 | 2008-09-14 15:42:43 | [diff] [blame] | 1017 | NavigationEntry temp_entry(*pending_entry_); |
| 1018 | if (!contents->NavigateToPendingEntry(reload)) |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 1019 | DiscardNonCommittedEntries(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1020 | } |
| 1021 | |
[email protected] | ecd9d870 | 2008-08-28 22:10:17 | [diff] [blame] | 1022 | void NavigationController::NotifyNavigationEntryCommitted( |
| 1023 | LoadCommittedDetails* details) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1024 | // TODO(pkasting): http://b/1113079 Probably these explicit notification paths |
| 1025 | // should be removed, and interested parties should just listen for the |
| 1026 | // notification below instead. |
| 1027 | ssl_manager_.NavigationStateChanged(); |
| 1028 | active_contents_->NotifyNavigationStateChanged( |
| 1029 | TabContents::INVALIDATE_EVERYTHING); |
| 1030 | |
[email protected] | ecd9d870 | 2008-08-28 22:10:17 | [diff] [blame] | 1031 | details->entry = GetActiveEntry(); |
| 1032 | NotificationService::current()->Notify( |
| 1033 | NOTIFY_NAV_ENTRY_COMMITTED, |
| 1034 | Source<NavigationController>(this), |
| 1035 | Details<LoadCommittedDetails>(details)); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1036 | } |
| 1037 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1038 | TabContents* NavigationController::GetTabContentsCreateIfNecessary( |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1039 | const NavigationEntry& entry) { |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 1040 | TabContents* contents = GetTabContents(entry.tab_type()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1041 | if (!contents) { |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1042 | contents = TabContents::CreateWithType(entry.tab_type(), profile_, |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1043 | entry.site_instance()); |
| 1044 | if (!contents->AsWebContents()) { |
| 1045 | // Update the max page id, otherwise the newly created TabContents may |
| 1046 | // have reset its max page id resulting in all new navigations. We only |
| 1047 | // do this for non-WebContents as WebContents takes care of this via its |
| 1048 | // SiteInstance. If this creation is the result of a restore, WebContents |
| 1049 | // handles invoking ReservePageIDRange to make sure the renderer's |
| 1050 | // max_page_id is updated to reflect the restored range of page ids. |
| 1051 | int32 max_page_id = contents->GetMaxPageID(); |
| 1052 | for (size_t i = 0; i < entries_.size(); ++i) { |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 1053 | if (entries_[i]->tab_type() == entry.tab_type()) |
| 1054 | max_page_id = std::max(max_page_id, entries_[i]->page_id()); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1055 | } |
| 1056 | contents->UpdateMaxPageID(max_page_id); |
| 1057 | } |
| 1058 | RegisterTabContents(contents); |
| 1059 | } |
| 1060 | |
| 1061 | // We should not be trying to collect this tab contents. |
| 1062 | DCHECK(tab_contents_collector_map_.find(contents->type()) == |
| 1063 | tab_contents_collector_map_.end()); |
| 1064 | |
| 1065 | return contents; |
| 1066 | } |
| 1067 | |
| 1068 | void NavigationController::RegisterTabContents(TabContents* some_contents) { |
| 1069 | DCHECK(some_contents); |
| 1070 | TabContentsType t = some_contents->type(); |
| 1071 | TabContents* tc; |
| 1072 | if ((tc = tab_contents_map_[t]) != some_contents) { |
| 1073 | if (tc) { |
| 1074 | NOTREACHED() << "Should not happen. Multiple contents for one type"; |
| 1075 | } else { |
| 1076 | tab_contents_map_[t] = some_contents; |
| 1077 | some_contents->set_controller(this); |
| 1078 | } |
| 1079 | } |
| 1080 | if (some_contents->AsDOMUIHost()) |
| 1081 | some_contents->AsDOMUIHost()->AttachMessageHandlers(); |
| 1082 | } |
| 1083 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1084 | // static |
| 1085 | void NavigationController::DisablePromptOnRepost() { |
| 1086 | check_for_repost_ = false; |
| 1087 | } |
| 1088 | |
| 1089 | void NavigationController::SetActive(bool is_active) { |
| 1090 | if (is_active) { |
| 1091 | if (needs_reload_) { |
| 1092 | LoadIfNecessary(); |
| 1093 | } else if (load_pending_entry_when_active_) { |
| 1094 | NavigateToPendingEntry(false); |
| 1095 | load_pending_entry_when_active_ = false; |
| 1096 | } |
| 1097 | } |
| 1098 | } |
| 1099 | |
| 1100 | void NavigationController::LoadIfNecessary() { |
| 1101 | if (!needs_reload_) |
| 1102 | return; |
| 1103 | |
| 1104 | needs_reload_ = false; |
| 1105 | // Calling Reload() results in ignoring state, and not loading. |
| 1106 | // Explicitly use NavigateToPendingEntry so that the renderer uses the |
| 1107 | // cached state. |
| 1108 | pending_entry_index_ = last_committed_entry_index_; |
| 1109 | NavigateToPendingEntry(false); |
| 1110 | } |
| 1111 | |
[email protected] | 534e54b | 2008-08-13 15:40:09 | [diff] [blame] | 1112 | void NavigationController::NotifyEntryChanged(const NavigationEntry* entry, |
| 1113 | int index) { |
| 1114 | EntryChangedDetails det; |
| 1115 | det.changed_entry = entry; |
| 1116 | det.index = index; |
| 1117 | NotificationService::current()->Notify(NOTIFY_NAV_ENTRY_CHANGED, |
| 1118 | Source<NavigationController>(this), |
| 1119 | Details<EntryChangedDetails>(&det)); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1120 | } |
| 1121 | |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1122 | NavigationController* NavigationController::Clone() { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1123 | NavigationController* nc = new NavigationController(NULL, profile_); |
| 1124 | |
| 1125 | if (GetEntryCount() == 0) |
| 1126 | return nc; |
| 1127 | |
| 1128 | nc->needs_reload_ = true; |
| 1129 | |
| 1130 | nc->entries_.reserve(entries_.size()); |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1131 | for (int i = 0, c = GetEntryCount(); i < c; ++i) { |
| 1132 | nc->entries_.push_back(linked_ptr<NavigationEntry>( |
| 1133 | new NavigationEntry(*GetEntryAtIndex(i)))); |
| 1134 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1135 | |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1136 | nc->FinishRestore(last_committed_entry_index_); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1137 | |
| 1138 | return nc; |
| 1139 | } |
| 1140 | |
[email protected] | 50664fd | 2008-08-28 16:10:30 | [diff] [blame] | 1141 | void NavigationController::ScheduleTabContentsCollectionForInactiveTabs() { |
| 1142 | int index = GetCurrentEntryIndex(); |
| 1143 | if (index < 0 || GetPendingEntryIndex() != -1) |
| 1144 | return; |
| 1145 | |
| 1146 | TabContentsType active_type = GetEntryAtIndex(index)->tab_type(); |
| 1147 | for (TabContentsMap::iterator i = tab_contents_map_.begin(); |
| 1148 | i != tab_contents_map_.end(); ++i) { |
| 1149 | if (i->first != active_type) |
| 1150 | ScheduleTabContentsCollection(i->first); |
| 1151 | } |
| 1152 | } |
| 1153 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1154 | void NavigationController::ScheduleTabContentsCollection(TabContentsType t) { |
| 1155 | TabContentsCollectorMap::const_iterator i = |
| 1156 | tab_contents_collector_map_.find(t); |
| 1157 | |
| 1158 | // The tab contents is already scheduled for collection. |
| 1159 | if (i != tab_contents_collector_map_.end()) |
| 1160 | return; |
| 1161 | |
| 1162 | // If we currently don't have a TabContents for t, skip. |
| 1163 | if (tab_contents_map_.find(t) == tab_contents_map_.end()) |
| 1164 | return; |
| 1165 | |
| 1166 | // Create a collector and schedule it. |
| 1167 | TabContentsCollector* tcc = new TabContentsCollector(this, t); |
| 1168 | tab_contents_collector_map_[t] = tcc; |
| 1169 | MessageLoop::current()->PostTask(FROM_HERE, tcc); |
| 1170 | } |
| 1171 | |
| 1172 | void NavigationController::CancelTabContentsCollection(TabContentsType t) { |
| 1173 | TabContentsCollectorMap::iterator i = tab_contents_collector_map_.find(t); |
| 1174 | |
| 1175 | if (i != tab_contents_collector_map_.end()) { |
| 1176 | DCHECK(i->second); |
| 1177 | i->second->Cancel(); |
| 1178 | tab_contents_collector_map_.erase(i); |
| 1179 | } |
| 1180 | } |
| 1181 | |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1182 | void NavigationController::FinishRestore(int selected_index) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1183 | DCHECK(selected_index >= 0 && selected_index < GetEntryCount()); |
| 1184 | ConfigureEntriesForRestore(&entries_); |
| 1185 | |
| 1186 | set_max_restored_page_id(GetEntryCount()); |
| 1187 | |
| 1188 | last_committed_entry_index_ = selected_index; |
| 1189 | |
| 1190 | // Callers assume we have an active_contents after restoring, so set it now. |
[email protected] | ec322ff | 2008-11-19 22:53:30 | [diff] [blame] | 1191 | active_contents_ = GetTabContentsCreateIfNecessary(*entries_[selected_index]); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1192 | } |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1193 | |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 1194 | void NavigationController::DiscardNonCommittedEntriesInternal() { |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1195 | if (pending_entry_index_ == -1) |
| 1196 | delete pending_entry_; |
| 1197 | pending_entry_ = NULL; |
| 1198 | pending_entry_index_ = -1; |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 1199 | |
| 1200 | DiscardTransientEntry(); |
| 1201 | } |
| 1202 | |
| 1203 | void NavigationController::DiscardTransientEntry() { |
| 1204 | if (transient_entry_index_ == -1) |
| 1205 | return; |
| 1206 | entries_.erase(entries_.begin() + transient_entry_index_ ); |
| 1207 | transient_entry_index_ = -1; |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | int NavigationController::GetEntryIndexWithPageID( |
| 1211 | TabContentsType type, SiteInstance* instance, int32 page_id) const { |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1212 | for (int i = static_cast<int>(entries_.size()) - 1; i >= 0; --i) { |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 1213 | if ((entries_[i]->tab_type() == type) && |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1214 | (entries_[i]->site_instance() == instance) && |
[email protected] | 1e5645ff | 2008-08-27 18:09:07 | [diff] [blame] | 1215 | (entries_[i]->page_id() == page_id)) |
[email protected] | 765b3550 | 2008-08-21 00:51:20 | [diff] [blame] | 1216 | return i; |
| 1217 | } |
| 1218 | return -1; |
| 1219 | } |
[email protected] | cbab76d | 2008-10-13 22:42:47 | [diff] [blame] | 1220 | |
| 1221 | NavigationEntry* NavigationController::GetTransientEntry() const { |
| 1222 | if (transient_entry_index_ == -1) |
| 1223 | return NULL; |
| 1224 | return entries_[transient_entry_index_].get(); |
| 1225 | } |