Files
cappuccino/Objective-J/sprintf.js
T
Martin Carlberg 6456809a72 Fixed: Use semicolon on last line in #included files. The new preprocessor might think that the statement will continue on the next line.
Due to Javascript don’t need to have semicolon at end of statement there are times when the parser thinks the line continues on the next line.

For example we have a file.js:
var f = function(x)
{
	return x + x;
}

Now in another file we do:
#include file.js
(function(exports) {
a = 42;
})(exports.b)

There will be two different behaviors if the ’file.js’ has a semicolon at the end of the last line. This commit make sure we have the right behavior.
2017-06-26 15:45:02 +02:00

202 lines
6.6 KiB
JavaScript

/*
* sprintf.js
* Objective-J
*
* Created by Thomas Robinson.
* Copyright 2008-2010, 280 North, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
// sprintf:
var formatRegex = /([^%]+|%(?:\d+\$)?[\+\-\ \#0]*[0-9\*]*(.[0-9\*]+)?[hlL]?[cbBdieEfgGosuxXpn%@])/g,
tagRegex = /(%)(?:(\d+)\$)?([\+\-\ \#0]*)([0-9\*]*)((?:.[0-9\*]+)?)([hlL]?)([cbBdieEfgGosuxXpn%@])/;
exports.sprintf = function(format)
{
var format = arguments[0],
tokens = format.match(formatRegex),
index = 0,
result = "",
arg = 1;
for (var i = 0; i < tokens.length; i++)
{
var t = tokens[i];
if (format.substring(index, index + t.length) !== t)
return result;
index += t.length;
if (t.charAt(0) !== "%")
result += t;
else if (t === "%%")
result += "%";
else
{
var subtokens = t.match(tagRegex);
if (subtokens.length !== 8 || subtokens[0] !== t)
return result;
var percentSign = subtokens[1],
argIndex = subtokens[2],
flags = subtokens[3],
widthString = subtokens[4],
precisionString = subtokens[5],
length = subtokens[6],
specifier = subtokens[7];
if (argIndex === undefined || argIndex === null || argIndex === "")
argIndex = arg++;
else
argIndex = Number(argIndex);
var width = null;
if (widthString == "*")
width = arguments[argIndex];
else if (widthString !== "")
width = Number(widthString);
var precision = null;
if (precisionString === ".*")
precision = arguments[argIndex];
else if (precisionString !== "")
precision = Number(precisionString.substring(1));
var leftJustify = (flags.indexOf("-") >= 0),
padZeros = (flags.indexOf("0") >= 0),
subresult = "";
if (/[bBdiufeExXo]/.test(specifier))
{
var num = Number(arguments[argIndex]),
sign = "";
if (num < 0)
{
sign = "-";
}
else
{
if (flags.indexOf("+") >= 0)
sign = "+";
else if (flags.indexOf(" ") >= 0)
sign = " ";
}
if (specifier === "d" || specifier === "i" || specifier === "u")
{
var number = String(Math.abs(Math.floor(num)));
subresult = justify(sign, "", number, "", width, leftJustify, padZeros)
}
if (specifier == "f")
{
var number = String((precision !== null) ? Math.abs(num).toFixed(precision) : Math.abs(num)),
suffix = (flags.indexOf("#") >= 0 && number.indexOf(".") < 0) ? "." : "";
subresult = justify(sign, "", number, suffix, width, leftJustify, padZeros);
}
if (specifier === "e" || specifier === "E")
{
var number = String(Math.abs(num).toExponential(precision !== null ? precision : 21)),
suffix = (flags.indexOf("#") >= 0 && number.indexOf(".") < 0) ? "." : "";
subresult = justify(sign, "", number, suffix, width, leftJustify, padZeros);
}
if (specifier == "x" || specifier == "X")
{
var number = String(Math.abs(num).toString(16));
var prefix = (flags.indexOf("#") >= 0 && num != 0) ? "0x" : "";
subresult = justify(sign, prefix, number, "", width, leftJustify, padZeros);
}
if (specifier == "b" || specifier == "B")
{
var number = String(Math.abs(num).toString(2));
var prefix = (flags.indexOf("#") >= 0 && num != 0) ? "0b" : "";
subresult = justify(sign, prefix, number, "", width, leftJustify, padZeros);
}
if (specifier == "o")
{
var number = String(Math.abs(num).toString(8));
var prefix = (flags.indexOf("#") >= 0 && num != 0) ? "0" : "";
subresult = justify(sign, prefix, number, "", width, leftJustify, padZeros);
}
if (/[A-Z]/.test(specifier))
subresult = subresult.toUpperCase();
else
subresult = subresult.toLowerCase();
}
else
{
var subresult = "";
if (specifier === "%")
subresult = "%";
else if (specifier === "c")
subresult = String(arguments[argIndex]).charAt(0);
else if (specifier === "s" || specifier === "@")
subresult = String(arguments[argIndex]);
else if (specifier === "p" || specifier === "n")
subresult = "";
subresult = justify("", "", subresult, "", width, leftJustify, false);
}
result += subresult;
}
}
return result;
}
function justify(sign, prefix, string, suffix, width, leftJustify, padZeros)
{
var length = (sign.length + prefix.length + string.length + suffix.length);
if (leftJustify)
{
return sign + prefix + string + suffix + pad(width - length, " ");
}
else
{
if (padZeros)
return sign + prefix + pad(width - length, "0") + string + suffix;
else
return pad(width - length, " ") + sign + prefix + string + suffix;
}
}
function pad(n, ch)
{
return Array(MAX(0,n)+1).join(ch);
};