mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
112 lines
3.3 KiB
TypeScript
112 lines
3.3 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
/**
|
|
* Utilities for encoding and decoding to and from base64 in a streaming manner.
|
|
*
|
|
* ```ts
|
|
* import { assertEquals } from "@std/assert";
|
|
* import { Base64DecoderStream } from "@std/encoding/unstable-base64-stream";
|
|
* import { toText } from "@std/streams/to-text";
|
|
*
|
|
* const stream = ReadableStream.from(["SGVsbG8s", "IHdvcmxkIQ=="])
|
|
* .pipeThrough(new Base64DecoderStream())
|
|
* .pipeThrough(new TextDecoderStream());
|
|
*
|
|
* assertEquals(await toText(stream), "Hello, world!");
|
|
* ```
|
|
*
|
|
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
import { decodeBase64, encodeBase64 } from "./base64.ts";
|
|
|
|
/**
|
|
* Converts a Uint8Array stream into a base64-encoded stream.
|
|
*
|
|
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
|
*
|
|
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { assertEquals } from "@std/assert";
|
|
* import { encodeBase64 } from "@std/encoding/base64";
|
|
* import { Base64EncoderStream } from "@std/encoding/unstable-base64-stream";
|
|
* import { toText } from "@std/streams/to-text";
|
|
*
|
|
* const stream = ReadableStream.from(["Hello,", " world!"])
|
|
* .pipeThrough(new TextEncoderStream())
|
|
* .pipeThrough(new Base64EncoderStream());
|
|
*
|
|
* assertEquals(await toText(stream), encodeBase64(new TextEncoder().encode("Hello, world!")));
|
|
* ```
|
|
*/
|
|
export class Base64EncoderStream extends TransformStream<Uint8Array, string> {
|
|
constructor() {
|
|
let push = new Uint8Array(0);
|
|
super({
|
|
transform(chunk, controller) {
|
|
const concat = new Uint8Array(push.length + chunk.length);
|
|
concat.set(push);
|
|
concat.set(chunk, push.length);
|
|
|
|
const remainder = -concat.length % 3;
|
|
controller.enqueue(
|
|
encodeBase64(concat.slice(0, remainder || undefined)),
|
|
);
|
|
push = remainder ? concat.slice(remainder) : new Uint8Array(0);
|
|
},
|
|
flush(controller) {
|
|
if (push.length) {
|
|
controller.enqueue(encodeBase64(push));
|
|
}
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Decodes a base64-encoded stream into a Uint8Array stream.
|
|
*
|
|
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
|
*
|
|
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { assertEquals } from "@std/assert";
|
|
* import { Base64DecoderStream } from "@std/encoding/unstable-base64-stream";
|
|
* import { toText } from "@std/streams/to-text";
|
|
*
|
|
* const stream = ReadableStream.from(["SGVsbG8s", "IHdvcmxkIQ=="])
|
|
* .pipeThrough(new Base64DecoderStream())
|
|
* .pipeThrough(new TextDecoderStream());
|
|
*
|
|
* assertEquals(await toText(stream), "Hello, world!");
|
|
* ```
|
|
*/
|
|
export class Base64DecoderStream extends TransformStream<string, Uint8Array> {
|
|
constructor() {
|
|
let push = "";
|
|
super({
|
|
transform(chunk, controller) {
|
|
push += chunk;
|
|
if (push.length < 4) {
|
|
return;
|
|
}
|
|
const remainder = -push.length % 4;
|
|
controller.enqueue(decodeBase64(push.slice(0, remainder || undefined)));
|
|
push = remainder ? push.slice(remainder) : "";
|
|
},
|
|
flush(controller) {
|
|
if (push.length) {
|
|
controller.enqueue(decodeBase64(push));
|
|
}
|
|
},
|
|
});
|
|
}
|
|
}
|