2016-09-19 06:33:23 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
/* printj.js (C) 2016-present SheetJS -- http://sheetjs.com */
|
2018-01-17 00:55:27 +00:00
|
|
|
/* eslint-env node */
|
2016-09-19 06:33:23 +00:00
|
|
|
/* vim: set ts=2 ft=javascript: */
|
2016-10-14 05:24:43 +00:00
|
|
|
/*jshint node:true, evil:true */
|
2016-09-19 06:33:23 +00:00
|
|
|
var X = require("../"), argv = process.argv;
|
|
|
|
|
|
|
|
function help() {
|
|
|
|
[
|
|
|
|
"usage: printj [options] <format> [args...]",
|
|
|
|
"",
|
|
|
|
"Options:",
|
|
|
|
" -h, --help output usage information",
|
|
|
|
" -d, --dump print debug information about format string",
|
|
|
|
"",
|
|
|
|
"Arguments are treated as strings unless prefaced by a type indicator:",
|
|
|
|
" n:<integer> call parseInt (ex. n:3 -> 3)",
|
|
|
|
" f:<float> call parseFloat (ex. f:3.1 -> 3.1)",
|
|
|
|
' b:<boolean> false when lowercase value is "FALSE" or "0", else true',
|
|
|
|
" s:<string> interpret as string (ex. s:n:3 -> \"n:3\")",
|
|
|
|
" j:<JSON> interpret as an object using JSON.parse",
|
|
|
|
" e:<JS> evaluate argument (ex. e:1+1 -> 2, e:\"1\"+1 -> \"11\")",
|
|
|
|
"",
|
|
|
|
"samples:",
|
|
|
|
" $ printj '|%02hhx%d|' n:50 e:0x7B # |32123|",
|
|
|
|
" $ printj '|%2$d + %3$d is %1$d|' e:1+2 n:1 n:2 # |1 + 2 is 3| ",
|
|
|
|
" $ printj '|%s is %s|' s:1+2 e:1+2 # |1+2 is 3|",
|
|
|
|
" $ printj '|%c %c|' s:69 n:69 # |6 E|",
|
|
|
|
"",
|
|
|
|
"Support email: dev@sheetjs.com",
|
|
|
|
"Web Demo: http://oss.sheetjs.com/printj/"
|
|
|
|
].forEach(function(l) { console.log(l); });
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parse_arg(arg/*:string*/)/*:any*/ {
|
2017-07-04 06:26:51 +00:00
|
|
|
var m = arg.substr(2), p/*:number*/ = 0;
|
|
|
|
if(arg.charCodeAt(1) === 58) switch((p = arg.charCodeAt(0))) {
|
|
|
|
case /*n*/ 110: return parseInt(m, 10);
|
2016-09-19 06:33:23 +00:00
|
|
|
case /*f*/ 102: return parseFloat(m);
|
2017-07-04 06:26:51 +00:00
|
|
|
case /*b*/ 98: return !(m.toUpperCase() === "FALSE" || m === "0");
|
2016-09-19 06:33:23 +00:00
|
|
|
case /*j*/ 106: return JSON.parse(m);
|
|
|
|
case /*e*/ 101: return eval(m);
|
|
|
|
case /*s*/ 115: return m;
|
|
|
|
}
|
2018-01-17 00:55:27 +00:00
|
|
|
void p;
|
2016-09-19 06:33:23 +00:00
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
var args/*:Array<any>*/ = [];
|
|
|
|
var fmt = "", n = 0;
|
|
|
|
for(var i = 2; i < argv.length; ++i) switch(argv[i]) {
|
2016-10-14 05:24:43 +00:00
|
|
|
case "--help": case "-h": process.exit(help()); break;
|
|
|
|
case "--dump": case "-d": if(fmt.length===0) fmt = argv[++i]; process.exit(dump(fmt)); break;
|
|
|
|
default: if(n++ === 0) fmt = argv[i]; else args.push(parse_arg(argv[i]));
|
2016-09-19 06:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log(X.vsprintf(fmt, args));
|
2016-10-08 18:43:39 +00:00
|
|
|
process.exit(0);
|
2016-09-19 06:33:23 +00:00
|
|
|
|
2017-07-04 06:26:51 +00:00
|
|
|
function dump(fmt/*:string*/)/*:number*/ {
|
2016-09-19 06:33:23 +00:00
|
|
|
if(!fmt) { console.error("printj: missing format argument"); return 1; }
|
|
|
|
X._tokenize(fmt).forEach(function(x){console.log(x);});
|
|
|
|
return 0;
|
|
|
|
}
|