2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-03-08 06:44:54 -05:00
|
|
|
import { notImplemented } from "ext:deno_node/_utils.ts";
|
|
|
|
import { zlib as constants } from "ext:deno_node/internal_binding/constants.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
import {
|
|
|
|
codes,
|
|
|
|
createDeflate,
|
|
|
|
createDeflateRaw,
|
|
|
|
createGunzip,
|
|
|
|
createGzip,
|
|
|
|
createInflate,
|
|
|
|
createInflateRaw,
|
|
|
|
createUnzip,
|
|
|
|
Deflate,
|
|
|
|
deflate,
|
|
|
|
DeflateRaw,
|
|
|
|
deflateRaw,
|
|
|
|
deflateRawSync,
|
|
|
|
deflateSync,
|
|
|
|
Gunzip,
|
|
|
|
gunzip,
|
|
|
|
gunzipSync,
|
|
|
|
Gzip,
|
|
|
|
gzip,
|
|
|
|
gzipSync,
|
|
|
|
Inflate,
|
|
|
|
inflate,
|
|
|
|
InflateRaw,
|
|
|
|
inflateRaw,
|
|
|
|
inflateRawSync,
|
|
|
|
inflateSync,
|
|
|
|
Unzip,
|
|
|
|
unzip,
|
|
|
|
unzipSync,
|
2023-03-08 06:44:54 -05:00
|
|
|
} from "ext:deno_node/_zlib.mjs";
|
2023-06-24 10:12:08 -04:00
|
|
|
import {
|
|
|
|
brotliCompress,
|
|
|
|
brotliCompressSync,
|
|
|
|
brotliDecompress,
|
|
|
|
brotliDecompressSync,
|
|
|
|
createBrotliCompress,
|
|
|
|
createBrotliDecompress,
|
|
|
|
} from "ext:deno_node/_brotli.js";
|
|
|
|
|
2023-02-14 11:38:45 -05:00
|
|
|
export class Options {
|
|
|
|
constructor() {
|
|
|
|
notImplemented("Options.prototype.constructor");
|
|
|
|
}
|
|
|
|
}
|
2023-06-24 10:12:08 -04:00
|
|
|
|
|
|
|
interface IBrotliOptions {
|
|
|
|
flush?: number;
|
|
|
|
finishFlush?: number;
|
|
|
|
chunkSize?: number;
|
|
|
|
params?: Record<number, number>;
|
|
|
|
maxOutputLength?: number;
|
|
|
|
}
|
|
|
|
|
2023-02-14 11:38:45 -05:00
|
|
|
export class BrotliOptions {
|
|
|
|
constructor() {
|
|
|
|
notImplemented("BrotliOptions.prototype.constructor");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export class BrotliCompress {
|
|
|
|
constructor() {
|
|
|
|
notImplemented("BrotliCompress.prototype.constructor");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export class BrotliDecompress {
|
|
|
|
constructor() {
|
|
|
|
notImplemented("BrotliDecompress.prototype.constructor");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export class ZlibBase {
|
|
|
|
constructor() {
|
|
|
|
notImplemented("ZlibBase.prototype.constructor");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export { constants };
|
|
|
|
|
|
|
|
export default {
|
2024-09-11 19:12:10 -04:00
|
|
|
brotliCompress,
|
2023-02-14 11:38:45 -05:00
|
|
|
BrotliCompress,
|
2024-09-11 19:12:10 -04:00
|
|
|
brotliCompressSync,
|
|
|
|
brotliDecompress,
|
2023-02-14 11:38:45 -05:00
|
|
|
BrotliDecompress,
|
2024-09-11 19:12:10 -04:00
|
|
|
brotliDecompressSync,
|
|
|
|
BrotliOptions,
|
2023-02-14 11:38:45 -05:00
|
|
|
codes,
|
2024-09-11 19:12:10 -04:00
|
|
|
constants,
|
2023-02-14 11:38:45 -05:00
|
|
|
createBrotliCompress,
|
|
|
|
createBrotliDecompress,
|
|
|
|
createDeflate,
|
|
|
|
createDeflateRaw,
|
|
|
|
createGunzip,
|
|
|
|
createGzip,
|
|
|
|
createInflate,
|
|
|
|
createInflateRaw,
|
|
|
|
createUnzip,
|
|
|
|
deflate,
|
2024-09-11 19:12:10 -04:00
|
|
|
Deflate,
|
|
|
|
DEFLATE: constants.DEFLATE,
|
2023-02-14 11:38:45 -05:00
|
|
|
deflateRaw,
|
2024-09-11 19:12:10 -04:00
|
|
|
DeflateRaw,
|
|
|
|
DEFLATERAW: constants.DEFLATERAW,
|
2023-02-14 11:38:45 -05:00
|
|
|
deflateRawSync,
|
2024-09-11 19:12:10 -04:00
|
|
|
deflateSync,
|
2023-02-14 11:38:45 -05:00
|
|
|
gunzip,
|
2024-09-11 19:12:10 -04:00
|
|
|
Gunzip,
|
|
|
|
GUNZIP: constants.GUNZIP,
|
2023-02-14 11:38:45 -05:00
|
|
|
gunzipSync,
|
|
|
|
gzip,
|
2024-09-11 19:12:10 -04:00
|
|
|
Gzip,
|
|
|
|
GZIP: constants.GZIP,
|
2023-02-14 11:38:45 -05:00
|
|
|
gzipSync,
|
|
|
|
inflate,
|
2024-09-11 19:12:10 -04:00
|
|
|
Inflate,
|
|
|
|
INFLATE: constants.INFLATE,
|
2023-02-14 11:38:45 -05:00
|
|
|
inflateRaw,
|
2024-09-11 19:12:10 -04:00
|
|
|
InflateRaw,
|
|
|
|
INFLATERAW: constants.INFLATERAW,
|
2023-02-14 11:38:45 -05:00
|
|
|
inflateRawSync,
|
2024-09-11 19:12:10 -04:00
|
|
|
inflateSync,
|
|
|
|
Options,
|
2023-02-14 11:38:45 -05:00
|
|
|
unzip,
|
2024-09-11 19:12:10 -04:00
|
|
|
Unzip,
|
|
|
|
UNZIP: constants.UNZIP,
|
2023-02-14 11:38:45 -05:00
|
|
|
unzipSync,
|
2024-09-11 19:12:10 -04:00
|
|
|
Z_BEST_COMPRESSION: constants.Z_BEST_COMPRESSION,
|
|
|
|
Z_BEST_SPEED: constants.Z_BEST_SPEED,
|
|
|
|
Z_BLOCK: constants.Z_BLOCK,
|
|
|
|
Z_BUF_ERROR: constants.Z_BUF_ERROR,
|
|
|
|
Z_DATA_ERROR: constants.Z_DATA_ERROR,
|
|
|
|
Z_DEFAULT_CHUNK: constants.Z_DEFAULT_CHUNK,
|
|
|
|
Z_DEFAULT_COMPRESSION: constants.Z_DEFAULT_COMPRESSION,
|
|
|
|
Z_DEFAULT_LEVEL: constants.Z_DEFAULT_LEVEL,
|
|
|
|
Z_DEFAULT_MEMLEVEL: constants.Z_DEFAULT_MEMLEVEL,
|
|
|
|
Z_DEFAULT_STRATEGY: constants.Z_DEFAULT_STRATEGY,
|
|
|
|
Z_DEFAULT_WINDOWBITS: constants.Z_DEFAULT_WINDOWBITS,
|
|
|
|
Z_ERRNO: constants.Z_ERRNO,
|
|
|
|
Z_FILTERED: constants.Z_FILTERED,
|
|
|
|
Z_FINISH: constants.Z_FINISH,
|
|
|
|
Z_FIXED: constants.Z_FIXED,
|
|
|
|
Z_FULL_FLUSH: constants.Z_FULL_FLUSH,
|
|
|
|
Z_HUFFMAN_ONLY: constants.Z_HUFFMAN_ONLY,
|
|
|
|
Z_MAX_CHUNK: constants.Z_MAX_CHUNK,
|
|
|
|
Z_MAX_LEVEL: constants.Z_MAX_LEVEL,
|
|
|
|
Z_MAX_MEMLEVEL: constants.Z_MAX_MEMLEVEL,
|
|
|
|
Z_MAX_WINDOWBITS: constants.Z_MAX_WINDOWBITS,
|
|
|
|
Z_MEM_ERROR: constants.Z_MEM_ERROR,
|
|
|
|
Z_MIN_CHUNK: constants.Z_MIN_CHUNK,
|
|
|
|
Z_MIN_LEVEL: constants.Z_MIN_LEVEL,
|
|
|
|
Z_MIN_MEMLEVEL: constants.Z_MIN_MEMLEVEL,
|
|
|
|
Z_MIN_WINDOWBITS: constants.Z_MIN_WINDOWBITS,
|
|
|
|
Z_NEED_DICT: constants.Z_NEED_DICT,
|
|
|
|
Z_NO_COMPRESSION: constants.Z_NO_COMPRESSION,
|
|
|
|
Z_NO_FLUSH: constants.Z_NO_FLUSH,
|
|
|
|
Z_OK: constants.Z_OK,
|
|
|
|
Z_PARTIAL_FLUSH: constants.Z_PARTIAL_FLUSH,
|
|
|
|
Z_RLE: constants.Z_RLE,
|
|
|
|
Z_STREAM_END: constants.Z_STREAM_END,
|
|
|
|
Z_STREAM_ERROR: constants.Z_STREAM_ERROR,
|
|
|
|
Z_SYNC_FLUSH: constants.Z_SYNC_FLUSH,
|
|
|
|
Z_VERSION_ERROR: constants.Z_VERSION_ERROR,
|
|
|
|
ZLIB_VERNUM: constants.ZLIB_VERNUM,
|
|
|
|
ZlibBase,
|
2023-02-14 11:38:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export {
|
2023-06-24 10:12:08 -04:00
|
|
|
brotliCompress,
|
|
|
|
brotliCompressSync,
|
|
|
|
brotliDecompress,
|
|
|
|
brotliDecompressSync,
|
2023-02-14 11:38:45 -05:00
|
|
|
codes,
|
2023-06-24 10:12:08 -04:00
|
|
|
createBrotliCompress,
|
|
|
|
createBrotliDecompress,
|
2023-02-14 11:38:45 -05:00
|
|
|
createDeflate,
|
|
|
|
createDeflateRaw,
|
|
|
|
createGunzip,
|
|
|
|
createGzip,
|
|
|
|
createInflate,
|
|
|
|
createInflateRaw,
|
|
|
|
createUnzip,
|
|
|
|
Deflate,
|
|
|
|
deflate,
|
|
|
|
DeflateRaw,
|
|
|
|
deflateRaw,
|
|
|
|
deflateRawSync,
|
|
|
|
deflateSync,
|
|
|
|
Gunzip,
|
|
|
|
gunzip,
|
|
|
|
gunzipSync,
|
|
|
|
Gzip,
|
|
|
|
gzip,
|
|
|
|
gzipSync,
|
|
|
|
Inflate,
|
|
|
|
inflate,
|
|
|
|
InflateRaw,
|
|
|
|
inflateRaw,
|
|
|
|
inflateRawSync,
|
|
|
|
inflateSync,
|
|
|
|
Unzip,
|
|
|
|
unzip,
|
|
|
|
unzipSync,
|
|
|
|
};
|