2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2010-02-10 04:05:31 +03:00
|
|
|
|
2015-02-09 20:50:43 +03:00
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
Cu.import("resource://gre/modules/KeyValueParser.jsm");
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.importGlobalProperties(['File']);
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "PromiseUtils",
|
|
|
|
"resource://gre/modules/PromiseUtils.jsm");
|
2016-05-11 09:50:55 +03:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
|
|
|
"resource://gre/modules/osfile.jsm");
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "Task",
|
|
|
|
"resource://gre/modules/Task.jsm");
|
2010-03-17 08:10:08 +03:00
|
|
|
|
2012-10-31 20:13:28 +04:00
|
|
|
this.EXPORTED_SYMBOLS = [
|
2010-02-10 04:05:31 +03:00
|
|
|
"CrashSubmit"
|
|
|
|
];
|
|
|
|
|
|
|
|
const STATE_START = Ci.nsIWebProgressListener.STATE_START;
|
|
|
|
const STATE_STOP = Ci.nsIWebProgressListener.STATE_STOP;
|
|
|
|
|
2010-03-17 08:10:08 +03:00
|
|
|
const SUCCESS = "success";
|
|
|
|
const FAILED = "failed";
|
|
|
|
const SUBMITTING = "submitting";
|
|
|
|
|
2016-05-11 09:50:55 +03:00
|
|
|
const UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
2010-02-10 04:05:31 +03:00
|
|
|
|
|
|
|
function parseINIStrings(file) {
|
|
|
|
var factory = Cc["@mozilla.org/xpcom/ini-parser-factory;1"].
|
|
|
|
getService(Ci.nsIINIParserFactory);
|
|
|
|
var parser = factory.createINIParser(file);
|
|
|
|
var obj = {};
|
|
|
|
var en = parser.getKeys("Strings");
|
|
|
|
while (en.hasMore()) {
|
|
|
|
var key = en.getNext();
|
|
|
|
obj[key] = parser.getString("Strings", key);
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since we're basically re-implementing part of the crashreporter
|
|
|
|
// client here, we'll just steal the strings we need from crashreporter.ini
|
|
|
|
function getL10nStrings() {
|
|
|
|
let dirSvc = Cc["@mozilla.org/file/directory_service;1"].
|
|
|
|
getService(Ci.nsIProperties);
|
|
|
|
let path = dirSvc.get("GreD", Ci.nsIFile);
|
|
|
|
path.append("crashreporter.ini");
|
|
|
|
if (!path.exists()) {
|
|
|
|
// see if we're on a mac
|
|
|
|
path = path.parent;
|
2014-09-29 22:51:13 +04:00
|
|
|
path = path.parent;
|
|
|
|
path.append("MacOS");
|
2010-02-10 04:05:31 +03:00
|
|
|
path.append("crashreporter.app");
|
|
|
|
path.append("Contents");
|
2014-09-29 22:51:13 +04:00
|
|
|
path.append("Resources");
|
2010-02-10 04:05:31 +03:00
|
|
|
path.append("crashreporter.ini");
|
|
|
|
if (!path.exists()) {
|
|
|
|
// very bad, but I don't know how to recover
|
2016-05-11 09:50:55 +03:00
|
|
|
return null;
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
let crstrings = parseINIStrings(path);
|
2016-05-11 09:50:55 +03:00
|
|
|
let strings = {
|
2010-02-10 04:05:31 +03:00
|
|
|
'crashid': crstrings.CrashID,
|
|
|
|
'reporturl': crstrings.CrashDetailsURL
|
|
|
|
};
|
|
|
|
|
|
|
|
path = dirSvc.get("XCurProcD", Ci.nsIFile);
|
|
|
|
path.append("crashreporter-override.ini");
|
|
|
|
if (path.exists()) {
|
|
|
|
crstrings = parseINIStrings(path);
|
|
|
|
if ('CrashID' in crstrings)
|
|
|
|
strings['crashid'] = crstrings.CrashID;
|
|
|
|
if ('CrashDetailsURL' in crstrings)
|
|
|
|
strings['reporturl'] = crstrings.CrashDetailsURL;
|
|
|
|
}
|
2016-05-11 09:50:55 +03:00
|
|
|
return strings;
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
|
2016-05-11 09:50:55 +03:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "strings", getL10nStrings);
|
|
|
|
|
2014-06-20 19:31:29 +04:00
|
|
|
function getDir(name) {
|
2010-02-10 04:05:31 +03:00
|
|
|
let directoryService = Cc["@mozilla.org/file/directory_service;1"].
|
|
|
|
getService(Ci.nsIProperties);
|
2014-06-20 19:31:29 +04:00
|
|
|
let dir = directoryService.get("UAppData", Ci.nsIFile);
|
|
|
|
dir.append("Crash Reports");
|
|
|
|
dir.append(name);
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
function writeFile(dirName, fileName, data) {
|
|
|
|
let path = getDir(dirName);
|
|
|
|
if (!path.exists())
|
2015-02-05 01:51:39 +03:00
|
|
|
path.create(Ci.nsIFile.DIRECTORY_TYPE, parseInt('0700', 8));
|
2014-06-20 19:31:29 +04:00
|
|
|
path.append(fileName);
|
|
|
|
var fs = Cc["@mozilla.org/network/file-output-stream;1"].
|
|
|
|
createInstance(Ci.nsIFileOutputStream);
|
|
|
|
// open, write, truncate
|
|
|
|
fs.init(path, -1, -1, 0);
|
|
|
|
var os = Cc["@mozilla.org/intl/converter-output-stream;1"].
|
|
|
|
createInstance(Ci.nsIConverterOutputStream);
|
|
|
|
os.init(fs, "UTF-8", 0, 0x0000);
|
|
|
|
os.writeString(data);
|
|
|
|
os.close();
|
|
|
|
fs.close();
|
2012-12-07 01:27:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getPendingMinidump(id) {
|
2014-06-20 19:31:29 +04:00
|
|
|
let pendingDir = getDir("pending");
|
2010-02-10 04:05:31 +03:00
|
|
|
let dump = pendingDir.clone();
|
|
|
|
let extra = pendingDir.clone();
|
2014-08-30 09:21:25 +04:00
|
|
|
let memory = pendingDir.clone();
|
2010-02-10 04:05:31 +03:00
|
|
|
dump.append(id + ".dmp");
|
|
|
|
extra.append(id + ".extra");
|
2014-08-30 09:21:25 +04:00
|
|
|
memory.append(id + ".memory.json.gz");
|
|
|
|
return [dump, extra, memory];
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
|
2012-12-07 01:27:49 +04:00
|
|
|
function getAllPendingMinidumpsIDs() {
|
|
|
|
let minidumps = [];
|
2014-06-20 19:31:29 +04:00
|
|
|
let pendingDir = getDir("pending");
|
2012-12-07 01:27:49 +04:00
|
|
|
|
|
|
|
if (!(pendingDir.exists() && pendingDir.isDirectory()))
|
|
|
|
return [];
|
|
|
|
let entries = pendingDir.directoryEntries;
|
|
|
|
|
|
|
|
while (entries.hasMoreElements()) {
|
|
|
|
let entry = entries.getNext().QueryInterface(Ci.nsIFile);
|
|
|
|
if (entry.isFile()) {
|
|
|
|
let matches = entry.leafName.match(/(.+)\.extra$/);
|
|
|
|
if (matches)
|
|
|
|
minidumps.push(matches[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return minidumps;
|
|
|
|
}
|
|
|
|
|
2012-12-12 02:06:48 +04:00
|
|
|
function pruneSavedDumps() {
|
|
|
|
const KEEP = 10;
|
|
|
|
|
2014-06-20 19:31:29 +04:00
|
|
|
let pendingDir = getDir("pending");
|
2012-12-12 02:06:48 +04:00
|
|
|
if (!(pendingDir.exists() && pendingDir.isDirectory()))
|
|
|
|
return;
|
|
|
|
let entries = pendingDir.directoryEntries;
|
|
|
|
let entriesArray = [];
|
|
|
|
|
|
|
|
while (entries.hasMoreElements()) {
|
|
|
|
let entry = entries.getNext().QueryInterface(Ci.nsIFile);
|
|
|
|
if (entry.isFile()) {
|
|
|
|
let matches = entry.leafName.match(/(.+)\.extra$/);
|
|
|
|
if (matches)
|
2014-06-20 19:31:29 +04:00
|
|
|
entriesArray.push(entry);
|
2012-12-12 02:06:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 22:44:15 +03:00
|
|
|
entriesArray.sort(function(a, b) {
|
2012-12-12 02:06:48 +04:00
|
|
|
let dateA = a.lastModifiedTime;
|
|
|
|
let dateB = b.lastModifiedTime;
|
|
|
|
if (dateA < dateB)
|
|
|
|
return -1;
|
|
|
|
if (dateB < dateA)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (entriesArray.length > KEEP) {
|
|
|
|
for (let i = 0; i < entriesArray.length - KEEP; ++i) {
|
|
|
|
let extra = entriesArray[i];
|
|
|
|
let matches = extra.leafName.match(/(.+)\.extra$/);
|
|
|
|
if (matches) {
|
|
|
|
let dump = extra.clone();
|
|
|
|
dump.leafName = matches[1] + '.dmp';
|
|
|
|
dump.remove(false);
|
2014-08-30 09:21:25 +04:00
|
|
|
|
|
|
|
let memory = extra.clone();
|
|
|
|
memory.leafName = matches[1] + '.memory.json.gz';
|
|
|
|
if (memory.exists()) {
|
|
|
|
memory.remove(false);
|
|
|
|
}
|
|
|
|
|
2012-12-12 02:06:48 +04:00
|
|
|
extra.remove(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-10 04:05:31 +03:00
|
|
|
function addFormEntry(doc, form, name, value) {
|
|
|
|
var input = doc.createElement("input");
|
|
|
|
input.type = "hidden";
|
|
|
|
input.name = name;
|
|
|
|
input.value = value;
|
|
|
|
form.appendChild(input);
|
|
|
|
}
|
|
|
|
|
|
|
|
function writeSubmittedReport(crashID, viewURL) {
|
|
|
|
var data = strings.crashid.replace("%s", crashID);
|
|
|
|
if (viewURL)
|
|
|
|
data += "\n" + strings.reporturl.replace("%s", viewURL);
|
|
|
|
|
2014-06-20 19:31:29 +04:00
|
|
|
writeFile("submitted", crashID + ".txt", data);
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// the Submitter class represents an individual submission.
|
2015-02-09 20:50:43 +03:00
|
|
|
function Submitter(id, recordSubmission, noThrottle, extraExtraKeyVals) {
|
2010-02-10 04:05:31 +03:00
|
|
|
this.id = id;
|
2014-08-22 02:43:50 +04:00
|
|
|
this.recordSubmission = recordSubmission;
|
2010-06-30 18:29:05 +04:00
|
|
|
this.noThrottle = noThrottle;
|
2012-09-08 21:20:59 +04:00
|
|
|
this.additionalDumps = [];
|
2013-02-15 03:57:50 +04:00
|
|
|
this.extraKeyVals = extraExtraKeyVals || {};
|
2015-02-09 20:50:43 +03:00
|
|
|
this.deferredSubmit = PromiseUtils.defer();
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Submitter.prototype = {
|
|
|
|
submitSuccess: function Submitter_submitSuccess(ret)
|
|
|
|
{
|
|
|
|
// Write out the details file to submitted/
|
|
|
|
writeSubmittedReport(ret.CrashID, ret.ViewURL);
|
|
|
|
|
|
|
|
// Delete from pending dir
|
|
|
|
try {
|
|
|
|
this.dump.remove(false);
|
|
|
|
this.extra.remove(false);
|
2014-08-30 09:21:25 +04:00
|
|
|
|
|
|
|
if (this.memory) {
|
|
|
|
this.memory.remove(false);
|
|
|
|
}
|
|
|
|
|
2012-09-08 21:20:59 +04:00
|
|
|
for (let i of this.additionalDumps) {
|
|
|
|
i.dump.remove(false);
|
|
|
|
}
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
// report an error? not much the user can do here.
|
|
|
|
}
|
|
|
|
|
2010-03-17 08:10:08 +03:00
|
|
|
this.notifyStatus(SUCCESS, ret);
|
2010-02-10 04:05:31 +03:00
|
|
|
this.cleanup();
|
|
|
|
},
|
|
|
|
|
|
|
|
cleanup: function Submitter_cleanup() {
|
|
|
|
// drop some references just to be nice
|
|
|
|
this.iframe = null;
|
|
|
|
this.dump = null;
|
|
|
|
this.extra = null;
|
2014-08-30 09:21:25 +04:00
|
|
|
this.memory = null;
|
2012-09-08 21:20:59 +04:00
|
|
|
this.additionalDumps = null;
|
2010-02-10 04:05:31 +03:00
|
|
|
// remove this object from the list of active submissions
|
|
|
|
let idx = CrashSubmit._activeSubmissions.indexOf(this);
|
|
|
|
if (idx != -1)
|
|
|
|
CrashSubmit._activeSubmissions.splice(idx, 1);
|
|
|
|
},
|
|
|
|
|
|
|
|
submitForm: function Submitter_submitForm()
|
|
|
|
{
|
2013-02-15 03:57:50 +04:00
|
|
|
if (!('ServerURL' in this.extraKeyVals)) {
|
2010-02-10 04:05:31 +03:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-15 03:57:50 +04:00
|
|
|
let serverURL = this.extraKeyVals.ServerURL;
|
2012-09-11 23:13:00 +04:00
|
|
|
|
2014-09-08 19:17:10 +04:00
|
|
|
// Override the submission URL from the environment
|
2012-09-11 23:13:00 +04:00
|
|
|
|
|
|
|
var envOverride = Cc['@mozilla.org/process/environment;1'].
|
|
|
|
getService(Ci.nsIEnvironment).get("MOZ_CRASHREPORTER_URL");
|
|
|
|
if (envOverride != '') {
|
|
|
|
serverURL = envOverride;
|
|
|
|
}
|
|
|
|
|
2011-07-21 04:51:55 +04:00
|
|
|
let xhr = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"]
|
|
|
|
.createInstance(Ci.nsIXMLHttpRequest);
|
2012-09-11 23:13:00 +04:00
|
|
|
xhr.open("POST", serverURL, true);
|
2011-07-21 04:51:55 +04:00
|
|
|
|
|
|
|
let formData = Cc["@mozilla.org/files/formdata;1"]
|
|
|
|
.createInstance(Ci.nsIDOMFormData);
|
2013-02-15 03:57:50 +04:00
|
|
|
// add the data
|
2016-08-03 09:23:10 +03:00
|
|
|
for (let [name, value] of Object.entries(this.extraKeyVals)) {
|
2013-02-15 03:57:50 +04:00
|
|
|
if (name != "ServerURL") {
|
|
|
|
formData.append(name, value);
|
|
|
|
}
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
2010-06-30 18:29:05 +04:00
|
|
|
if (this.noThrottle) {
|
|
|
|
// tell the server not to throttle this, since it was manually submitted
|
2011-07-21 04:51:55 +04:00
|
|
|
formData.append("Throttleable", "0");
|
2010-06-30 18:29:05 +04:00
|
|
|
}
|
2012-09-08 21:20:59 +04:00
|
|
|
// add the minidumps
|
2016-11-11 20:56:44 +03:00
|
|
|
formData.append("upload_file_minidump", File.createFromFileName(this.dump.path));
|
2014-08-30 09:21:25 +04:00
|
|
|
if (this.memory) {
|
2016-11-11 20:56:44 +03:00
|
|
|
formData.append("memory_report", File.createFromFileName(this.memory.path));
|
2014-08-30 09:21:25 +04:00
|
|
|
}
|
2012-09-08 21:20:59 +04:00
|
|
|
if (this.additionalDumps.length > 0) {
|
|
|
|
let names = [];
|
|
|
|
for (let i of this.additionalDumps) {
|
|
|
|
names.push(i.name);
|
2016-11-11 01:48:04 +03:00
|
|
|
formData.append("upload_file_minidump_" + i.name,
|
2016-11-11 20:56:44 +03:00
|
|
|
File.createFromFileName(i.dump.path));
|
2012-09-08 21:20:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 02:43:50 +04:00
|
|
|
let manager = Services.crashmanager;
|
2014-09-02 21:02:40 +04:00
|
|
|
let submissionID = manager.generateSubmissionID();
|
2014-08-22 02:43:50 +04:00
|
|
|
|
2015-02-09 20:51:17 +03:00
|
|
|
xhr.addEventListener("readystatechange", (evt) => {
|
2011-07-21 04:51:55 +04:00
|
|
|
if (xhr.readyState == 4) {
|
2014-07-09 19:14:42 +04:00
|
|
|
let ret =
|
|
|
|
xhr.status == 200 ? parseKeyValuePairs(xhr.responseText) : {};
|
|
|
|
let submitted = !!ret.CrashID;
|
2016-11-23 13:28:04 +03:00
|
|
|
let p = Promise.resolve();
|
2014-07-09 19:14:42 +04:00
|
|
|
|
2015-02-09 20:51:17 +03:00
|
|
|
if (this.recordSubmission) {
|
2014-08-22 02:43:50 +04:00
|
|
|
let result = submitted ? manager.SUBMISSION_RESULT_OK :
|
|
|
|
manager.SUBMISSION_RESULT_FAILED;
|
2016-11-23 13:28:04 +03:00
|
|
|
p = manager.addSubmissionResult(this.id, submissionID, new Date(),
|
|
|
|
result);
|
2014-08-29 08:03:02 +04:00
|
|
|
if (submitted) {
|
2015-02-09 20:51:17 +03:00
|
|
|
manager.setRemoteCrashID(this.id, ret.CrashID);
|
2014-08-29 08:03:02 +04:00
|
|
|
}
|
2014-07-09 19:14:42 +04:00
|
|
|
}
|
|
|
|
|
2016-11-23 13:28:04 +03:00
|
|
|
p.then(() => {
|
|
|
|
if (submitted) {
|
|
|
|
this.submitSuccess(ret);
|
|
|
|
} else {
|
|
|
|
this.notifyStatus(FAILED);
|
|
|
|
this.cleanup();
|
|
|
|
}
|
|
|
|
});
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
2011-09-29 20:06:36 +04:00
|
|
|
}, false);
|
2010-02-10 04:05:31 +03:00
|
|
|
|
2016-11-23 13:28:04 +03:00
|
|
|
let p = Promise.resolve();
|
|
|
|
let id = this.id;
|
|
|
|
|
2014-08-22 02:43:50 +04:00
|
|
|
if (this.recordSubmission) {
|
2016-11-23 13:28:04 +03:00
|
|
|
p = manager.ensureCrashIsPresent(id).then(() => {
|
|
|
|
return manager.addSubmissionAttempt(id, submissionID, new Date());
|
|
|
|
});
|
2014-08-22 02:43:50 +04:00
|
|
|
}
|
2016-11-23 13:28:04 +03:00
|
|
|
p.then(() => { xhr.send(formData); });
|
2011-07-21 04:51:55 +04:00
|
|
|
return true;
|
2010-02-10 04:05:31 +03:00
|
|
|
},
|
|
|
|
|
2010-03-17 08:10:08 +03:00
|
|
|
notifyStatus: function Submitter_notify(status, ret)
|
|
|
|
{
|
|
|
|
let propBag = Cc["@mozilla.org/hash-property-bag;1"].
|
|
|
|
createInstance(Ci.nsIWritablePropertyBag2);
|
|
|
|
propBag.setPropertyAsAString("minidumpID", this.id);
|
2010-06-30 18:29:05 +04:00
|
|
|
if (status == SUCCESS) {
|
|
|
|
propBag.setPropertyAsAString("serverCrashID", ret.CrashID);
|
|
|
|
}
|
2010-03-17 08:10:08 +03:00
|
|
|
|
2013-02-15 03:57:50 +04:00
|
|
|
let extraKeyValsBag = Cc["@mozilla.org/hash-property-bag;1"].
|
|
|
|
createInstance(Ci.nsIWritablePropertyBag2);
|
|
|
|
for (let key in this.extraKeyVals) {
|
|
|
|
extraKeyValsBag.setPropertyAsAString(key, this.extraKeyVals[key]);
|
|
|
|
}
|
|
|
|
propBag.setPropertyAsInterface("extra", extraKeyValsBag);
|
|
|
|
|
2010-03-17 08:10:08 +03:00
|
|
|
Services.obs.notifyObservers(propBag, "crash-report-status", status);
|
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case SUCCESS:
|
2015-02-09 20:50:43 +03:00
|
|
|
this.deferredSubmit.resolve(ret.CrashID);
|
2010-03-17 08:10:08 +03:00
|
|
|
break;
|
|
|
|
case FAILED:
|
2015-02-09 20:50:43 +03:00
|
|
|
this.deferredSubmit.reject();
|
2010-03-17 08:10:08 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// no callbacks invoked.
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-02-10 04:05:31 +03:00
|
|
|
submit: function Submitter_submit()
|
|
|
|
{
|
2014-08-30 09:21:25 +04:00
|
|
|
let [dump, extra, memory] = getPendingMinidump(this.id);
|
|
|
|
|
2010-02-10 20:20:37 +03:00
|
|
|
if (!dump.exists() || !extra.exists()) {
|
2010-03-17 08:10:08 +03:00
|
|
|
this.notifyStatus(FAILED);
|
2010-02-10 20:20:37 +03:00
|
|
|
this.cleanup();
|
2015-02-09 20:50:43 +03:00
|
|
|
return this.deferredSubmit.promise;
|
2010-02-10 20:20:37 +03:00
|
|
|
}
|
2014-08-30 09:21:25 +04:00
|
|
|
this.dump = dump;
|
|
|
|
this.extra = extra;
|
|
|
|
|
|
|
|
// The memory file may or may not exist
|
|
|
|
if (memory.exists()) {
|
|
|
|
this.memory = memory;
|
|
|
|
}
|
2010-03-17 08:10:08 +03:00
|
|
|
|
2013-02-15 03:57:50 +04:00
|
|
|
let extraKeyVals = parseKeyValuePairsFromFile(extra);
|
|
|
|
for (let key in extraKeyVals) {
|
|
|
|
if (!(key in this.extraKeyVals)) {
|
|
|
|
this.extraKeyVals[key] = extraKeyVals[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-08 21:20:59 +04:00
|
|
|
let additionalDumps = [];
|
2013-02-15 03:57:50 +04:00
|
|
|
if ("additional_minidumps" in this.extraKeyVals) {
|
|
|
|
let names = this.extraKeyVals.additional_minidumps.split(',');
|
2012-09-15 00:37:58 +04:00
|
|
|
for (let name of names) {
|
2014-08-30 09:21:25 +04:00
|
|
|
let [dump, extra, memory] = getPendingMinidump(this.id + "-" + name);
|
2012-09-08 21:20:59 +04:00
|
|
|
if (!dump.exists()) {
|
|
|
|
this.notifyStatus(FAILED);
|
|
|
|
this.cleanup();
|
2015-02-09 20:50:43 +03:00
|
|
|
return this.deferredSubmit.promise;
|
2012-09-08 21:20:59 +04:00
|
|
|
}
|
|
|
|
additionalDumps.push({'name': name, 'dump': dump});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-17 08:10:08 +03:00
|
|
|
this.notifyStatus(SUBMITTING);
|
|
|
|
|
2012-09-08 21:20:59 +04:00
|
|
|
this.additionalDumps = additionalDumps;
|
2010-02-10 04:05:31 +03:00
|
|
|
|
2011-07-21 04:51:55 +04:00
|
|
|
if (!this.submitForm()) {
|
|
|
|
this.notifyStatus(FAILED);
|
|
|
|
this.cleanup();
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
2015-02-09 20:50:43 +03:00
|
|
|
return this.deferredSubmit.promise;
|
2010-02-10 04:05:31 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-24 20:14:19 +03:00
|
|
|
// ===================================
|
2010-02-10 04:05:31 +03:00
|
|
|
// External API goes here
|
2012-10-31 20:13:28 +04:00
|
|
|
this.CrashSubmit = {
|
2010-02-10 04:05:31 +03:00
|
|
|
/**
|
|
|
|
* Submit the crash report named id.dmp from the "pending" directory.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* Filename (minus .dmp extension) of the minidump to submit.
|
2011-07-21 04:52:13 +04:00
|
|
|
* @param params
|
|
|
|
* An object containing any of the following optional parameters:
|
2014-08-22 02:43:50 +04:00
|
|
|
* - recordSubmission
|
|
|
|
* If true, a submission event is recorded in CrashManager.
|
2011-07-21 04:52:13 +04:00
|
|
|
* - noThrottle
|
|
|
|
* If true, this crash report should be submitted with
|
|
|
|
* an extra parameter of "Throttleable=0" indicating that
|
|
|
|
* it should be processed right away. This should be set
|
|
|
|
* when the report is being submitted and the user expects
|
|
|
|
* to see the results immediately. Defaults to false.
|
2013-02-15 03:57:50 +04:00
|
|
|
* - extraExtraKeyVals
|
|
|
|
* An object whose key-value pairs will be merged with the data from
|
|
|
|
* the ".extra" file submitted with the report. The properties of
|
|
|
|
* this object will override properties of the same name in the
|
|
|
|
* .extra file.
|
2010-02-10 04:05:31 +03:00
|
|
|
*
|
2015-02-09 20:50:43 +03:00
|
|
|
* @return a Promise that is fulfilled with the server crash ID when the
|
|
|
|
* submission succeeds and rejected otherwise.
|
2010-02-10 04:05:31 +03:00
|
|
|
*/
|
2011-07-21 04:52:13 +04:00
|
|
|
submit: function CrashSubmit_submit(id, params)
|
2010-02-10 04:05:31 +03:00
|
|
|
{
|
2011-07-21 04:52:13 +04:00
|
|
|
params = params || {};
|
2014-08-22 02:43:50 +04:00
|
|
|
let recordSubmission = false;
|
2011-07-21 04:52:13 +04:00
|
|
|
let submitSuccess = null;
|
|
|
|
let submitError = null;
|
|
|
|
let noThrottle = false;
|
2013-02-15 03:57:50 +04:00
|
|
|
let extraExtraKeyVals = null;
|
2011-07-21 04:52:13 +04:00
|
|
|
|
2014-08-22 02:43:50 +04:00
|
|
|
if ('recordSubmission' in params)
|
|
|
|
recordSubmission = params.recordSubmission;
|
2011-07-21 04:52:13 +04:00
|
|
|
if ('noThrottle' in params)
|
|
|
|
noThrottle = params.noThrottle;
|
2013-02-15 03:57:50 +04:00
|
|
|
if ('extraExtraKeyVals' in params)
|
|
|
|
extraExtraKeyVals = params.extraExtraKeyVals;
|
2011-07-21 04:52:13 +04:00
|
|
|
|
2014-08-22 02:43:50 +04:00
|
|
|
let submitter = new Submitter(id, recordSubmission,
|
2014-07-09 19:14:42 +04:00
|
|
|
noThrottle, extraExtraKeyVals);
|
2010-02-10 04:05:31 +03:00
|
|
|
CrashSubmit._activeSubmissions.push(submitter);
|
|
|
|
return submitter.submit();
|
|
|
|
},
|
|
|
|
|
2013-05-02 20:57:41 +04:00
|
|
|
/**
|
|
|
|
* Delete the minidup from the "pending" directory.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* Filename (minus .dmp extension) of the minidump to delete.
|
|
|
|
*/
|
|
|
|
delete: function CrashSubmit_delete(id) {
|
2014-08-30 09:21:25 +04:00
|
|
|
let [dump, extra, memory] = getPendingMinidump(id);
|
|
|
|
dump.remove(false);
|
|
|
|
extra.remove(false);
|
|
|
|
if (memory.exists()) {
|
|
|
|
memory.remove(false);
|
|
|
|
}
|
2013-05-02 20:57:41 +04:00
|
|
|
},
|
|
|
|
|
2016-05-11 09:50:55 +03:00
|
|
|
/**
|
|
|
|
* Add a .dmg.ignore file along side the .dmp file to indicate that the user
|
|
|
|
* shouldn't be prompted to submit this crash report again.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* Filename (minus .dmp extension) of the report to ignore
|
|
|
|
*/
|
|
|
|
|
|
|
|
ignore: function CrashSubmit_ignore(id) {
|
|
|
|
let [dump, extra, mem] = getPendingMinidump(id);
|
|
|
|
return OS.File.open(dump.path + ".ignore", {create: true},
|
|
|
|
{unixFlags: OS.Constants.libc.O_CREAT})
|
2016-08-17 04:27:37 +03:00
|
|
|
.then((file) => { file.close(); });
|
2016-05-11 09:50:55 +03:00
|
|
|
},
|
|
|
|
|
2012-12-07 01:27:49 +04:00
|
|
|
/**
|
|
|
|
* Get the list of pending crash IDs.
|
|
|
|
*
|
|
|
|
* @return an array of string, each being an ID as
|
|
|
|
* expected to be passed to submit()
|
|
|
|
*/
|
|
|
|
pendingIDs: function CrashSubmit_pendingIDs() {
|
|
|
|
return getAllPendingMinidumpsIDs();
|
|
|
|
},
|
|
|
|
|
2016-05-11 09:50:55 +03:00
|
|
|
/**
|
|
|
|
* Get the list of pending crash IDs, excluding those marked to be ignored
|
|
|
|
* @param maxFileDate
|
|
|
|
* A Date object. Any files last modified before that date will be ignored
|
|
|
|
*
|
|
|
|
* @return a Promise that is fulfilled with an array of string, each
|
|
|
|
* being an ID as expected to be passed to submit() or ignore()
|
|
|
|
*/
|
|
|
|
pendingIDsAsync: Task.async(function* CrashSubmit_pendingIDsAsync(maxFileDate) {
|
|
|
|
let ids = [];
|
|
|
|
let info = null;
|
|
|
|
try {
|
|
|
|
info = yield OS.File.stat(getDir("pending").path)
|
|
|
|
} catch (ex) {
|
|
|
|
/* pending dir doesn't exist, ignore */
|
|
|
|
return ids;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.isDir) {
|
|
|
|
let iterator = new OS.File.DirectoryIterator(getDir("pending").path);
|
|
|
|
try {
|
|
|
|
yield iterator.forEach(
|
|
|
|
function onEntry(file) {
|
|
|
|
if (file.name.endsWith(".dmp")) {
|
|
|
|
return OS.File.exists(file.path + ".ignore")
|
|
|
|
.then(ignoreExists => {
|
|
|
|
if (!ignoreExists) {
|
|
|
|
let id = file.name.slice(0, -4);
|
|
|
|
if (UUID_REGEX.test(id)) {
|
|
|
|
return OS.File.stat(file.path)
|
|
|
|
.then(info => {
|
|
|
|
if (info.lastAccessDate.valueOf() >
|
|
|
|
maxFileDate.valueOf()) {
|
|
|
|
ids.push(id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
);
|
2016-08-04 10:28:58 +03:00
|
|
|
} catch (ex) {
|
2016-05-11 09:50:55 +03:00
|
|
|
Cu.reportError(ex);
|
|
|
|
} finally {
|
|
|
|
iterator.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ids;
|
|
|
|
}),
|
|
|
|
|
2012-12-12 02:06:48 +04:00
|
|
|
/**
|
|
|
|
* Prune the saved dumps.
|
|
|
|
*/
|
|
|
|
pruneSavedDumps: function CrashSubmit_pruneSavedDumps() {
|
|
|
|
pruneSavedDumps();
|
|
|
|
},
|
|
|
|
|
2010-02-10 04:05:31 +03:00
|
|
|
// List of currently active submit objects
|
|
|
|
_activeSubmissions: []
|
|
|
|
};
|