mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 01:40:51 +00:00

* perf: password special chars * feat: llm paragraph;perf: chunk setting params * perf: text splitter worker * perf: get rawtext buffer * fix: test * fix: test * doc * min chunk size
129 lines
3.6 KiB
TypeScript
129 lines
3.6 KiB
TypeScript
import { detectFileEncoding } from '@fastgpt/global/common/file/tools';
|
||
import { PassThrough } from 'stream';
|
||
import { getGridBucket } from './controller';
|
||
import { type BucketNameEnum } from '@fastgpt/global/common/file/constants';
|
||
import { retryFn } from '@fastgpt/global/common/system/utils';
|
||
|
||
export const createFileFromText = async ({
|
||
bucket,
|
||
filename,
|
||
text,
|
||
metadata
|
||
}: {
|
||
bucket: `${BucketNameEnum}`;
|
||
filename: string;
|
||
text: string;
|
||
metadata: Record<string, any>;
|
||
}) => {
|
||
const gridBucket = getGridBucket(bucket);
|
||
|
||
const buffer = Buffer.from(text);
|
||
|
||
const fileSize = buffer.length;
|
||
// 单块大小:尽可能大,但不超过 14MB,不小于128KB
|
||
const chunkSizeBytes = (() => {
|
||
// 计算理想块大小:文件大小 ÷ 目标块数(10)。 并且每个块需要小于 14MB
|
||
const idealChunkSize = Math.min(Math.ceil(fileSize / 10), 14 * 1024 * 1024);
|
||
|
||
// 确保块大小至少为128KB
|
||
const minChunkSize = 128 * 1024; // 128KB
|
||
|
||
// 取理想块大小和最小块大小中的较大值
|
||
let chunkSize = Math.max(idealChunkSize, minChunkSize);
|
||
|
||
// 将块大小向上取整到最接近的64KB的倍数,使其更整齐
|
||
chunkSize = Math.ceil(chunkSize / (64 * 1024)) * (64 * 1024);
|
||
|
||
return chunkSize;
|
||
})();
|
||
|
||
const uploadStream = gridBucket.openUploadStream(filename, {
|
||
metadata,
|
||
chunkSizeBytes
|
||
});
|
||
|
||
return retryFn(async () => {
|
||
return new Promise<{ fileId: string }>((resolve, reject) => {
|
||
uploadStream.end(buffer);
|
||
uploadStream.on('finish', () => {
|
||
resolve({ fileId: String(uploadStream.id) });
|
||
});
|
||
uploadStream.on('error', reject);
|
||
});
|
||
});
|
||
};
|
||
|
||
export const gridFsStream2Buffer = (stream: NodeJS.ReadableStream) => {
|
||
return new Promise<Buffer>((resolve, reject) => {
|
||
if (!stream.readable) {
|
||
return resolve(Buffer.from([]));
|
||
}
|
||
|
||
const chunks: Uint8Array[] = [];
|
||
|
||
stream.on('data', (chunk) => {
|
||
chunks.push(chunk);
|
||
});
|
||
stream.on('end', () => {
|
||
const resultBuffer = Buffer.concat(chunks); // One-time splicing
|
||
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
|
||
};
|
||
};
|
||
|
||
// 单块大小:尽可能大,但不超过 14MB,不小于512KB
|
||
export const computeGridFsChunSize = (fileSize: number) => {
|
||
// 计算理想块大小:文件大小 ÷ 目标块数(10)。 并且每个块需要小于 14MB
|
||
const idealChunkSize = Math.min(Math.ceil(fileSize / 10), 14 * 1024 * 1024);
|
||
|
||
// 确保块大小至少为512KB
|
||
const minChunkSize = 512 * 1024; // 512KB
|
||
|
||
// 取理想块大小和最小块大小中的较大值
|
||
let chunkSize = Math.max(idealChunkSize, minChunkSize);
|
||
|
||
// 将块大小向上取整到最接近的64KB的倍数,使其更整齐
|
||
chunkSize = Math.ceil(chunkSize / (64 * 1024)) * (64 * 1024);
|
||
|
||
return chunkSize;
|
||
};
|