Skip to content

Commit

Permalink
std.compress.zstandard: clean up streaming API
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiller committed Feb 21, 2023
1 parent c7c35bf commit c6a89d1
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions lib/std/compress/zstandard.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ pub const compressed_block = types.compressed_block;

pub const decompress = @import("zstandard/decompress.zig");

pub const DecompressStreamOptions = struct {
verify_checksum: bool = true,
window_size_max: usize = 1 << 23 // 8MiB default maximum window size,
};

pub fn DecompressStream(
comptime ReaderType: type,
comptime verify_checksum: bool,
comptime window_size_max: usize,
comptime options: DecompressStreamOptions,
) type {
return struct {
const Self = @This();
Expand All @@ -27,7 +31,7 @@ pub fn DecompressStream(
offset_fse_buffer: []types.compressed_block.Table.Fse,
literals_buffer: []u8,
sequence_buffer: []u8,
checksum: if (verify_checksum) ?u32 else void,
checksum: if (options.verify_checksum) ?u32 else void,
current_frame_decompressed_size: usize,

pub const Error = ReaderType.Error || error{
Expand Down Expand Up @@ -69,8 +73,8 @@ pub fn DecompressStream(
const frame_context = context: {
break :context try decompress.FrameContext.init(
header,
window_size_max,
verify_checksum,
options.window_size_max,
options.verify_checksum,
);
};

Expand Down Expand Up @@ -99,10 +103,10 @@ pub fn DecompressStream(
);
const buffer = try RingBuffer.init(self.allocator, frame_context.window_size);

const literals_data = try self.allocator.alloc(u8, window_size_max);
const literals_data = try self.allocator.alloc(u8, options.window_size_max);
errdefer self.allocator.free(literals_data);

const sequence_data = try self.allocator.alloc(u8, window_size_max);
const sequence_data = try self.allocator.alloc(u8, options.window_size_max);
errdefer self.allocator.free(sequence_data);

self.literal_fse_buffer = literal_fse_buffer;
Expand All @@ -116,7 +120,7 @@ pub fn DecompressStream(
self.decode_state = decode_state;
self.frame_context = frame_context;

self.checksum = if (verify_checksum) null else {};
self.checksum = if (options.verify_checksum) null else {};
self.current_frame_decompressed_size = 0;

self.state = .InFrame;
Expand Down Expand Up @@ -199,7 +203,7 @@ pub fn DecompressStream(
if (self.frame_context.has_checksum) {
const checksum = source_reader.readIntLittle(u32) catch
return error.MalformedFrame;
if (comptime verify_checksum) {
if (comptime options.verify_checksum) {
if (self.frame_context.hasher_opt) |*hasher| {
if (checksum != decompress.computeChecksum(hasher))
return error.ChecksumFailure;
Expand Down Expand Up @@ -232,12 +236,19 @@ pub fn DecompressStream(
};
}

pub fn decompressStreamOptions(
allocator: Allocator,
reader: anytype,
comptime options: DecompressStreamOptions,
) DecompressStream(@TypeOf(reader, options)) {
return DecompressStream(@TypeOf(reader), options).init(allocator, reader);
}

pub fn decompressStream(
allocator: Allocator,
reader: anytype,
comptime window_size_max: usize,
) DecompressStream(@TypeOf(reader), true, window_size_max) {
return DecompressStream(@TypeOf(reader), true, 8 * (1 << 20)).init(allocator, reader);
) DecompressStream(@TypeOf(reader), .{}) {
return DecompressStream(@TypeOf(reader, .{})).init(allocator, reader);
}

fn testDecompress(data: []const u8) ![]u8 {
Expand Down

0 comments on commit c6a89d1

Please sign in to comment.