2012-09-08 21:20:59 +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/. */
|
|
|
|
|
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
2017-06-20 03:04:03 +03:00
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
|
|
|
"resource://gre/modules/osfile.jsm");
|
2012-09-08 21:20:59 +04:00
|
|
|
|
2012-10-31 20:13:28 +04:00
|
|
|
this.EXPORTED_SYMBOLS = [
|
2015-08-28 19:53:43 +03:00
|
|
|
"parseKeyValuePairsFromLines",
|
2012-09-08 21:20:59 +04:00
|
|
|
"parseKeyValuePairs",
|
2017-06-20 03:04:03 +03:00
|
|
|
"parseKeyValuePairsFromFile",
|
|
|
|
"parseKeyValuePairsFromFileAsync"
|
2012-09-08 21:20:59 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
|
2015-08-28 19:53:43 +03:00
|
|
|
this.parseKeyValuePairsFromLines = function(lines) {
|
2012-09-08 21:20:59 +04:00
|
|
|
let data = {};
|
2015-08-28 19:53:43 +03:00
|
|
|
for (let line of lines) {
|
2017-01-17 18:48:17 +03:00
|
|
|
if (line == "")
|
2012-09-08 21:20:59 +04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// can't just .split() because the value might contain = characters
|
2017-01-17 18:48:17 +03:00
|
|
|
let eq = line.indexOf("=");
|
2012-09-08 21:20:59 +04:00
|
|
|
if (eq != -1) {
|
2015-08-28 19:53:43 +03:00
|
|
|
let [key, value] = [line.substring(0, eq),
|
|
|
|
line.substring(eq + 1)];
|
2012-09-08 21:20:59 +04:00
|
|
|
if (key && value)
|
|
|
|
data[key] = value.replace(/\\n/g, "\n").replace(/\\\\/g, "\\");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-08-28 19:53:43 +03:00
|
|
|
this.parseKeyValuePairs = function parseKeyValuePairs(text) {
|
2017-01-17 18:48:17 +03:00
|
|
|
let lines = text.split("\n");
|
2015-08-28 19:53:43 +03:00
|
|
|
return parseKeyValuePairsFromLines(lines);
|
|
|
|
};
|
|
|
|
|
2017-06-20 03:04:03 +03:00
|
|
|
// some test setup still uses this sync version
|
2012-10-31 20:13:28 +04:00
|
|
|
this.parseKeyValuePairsFromFile = function parseKeyValuePairsFromFile(file) {
|
2012-09-08 21:20:59 +04:00
|
|
|
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 = {};
|
2017-01-17 18:48:17 +03:00
|
|
|
let contents = "";
|
2012-09-08 21:20:59 +04:00
|
|
|
while (is.readString(4096, str) != 0) {
|
|
|
|
contents += str.value;
|
|
|
|
}
|
|
|
|
is.close();
|
|
|
|
fstream.close();
|
|
|
|
return parseKeyValuePairs(contents);
|
2017-06-20 03:04:03 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
this.parseKeyValuePairsFromFileAsync = async function parseKeyValuePairsFromFileAsync(file) {
|
|
|
|
let contents = await OS.File.read(file, { encoding: "utf-8" });
|
|
|
|
return parseKeyValuePairs(contents);
|
|
|
|
};
|