The URL can end up being user-visible for "Recently closed tabs" (certainly on Android, and also when hovering over an entry on Desktop, at least in the old menu bar), so we should use pretty URLs instead of Punycode. MozReview-Commit-ID: Kil2ChToYa8
552 lines
19 KiB
JavaScript
552 lines
19 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = ["SessionHistory"];
|
|
|
|
const Cu = Components.utils;
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "Utils",
|
|
"resource://gre/modules/sessionstore/Utils.jsm");
|
|
XPCOMUtils.defineLazyServiceGetter(this, "uuidGenerator",
|
|
"@mozilla.org/uuid-generator;1", "nsIUUIDGenerator");
|
|
|
|
function debug(msg) {
|
|
Services.console.logStringMessage("SessionHistory: " + msg);
|
|
}
|
|
|
|
/**
|
|
* The external API exported by this module.
|
|
*/
|
|
this.SessionHistory = Object.freeze({
|
|
isEmpty(docShell) {
|
|
return SessionHistoryInternal.isEmpty(docShell);
|
|
},
|
|
|
|
collect(docShell, aFromIdx = -1) {
|
|
return SessionHistoryInternal.collect(docShell, aFromIdx);
|
|
},
|
|
|
|
restore(docShell, tabData) {
|
|
return SessionHistoryInternal.restore(docShell, tabData);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* The internal API for the SessionHistory module.
|
|
*/
|
|
var SessionHistoryInternal = {
|
|
/**
|
|
* Mapping from legacy docshellIDs to docshellUUIDs.
|
|
*/
|
|
_docshellUUIDMap: new Map(),
|
|
|
|
/**
|
|
* Returns whether the given docShell's session history is empty.
|
|
*
|
|
* @param docShell
|
|
* The docShell that owns the session history.
|
|
*/
|
|
isEmpty(docShell) {
|
|
let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
|
|
let history = webNavigation.sessionHistory;
|
|
if (!webNavigation.currentURI) {
|
|
return true;
|
|
}
|
|
let uri = webNavigation.currentURI.spec;
|
|
return uri == "about:blank" && history.count == 0;
|
|
},
|
|
|
|
/**
|
|
* Collects session history data for a given docShell.
|
|
*
|
|
* @param docShell
|
|
* The docShell that owns the session history.
|
|
* @param aFromIdx
|
|
* The starting local index to collect the history from.
|
|
* @return An object reprereseting a partial global history update.
|
|
*/
|
|
collect(docShell, aFromIdx = -1) {
|
|
let loadContext = docShell.QueryInterface(Ci.nsILoadContext);
|
|
let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
|
|
let history = webNavigation.sessionHistory.QueryInterface(Ci.nsISHistoryInternal);
|
|
let ihistory = history.QueryInterface(Ci.nsISHistory);
|
|
|
|
let data = {entries: [], userContextId: loadContext.originAttributes.userContextId };
|
|
// We want to keep track how many entries we *could* have collected and
|
|
// how many we skipped, so we can sanitiy-check the current history index
|
|
// and also determine whether we need to get any fallback data or not.
|
|
let skippedCount = 0, entryCount = 0;
|
|
|
|
if (history && history.count > 0) {
|
|
// Loop over the transaction linked list directly so we can get the
|
|
// persist property for each transaction.
|
|
for (let txn = history.rootTransaction; txn; entryCount++, txn = txn.next) {
|
|
if (entryCount <= aFromIdx) {
|
|
skippedCount++;
|
|
continue;
|
|
}
|
|
let entry = this.serializeEntry(txn.sHEntry);
|
|
entry.persist = txn.persist;
|
|
data.entries.push(entry);
|
|
}
|
|
|
|
// Ensure the index isn't out of bounds if an exception was thrown above.
|
|
data.index = Math.min(history.index + 1, entryCount);
|
|
}
|
|
|
|
// If either the session history isn't available yet or doesn't have any
|
|
// valid entries, make sure we at least include the current page,
|
|
// unless of course we just skipped all entries because aFromIdx was big enough.
|
|
if (data.entries.length == 0 && (skippedCount != entryCount || aFromIdx < 0)) {
|
|
let uri = webNavigation.currentURI.displaySpec;
|
|
let body = webNavigation.document.body;
|
|
// We landed here because the history is inaccessible or there are no
|
|
// history entries. In that case we should at least record the docShell's
|
|
// current URL as a single history entry. If the URL is not about:blank
|
|
// or it's a blank tab that was modified (like a custom newtab page),
|
|
// record it. For about:blank we explicitly want an empty array without
|
|
// an 'index' property to denote that there are no history entries.
|
|
if (uri != "about:blank" || (body && body.hasChildNodes())) {
|
|
data.entries.push({
|
|
url: uri,
|
|
triggeringPrincipal_base64: Utils.SERIALIZED_SYSTEMPRINCIPAL
|
|
});
|
|
data.index = 1;
|
|
}
|
|
}
|
|
|
|
// Transform the entries from local to global index space.
|
|
data.index += ihistory.globalIndexOffset;
|
|
data.fromIdx = aFromIdx + ihistory.globalIndexOffset;
|
|
|
|
// If we are not the most recent partialSHistory in our groupedSHistory, we
|
|
// need to make certain that we don't replace the entries from the following
|
|
// SHistories - so we replace only the number of entries which our SHistory
|
|
// takes up.
|
|
if (ihistory.globalIndexOffset + ihistory.count < ihistory.globalCount) {
|
|
data.toIdx = data.fromIdx + ihistory.count;
|
|
}
|
|
|
|
return data;
|
|
},
|
|
|
|
/**
|
|
* Get an object that is a serialized representation of a History entry.
|
|
*
|
|
* @param shEntry
|
|
* nsISHEntry instance
|
|
* @return object
|
|
*/
|
|
serializeEntry(shEntry) {
|
|
let entry = { url: shEntry.URI.displaySpec, title: shEntry.title };
|
|
|
|
if (shEntry.isSubFrame) {
|
|
entry.subframe = true;
|
|
}
|
|
|
|
let cacheKey = shEntry.cacheKey;
|
|
if (cacheKey && cacheKey instanceof Ci.nsISupportsPRUint32 &&
|
|
cacheKey.data != 0) {
|
|
// XXXbz would be better to have cache keys implement
|
|
// nsISerializable or something.
|
|
entry.cacheKey = cacheKey.data;
|
|
}
|
|
entry.ID = shEntry.ID;
|
|
entry.docshellUUID = shEntry.docshellID.toString();
|
|
|
|
// We will include the property only if it's truthy to save a couple of
|
|
// bytes when the resulting object is stringified and saved to disk.
|
|
if (shEntry.referrerURI) {
|
|
entry.referrer = shEntry.referrerURI.spec;
|
|
entry.referrerPolicy = shEntry.referrerPolicy;
|
|
}
|
|
|
|
if (shEntry.originalURI) {
|
|
entry.originalURI = shEntry.originalURI.spec;
|
|
}
|
|
|
|
if (shEntry.resultPrincipalURI) {
|
|
entry.resultPrincipalURI = shEntry.resultPrincipalURI.spec;
|
|
|
|
// For downgrade compatibility we store the loadReplace property as it
|
|
// would be stored before result principal URI introduction so that
|
|
// the old code can still create URL based principals for channels
|
|
// correctly. When resultPrincipalURI is non-null and not equal to
|
|
// channel's orignalURI in the new code, it's equal to setting
|
|
// LOAD_REPLACE in the old code. Note that we only do 'the best we can'
|
|
// here to derivate the 'old' loadReplace flag value.
|
|
entry.loadReplace = entry.resultPrincipalURI != entry.originalURI;
|
|
} else {
|
|
// We want to store the property to let the backward compatibility code,
|
|
// when reading the stored session, work. When this property is undefined
|
|
// that code will derive the result principal URI from the load replace
|
|
// flag.
|
|
entry.resultPrincipalURI = null;
|
|
}
|
|
|
|
if (shEntry.loadReplace) {
|
|
// Storing under a new property name, since it has changed its meaning
|
|
// with the result principal URI introduction.
|
|
entry.loadReplace2 = shEntry.loadReplace;
|
|
}
|
|
|
|
if (shEntry.srcdocData)
|
|
entry.srcdocData = shEntry.srcdocData;
|
|
|
|
if (shEntry.isSrcdocEntry)
|
|
entry.isSrcdocEntry = shEntry.isSrcdocEntry;
|
|
|
|
if (shEntry.baseURI)
|
|
entry.baseURI = shEntry.baseURI.spec;
|
|
|
|
if (shEntry.contentType)
|
|
entry.contentType = shEntry.contentType;
|
|
|
|
if (shEntry.scrollRestorationIsManual) {
|
|
entry.scrollRestorationIsManual = true;
|
|
} else {
|
|
let x = {}, y = {};
|
|
shEntry.getScrollPosition(x, y);
|
|
if (x.value !== 0 || y.value !== 0) {
|
|
entry.scroll = x.value + "," + y.value;
|
|
}
|
|
|
|
let layoutHistoryState = shEntry.layoutHistoryState;
|
|
if (layoutHistoryState && layoutHistoryState.hasStates) {
|
|
let presStates = layoutHistoryState.getKeys().map(key =>
|
|
this._getSerializablePresState(layoutHistoryState, key)).filter(presState =>
|
|
// Only keep presState entries that contain more than the key itself.
|
|
Object.getOwnPropertyNames(presState).length > 1);
|
|
|
|
if (presStates.length > 0) {
|
|
entry.presState = presStates;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Collect triggeringPrincipal data for the current history entry.
|
|
if (shEntry.principalToInherit) {
|
|
try {
|
|
let principalToInherit = Utils.serializePrincipal(shEntry.principalToInherit);
|
|
if (principalToInherit) {
|
|
entry.principalToInherit_base64 = principalToInherit;
|
|
}
|
|
} catch (e) {
|
|
debug(e);
|
|
}
|
|
}
|
|
|
|
if (shEntry.triggeringPrincipal) {
|
|
try {
|
|
let triggeringPrincipal = Utils.serializePrincipal(shEntry.triggeringPrincipal);
|
|
if (triggeringPrincipal) {
|
|
entry.triggeringPrincipal_base64 = triggeringPrincipal;
|
|
}
|
|
} catch (e) {
|
|
debug(e);
|
|
}
|
|
}
|
|
|
|
entry.docIdentifier = shEntry.BFCacheEntry.ID;
|
|
|
|
if (shEntry.stateData != null) {
|
|
entry.structuredCloneState = shEntry.stateData.getDataAsBase64();
|
|
entry.structuredCloneVersion = shEntry.stateData.formatVersion;
|
|
}
|
|
|
|
if (!(shEntry instanceof Ci.nsISHContainer)) {
|
|
return entry;
|
|
}
|
|
|
|
if (shEntry.childCount > 0 && !shEntry.hasDynamicallyAddedChild()) {
|
|
let children = [];
|
|
for (let i = 0; i < shEntry.childCount; i++) {
|
|
let child = shEntry.GetChildAt(i);
|
|
|
|
if (child) {
|
|
// Don't try to restore framesets containing wyciwyg URLs.
|
|
// (cf. bug 424689 and bug 450595)
|
|
if (child.URI.schemeIs("wyciwyg")) {
|
|
children.length = 0;
|
|
break;
|
|
}
|
|
|
|
children.push(this.serializeEntry(child));
|
|
}
|
|
}
|
|
|
|
if (children.length) {
|
|
entry.children = children;
|
|
}
|
|
}
|
|
|
|
return entry;
|
|
},
|
|
|
|
/**
|
|
* Get an object that is a serializable representation of a PresState.
|
|
*
|
|
* @param layoutHistoryState
|
|
* nsILayoutHistoryState instance
|
|
* @param stateKey
|
|
* The state key of the presState to be retrieved.
|
|
* @return object
|
|
*/
|
|
_getSerializablePresState(layoutHistoryState, stateKey) {
|
|
let presState = { stateKey };
|
|
let x = {}, y = {}, scrollOriginDowngrade = {}, res = {}, scaleToRes = {};
|
|
|
|
layoutHistoryState.getPresState(stateKey, x, y, scrollOriginDowngrade, res, scaleToRes);
|
|
if (x.value !== 0 || y.value !== 0) {
|
|
presState.scroll = x.value + "," + y.value;
|
|
}
|
|
if (scrollOriginDowngrade.value === false) {
|
|
presState.scrollOriginDowngrade = scrollOriginDowngrade.value;
|
|
}
|
|
if (res.value != 1.0) {
|
|
presState.res = res.value;
|
|
}
|
|
if (scaleToRes.value === true) {
|
|
presState.scaleToRes = scaleToRes.value;
|
|
}
|
|
|
|
return presState;
|
|
},
|
|
|
|
/**
|
|
* Restores session history data for a given docShell.
|
|
*
|
|
* @param docShell
|
|
* The docShell that owns the session history.
|
|
* @param tabData
|
|
* The tabdata including all history entries.
|
|
* @return A reference to the docShell's nsISHistoryInternal interface.
|
|
*/
|
|
restore(docShell, tabData) {
|
|
let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
|
|
let history = webNavigation.sessionHistory;
|
|
if (history.count > 0) {
|
|
history.PurgeHistory(history.count);
|
|
}
|
|
history.QueryInterface(Ci.nsISHistoryInternal);
|
|
|
|
let idMap = { used: {} };
|
|
let docIdentMap = {};
|
|
for (let i = 0; i < tabData.entries.length; i++) {
|
|
let entry = tabData.entries[i];
|
|
// XXXzpao Wallpaper patch for bug 514751
|
|
if (!entry.url)
|
|
continue;
|
|
let persist = "persist" in entry ? entry.persist : true;
|
|
history.addEntry(this.deserializeEntry(entry, idMap, docIdentMap), persist);
|
|
}
|
|
|
|
// Select the right history entry.
|
|
let index = tabData.index - 1;
|
|
if (index < history.count && history.index != index) {
|
|
history.getEntryAtIndex(index, true);
|
|
}
|
|
return history;
|
|
},
|
|
|
|
/**
|
|
* Expands serialized history data into a session-history-entry instance.
|
|
*
|
|
* @param entry
|
|
* Object containing serialized history data for a URL
|
|
* @param idMap
|
|
* Hash for ensuring unique frame IDs
|
|
* @param docIdentMap
|
|
* Hash to ensure reuse of BFCache entries
|
|
* @returns nsISHEntry
|
|
*/
|
|
deserializeEntry(entry, idMap, docIdentMap) {
|
|
|
|
var shEntry = Cc["@mozilla.org/browser/session-history-entry;1"].
|
|
createInstance(Ci.nsISHEntry);
|
|
|
|
shEntry.setURI(Utils.makeURI(entry.url));
|
|
shEntry.setTitle(entry.title || entry.url);
|
|
if (entry.subframe)
|
|
shEntry.setIsSubFrame(entry.subframe || false);
|
|
shEntry.loadType = Ci.nsIDocShellLoadInfo.loadHistory;
|
|
if (entry.contentType)
|
|
shEntry.contentType = entry.contentType;
|
|
if (entry.referrer) {
|
|
shEntry.referrerURI = Utils.makeURI(entry.referrer);
|
|
shEntry.referrerPolicy = entry.referrerPolicy;
|
|
}
|
|
if (entry.originalURI) {
|
|
shEntry.originalURI = Utils.makeURI(entry.originalURI);
|
|
}
|
|
if (typeof entry.resultPrincipalURI === "undefined" && entry.loadReplace) {
|
|
// This is backward compatibility code for stored sessions saved prior to
|
|
// introduction of the resultPrincipalURI property. The equivalent of this
|
|
// property non-null value used to be the URL while the LOAD_REPLACE flag
|
|
// was set.
|
|
shEntry.resultPrincipalURI = shEntry.URI;
|
|
} else if (entry.resultPrincipalURI) {
|
|
shEntry.resultPrincipalURI = Utils.makeURI(entry.resultPrincipalURI);
|
|
}
|
|
if (entry.loadReplace2) {
|
|
shEntry.loadReplace = entry.loadReplace2;
|
|
}
|
|
if (entry.isSrcdocEntry)
|
|
shEntry.srcdocData = entry.srcdocData;
|
|
if (entry.baseURI)
|
|
shEntry.baseURI = Utils.makeURI(entry.baseURI);
|
|
|
|
if (entry.cacheKey) {
|
|
var cacheKey = Cc["@mozilla.org/supports-PRUint32;1"].
|
|
createInstance(Ci.nsISupportsPRUint32);
|
|
cacheKey.data = entry.cacheKey;
|
|
shEntry.cacheKey = cacheKey;
|
|
}
|
|
|
|
if (entry.ID) {
|
|
// get a new unique ID for this frame (since the one from the last
|
|
// start might already be in use)
|
|
var id = idMap[entry.ID] || 0;
|
|
if (!id) {
|
|
for (id = Date.now(); id in idMap.used; id++);
|
|
idMap[entry.ID] = id;
|
|
idMap.used[id] = true;
|
|
}
|
|
shEntry.ID = id;
|
|
}
|
|
|
|
// If we have the legacy docshellID on our entry, upgrade it to a
|
|
// docshellUUID by going through the mapping.
|
|
if (entry.docshellID) {
|
|
if (!this._docshellUUIDMap.has(entry.docshellID)) {
|
|
// Convert the nsID to a string so that the docshellUUID property
|
|
// is correctly stored as a string.
|
|
this._docshellUUIDMap.set(entry.docshellID,
|
|
uuidGenerator.generateUUID().toString());
|
|
}
|
|
entry.docshellUUID = this._docshellUUIDMap.get(entry.docshellID);
|
|
delete entry.docshellID;
|
|
}
|
|
|
|
if (entry.docshellUUID) {
|
|
shEntry.docshellID = Components.ID(entry.docshellUUID);
|
|
}
|
|
|
|
if (entry.structuredCloneState && entry.structuredCloneVersion) {
|
|
shEntry.stateData =
|
|
Cc["@mozilla.org/docshell/structured-clone-container;1"].
|
|
createInstance(Ci.nsIStructuredCloneContainer);
|
|
|
|
shEntry.stateData.initFromBase64(entry.structuredCloneState,
|
|
entry.structuredCloneVersion);
|
|
}
|
|
|
|
if (entry.scrollRestorationIsManual) {
|
|
shEntry.scrollRestorationIsManual = true;
|
|
} else {
|
|
if (entry.scroll) {
|
|
shEntry.setScrollPosition(...this._deserializeScrollPosition(entry.scroll));
|
|
}
|
|
|
|
if (entry.presState) {
|
|
let layoutHistoryState = shEntry.initLayoutHistoryState();
|
|
|
|
for (let presState of entry.presState) {
|
|
this._deserializePresState(layoutHistoryState, presState);
|
|
}
|
|
}
|
|
}
|
|
|
|
let childDocIdents = {};
|
|
if (entry.docIdentifier) {
|
|
// If we have a serialized document identifier, try to find an SHEntry
|
|
// which matches that doc identifier and adopt that SHEntry's
|
|
// BFCacheEntry. If we don't find a match, insert shEntry as the match
|
|
// for the document identifier.
|
|
let matchingEntry = docIdentMap[entry.docIdentifier];
|
|
if (!matchingEntry) {
|
|
matchingEntry = {shEntry, childDocIdents};
|
|
docIdentMap[entry.docIdentifier] = matchingEntry;
|
|
} else {
|
|
shEntry.adoptBFCacheEntry(matchingEntry.shEntry);
|
|
childDocIdents = matchingEntry.childDocIdents;
|
|
}
|
|
}
|
|
|
|
if (entry.triggeringPrincipal_base64) {
|
|
shEntry.triggeringPrincipal = Utils.deserializePrincipal(entry.triggeringPrincipal_base64);
|
|
}
|
|
if (entry.principalToInherit_base64) {
|
|
shEntry.principalToInherit = Utils.deserializePrincipal(entry.principalToInherit_base64);
|
|
}
|
|
|
|
if (entry.children && shEntry instanceof Ci.nsISHContainer) {
|
|
for (var i = 0; i < entry.children.length; i++) {
|
|
// XXXzpao Wallpaper patch for bug 514751
|
|
if (!entry.children[i].url)
|
|
continue;
|
|
|
|
// We're getting sessionrestore.js files with a cycle in the
|
|
// doc-identifier graph, likely due to bug 698656. (That is, we have
|
|
// an entry where doc identifier A is an ancestor of doc identifier B,
|
|
// and another entry where doc identifier B is an ancestor of A.)
|
|
//
|
|
// If we were to respect these doc identifiers, we'd create a cycle in
|
|
// the SHEntries themselves, which causes the docshell to loop forever
|
|
// when it looks for the root SHEntry.
|
|
//
|
|
// So as a hack to fix this, we restrict the scope of a doc identifier
|
|
// to be a node's siblings and cousins, and pass childDocIdents, not
|
|
// aDocIdents, to _deserializeHistoryEntry. That is, we say that two
|
|
// SHEntries with the same doc identifier have the same document iff
|
|
// they have the same parent or their parents have the same document.
|
|
|
|
shEntry.AddChild(this.deserializeEntry(entry.children[i], idMap,
|
|
childDocIdents), i);
|
|
}
|
|
}
|
|
|
|
return shEntry;
|
|
},
|
|
|
|
/**
|
|
* Expands serialized PresState data and adds it to the given nsILayoutHistoryState.
|
|
*
|
|
* @param layoutHistoryState
|
|
* nsILayoutHistoryState instance
|
|
* @param presState
|
|
* Object containing serialized PresState data.
|
|
*/
|
|
_deserializePresState(layoutHistoryState, presState) {
|
|
let stateKey = presState.stateKey;
|
|
let scrollOriginDowngrade =
|
|
typeof presState.scrollOriginDowngrade == "boolean" ? presState.scrollOriginDowngrade : true;
|
|
let res = presState.res || 1.0;
|
|
let scaleToRes = presState.scaleToRes || false;
|
|
|
|
layoutHistoryState.addNewPresState(stateKey, ...this._deserializeScrollPosition(presState.scroll),
|
|
scrollOriginDowngrade, res, scaleToRes);
|
|
},
|
|
|
|
/**
|
|
* Expands serialized scroll position data into an array containing the x and y coordinates,
|
|
* defaulting to 0,0 if no scroll position was found.
|
|
*
|
|
* @param scroll
|
|
* Object containing serialized scroll position data.
|
|
* @return An array containing the scroll position's x and y coordinates.
|
|
*/
|
|
_deserializeScrollPosition(scroll = "0,0") {
|
|
return scroll.split(",").map(pos => parseInt(pos, 10) || 0);
|
|
},
|
|
|
|
};
|