Skip to content

Commit

Permalink
Extract dedicated bincode.readInt function
Browse files Browse the repository at this point in the history
  • Loading branch information
InKryption committed Jul 11, 2024
1 parent 50e456e commit afbc94f
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 110 deletions.
3 changes: 1 addition & 2 deletions src/accountsdb/snapshots.zig
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,7 @@ pub const AccountFileInfo = struct {
}

fn idDeserializer(_: std.mem.Allocator, reader: anytype, params: bincode.Params) anyerror!FileId {
var fba = comptime std.heap.FixedBufferAllocator.init(&.{});
const int = try bincode.read(fba.allocator(), usize, reader, params);
const int = try bincode.readInt(usize, reader, params);
if (int > std.math.maxInt(FileId.Int)) return error.IdOverflow;
return FileId.fromInt(@intCast(int));
}
Expand Down
224 changes: 116 additions & 108 deletions src/bincode/bincode.zig
Original file line number Diff line number Diff line change
Expand Up @@ -188,112 +188,127 @@ pub fn read(allocator: std.mem.Allocator, comptime U: type, reader: anytype, par
return @as(T, @bitCast(bytes));
},
.ComptimeInt => return bincode.read(allocator, u64, reader, params),
.Int => |info| {
if ((info.bits & (info.bits - 1)) != 0 or info.bits < 8 or info.bits > 256) {
@compileError("Only i{8, 16, 32, 64, 128, 256}, u{8, 16, 32, 64, 128, 256} integers may be deserialized, but attempted to deserialize " ++ @typeName(T) ++ ".");
}
.Int => return try bincode.readInt(T, reader, params),
else => {},
}

switch (params.int_encoding) {
.variable => {
const b = try reader.readByte();
if (b < 251) {
return switch (info.signedness) {
.unsigned => b,
.signed => zigzag: {
if (b % 2 == 0) {
break :zigzag @as(T, @intCast(b / 2));
} else {
break :zigzag ~@as(T, @bitCast(@as(std.meta.Int(.unsigned, info.bits), b / 2)));
}
},
};
} else if (b == 251) {
const z = try switch (params.endian) {
.little => reader.readInt(u16, .little),
.big => reader.readInt(u16, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 252) {
const z = try switch (params.endian) {
.little => reader.readInt(u32, .little),
.big => reader.readInt(u32, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 253) {
const z = try switch (params.endian) {
.little => reader.readInt(u64, .little),
.big => reader.readInt(u64, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 254) {
const z = try switch (params.endian) {
.little => reader.readInt(u128, .little),
.big => reader.readInt(u128, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else {
const z = try switch (params.endian) {
.little => reader.readInt(u256, .little),
.big => reader.readInt(u256, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
}
},
.fixed => return switch (params.endian) {
.little => reader.readInt(T, .little),
.big => reader.readInt(T, .big),
},
@compileError("Deserializing '" ++ @typeName(T) ++ "' is unsupported.");
}

pub fn readInt(comptime U: type, reader: anytype, params: bincode.Params) !U {
const T = switch (U) {
usize => u64,
isize => i64,
else => U,
};

const info = @typeInfo(T).Int;
if ((info.bits & (info.bits - 1)) != 0 or info.bits < 8 or info.bits > 256) {
@compileError("Only i{8, 16, 32, 64, 128, 256}, u{8, 16, 32, 64, 128, 256} integers may be deserialized, but attempted to deserialize " ++ @typeName(T) ++ ".");
}

switch (params.int_encoding) {
.variable => {
const b = try reader.readByte();
if (b < 251) {
return switch (info.signedness) {
.unsigned => b,
.signed => zigzag: {
if (b % 2 == 0) {
break :zigzag @as(T, @intCast(b / 2));
} else {
break :zigzag ~@as(T, @bitCast(@as(std.meta.Int(.unsigned, info.bits), b / 2)));
}
},
};
} else if (b == 251) {
const z = try switch (params.endian) {
.little => reader.readInt(u16, .little),
.big => reader.readInt(u16, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 252) {
const z = try switch (params.endian) {
.little => reader.readInt(u32, .little),
.big => reader.readInt(u32, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 253) {
const z = try switch (params.endian) {
.little => reader.readInt(u64, .little),
.big => reader.readInt(u64, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else if (b == 254) {
const z = try switch (params.endian) {
.little => reader.readInt(u128, .little),
.big => reader.readInt(u128, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
} else {
const z = try switch (params.endian) {
.little => reader.readInt(u256, .little),
.big => reader.readInt(u256, .big),
};
return switch (info.signedness) {
.unsigned => std.math.cast(T, z) orelse return error.FailedToCastZZ,
.signed => zigzag: {
if (z % 2 == 0) {
break :zigzag std.math.cast(T, z / 2) orelse return error.FailedToCastZZ;
} else {
break :zigzag ~(std.math.cast(T, z / 2) orelse return error.FailedToCastZZ);
}
},
};
}
},
else => {},
.fixed => return switch (params.endian) {
.little => reader.readInt(T, .little),
.big => reader.readInt(T, .big),
},
}
}

@compileError("Deserializing '" ++ @typeName(T) ++ "' is unsupported.");
pub fn readIntAsLength(comptime T: type, reader: anytype, params: bincode.Params) !?T {
const len_u64 = try bincode.readInt(u64, reader, params);
if (len_u64 > std.math.maxInt(T)) return null;
return @intCast(len_u64);
}

fn readFieldWithConfig(
Expand All @@ -318,13 +333,6 @@ fn readFieldWithConfig(
return try bincode.read(allocator, field.type, reader, params);
}

pub fn readIntAsLength(comptime T: type, reader: anytype, params: bincode.Params) !?T {
var fba = comptime std.heap.FixedBufferAllocator.init(&.{});
const len_u64 = try bincode.read(fba.allocator(), u64, reader, params);
if (len_u64 > std.math.maxInt(T)) return null;
return @intCast(len_u64);
}

fn readHashMap(
allocator: std.mem.Allocator,
reader: anytype,
Expand Down

0 comments on commit afbc94f

Please sign in to comment.