This patch was autogenerated by my decomponents.py
It covers almost every file with the extension js, jsm, html, py,
xhtml, or xul.
It removes blank lines after removed lines, when the removed lines are
preceded by either blank lines or the start of a new block. The "start
of a new block" is defined fairly hackily: either the line starts with
//, ends with */, ends with {, <![CDATA[, """ or '''. The first two
cover comments, the third one covers JS, the fourth covers JS embedded
in XUL, and the final two cover JS embedded in Python. This also
applies if the removed line was the first line of the file.
It covers the pattern matching cases like "var {classes: Cc,
interfaces: Ci, utils: Cu, results: Cr} = Components;". It'll remove
the entire thing if they are all either Ci, Cr, Cc or Cu, or it will
remove the appropriate ones and leave the residue behind. If there's
only one behind, then it will turn it into a normal, non-pattern
matching variable definition. (For instance, "const { classes: Cc,
Constructor: CC, interfaces: Ci, utils: Cu } = Components" becomes
"const CC = Components.Constructor".)
MozReview-Commit-ID: DeSHcClQ7cG
178 lines
5.8 KiB
JavaScript
178 lines
5.8 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/. */
|
|
|
|
var reportURL;
|
|
|
|
ChromeUtils.import("resource://gre/modules/CrashReports.jsm");
|
|
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
ChromeUtils.import("resource://gre/modules/osfile.jsm");
|
|
|
|
ChromeUtils.defineModuleGetter(this, "CrashSubmit",
|
|
"resource://gre/modules/CrashSubmit.jsm");
|
|
|
|
const buildID = Services.appinfo.appBuildID;
|
|
|
|
function submitPendingReport(event) {
|
|
let link = event.target;
|
|
let id = link.firstChild.textContent;
|
|
link.className = "submitting";
|
|
CrashSubmit.submit(id, { noThrottle: true }).then(
|
|
(remoteCrashID) => {
|
|
link.className = "";
|
|
// Reset the link to point at our new crash report. This way, if the
|
|
// user clicks "Back", the link will be correct.
|
|
link.firstChild.textContent = remoteCrashID;
|
|
link.setAttribute("id", remoteCrashID);
|
|
link.removeEventListener("click", submitPendingReport, true);
|
|
|
|
if (reportURL) {
|
|
link.setAttribute("href", reportURL + remoteCrashID);
|
|
// redirect the user to their brand new crash report
|
|
window.location.href = reportURL + remoteCrashID;
|
|
}
|
|
},
|
|
() => {
|
|
// XXX: do something more useful here
|
|
link.className = "";
|
|
|
|
// Dispatch an event, useful for testing
|
|
let event = document.createEvent("Events");
|
|
event.initEvent("CrashSubmitFailed", true, false);
|
|
document.dispatchEvent(event);
|
|
});
|
|
event.preventDefault();
|
|
return false;
|
|
}
|
|
|
|
function populateReportList() {
|
|
try {
|
|
reportURL = Services.prefs.getCharPref("breakpad.reportURL");
|
|
// Ignore any non http/https urls
|
|
if (!/^https?:/i.test(reportURL))
|
|
reportURL = null;
|
|
} catch (e) { }
|
|
if (!reportURL) {
|
|
document.getElementById("clear-reports").style.display = "none";
|
|
document.getElementById("reportList").style.display = "none";
|
|
document.getElementById("noConfig").style.display = "block";
|
|
return;
|
|
}
|
|
let reports = CrashReports.getReports();
|
|
|
|
if (reports.length == 0) {
|
|
document.getElementById("clear-reports").style.display = "none";
|
|
document.getElementById("reportList").style.display = "none";
|
|
document.getElementById("noReports").style.display = "block";
|
|
return;
|
|
}
|
|
|
|
var dateFormatter;
|
|
var timeFormatter;
|
|
try {
|
|
dateFormatter = new Services.intl.DateTimeFormat(undefined, { dateStyle: "short" });
|
|
timeFormatter = new Services.intl.DateTimeFormat(undefined, { timeStyle: "short" });
|
|
} catch (e) {
|
|
// XXX Fallback to be removed once bug 1215247 is complete
|
|
// and the Intl API is available on all platforms.
|
|
dateFormatter = {
|
|
format(date) {
|
|
return date.toLocaleDateString();
|
|
}
|
|
};
|
|
timeFormatter = {
|
|
format(date) {
|
|
return date.toLocaleTimeString();
|
|
}
|
|
};
|
|
}
|
|
var reportURI = Services.io.newURI(reportURL);
|
|
// resolving this URI relative to /report/index
|
|
var aboutThrottling = Services.io.newURI("../../about/throttling", null, reportURI);
|
|
|
|
for (var i = 0; i < reports.length; i++) {
|
|
var row = document.createElement("tr");
|
|
var cell = document.createElement("td");
|
|
row.appendChild(cell);
|
|
var link = document.createElement("a");
|
|
if (reports[i].pending) {
|
|
link.setAttribute("href", aboutThrottling.spec);
|
|
link.addEventListener("click", submitPendingReport, true);
|
|
} else {
|
|
link.setAttribute("href", reportURL + reports[i].id);
|
|
}
|
|
link.setAttribute("id", reports[i].id);
|
|
link.classList.add("crashReport");
|
|
link.appendChild(document.createTextNode(reports[i].id));
|
|
cell.appendChild(link);
|
|
|
|
var date = new Date(reports[i].date);
|
|
cell = document.createElement("td");
|
|
cell.appendChild(document.createTextNode(dateFormatter.format(date)));
|
|
row.appendChild(cell);
|
|
cell = document.createElement("td");
|
|
cell.appendChild(document.createTextNode(timeFormatter.format(date)));
|
|
row.appendChild(cell);
|
|
if (reports[i].pending) {
|
|
document.getElementById("unsubmitted").appendChild(row);
|
|
} else {
|
|
document.getElementById("submitted").appendChild(row);
|
|
}
|
|
}
|
|
}
|
|
|
|
var clearReports = async function() {
|
|
let bundle = Services.strings.createBundle("chrome://global/locale/crashes.properties");
|
|
|
|
if (!Services.
|
|
prompt.confirm(window,
|
|
bundle.GetStringFromName("deleteconfirm.title"),
|
|
bundle.GetStringFromName("deleteconfirm.description"))) {
|
|
return;
|
|
}
|
|
|
|
let cleanupFolder = async function(path, filter) {
|
|
let iterator = new OS.File.DirectoryIterator(path);
|
|
try {
|
|
await iterator.forEach(async function(aEntry) {
|
|
if (!filter || (await filter(aEntry))) {
|
|
await OS.File.remove(aEntry.path);
|
|
}
|
|
});
|
|
} catch (e) {
|
|
if (!(e instanceof OS.File.Error) || !e.becauseNoSuchFile) {
|
|
throw e;
|
|
}
|
|
} finally {
|
|
iterator.close();
|
|
}
|
|
};
|
|
|
|
await cleanupFolder(CrashReports.submittedDir.path, function(aEntry) {
|
|
return aEntry.name.startsWith("bp-") && aEntry.name.endsWith(".txt");
|
|
});
|
|
|
|
let oneYearAgo = Date.now() - 31586000000;
|
|
await cleanupFolder(CrashReports.reportsDir.path, async function(aEntry) {
|
|
if (!aEntry.name.startsWith("InstallTime") ||
|
|
aEntry.name == "InstallTime" + buildID) {
|
|
return false;
|
|
}
|
|
|
|
let date = aEntry.winLastWriteDate;
|
|
if (!date) {
|
|
let stat = await OS.File.stat(aEntry.path);
|
|
date = stat.lastModificationDate;
|
|
}
|
|
|
|
return (date < oneYearAgo);
|
|
});
|
|
|
|
await cleanupFolder(CrashReports.pendingDir.path);
|
|
|
|
document.getElementById("clear-reports").style.display = "none";
|
|
document.getElementById("reportList").style.display = "none";
|
|
document.getElementById("noReports").style.display = "block";
|
|
};
|