index.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. 'use strict'
  2. const proc = typeof process === 'object' && process ? process : {
  3. stdout: null,
  4. stderr: null,
  5. }
  6. const EE = require('events')
  7. const Stream = require('stream')
  8. const Yallist = require('yallist')
  9. const SD = require('string_decoder').StringDecoder
  10. const EOF = Symbol('EOF')
  11. const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
  12. const EMITTED_END = Symbol('emittedEnd')
  13. const EMITTING_END = Symbol('emittingEnd')
  14. const EMITTED_ERROR = Symbol('emittedError')
  15. const CLOSED = Symbol('closed')
  16. const READ = Symbol('read')
  17. const FLUSH = Symbol('flush')
  18. const FLUSHCHUNK = Symbol('flushChunk')
  19. const ENCODING = Symbol('encoding')
  20. const DECODER = Symbol('decoder')
  21. const FLOWING = Symbol('flowing')
  22. const PAUSED = Symbol('paused')
  23. const RESUME = Symbol('resume')
  24. const BUFFERLENGTH = Symbol('bufferLength')
  25. const BUFFERPUSH = Symbol('bufferPush')
  26. const BUFFERSHIFT = Symbol('bufferShift')
  27. const OBJECTMODE = Symbol('objectMode')
  28. const DESTROYED = Symbol('destroyed')
  29. // TODO remove when Node v8 support drops
  30. const doIter = global._MP_NO_ITERATOR_SYMBOLS_ !== '1'
  31. const ASYNCITERATOR = doIter && Symbol.asyncIterator
  32. || Symbol('asyncIterator not implemented')
  33. const ITERATOR = doIter && Symbol.iterator
  34. || Symbol('iterator not implemented')
  35. // events that mean 'the stream is over'
  36. // these are treated specially, and re-emitted
  37. // if they are listened for after emitting.
  38. const isEndish = ev =>
  39. ev === 'end' ||
  40. ev === 'finish' ||
  41. ev === 'prefinish'
  42. const isArrayBuffer = b => b instanceof ArrayBuffer ||
  43. typeof b === 'object' &&
  44. b.constructor &&
  45. b.constructor.name === 'ArrayBuffer' &&
  46. b.byteLength >= 0
  47. const isArrayBufferView = b => !Buffer.isBuffer(b) && ArrayBuffer.isView(b)
  48. module.exports = class Minipass extends Stream {
  49. constructor (options) {
  50. super()
  51. this[FLOWING] = false
  52. // whether we're explicitly paused
  53. this[PAUSED] = false
  54. this.pipes = new Yallist()
  55. this.buffer = new Yallist()
  56. this[OBJECTMODE] = options && options.objectMode || false
  57. if (this[OBJECTMODE])
  58. this[ENCODING] = null
  59. else
  60. this[ENCODING] = options && options.encoding || null
  61. if (this[ENCODING] === 'buffer')
  62. this[ENCODING] = null
  63. this[DECODER] = this[ENCODING] ? new SD(this[ENCODING]) : null
  64. this[EOF] = false
  65. this[EMITTED_END] = false
  66. this[EMITTING_END] = false
  67. this[CLOSED] = false
  68. this[EMITTED_ERROR] = null
  69. this.writable = true
  70. this.readable = true
  71. this[BUFFERLENGTH] = 0
  72. this[DESTROYED] = false
  73. }
  74. get bufferLength () { return this[BUFFERLENGTH] }
  75. get encoding () { return this[ENCODING] }
  76. set encoding (enc) {
  77. if (this[OBJECTMODE])
  78. throw new Error('cannot set encoding in objectMode')
  79. if (this[ENCODING] && enc !== this[ENCODING] &&
  80. (this[DECODER] && this[DECODER].lastNeed || this[BUFFERLENGTH]))
  81. throw new Error('cannot change encoding')
  82. if (this[ENCODING] !== enc) {
  83. this[DECODER] = enc ? new SD(enc) : null
  84. if (this.buffer.length)
  85. this.buffer = this.buffer.map(chunk => this[DECODER].write(chunk))
  86. }
  87. this[ENCODING] = enc
  88. }
  89. setEncoding (enc) {
  90. this.encoding = enc
  91. }
  92. get objectMode () { return this[OBJECTMODE] }
  93. set objectMode (om) { this[OBJECTMODE] = this[OBJECTMODE] || !!om }
  94. write (chunk, encoding, cb) {
  95. if (this[EOF])
  96. throw new Error('write after end')
  97. if (this[DESTROYED]) {
  98. this.emit('error', Object.assign(
  99. new Error('Cannot call write after a stream was destroyed'),
  100. { code: 'ERR_STREAM_DESTROYED' }
  101. ))
  102. return true
  103. }
  104. if (typeof encoding === 'function')
  105. cb = encoding, encoding = 'utf8'
  106. if (!encoding)
  107. encoding = 'utf8'
  108. // convert array buffers and typed array views into buffers
  109. // at some point in the future, we may want to do the opposite!
  110. // leave strings and buffers as-is
  111. // anything else switches us into object mode
  112. if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
  113. if (isArrayBufferView(chunk))
  114. chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)
  115. else if (isArrayBuffer(chunk))
  116. chunk = Buffer.from(chunk)
  117. else if (typeof chunk !== 'string')
  118. // use the setter so we throw if we have encoding set
  119. this.objectMode = true
  120. }
  121. // this ensures at this point that the chunk is a buffer or string
  122. // don't buffer it up or send it to the decoder
  123. if (!this.objectMode && !chunk.length) {
  124. if (this[BUFFERLENGTH] !== 0)
  125. this.emit('readable')
  126. if (cb)
  127. cb()
  128. return this.flowing
  129. }
  130. // fast-path writing strings of same encoding to a stream with
  131. // an empty buffer, skipping the buffer/decoder dance
  132. if (typeof chunk === 'string' && !this[OBJECTMODE] &&
  133. // unless it is a string already ready for us to use
  134. !(encoding === this[ENCODING] && !this[DECODER].lastNeed)) {
  135. chunk = Buffer.from(chunk, encoding)
  136. }
  137. if (Buffer.isBuffer(chunk) && this[ENCODING])
  138. chunk = this[DECODER].write(chunk)
  139. if (this.flowing) {
  140. // if we somehow have something in the buffer, but we think we're
  141. // flowing, then we need to flush all that out first, or we get
  142. // chunks coming in out of order. Can't emit 'drain' here though,
  143. // because we're mid-write, so that'd be bad.
  144. if (this[BUFFERLENGTH] !== 0)
  145. this[FLUSH](true)
  146. this.emit('data', chunk)
  147. } else
  148. this[BUFFERPUSH](chunk)
  149. if (this[BUFFERLENGTH] !== 0)
  150. this.emit('readable')
  151. if (cb)
  152. cb()
  153. return this.flowing
  154. }
  155. read (n) {
  156. if (this[DESTROYED])
  157. return null
  158. try {
  159. if (this[BUFFERLENGTH] === 0 || n === 0 || n > this[BUFFERLENGTH])
  160. return null
  161. if (this[OBJECTMODE])
  162. n = null
  163. if (this.buffer.length > 1 && !this[OBJECTMODE]) {
  164. if (this.encoding)
  165. this.buffer = new Yallist([
  166. Array.from(this.buffer).join('')
  167. ])
  168. else
  169. this.buffer = new Yallist([
  170. Buffer.concat(Array.from(this.buffer), this[BUFFERLENGTH])
  171. ])
  172. }
  173. return this[READ](n || null, this.buffer.head.value)
  174. } finally {
  175. this[MAYBE_EMIT_END]()
  176. }
  177. }
  178. [READ] (n, chunk) {
  179. if (n === chunk.length || n === null)
  180. this[BUFFERSHIFT]()
  181. else {
  182. this.buffer.head.value = chunk.slice(n)
  183. chunk = chunk.slice(0, n)
  184. this[BUFFERLENGTH] -= n
  185. }
  186. this.emit('data', chunk)
  187. if (!this.buffer.length && !this[EOF])
  188. this.emit('drain')
  189. return chunk
  190. }
  191. end (chunk, encoding, cb) {
  192. if (typeof chunk === 'function')
  193. cb = chunk, chunk = null
  194. if (typeof encoding === 'function')
  195. cb = encoding, encoding = 'utf8'
  196. if (chunk)
  197. this.write(chunk, encoding)
  198. if (cb)
  199. this.once('end', cb)
  200. this[EOF] = true
  201. this.writable = false
  202. // if we haven't written anything, then go ahead and emit,
  203. // even if we're not reading.
  204. // we'll re-emit if a new 'end' listener is added anyway.
  205. // This makes MP more suitable to write-only use cases.
  206. if (this.flowing || !this[PAUSED])
  207. this[MAYBE_EMIT_END]()
  208. return this
  209. }
  210. // don't let the internal resume be overwritten
  211. [RESUME] () {
  212. if (this[DESTROYED])
  213. return
  214. this[PAUSED] = false
  215. this[FLOWING] = true
  216. this.emit('resume')
  217. if (this.buffer.length)
  218. this[FLUSH]()
  219. else if (this[EOF])
  220. this[MAYBE_EMIT_END]()
  221. else
  222. this.emit('drain')
  223. }
  224. resume () {
  225. return this[RESUME]()
  226. }
  227. pause () {
  228. this[FLOWING] = false
  229. this[PAUSED] = true
  230. }
  231. get destroyed () {
  232. return this[DESTROYED]
  233. }
  234. get flowing () {
  235. return this[FLOWING]
  236. }
  237. get paused () {
  238. return this[PAUSED]
  239. }
  240. [BUFFERPUSH] (chunk) {
  241. if (this[OBJECTMODE])
  242. this[BUFFERLENGTH] += 1
  243. else
  244. this[BUFFERLENGTH] += chunk.length
  245. return this.buffer.push(chunk)
  246. }
  247. [BUFFERSHIFT] () {
  248. if (this.buffer.length) {
  249. if (this[OBJECTMODE])
  250. this[BUFFERLENGTH] -= 1
  251. else
  252. this[BUFFERLENGTH] -= this.buffer.head.value.length
  253. }
  254. return this.buffer.shift()
  255. }
  256. [FLUSH] (noDrain) {
  257. do {} while (this[FLUSHCHUNK](this[BUFFERSHIFT]()))
  258. if (!noDrain && !this.buffer.length && !this[EOF])
  259. this.emit('drain')
  260. }
  261. [FLUSHCHUNK] (chunk) {
  262. return chunk ? (this.emit('data', chunk), this.flowing) : false
  263. }
  264. pipe (dest, opts) {
  265. if (this[DESTROYED])
  266. return
  267. const ended = this[EMITTED_END]
  268. opts = opts || {}
  269. if (dest === proc.stdout || dest === proc.stderr)
  270. opts.end = false
  271. else
  272. opts.end = opts.end !== false
  273. const p = { dest: dest, opts: opts, ondrain: _ => this[RESUME]() }
  274. this.pipes.push(p)
  275. dest.on('drain', p.ondrain)
  276. this[RESUME]()
  277. // piping an ended stream ends immediately
  278. if (ended && p.opts.end)
  279. p.dest.end()
  280. return dest
  281. }
  282. addListener (ev, fn) {
  283. return this.on(ev, fn)
  284. }
  285. on (ev, fn) {
  286. try {
  287. return super.on(ev, fn)
  288. } finally {
  289. if (ev === 'data' && !this.pipes.length && !this.flowing)
  290. this[RESUME]()
  291. else if (isEndish(ev) && this[EMITTED_END]) {
  292. super.emit(ev)
  293. this.removeAllListeners(ev)
  294. } else if (ev === 'error' && this[EMITTED_ERROR]) {
  295. fn.call(this, this[EMITTED_ERROR])
  296. }
  297. }
  298. }
  299. get emittedEnd () {
  300. return this[EMITTED_END]
  301. }
  302. [MAYBE_EMIT_END] () {
  303. if (!this[EMITTING_END] &&
  304. !this[EMITTED_END] &&
  305. !this[DESTROYED] &&
  306. this.buffer.length === 0 &&
  307. this[EOF]) {
  308. this[EMITTING_END] = true
  309. this.emit('end')
  310. this.emit('prefinish')
  311. this.emit('finish')
  312. if (this[CLOSED])
  313. this.emit('close')
  314. this[EMITTING_END] = false
  315. }
  316. }
  317. emit (ev, data) {
  318. // error and close are only events allowed after calling destroy()
  319. if (ev !== 'error' && ev !== 'close' && ev !== DESTROYED && this[DESTROYED])
  320. return
  321. else if (ev === 'data') {
  322. if (!data)
  323. return
  324. if (this.pipes.length)
  325. this.pipes.forEach(p =>
  326. p.dest.write(data) === false && this.pause())
  327. } else if (ev === 'end') {
  328. // only actual end gets this treatment
  329. if (this[EMITTED_END] === true)
  330. return
  331. this[EMITTED_END] = true
  332. this.readable = false
  333. if (this[DECODER]) {
  334. data = this[DECODER].end()
  335. if (data) {
  336. this.pipes.forEach(p => p.dest.write(data))
  337. super.emit('data', data)
  338. }
  339. }
  340. this.pipes.forEach(p => {
  341. p.dest.removeListener('drain', p.ondrain)
  342. if (p.opts.end)
  343. p.dest.end()
  344. })
  345. } else if (ev === 'close') {
  346. this[CLOSED] = true
  347. // don't emit close before 'end' and 'finish'
  348. if (!this[EMITTED_END] && !this[DESTROYED])
  349. return
  350. } else if (ev === 'error') {
  351. this[EMITTED_ERROR] = data
  352. }
  353. // TODO: replace with a spread operator when Node v4 support drops
  354. const args = new Array(arguments.length)
  355. args[0] = ev
  356. args[1] = data
  357. if (arguments.length > 2) {
  358. for (let i = 2; i < arguments.length; i++) {
  359. args[i] = arguments[i]
  360. }
  361. }
  362. try {
  363. return super.emit.apply(this, args)
  364. } finally {
  365. if (!isEndish(ev))
  366. this[MAYBE_EMIT_END]()
  367. else
  368. this.removeAllListeners(ev)
  369. }
  370. }
  371. // const all = await stream.collect()
  372. collect () {
  373. const buf = []
  374. if (!this[OBJECTMODE])
  375. buf.dataLength = 0
  376. // set the promise first, in case an error is raised
  377. // by triggering the flow here.
  378. const p = this.promise()
  379. this.on('data', c => {
  380. buf.push(c)
  381. if (!this[OBJECTMODE])
  382. buf.dataLength += c.length
  383. })
  384. return p.then(() => buf)
  385. }
  386. // const data = await stream.concat()
  387. concat () {
  388. return this[OBJECTMODE]
  389. ? Promise.reject(new Error('cannot concat in objectMode'))
  390. : this.collect().then(buf =>
  391. this[OBJECTMODE]
  392. ? Promise.reject(new Error('cannot concat in objectMode'))
  393. : this[ENCODING] ? buf.join('') : Buffer.concat(buf, buf.dataLength))
  394. }
  395. // stream.promise().then(() => done, er => emitted error)
  396. promise () {
  397. return new Promise((resolve, reject) => {
  398. this.on(DESTROYED, () => reject(new Error('stream destroyed')))
  399. this.on('error', er => reject(er))
  400. this.on('end', () => resolve())
  401. })
  402. }
  403. // for await (let chunk of stream)
  404. [ASYNCITERATOR] () {
  405. const next = () => {
  406. const res = this.read()
  407. if (res !== null)
  408. return Promise.resolve({ done: false, value: res })
  409. if (this[EOF])
  410. return Promise.resolve({ done: true })
  411. let resolve = null
  412. let reject = null
  413. const onerr = er => {
  414. this.removeListener('data', ondata)
  415. this.removeListener('end', onend)
  416. reject(er)
  417. }
  418. const ondata = value => {
  419. this.removeListener('error', onerr)
  420. this.removeListener('end', onend)
  421. this.pause()
  422. resolve({ value: value, done: !!this[EOF] })
  423. }
  424. const onend = () => {
  425. this.removeListener('error', onerr)
  426. this.removeListener('data', ondata)
  427. resolve({ done: true })
  428. }
  429. const ondestroy = () => onerr(new Error('stream destroyed'))
  430. return new Promise((res, rej) => {
  431. reject = rej
  432. resolve = res
  433. this.once(DESTROYED, ondestroy)
  434. this.once('error', onerr)
  435. this.once('end', onend)
  436. this.once('data', ondata)
  437. })
  438. }
  439. return { next }
  440. }
  441. // for (let chunk of stream)
  442. [ITERATOR] () {
  443. const next = () => {
  444. const value = this.read()
  445. const done = value === null
  446. return { value, done }
  447. }
  448. return { next }
  449. }
  450. destroy (er) {
  451. if (this[DESTROYED]) {
  452. if (er)
  453. this.emit('error', er)
  454. else
  455. this.emit(DESTROYED)
  456. return this
  457. }
  458. this[DESTROYED] = true
  459. // throw away all buffered data, it's never coming out
  460. this.buffer = new Yallist()
  461. this[BUFFERLENGTH] = 0
  462. if (typeof this.close === 'function' && !this[CLOSED])
  463. this.close()
  464. if (er)
  465. this.emit('error', er)
  466. else // if no error to emit, still reject pending promises
  467. this.emit(DESTROYED)
  468. return this
  469. }
  470. static isStream (s) {
  471. return !!s && (s instanceof Minipass || s instanceof Stream ||
  472. s instanceof EE && (
  473. typeof s.pipe === 'function' || // readable
  474. (typeof s.write === 'function' && typeof s.end === 'function') // writable
  475. ))
  476. }
  477. }