Skip to content

Commit cd33aaa

Browse files
Grazfathermattnite
authored andcommitted
Use .ptr for interfaces to match zig idiom
1 parent 379d928 commit cd33aaa

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

drivers/base/Clock_Device.zig

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const Clock_Device = @This();
1111

1212
/// Pointer to the object implementing the driver.
1313
///
14-
/// If the implementation requires no `object` pointer,
14+
/// If the implementation requires no `ptr` pointer,
1515
/// you can safely use `undefined` here.
16-
object: *anyopaque,
16+
ptr: *anyopaque,
1717

1818
/// Virtual table for the digital i/o functions.
1919
vtable: *const VTable,
@@ -43,7 +43,7 @@ pub fn sleep_us(td: Clock_Device, time_us: u64) void {
4343

4444
/// VTable methods
4545
pub fn get_time_since_boot(td: Clock_Device) mdf.time.Absolute {
46-
return td.vtable.get_time_since_boot(td.object);
46+
return td.vtable.get_time_since_boot(td.ptr);
4747
}
4848

4949
pub const VTable = struct {
@@ -67,7 +67,7 @@ pub const Test_Device = struct {
6767

6868
pub fn clock_device(dev: *Test_Device) Clock_Device {
6969
return Clock_Device{
70-
.object = dev,
70+
.ptr = dev,
7171
.vtable = &vtable,
7272
};
7373
}

drivers/base/Datagram_Device.zig

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ const Datagram_Device = @This();
1212

1313
/// Pointer to the object implementing the driver.
1414
///
15-
/// If the implementation requires no `object` pointer,
15+
/// If the implementation requires no `ptr` pointer,
1616
/// you can safely use `undefined` here.
17-
object: *anyopaque,
17+
ptr: *anyopaque,
1818

1919
/// Virtual table for the datagram device functions.
2020
vtable: *const VTable,
@@ -27,14 +27,14 @@ pub const ConnectError = BaseError || error{DeviceBusy};
2727
/// NOTE: Call `.disconnect()` when the usage of the device is done to release it.
2828
pub fn connect(dd: Datagram_Device) ConnectError!void {
2929
if (dd.vtable.connect_fn) |connectFn| {
30-
return connectFn(dd.object);
30+
return connectFn(dd.ptr);
3131
}
3232
}
3333

3434
/// Releases a device from the connection.
3535
pub fn disconnect(dd: Datagram_Device) void {
3636
if (dd.vtable.disconnect_fn) |disconnectFn| {
37-
return disconnectFn(dd.object);
37+
return disconnectFn(dd.ptr);
3838
}
3939
}
4040

@@ -48,7 +48,7 @@ pub fn write(dd: Datagram_Device, datagram: []const u8) WriteError!void {
4848
/// Writes a single `datagram` to the device.
4949
pub fn writev(dd: Datagram_Device, datagrams: []const []const u8) WriteError!void {
5050
const writev_fn = dd.vtable.writev_fn orelse return error.Unsupported;
51-
return writev_fn(dd.object, datagrams);
51+
return writev_fn(dd.ptr, datagrams);
5252
}
5353

5454
pub const ReadError = BaseError || error{ Unsupported, NotConnected, BufferOverrun };
@@ -71,7 +71,7 @@ pub fn read(dd: Datagram_Device, datagram: []u8) ReadError!usize {
7171
/// will be discarded.
7272
pub fn readv(dd: Datagram_Device, datagrams: []const []u8) ReadError!usize {
7373
const readv_fn = dd.vtable.readv_fn orelse return error.Unsupported;
74-
return readv_fn(dd.object, datagrams);
74+
return readv_fn(dd.ptr, datagrams);
7575
}
7676

7777
pub const VTable = struct {
@@ -134,7 +134,7 @@ pub const Test_Device = struct {
134134

135135
pub fn datagram_device(td: *Test_Device) Datagram_Device {
136136
return Datagram_Device{
137-
.object = td,
137+
.ptr = td,
138138
.vtable = &vtable,
139139
};
140140
}

drivers/base/Digital_IO.zig

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const Digital_IO = @This();
1010

1111
/// Pointer to the object implementing the driver.
1212
///
13-
/// If the implementation requires no `object` pointer,
13+
/// If the implementation requires no `ptr` pointer,
1414
/// you can safely use `undefined` here.
15-
object: *anyopaque,
15+
ptr: *anyopaque,
1616

1717
/// Virtual table for the digital i/o functions.
1818
vtable: *const VTable,
@@ -40,23 +40,23 @@ pub const Direction = enum { input, output };
4040

4141
/// Sets the direction of the pin.
4242
pub fn set_direction(dio: Digital_IO, dir: Direction) SetDirError!void {
43-
return dio.vtable.set_direction_fn(dio.object, dir);
43+
return dio.vtable.set_direction_fn(dio.ptr, dir);
4444
}
4545

4646
/// Sets if the pin has a bias towards either `low` or `high` or no bias at all.
4747
/// Bias is usually implemented with pull-ups and pull-downs.
4848
pub fn set_bias(dio: Digital_IO, bias: ?State) SetBiasError!void {
49-
return dio.vtable.set_bias_fn(dio.object, bias);
49+
return dio.vtable.set_bias_fn(dio.ptr, bias);
5050
}
5151

5252
/// Changes the state of the pin.
5353
pub fn write(dio: Digital_IO, state: State) WriteError!void {
54-
return dio.vtable.write_fn(dio.object, state);
54+
return dio.vtable.write_fn(dio.ptr, state);
5555
}
5656

5757
/// Reads the state state of the pin.
5858
pub fn read(dio: Digital_IO) ReadError!State {
59-
return dio.vtable.read_fn(dio.object);
59+
return dio.vtable.read_fn(dio.ptr);
6060
}
6161

6262
pub const VTable = struct {
@@ -79,7 +79,7 @@ pub const Test_Device = struct {
7979

8080
pub fn digital_io(dev: *Test_Device) Digital_IO {
8181
return Digital_IO{
82-
.object = dev,
82+
.ptr = dev,
8383
.vtable = &vtable,
8484
};
8585
}

drivers/base/Stream_Device.zig

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const Stream_Device = @This();
1111

1212
/// Pointer to the object implementing the driver.
1313
///
14-
/// If the implementation requires no `object` pointer,
14+
/// If the implementation requires no `ptr` pointer,
1515
/// you can safely use `undefined` here.
16-
object: *anyopaque,
16+
ptr: *anyopaque,
1717

1818
/// Virtual table for the stream device functions.
1919
vtable: *const VTable,
@@ -28,13 +28,13 @@ pub const ReadError = BaseError || error{ Unsupported, NotConnected };
2828
/// NOTE: Call `.disconnect()` when the usage of the device is done to release it.
2929
pub fn connect(sd: Stream_Device) ConnectError!void {
3030
const connect_fn = sd.vtable.connect_fn orelse return;
31-
return connect_fn(sd.object);
31+
return connect_fn(sd.ptr);
3232
}
3333

3434
/// Releases a device from the connection.
3535
pub fn disconnect(sd: Stream_Device) void {
3636
const disconnect_fn = sd.vtable.disconnect_fn orelse return;
37-
return disconnect_fn(sd.object);
37+
return disconnect_fn(sd.ptr);
3838
}
3939

4040
/// Writes some `bytes` to the device and returns the number of bytes written.
@@ -45,7 +45,7 @@ pub fn write(sd: Stream_Device, bytes: []const u8) WriteError!usize {
4545
/// Writes some `bytes` to the device and returns the number of bytes written.
4646
pub fn writev(sd: Stream_Device, bytes_vec: []const []const u8) WriteError!usize {
4747
const writev_fn = sd.vtable.writev_fn orelse return error.Unsupported;
48-
return writev_fn(sd.object, bytes_vec);
48+
return writev_fn(sd.ptr, bytes_vec);
4949
}
5050

5151
/// Reads some `bytes` to the device and returns the number of bytes read.
@@ -56,7 +56,7 @@ pub fn read(sd: Stream_Device, bytes: []u8) ReadError!usize {
5656
/// Reads some `bytes` to the device and returns the number of bytes read.
5757
pub fn readv(sd: Stream_Device, bytes_vec: []const []u8) ReadError!usize {
5858
const readv_fn = sd.vtable.readv_fn orelse return error.Unsupported;
59-
return readv_fn(sd.object, bytes_vec);
59+
return readv_fn(sd.ptr, bytes_vec);
6060
}
6161

6262
pub const Reader = std.io.Reader(Stream_Device, ReadError, reader_read);
@@ -118,7 +118,7 @@ pub const Test_Device = struct {
118118

119119
pub fn stream_device(td: *Test_Device) Stream_Device {
120120
return Stream_Device{
121-
.object = td,
121+
.ptr = td,
122122
.vtable = &vtable,
123123
};
124124
}

drivers/io_expander/pcf8574.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ pub fn PCF8574(comptime config: PCF8574_Config) type {
8888

8989
pub fn digital_IO(self: *Self, pin: u3) Digital_IO {
9090
return Digital_IO{
91-
.object = &self.pin_arr[pin],
91+
.ptr = &self.pin_arr[pin],
9292
.vtable = &vtable,
9393
};
9494
}

port/raspberrypi/rp2xxx/src/hal/drivers.zig

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub const I2C_Device = struct {
3737

3838
pub fn datagram_device(dev: *I2C_Device) Datagram_Device {
3939
return .{
40-
.object = dev,
40+
.ptr = dev,
4141
.vtable = &vtable,
4242
};
4343
}
@@ -152,7 +152,7 @@ pub const SPI_Device = struct {
152152

153153
pub fn datagram_device(dev: *SPI_Device) Datagram_Device {
154154
return .{
155-
.object = dev,
155+
.ptr = dev,
156156
.vtable = &vtable,
157157
};
158158
}
@@ -244,7 +244,7 @@ pub const GPIO_Device = struct {
244244

245245
pub fn digital_io(dio: *GPIO_Device) Digital_IO {
246246
return Digital_IO{
247-
.object = dio,
247+
.ptr = dio,
248248
.vtable = &vtable,
249249
};
250250
}
@@ -309,7 +309,7 @@ pub const ClockDevice = struct {
309309
pub fn clock_device(td: *ClockDevice) Clock_Device {
310310
_ = td;
311311
return Clock_Device{
312-
.object = undefined,
312+
.ptr = undefined,
313313
.vtable = &vtable,
314314
};
315315
}

0 commit comments

Comments
 (0)