mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* simple mode tool reason * model config cannot set empty * perf: read files code * perf: mongo gridfs chunks * perf: doc
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { detectFileEncoding } from '@fastgpt/global/common/file/tools';
|
|
import { PassThrough } from 'stream';
|
|
|
|
export const gridFsStream2Buffer = (stream: NodeJS.ReadableStream) => {
|
|
return new Promise<Buffer>((resolve, reject) => {
|
|
const chunks: Uint8Array[] = [];
|
|
|
|
stream.on('data', (chunk) => {
|
|
chunks.push(chunk);
|
|
});
|
|
stream.on('end', () => {
|
|
const resultBuffer = Buffer.concat(chunks); // 一次性拼接
|
|
resolve(resultBuffer);
|
|
});
|
|
stream.on('error', (err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
};
|
|
|
|
export const stream2Encoding = async (stream: NodeJS.ReadableStream) => {
|
|
const copyStream = stream.pipe(new PassThrough());
|
|
|
|
/* get encoding */
|
|
const buffer = await (() => {
|
|
return new Promise<Buffer>((resolve, reject) => {
|
|
const chunks: Uint8Array[] = [];
|
|
let totalLength = 0;
|
|
|
|
stream.on('data', (chunk) => {
|
|
if (totalLength < 200) {
|
|
chunks.push(chunk);
|
|
totalLength += chunk.length;
|
|
|
|
if (totalLength >= 200) {
|
|
resolve(Buffer.concat(chunks));
|
|
}
|
|
}
|
|
});
|
|
stream.on('end', () => {
|
|
resolve(Buffer.concat(chunks));
|
|
});
|
|
stream.on('error', (err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
})();
|
|
|
|
const enc = detectFileEncoding(buffer);
|
|
|
|
return {
|
|
encoding: enc,
|
|
stream: copyStream
|
|
};
|
|
};
|