@@ -64,9 +64,9 @@ fn zalloc(private: ?*anyopaque, items: c_uint, size: c_uint) callconv(.C) ?*anyo
64
64
if (private == null )
65
65
return null ;
66
66
67
- const allocator = @ptrCast (* Allocator , @alignCast (@alignOf ( * Allocator ), private .? ));
68
- var buf = allocator .alloc (u8 , ZallocHeader .size_of_aligned + (items * size )) catch return null ;
69
- const header = @ptrCast (* ZallocHeader , @alignCast (@alignOf ( * ZallocHeader ), buf .ptr ));
67
+ const allocator : * Allocator = @ptrCast (@alignCast (private .? ));
68
+ var buf = allocator .allocWithOptions (u8 , ZallocHeader .size_of_aligned + (items * size ), @alignOf ( * ZallocHeader ), null ) catch return null ;
69
+ const header : * ZallocHeader = @ptrCast (@alignCast (buf .ptr ));
70
70
header .* = .{
71
71
.magic = magic_value ,
72
72
.size = items * size ,
@@ -79,15 +79,16 @@ fn zfree(private: ?*anyopaque, addr: ?*anyopaque) callconv(.C) void {
79
79
if (private == null )
80
80
return ;
81
81
82
- const allocator = @ptrCast (* Allocator , @alignCast (@alignOf (* Allocator ), private .? ));
83
- const header = @intToPtr (* ZallocHeader , @ptrToInt (addr .? ) - ZallocHeader .size_of_aligned );
82
+ const allocator : * Allocator = @ptrCast (@alignCast (private .? ));
83
+ const header = @as (* ZallocHeader , @ptrFromInt (@intFromPtr (addr .? ) - ZallocHeader .size_of_aligned ));
84
+
84
85
if (builtin .mode != .ReleaseFast ) {
85
86
if (header .magic != magic_value )
86
87
@panic ("magic value is incorrect" );
87
88
}
88
89
89
90
var buf : []align (alignment ) u8 = undefined ;
90
- buf .ptr = @ptrCast ([* ]align (alignment ) u8 , @alignCast ( alignment , header ));
91
+ buf .ptr = @as ([* ]align (alignment ) u8 , @ptrCast ( header ));
91
92
buf .len = ZallocHeader .size_of_aligned + header .size ;
92
93
allocator .free (buf );
93
94
}
@@ -118,7 +119,7 @@ fn zStreamInit(allocator: Allocator) !*c.z_stream {
118
119
}
119
120
120
121
fn zStreamDeinit (allocator : Allocator , stream : * c.z_stream ) void {
121
- const pinned = @ptrCast (* Allocator , @alignCast (@alignOf ( * Allocator ), stream .@"opaque" .? ));
122
+ const pinned : * Allocator = @ptrCast (@alignCast (stream .@"opaque" .? ));
122
123
allocator .destroy (pinned );
123
124
allocator .destroy (stream );
124
125
}
@@ -203,8 +204,8 @@ pub fn CompressorWriter(comptime WriterType: type) type {
203
204
var tmp : [4096 ]u8 = undefined ;
204
205
205
206
// uncompressed
206
- self .stream .next_in = @intToPtr ([* ]u8 , @ptrToInt ( buf .ptr ));
207
- self .stream .avail_in = @intCast (c_uint , buf .len );
207
+ self .stream .next_in = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( buf .ptr ) ));
208
+ self .stream .avail_in = @as (c_uint , @intCast ( buf .len ) );
208
209
209
210
while (true ) {
210
211
// compressed
@@ -288,10 +289,10 @@ pub fn DecompressorReader(comptime ReaderType: type) type {
288
289
self .pos += try self .inner .readAll (self .tmp [self .pos .. ]);
289
290
290
291
self .stream .next_in = & self .tmp ;
291
- self .stream .avail_in = @intCast (c_uint , self .pos );
292
+ self .stream .avail_in = @as (c_uint , @intCast ( self .pos ) );
292
293
293
- self .stream .next_out = @intToPtr ([* ]u8 , @ptrToInt ( buf .ptr ));
294
- self .stream .avail_out = @intCast (c_uint , buf .len );
294
+ self .stream .next_out = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( buf .ptr ) ));
295
+ self .stream .avail_out = @as (c_uint , @intCast ( buf .len ) );
295
296
296
297
var rc = c .inflate (self .stream , c .Z_SYNC_FLUSH );
297
298
if (rc != c .Z_OK and rc != c .Z_STREAM_END )
@@ -344,17 +345,17 @@ pub const Compressor = struct {
344
345
// Compresses to new allocated buffer.
345
346
// Caller owns returned memory.
346
347
pub fn compressAllAlloc (self : * Self , uncompressed : []const u8 ) ! []u8 {
347
- self .stream .next_in = @intToPtr ([* ]u8 , @ptrToInt ( uncompressed .ptr ));
348
- self .stream .avail_in = @intCast (c_uint , uncompressed .len );
348
+ self .stream .next_in = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( uncompressed .ptr ) ));
349
+ self .stream .avail_in = @as (c_uint , @intCast ( uncompressed .len ) );
349
350
350
351
var tmp = try self .allocator .alloc (u8 , chunk_size );
351
352
var len : usize = 0 ; // used part of the tmp buffer
352
353
353
354
var flag = c .Z_PARTIAL_FLUSH ;
354
355
while (true ) {
355
356
var out = tmp [len .. ];
356
- self .stream .next_out = @intToPtr ([* ]u8 , @ptrToInt ( out .ptr ));
357
- self .stream .avail_out = @intCast (c_uint , out .len );
357
+ self .stream .next_out = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( out .ptr ) ));
358
+ self .stream .avail_out = @as (c_uint , @intCast ( out .len ) );
358
359
359
360
var rc = c .deflate (self .stream , flag );
360
361
if (rc != c .Z_OK and rc != c .Z_STREAM_END )
@@ -400,15 +401,15 @@ pub const Decompressor = struct {
400
401
// Decompresses to new allocated buffer.
401
402
// Caller owns returned memory.
402
403
pub fn decompressAllAlloc (self : * Self , compressed : []const u8 ) ! []u8 {
403
- self .stream .next_in = @intToPtr ([* ]u8 , @ptrToInt ( compressed .ptr ));
404
- self .stream .avail_in = @intCast (c_uint , compressed .len );
404
+ self .stream .next_in = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( compressed .ptr ) ));
405
+ self .stream .avail_in = @as (c_uint , @intCast ( compressed .len ) );
405
406
406
407
var tmp = try self .allocator .alloc (u8 , chunk_size );
407
408
var len : usize = 0 ; // inflated part of the tmp buffer
408
409
while (true ) {
409
410
var out = tmp [len .. ];
410
- self .stream .next_out = @intToPtr ([* ]u8 , @ptrToInt ( out .ptr ));
411
- self .stream .avail_out = @intCast (c_uint , out .len );
411
+ self .stream .next_out = @as ([* ]u8 , @ptrFromInt ( @intFromPtr ( out .ptr ) ));
412
+ self .stream .avail_out = @as (c_uint , @intCast ( out .len ) );
412
413
413
414
var rc = c .inflate (self .stream , c .Z_SYNC_FLUSH );
414
415
if (rc != c .Z_OK and rc != c .Z_STREAM_END ) {
@@ -439,7 +440,7 @@ test "compress gzip with zig interface" {
439
440
try cmp .flush ();
440
441
441
442
// decompress with zig std lib gzip
442
- var dcmp = try std .compress .gzip .gzipStream (allocator , fifo .reader ());
443
+ var dcmp = try std .compress .gzip .decompress (allocator , fifo .reader ());
443
444
defer dcmp .deinit ();
444
445
const actual = try dcmp .reader ().readAllAlloc (allocator , std .math .maxInt (usize ));
445
446
defer allocator .free (actual );
@@ -511,3 +512,21 @@ fn showBuf(buf: []const u8) void {
511
512
std .debug .print ("0x{x:0>2}, " , .{b });
512
513
std .debug .print ("\n " , .{});
513
514
}
515
+
516
+ test "Hello" {
517
+ const allocator = std .testing .allocator ;
518
+ const input = "Hello" ;
519
+
520
+ var cmp = try Compressor .init (allocator , .{ .header = .none });
521
+ defer cmp .deinit ();
522
+ const compressed = try cmp .compressAllAlloc (input );
523
+ defer allocator .free (compressed );
524
+ //try std.testing.expectEqualSlices(u8, &[_]u8{ 0xf2, 0x48, 0xcd, 0xc9, 0xc9, 0x07, 0x04, 0x00, 0x00, 0xff, 0xff }, compressed);
525
+
526
+ var dcp = try Decompressor .init (allocator , .{ .header = .none });
527
+ defer dcp .deinit ();
528
+ const decompressed = try dcp .decompressAllAlloc (compressed );
529
+ defer allocator .free (decompressed );
530
+
531
+ try std .testing .expectEqualSlices (u8 , input , decompressed );
532
+ }
0 commit comments