mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
(function(object) {
|
|
'use strict';
|
|
|
|
var fs = require('fs'),
|
|
pipe = require('./pipe'),
|
|
Util = require('../util');
|
|
|
|
object.read = function(files, options, callback) {
|
|
var done = [],
|
|
isDone = false,
|
|
noOptions = Util.isFunction(options),
|
|
readFiles = {},
|
|
doneFunc = function (name, error, data) {
|
|
done.pop();
|
|
|
|
if (error)
|
|
done = [];
|
|
else
|
|
readFiles[name] = data;
|
|
|
|
if (!done.length && !isDone) {
|
|
isDone = true;
|
|
callback(error, readFiles);
|
|
}
|
|
};
|
|
|
|
Util.checkArgs(arguments, ['files', 'options', 'callback']);
|
|
|
|
if (noOptions) {
|
|
callback = options;
|
|
options = null;
|
|
}
|
|
|
|
done = files.map(function(name) {
|
|
fs.readFile(name, options, doneFunc.bind(null, name));
|
|
return name;
|
|
});
|
|
};
|
|
|
|
object.readPipe = readPipe;
|
|
|
|
function readPipe(params) {
|
|
var name, names, lenght,
|
|
p = params,
|
|
options = {
|
|
gzip : p.gzip,
|
|
notEnd : true
|
|
};
|
|
|
|
if (p.names) {
|
|
names = p.names.slice();
|
|
lenght = p.names.length;
|
|
}
|
|
|
|
if (!lenght) {
|
|
p.write.end();
|
|
Util.exec(p.callback);
|
|
} else {
|
|
name = names.shift();
|
|
|
|
pipe.create(name, p.write, options, function(error) {
|
|
if (error)
|
|
Util.exec(p.callback, error);
|
|
else
|
|
readPipe({
|
|
dir : p.dir,
|
|
names : names,
|
|
write : p.write,
|
|
gzip : p.gzip,
|
|
callback : p.callback
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
})(this);
|