Server IP : 127.0.0.2 / Your IP : 18.117.93.231 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/nodejs/fstream/lib/ |
Upload File : |
module.exports = FileWriter var fs = require("graceful-fs") , mkdir = require("mkdirp") , Writer = require("./writer.js") , inherits = require("inherits") , EOF = {} inherits(FileWriter, Writer) function FileWriter (props) { var me = this if (!(me instanceof FileWriter)) throw new Error( "FileWriter must be called as constructor.") // should already be established as a File type if (props.type !== "File" || !props.File) { throw new Error("Non-file type "+ props.type) } me._buffer = [] me._bytesWritten = 0 Writer.call(this, props) } FileWriter.prototype._create = function () { var me = this if (me._stream) return var so = {} if (me.props.flags) so.flags = me.props.flags so.mode = Writer.filemode if (me._old && me._old.blksize) so.bufferSize = me._old.blksize me._stream = fs.createWriteStream(me._path, so) me._stream.on("open", function (fd) { // console.error("FW open", me._buffer, me._path) me.ready = true me._buffer.forEach(function (c) { if (c === EOF) me._stream.end() else me._stream.write(c) }) me.emit("ready") // give this a kick just in case it needs it. me.emit("drain") }) me._stream.on("drain", function () { me.emit("drain") }) me._stream.on("close", function () { // console.error("\n\nFW Stream Close", me._path, me.size) me._finish() }) } FileWriter.prototype.write = function (c) { var me = this me._bytesWritten += c.length if (!me.ready) { if (!Buffer.isBuffer(c) && typeof c !== 'string') throw new Error('invalid write data') me._buffer.push(c) return false } var ret = me._stream.write(c) // console.error("\t-- fw wrote, _stream says", ret, me._stream._queue.length) // allow 2 buffered writes, because otherwise there's just too // much stop and go bs. return ret || (me._stream._queue && me._stream._queue.length <= 2) } FileWriter.prototype.end = function (c) { var me = this if (c) me.write(c) if (!me.ready) { me._buffer.push(EOF) return false } return me._stream.end() } FileWriter.prototype._finish = function () { var me = this if (typeof me.size === "number" && me._bytesWritten != me.size) { me.error( "Did not get expected byte count.\n" + "expect: " + me.size + "\n" + "actual: " + me._bytesWritten) } Writer.prototype._finish.call(me) }