Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

TrailerFlags

This is useful for saving memory when allocating an object that has many optional components. The optional objects are allocated sequentially in memory, and a single integer is used to represent each optional object and whether it is present based on each corresponding bit.

trailer_flags.TrailerFlags
pub fn TrailerFlags(comptime Fields: type) type

File

lib/std/meta/trailer_flags.zig:12

Code

pub fn TrailerFlags(comptime Fields: type) type {
    return struct {
        bits: Int,

        pub const Int = @Int(.unsigned, bit_count);
        pub const bit_count = @typeInfo(Fields).@"struct".field_names.len;

        pub const FieldEnum = std.meta.FieldEnum(Fields);

        pub const ActiveFields = std.enums.EnumFieldStruct(FieldEnum, bool, false);
        pub const FieldValues = blk: {
            var field_names: [bit_count][]const u8 = undefined;
            var field_types: [bit_count]type = undefined;
            var field_attrs: [bit_count]std.builtin.Type.Struct.FieldAttributes = undefined;
            const fields_info = @typeInfo(Fields).@"struct";
            for (
                fields_info.field_names,
                fields_info.field_types,
                &field_names,
                &field_types,
                &field_attrs,
            ) |field_name, field_type, *new_name, *NewType, *new_attrs| {
                new_name.* = field_name;
                NewType.* = ?field_type;
                const default: ?field_type = null;
                new_attrs.* = .{ .default_value_ptr = &default };
            }
            break :blk @Struct(.auto, null, &field_names, &field_types, &field_attrs);
        };

        const Self = @This();

        pub fn has(self: Self, comptime field: FieldEnum) bool {
            const field_index = @backingInt(field);
            return (self.bits & (1 << field_index)) != 0;
        }

        pub fn get(self: Self, p: [*]align(@alignOf(Fields)) const u8, comptime field: FieldEnum) ?Field(field) {
            if (!self.has(field))
                return null;
            return self.ptrConst(p, field).*;
        }

        pub fn setFlag(self: *Self, comptime field: FieldEnum) void {
            const field_index = @backingInt(field);
            self.bits |= 1 << field_index;
        }

        /// `fields` is a boolean struct where each active field is set to `true`
        pub fn init(fields: ActiveFields) Self {
            var self: Self = .{ .bits = 0 };
            inline for (@typeInfo(Fields).@"struct".field_names, 0..) |field_name, i| {
                if (@field(fields, field_name))
                    self.bits |= 1 << i;
            }
            return self;
        }

        /// `fields` is a struct with each field set to an optional value
        pub fn setMany(self: Self, p: [*]align(@alignOf(Fields)) u8, fields: FieldValues) void {
            inline for (@typeInfo(Fields).@"struct".field_names, 0..) |field_name, i| {
                if (@field(fields, field_name)) |value|
                    self.set(p, @as(FieldEnum, @fromBackingInt(@intCast(i))), value);
            }
        }

        pub fn set(
            self: Self,
            p: [*]align(@alignOf(Fields)) u8,
            comptime field: FieldEnum,
            value: Field(field),
        ) void {
            self.ptr(p, field).* = value;
        }

        pub fn ptr(self: Self, p: [*]align(@alignOf(Fields)) u8, comptime field: FieldEnum) *Field(field) {
            if (@sizeOf(Field(field)) == 0)
                return undefined;
            const off = self.offset(field);
            return @ptrCast(@alignCast(p + off));
        }

        pub fn ptrConst(self: Self, p: [*]align(@alignOf(Fields)) const u8, comptime field: FieldEnum) *const Field(field) {
            if (@sizeOf(Field(field)) == 0)
                return undefined;
            const off = self.offset(field);
            return @ptrCast(@alignCast(p + off));
        }

        pub fn offset(self: Self, comptime field: FieldEnum) usize {
            var off: usize = 0;
            inline for (@typeInfo(Fields).@"struct".field_types, 0..) |field_type, i| {
                const active = (self.bits & (1 << i)) != 0;
                if (i == @backingInt(field)) {
                    assert(active);
                    return mem.alignForward(usize, off, @alignOf(field_type));
                } else if (active) {
                    off = mem.alignForward(usize, off, @alignOf(field_type));
                    off += @sizeOf(field_type);
                }
            }
        }

        pub fn Field(comptime field: FieldEnum) type {
            return @typeInfo(Fields).@"struct".field_types[@backingInt(field)];
        }

        pub fn sizeInBytes(self: Self) usize {
            var off: usize = 0;
            inline for (@typeInfo(Fields).@"struct".field_types, 0..) |field_type, i| {
                if (@sizeOf(field_type) == 0)
                    continue;
                if ((self.bits & (1 << i)) != 0) {
                    off = mem.alignForward(usize, off, @alignOf(field_type));
                    off += @sizeOf(field_type);
                }
            }
            return off;
        }
    };
}