Compression algorithms.
|
//! Compression algorithms.
|
flate
compress/flate.zig
|
const std = @import("std.zig");
|
gzip
compress/gzip.zig
|
pub const flate = @import("compress/flate.zig");
pub const gzip = @import("compress/gzip.zig");
|
zlib
compress/zlib.zig
|
pub const zlib = @import("compress/zlib.zig");
|
lzma
compress/lzma.zig
|
pub const lzma = @import("compress/lzma.zig");
|
lzma2
compress/lzma2.zig
|
pub const lzma2 = @import("compress/lzma2.zig");
|
xz
compress/xz.zig
|
pub const xz = @import("compress/xz.zig");
|
zstd
compress/zstandard.zig
|
pub const zstd = @import("compress/zstandard.zig");
|
HashedReader()
|
pub fn HashedReader(
comptime ReaderType: anytype,
comptime HasherType: anytype,
) type {
return struct {
child_reader: ReaderType,
hasher: HasherType,
|
Error
|
pub const Error = ReaderType.Error;
|
Reader
|
pub const Reader = std.io.Reader(*@This(), Error, read);
|
read()
|
pub fn read(self: *@This(), buf: []u8) Error!usize {
const amt = try self.child_reader.read(buf);
self.hasher.update(buf[0..amt]);
return amt;
}
|
reader()
|
pub fn reader(self: *@This()) Reader {
return .{ .context = self };
}
};
}
|
hashedReader()
|
pub fn hashedReader(
reader: anytype,
hasher: anytype,
) HashedReader(@TypeOf(reader), @TypeOf(hasher)) {
return .{ .child_reader = reader, .hasher = hasher };
}
|
HashedWriter()
|
pub fn HashedWriter(
comptime WriterType: anytype,
comptime HasherType: anytype,
) type {
return struct {
child_writer: WriterType,
hasher: HasherType,
|
Error
|
pub const Error = WriterType.Error;
|
Writer
|
pub const Writer = std.io.Writer(*@This(), Error, write);
|
write()
|
pub fn write(self: *@This(), buf: []const u8) Error!usize {
const amt = try self.child_writer.write(buf);
self.hasher.update(buf[0..amt]);
return amt;
}
|
writer()
|
pub fn writer(self: *@This()) Writer {
return .{ .context = self };
}
};
}
|
hashedWriter()
|
pub fn hashedWriter(
writer: anytype,
hasher: anytype,
) HashedWriter(@TypeOf(writer), @TypeOf(hasher)) {
return .{ .child_writer = writer, .hasher = hasher };
}
test {
_ = lzma;
_ = lzma2;
_ = xz;
_ = zstd;
_ = flate;
_ = gzip;
_ = zlib;
}
|
|