summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/KeyValueParser.jsm
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /toolkit/crashreporter/KeyValueParser.jsm
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'toolkit/crashreporter/KeyValueParser.jsm')
-rw-r--r--toolkit/crashreporter/KeyValueParser.jsm54
1 files changed, 54 insertions, 0 deletions
diff --git a/toolkit/crashreporter/KeyValueParser.jsm b/toolkit/crashreporter/KeyValueParser.jsm
new file mode 100644
index 000000000..ec45354f3
--- /dev/null
+++ b/toolkit/crashreporter/KeyValueParser.jsm
@@ -0,0 +1,54 @@
+/* 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/. */
+
+Components.utils.import("resource://gre/modules/Services.jsm");
+
+this.EXPORTED_SYMBOLS = [
+ "parseKeyValuePairsFromLines",
+ "parseKeyValuePairs",
+ "parseKeyValuePairsFromFile"
+];
+
+const Cc = Components.classes;
+const Ci = Components.interfaces;
+
+this.parseKeyValuePairsFromLines = function(lines) {
+ let data = {};
+ for (let line of lines) {
+ if (line == '')
+ continue;
+
+ // can't just .split() because the value might contain = characters
+ let eq = line.indexOf('=');
+ if (eq != -1) {
+ let [key, value] = [line.substring(0, eq),
+ line.substring(eq + 1)];
+ if (key && value)
+ data[key] = value.replace(/\\n/g, "\n").replace(/\\\\/g, "\\");
+ }
+ }
+ return data;
+}
+
+this.parseKeyValuePairs = function parseKeyValuePairs(text) {
+ let lines = text.split('\n');
+ return parseKeyValuePairsFromLines(lines);
+};
+
+this.parseKeyValuePairsFromFile = function parseKeyValuePairsFromFile(file) {
+ let fstream = Cc["@mozilla.org/network/file-input-stream;1"].
+ createInstance(Ci.nsIFileInputStream);
+ fstream.init(file, -1, 0, 0);
+ let is = Cc["@mozilla.org/intl/converter-input-stream;1"].
+ createInstance(Ci.nsIConverterInputStream);
+ is.init(fstream, "UTF-8", 1024, Ci.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);
+ let str = {};
+ let contents = '';
+ while (is.readString(4096, str) != 0) {
+ contents += str.value;
+ }
+ is.close();
+ fstream.close();
+ return parseKeyValuePairs(contents);
+}