Как отложить вызов чтения потока
Я все еще пытаюсь прорваться streams
в общем. Я был в состоянии передать большой файл, используя многопартийность изнутри form.on('part')
, Но мне нужно отложить вызов и разрешить поток до его чтения. я пытался PassThrough
, through
, through2
, но получили разные результаты, которые он в основном зависает, и я не могу понять, что делать, и шаги для отладки. Я открыт для всех альтернатив. Спасибо за все идеи.
import multiparty from 'multiparty'
import {
PassThrough
} from 'stream';
import through from 'through'
import through2 from 'through2'
export function promisedMultiparty(req) {
return new Promise((resolve, reject) => {
const form = new multiparty.Form()
const form_files = []
let q_str = ''
form.on('field', (fieldname, value) => {
if (value) q_str = appendQStr(fieldname, value, q_str)
})
form.on('part', async (part) => {
if (part.filename) {
const pass1 = new PassThrough() // this hangs at 10%
const pass2 = through(function write(data) { // this hangs from the beginning
this.queue(data)
},
function end() {
this.queue(null)
})
const pass3 = through2() // this hangs at 10%
/*
// This way works for large files, but I want to defer
// invocation
const form_data = new FormData()
form_data.append(savepath, part, {
filename,
})
const r = request.post(url, {
headers: {
'transfer-encoding': 'chunked'
}
}, responseCallback(resolve))
r._form = form
*/
form_files.push({
part: part.pipe(pass1),
// part: part.pipe(pass2),
// part: part.pipe(pass3),
})
} else {
part.resume()
}
})
form.on('close', () => {
resolve({
fields: qs.parse(q_str),
forms: form_files,
})
})
form.parse(req)
})
}
ps наверняка название могло бы быть лучше, если кто-то мог бы использовать правильные термины, пожалуйста. Благодарю.
1 ответ
Я считаю, что это потому, что вы не используете through2
правильно - т.е. фактически не очищать буфер после его заполнения (поэтому он висит на 10% для больших файлов, но работает для меньших).
Я считаю, что реализация, как это должно сделать это:
const pass2 = through2(function(chunk, encoding, next) {
// do something with the data
// Use this only if you want to send the data further to another stream reader
// Note - From your implementation you don't seem to need it
// this.push(data)
// This is what tells through2 it's ready to empty the
// buffer and read more data
next();
})