2011-11-22 14:29:29 +00:00
|
|
|
/*
|
2011-11-22 18:48:47 +00:00
|
|
|
Parse a space-separated string of name:value parameters. Values can be quoted with single quotes, double quotes,
|
|
|
|
double square brackets, or double curly braces.
|
|
|
|
|
2011-11-22 14:29:29 +00:00
|
|
|
The parameters are returned in a structure that can be referenced like this:
|
|
|
|
|
|
|
|
(return).byName["name"][0] - First occurance of parameter with a given name
|
|
|
|
(return).byPos[0].n - Name of parameter in first position
|
|
|
|
(return).byPos[0].v - Value of parameter in first position
|
|
|
|
|
|
|
|
Options and their defaults are:
|
|
|
|
|
|
|
|
defaultName: null,
|
|
|
|
defaultValue: null,
|
|
|
|
noNames: false,
|
|
|
|
cascadeDefaults: false
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-11-30 17:27:00 +00:00
|
|
|
"use strict";
|
|
|
|
|
2011-11-22 14:29:29 +00:00
|
|
|
var ArgParser = function(argString,options) {
|
|
|
|
var parseToken = function(match,p) {
|
|
|
|
var n;
|
|
|
|
if(match[p]) // Double quoted
|
|
|
|
n = match[p];
|
|
|
|
else if(match[p+1]) // Single quoted
|
|
|
|
n = match[p+1];
|
|
|
|
else if(match[p+2]) // Double-square-bracket quoted
|
|
|
|
n = match[p+2];
|
|
|
|
else if(match[p+3]) // Double-brace quoted
|
|
|
|
n = match[p+3];
|
|
|
|
else if(match[p+4]) // Unquoted
|
|
|
|
n = match[p+4];
|
|
|
|
else if(match[p+5]) // empty quote
|
|
|
|
n = "";
|
|
|
|
return n;
|
|
|
|
};
|
|
|
|
this.byPos = [];
|
2011-11-30 17:27:00 +00:00
|
|
|
var dblQuote = "(?:\"((?:(?:\\\\\")|[^\"])+)\")",
|
|
|
|
sngQuote = "(?:'((?:(?:\\\\\')|[^'])+)')",
|
|
|
|
dblSquare = "(?:\\[\\[((?:\\s|\\S)*?)\\]\\])",
|
|
|
|
dblBrace = "(?:\\{\\{((?:\\s|\\S)*?)\\}\\})",
|
|
|
|
unQuoted = options.noNames ? "([^\"'\\s]\\S*)" : "([^\"':\\s][^\\s:]*)",
|
|
|
|
emptyQuote = "((?:\"\")|(?:''))",
|
|
|
|
skipSpace = "(?:\\s*)",
|
|
|
|
token = "(?:" + dblQuote + "|" + sngQuote + "|" + dblSquare + "|" + dblBrace + "|" + unQuoted + "|" + emptyQuote + ")",
|
|
|
|
re = options.noNames ? new RegExp(token,"mg") : new RegExp(skipSpace + token + skipSpace + "(?:(\\:)" + skipSpace + token + ")?","mg"),
|
2011-12-01 10:19:21 +00:00
|
|
|
match,n,v;
|
2011-11-22 14:29:29 +00:00
|
|
|
do {
|
2011-11-30 16:06:34 +00:00
|
|
|
match = re.exec(argString);
|
2011-11-22 14:29:29 +00:00
|
|
|
if(match) {
|
2011-12-01 10:19:21 +00:00
|
|
|
n = parseToken(match,1);
|
2011-11-22 14:29:29 +00:00
|
|
|
if(options.noNames) {
|
|
|
|
this.byPos.push({n:"", v:n});
|
|
|
|
} else {
|
2011-12-01 10:19:21 +00:00
|
|
|
v = parseToken(match,8);
|
2011-11-22 14:29:29 +00:00
|
|
|
if(v === null && options.defaultName) {
|
|
|
|
v = n;
|
|
|
|
n = options.defaultName;
|
|
|
|
} else if(v === null && options.defaultValue) {
|
|
|
|
v = options.defaultValue;
|
|
|
|
}
|
|
|
|
this.byPos.push({n:n, v:v});
|
|
|
|
if(options.cascadeDefaults) {
|
|
|
|
options.defaultName = n;
|
|
|
|
options.defaultValue = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(match);
|
|
|
|
this.byName = {};
|
|
|
|
for(var t=0; t<this.byPos.length; t++) {
|
2011-12-01 10:19:21 +00:00
|
|
|
n = this.byPos[t].n;
|
|
|
|
v = this.byPos[t].v;
|
2011-11-22 14:29:29 +00:00
|
|
|
if(n in this.byName)
|
|
|
|
this.byName[n].push(v);
|
|
|
|
else
|
|
|
|
this.byName[n] = [v];
|
|
|
|
}
|
2011-12-01 10:19:21 +00:00
|
|
|
};
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
// Retrieve the first occurance of a named parameter, or the default if missing
|
|
|
|
ArgParser.prototype.getValueByName = function(n,defaultValue) {
|
|
|
|
var v = this.byName[n];
|
|
|
|
return v && v.length > 0 ? v[0] : defaultValue;
|
2011-12-01 10:19:21 +00:00
|
|
|
};
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
// Retrieve all the values of a named parameter as an array
|
|
|
|
ArgParser.prototype.getValuesByName = function(n,defaultValue) {
|
|
|
|
var v = this.byName[n];
|
|
|
|
return v && v.length > 0 ? v : defaultValue;
|
2011-12-01 10:19:21 +00:00
|
|
|
};
|
2011-11-22 14:29:29 +00:00
|
|
|
|
2011-12-01 10:19:21 +00:00
|
|
|
exports.ArgParser = ArgParser;
|