summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/pacote/tarball.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/pacote/tarball.js')
-rw-r--r--deps/npm/node_modules/pacote/tarball.js108
1 files changed, 40 insertions, 68 deletions
diff --git a/deps/npm/node_modules/pacote/tarball.js b/deps/npm/node_modules/pacote/tarball.js
index f1f3ed9342..e0ad52ab3e 100644
--- a/deps/npm/node_modules/pacote/tarball.js
+++ b/deps/npm/node_modules/pacote/tarball.js
@@ -2,94 +2,66 @@
const BB = require('bluebird')
-const cacache = require('cacache')
const fs = require('fs')
const getStream = require('get-stream')
const mkdirp = BB.promisify(require('mkdirp'))
const npa = require('npm-package-arg')
-const optCheck = require('./lib/util/opt-check')
+const optCheck = require('./lib/util/opt-check.js')
+const PassThrough = require('stream').PassThrough
const path = require('path')
-const pipe = BB.promisify(require('mississippi').pipe)
+const rimraf = BB.promisify(require('rimraf'))
+const withTarballStream = require('./lib/with-tarball-stream.js')
module.exports = tarball
function tarball (spec, opts) {
opts = optCheck(opts)
spec = npa(spec, opts.where)
- const startTime = Date.now()
- if (opts.integrity && !opts.preferOnline) {
- opts.log.silly('tarball', 'checking if', opts.integrity, 'is already cached')
- return cacache.get.byDigest(opts.cache, opts.integrity).then(data => {
- if (data) {
- opts.log.silly('tarball', `cached content available for ${spec} (${Date.now() - startTime}ms)`)
- return data
- } else {
- return getStream.buffer(tarballByManifest(startTime, spec, opts))
- }
- })
- } else {
- opts.log.silly('tarball', `no integrity hash provided for ${spec} - fetching by manifest`)
- return getStream.buffer(tarballByManifest(startTime, spec, opts))
- }
+ return withTarballStream(spec, opts, stream => getStream.buffer(stream))
}
module.exports.stream = tarballStream
function tarballStream (spec, opts) {
opts = optCheck(opts)
spec = npa(spec, opts.where)
- const startTime = Date.now()
- if (opts.integrity && !opts.preferOnline) {
- opts.log.silly('tarball', 'checking if', opts.integrity, 'is already cached')
- return cacache.get.hasContent(opts.cache, opts.integrity).then(info => {
- if (info) {
- opts.log.silly('tarball', `cached content available for ${spec} (${Date.now() - startTime}ms)`)
- return cacache.get.stream.byDigest(opts.cache, opts.integrity, opts)
- } else {
- return tarballByManifest(startTime, spec, opts)
- }
- })
- } else {
- opts.log.silly('tarball', `no integrity hash provided for ${spec} - fetching by manifest`)
- return tarballByManifest(startTime, spec, opts)
- }
+ const output = new PassThrough()
+ let hasTouchedOutput = false
+ let lastError = null
+ withTarballStream(spec, opts, stream => {
+ if (hasTouchedOutput && lastError) {
+ throw lastError
+ } else if (hasTouchedOutput) {
+ throw new Error('abort, abort!')
+ } else {
+ return new BB((resolve, reject) => {
+ stream.on('error', reject)
+ output.on('error', reject)
+ output.on('error', () => { hasTouchedOutput = true })
+ output.on('finish', resolve)
+ stream.pipe(output)
+ stream.once('data', () => { hasTouchedOutput = true })
+ }).catch(err => {
+ lastError = err
+ throw err
+ })
+ }
+ })
+ .catch(err => output.emit('error', err))
+ return output
}
module.exports.toFile = tarballToFile
function tarballToFile (spec, dest, opts) {
opts = optCheck(opts)
spec = npa(spec, opts.where)
- const startTime = Date.now()
- return mkdirp(path.dirname(dest)).then(() => {
- if (opts.integrity && !opts.preferOnline) {
- opts.log.silly('tarball', 'checking if', opts.integrity, 'is already cached')
- return cacache.get.copy.byDigest(opts.cache, opts.integrity, dest, opts)
- .then(() => {
- opts.log.silly('tarball', `cached content for ${spec} copied (${Date.now() - startTime}ms)`)
- }, err => {
- if (err.code === 'ENOENT') {
- return pipe(
- tarballByManifest(startTime, spec, opts),
- fs.createWriteStream(dest)
- )
- } else {
- throw err
- }
- })
- } else {
- opts.log.silly('tarball', `no integrity hash provided for ${spec} - fetching by manifest`)
- return pipe(
- tarballByManifest(startTime, spec, opts),
- fs.createWriteStream(dest)
- )
- }
- })
-}
-
-let fetch
-function tarballByManifest (start, spec, opts) {
- if (!fetch) {
- fetch = require('./lib/fetch')
- }
- return fetch.tarball(spec, opts).on('end', () => {
- opts.log.silly('tarball', `${spec} done in ${Date.now() - start}ms`)
- })
+ return mkdirp(path.dirname(dest))
+ .then(() => withTarballStream(spec, opts, stream => {
+ return rimraf(dest)
+ .then(() => new BB((resolve, reject) => {
+ const writer = fs.createWriteStream(dest)
+ stream.on('error', reject)
+ writer.on('error', reject)
+ writer.on('close', resolve)
+ stream.pipe(writer)
+ }))
+ }))
}