| Server IP : 185.11.201.71 / Your IP : 192.168.7.18 Web Server : Apache/2.4.29 (Ubuntu) System : Linux tech-virtual-machine 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 User : tech ( 1000) PHP Version : 7.4.28 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/npm/node_modules/fs-write-stream-atomic/ |
Upload File : |
var fs = require('graceful-fs')
var util = require('util')
var MurmurHash3 = require('imurmurhash')
function murmurhex () {
var hash = MurmurHash3('')
for (var ii = 0; ii < arguments.length; ++ii) {
hash.hash(hash + arguments[ii])
}
return hash.result()
}
var invocations = 0
function getTmpname (filename) {
return filename + '.' + murmurhex(__filename, process.pid, ++invocations)
}
module.exports = WriteStream
util.inherits(WriteStream, fs.WriteStream)
function WriteStream (path, options) {
if (!options) options = {}
if (!(this instanceof WriteStream)) {
return new WriteStream(path, options)
}
this.__atomicTarget = path
this.__atomicChown = options.chown
this.__atomicDidStuff = false
this.__atomicTmp = getTmpname(path)
fs.WriteStream.call(this, this.__atomicTmp, options)
}
function cleanup (er) {
fs.unlink(this.__atomicTmp, function () {
fs.WriteStream.prototype.emit.call(this, 'error', er)
}.bind(this))
}
function cleanupSync () {
try {
fs.unlinkSync(this.__atomicTmp)
} finally {
return
}
}
// When we *would* emit 'close' or 'finish', instead do our stuff
WriteStream.prototype.emit = function (ev) {
if (ev === 'error') cleanupSync.call(this)
if (ev !== 'close' && ev !== 'finish') {
return fs.WriteStream.prototype.emit.apply(this, arguments)
}
// We handle emitting finish and close after the rename.
if (ev === 'close' || ev === 'finish') {
if (!this.__atomicDidStuff) {
atomicDoStuff.call(this, function (er) {
if (er) cleanup.call(this, er)
}.bind(this))
}
}
}
function atomicDoStuff (cb) {
if (this.__atomicDidStuff) {
throw new Error('Already did atomic move-into-place')
}
this.__atomicDidStuff = true
if (this.__atomicChown) {
var uid = this.__atomicChown.uid
var gid = this.__atomicChown.gid
return fs.chown(this.__atomicTmp, uid, gid, function (er) {
if (er) return cb(er)
moveIntoPlace.call(this, cb)
}.bind(this))
} else {
moveIntoPlace.call(this, cb)
}
}
function moveIntoPlace (cb) {
fs.rename(this.__atomicTmp, this.__atomicTarget, function (er) {
cb(er)
// emit finish, and then close on the next tick
// This makes finish/close consistent across Node versions also.
fs.WriteStream.prototype.emit.call(this, 'finish')
process.nextTick(function () {
fs.WriteStream.prototype.emit.call(this, 'close')
}.bind(this))
}.bind(this))
}