2012-12-04 19:27:20 +00:00
|
|
|
#!/usr/bin/env node
|
2014-01-23 06:20:19 +00:00
|
|
|
/* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
|
|
|
|
var n = "xlsx";
|
2013-10-30 22:26:31 +00:00
|
|
|
/* vim: set ts=2: */
|
2014-01-23 06:20:19 +00:00
|
|
|
var X = require('../');
|
2013-10-30 22:26:31 +00:00
|
|
|
var fs = require('fs'), program = require('commander');
|
|
|
|
program
|
2014-01-23 06:20:19 +00:00
|
|
|
.version(X.version)
|
2013-10-30 22:26:31 +00:00
|
|
|
.usage('[options] <file> [sheetname]')
|
|
|
|
.option('-f, --file <file>', 'use specified workbook')
|
|
|
|
.option('-s, --sheet <sheet>', 'print specified sheet (default first sheet)')
|
|
|
|
.option('-l, --list-sheets', 'list sheet names and exit')
|
2014-01-23 06:20:19 +00:00
|
|
|
.option('-S, --formulae', 'print formulae')
|
|
|
|
.option('-j, --json', 'emit formatted JSON rather than CSV (all fields text)')
|
|
|
|
.option('-J, --raw-js', 'emit raw JS object rather than CSV (raw numbers)')
|
|
|
|
.option('-F, --field-sep <sep>', 'CSV field separator', ",")
|
|
|
|
.option('-R, --row-sep <sep>', 'CSV row separator', "\n")
|
2014-02-19 03:03:28 +00:00
|
|
|
.option('-n, --sheet-rows <num>', 'Number of rows to process (0=all rows)')
|
2013-10-30 22:26:31 +00:00
|
|
|
.option('--dev', 'development mode')
|
|
|
|
.option('--read', 'read but do not print out contents')
|
2014-01-23 06:20:19 +00:00
|
|
|
.option('-q, --quiet', 'quiet mode');
|
|
|
|
|
|
|
|
program.on('--help', function() {
|
|
|
|
console.log(' Support email: dev@sheetjs.com');
|
|
|
|
console.log(' Web Demo: http://oss.sheetjs.com/js-'+n+'/');
|
|
|
|
});
|
|
|
|
|
|
|
|
program.parse(process.argv);
|
2013-10-30 22:26:31 +00:00
|
|
|
|
|
|
|
var filename, sheetname = '';
|
|
|
|
if(program.args[0]) {
|
|
|
|
filename = program.args[0];
|
|
|
|
if(program.args[1]) sheetname = program.args[1];
|
2012-12-04 19:27:20 +00:00
|
|
|
}
|
2013-10-30 22:26:31 +00:00
|
|
|
if(program.sheet) sheetname = program.sheet;
|
|
|
|
if(program.file) filename = program.file;
|
|
|
|
|
|
|
|
if(!filename) {
|
2014-01-23 06:20:19 +00:00
|
|
|
console.error(n + "2csv: must specify a filename");
|
2012-12-04 19:27:20 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
2013-10-30 22:26:31 +00:00
|
|
|
|
|
|
|
if(!fs.existsSync(filename)) {
|
2014-01-23 06:20:19 +00:00
|
|
|
console.error(n + "2csv: " + filename + ": No such file or directory");
|
2013-10-30 22:26:31 +00:00
|
|
|
process.exit(2);
|
|
|
|
}
|
|
|
|
|
2014-02-15 05:08:18 +00:00
|
|
|
var opts = {}, wb;
|
2014-02-13 06:22:42 +00:00
|
|
|
if(program.listSheets) opts.bookSheets = true;
|
2014-02-19 03:03:28 +00:00
|
|
|
if(program.sheetRows) opts.sheetRows = program.sheetRows;
|
2014-02-13 06:22:42 +00:00
|
|
|
|
2014-02-15 05:08:18 +00:00
|
|
|
if(program.dev) {
|
|
|
|
X.verbose = 2;
|
|
|
|
opts.WTF = true;
|
|
|
|
wb = X.readFile(filename, opts);
|
|
|
|
}
|
2013-10-30 22:26:31 +00:00
|
|
|
else try {
|
2014-02-13 06:22:42 +00:00
|
|
|
wb = X.readFile(filename, opts);
|
2013-10-30 22:26:31 +00:00
|
|
|
} catch(e) {
|
2014-01-23 06:20:19 +00:00
|
|
|
var msg = (program.quiet) ? "" : n + "2csv: error parsing ";
|
2013-10-30 22:26:31 +00:00
|
|
|
msg += filename + ": " + e;
|
|
|
|
console.error(msg);
|
|
|
|
process.exit(3);
|
|
|
|
}
|
|
|
|
if(program.read) process.exit(0);
|
|
|
|
|
|
|
|
if(program.listSheets) {
|
|
|
|
console.log(wb.SheetNames.join("\n"));
|
2012-12-04 19:27:20 +00:00
|
|
|
process.exit(0);
|
|
|
|
}
|
2013-10-30 22:26:31 +00:00
|
|
|
|
|
|
|
var target_sheet = sheetname || '';
|
|
|
|
if(target_sheet === '') target_sheet = wb.SheetNames[0];
|
|
|
|
|
|
|
|
var ws;
|
|
|
|
try {
|
|
|
|
ws = wb.Sheets[target_sheet];
|
|
|
|
if(!ws) throw "Sheet " + target_sheet + " cannot be found";
|
|
|
|
} catch(e) {
|
2014-01-23 06:20:19 +00:00
|
|
|
console.error(n + "2csv: error parsing "+filename+" "+target_sheet+": " + e);
|
2013-10-30 22:26:31 +00:00
|
|
|
process.exit(4);
|
2012-12-04 19:27:20 +00:00
|
|
|
}
|
|
|
|
|
2013-10-30 22:26:31 +00:00
|
|
|
if(!program.quiet) console.error(target_sheet);
|
2014-01-23 06:20:19 +00:00
|
|
|
if(program.formulae) console.log(X.utils.get_formulae(ws).join("\n"));
|
|
|
|
else if(program.json) console.log(JSON.stringify(X.utils.sheet_to_row_object_array(ws)));
|
|
|
|
else if(program.rawJs) console.log(JSON.stringify(X.utils.sheet_to_row_object_array(ws,{raw:true})));
|
|
|
|
else console.log(X.utils.make_csv(ws, {FS:program.fieldSep, RS:program.rowSep}));
|