mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-26 19:46:19 +00:00
parent
61727faa84
commit
95eac9dcca
1 changed files with 17 additions and 27 deletions
|
@ -1,6 +1,7 @@
|
|||
// import { run, bench, group, baseline } from "mitata";
|
||||
import { createReadStream } from "node:fs";
|
||||
import { Readable } from "stream";
|
||||
import { Writable } from "node:stream";
|
||||
import { pipeline } from "node:stream/promises";
|
||||
import { getCarrefourProduct } from "./carrefour.js";
|
||||
import { WARCParser } from "warcio";
|
||||
// import { ZSTDDecompress } from "simple-zstd";
|
||||
|
@ -43,36 +44,25 @@ await bench("warc", async () => {
|
|||
// ).stdout;
|
||||
|
||||
const warc = Bun.stdin.stream();
|
||||
// const warc = Readable.toWeb(process.stdin);
|
||||
|
||||
let buffer: Uint8Array[] = [];
|
||||
const transform = new TransformStream<Uint8Array, Buffer>({
|
||||
transform(chunk, controller) {
|
||||
buffer.push(chunk);
|
||||
if (buffer.reduce((prev, curr) => prev + curr.length, 0) > 1024 * 1024) {
|
||||
controller.enqueue(Buffer.concat(buffer));
|
||||
buffer = [];
|
||||
}
|
||||
},
|
||||
flush(controller) {
|
||||
controller.enqueue(Buffer.concat(buffer));
|
||||
},
|
||||
});
|
||||
|
||||
warc.pipeTo(transform.writable);
|
||||
// const warc = process.stdin;
|
||||
|
||||
let arrays: Buffer[] = [];
|
||||
let n = 0;
|
||||
for await (const chunk of transform.readable) {
|
||||
console.debug(n);
|
||||
|
||||
const myWritable = new Writable({
|
||||
highWaterMark: 1024 * 1024 * 1024,
|
||||
writev(chunks, callback) {},
|
||||
});
|
||||
|
||||
for await (const chunk of warc) {
|
||||
// console.debug(chunk.length);
|
||||
const b = Buffer.from(chunk);
|
||||
arrays.push(b);
|
||||
// if (
|
||||
// arrays.reduce((prev, curr) => prev + curr.length, 0) <
|
||||
// 1024 * 1024 * 1024
|
||||
// )
|
||||
// continue;
|
||||
if (
|
||||
arrays.reduce((prev, curr) => prev + curr.length, 0) <
|
||||
1024 * 1024 * 1024
|
||||
)
|
||||
continue;
|
||||
let buf: Buffer;
|
||||
while (
|
||||
((buf = arrays.length === 1 ? arrays[0] : Buffer.concat(arrays)),
|
||||
|
@ -104,8 +94,8 @@ await bench("warc", async () => {
|
|||
}
|
||||
const length = parseInt(fields.get("Content-Length"));
|
||||
const content = buf.subarray(0, length);
|
||||
// console.debug(fields.get("WARC-Date"), content.length);
|
||||
n++;
|
||||
console.debug(fields.get("WARC-Date"), content.length);
|
||||
|
||||
arrays = [
|
||||
buf.subarray(until + crlfcrlfB.length + length + crlfcrlfB.length),
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue