-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor
move
API to async/await (#1025)
- Loading branch information
Showing
3 changed files
with
43 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,59 @@ | ||
'use strict' | ||
|
||
const fs = require('graceful-fs') | ||
const fs = require('../fs') | ||
const path = require('path') | ||
const copy = require('../copy').copy | ||
const remove = require('../remove').remove | ||
const mkdirp = require('../mkdirs').mkdirp | ||
const pathExists = require('../path-exists').pathExists | ||
const { copy } = require('../copy') | ||
const { remove } = require('../remove') | ||
const { mkdirp } = require('../mkdirs') | ||
const { pathExists } = require('../path-exists') | ||
const stat = require('../util/stat') | ||
|
||
function move (src, dest, opts, cb) { | ||
if (typeof opts === 'function') { | ||
cb = opts | ||
opts = {} | ||
} | ||
async function move (src, dest, opts = {}) { | ||
const overwrite = opts.overwrite || opts.clobber || false | ||
|
||
opts = opts || {} | ||
const { srcStat, isChangingCase = false } = await stat.checkPaths(src, dest, 'move', opts) | ||
|
||
const overwrite = opts.overwrite || opts.clobber || false | ||
await stat.checkParentPaths(src, srcStat, dest, 'move') | ||
|
||
stat.checkPaths(src, dest, 'move', opts, (err, stats) => { | ||
if (err) return cb(err) | ||
const { srcStat, isChangingCase = false } = stats | ||
stat.checkParentPaths(src, srcStat, dest, 'move', err => { | ||
if (err) return cb(err) | ||
if (isParentRoot(dest)) return doRename(src, dest, overwrite, isChangingCase, cb) | ||
mkdirp(path.dirname(dest), err => { | ||
if (err) return cb(err) | ||
return doRename(src, dest, overwrite, isChangingCase, cb) | ||
}) | ||
}) | ||
}) | ||
} | ||
// If the parent of dest is not root, make sure it exists before proceeding | ||
const destParent = path.dirname(dest) | ||
const parsedParentPath = path.parse(destParent) | ||
if (parsedParentPath.root !== destParent) { | ||
await mkdirp(destParent) | ||
} | ||
|
||
function isParentRoot (dest) { | ||
const parent = path.dirname(dest) | ||
const parsedPath = path.parse(parent) | ||
return parsedPath.root === parent | ||
return doRename(src, dest, overwrite, isChangingCase) | ||
} | ||
|
||
function doRename (src, dest, overwrite, isChangingCase, cb) { | ||
if (isChangingCase) return rename(src, dest, overwrite, cb) | ||
if (overwrite) { | ||
return remove(dest, err => { | ||
if (err) return cb(err) | ||
return rename(src, dest, overwrite, cb) | ||
}) | ||
async function doRename (src, dest, overwrite, isChangingCase) { | ||
if (!isChangingCase) { | ||
if (overwrite) { | ||
await remove(dest) | ||
} else if (await pathExists(dest)) { | ||
throw new Error('dest already exists.') | ||
} | ||
} | ||
pathExists(dest, (err, destExists) => { | ||
if (err) return cb(err) | ||
if (destExists) return cb(new Error('dest already exists.')) | ||
return rename(src, dest, overwrite, cb) | ||
}) | ||
} | ||
|
||
function rename (src, dest, overwrite, cb) { | ||
fs.rename(src, dest, err => { | ||
if (!err) return cb() | ||
if (err.code !== 'EXDEV') return cb(err) | ||
return moveAcrossDevice(src, dest, overwrite, cb) | ||
}) | ||
try { | ||
// Try w/ rename first, and try copy + remove if EXDEV | ||
await fs.rename(src, dest) | ||
} catch (err) { | ||
if (err.code !== 'EXDEV') { | ||
throw err | ||
} | ||
await moveAcrossDevice(src, dest, overwrite) | ||
} | ||
} | ||
|
||
function moveAcrossDevice (src, dest, overwrite, cb) { | ||
async function moveAcrossDevice (src, dest, overwrite) { | ||
const opts = { | ||
overwrite, | ||
errorOnExist: true, | ||
preserveTimestamps: true | ||
} | ||
copy(src, dest, opts, err => { | ||
if (err) return cb(err) | ||
return remove(src, cb) | ||
}) | ||
|
||
await copy(src, dest, opts) | ||
return remove(src) | ||
} | ||
|
||
module.exports = move |