1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
const std = @import("std");
const log = std.log.scoped(.pgz);
const ByteArrayList = std.ArrayList(u8);
const ProtocolError = @import("../main.zig").ProtocolError;
const ClientError = @import("../main.zig").ClientError;
const enum_from_int = @import("../main.zig").enum_from_int;
pub const Tag: u8 = 'Q';
const Query = @This();
buf: ?[]const u8 = null,
query: []const u8,
pub fn read(_: std.mem.Allocator, buf: []const u8) !Query {
return .{
.buf = buf,
.query = buf[0..(buf.len-1)],
};
}
pub fn write(self: Query, _: std.mem.Allocator, stream_writer: anytype) !void {
try stream_writer.writeByte(Tag);
try stream_writer.writeIntBig(u32, @as(u32, @intCast(self.query.len+5)));
try stream_writer.writeAll(self.query);
try stream_writer.writeByte(0);
}
pub fn deinit(self: *Query, a: std.mem.Allocator) void {
if (self.buf != null) a.free(self.buf.?);
}
test "round trip" {
const allocator = std.testing.allocator;
var sm = Query{
.query = "Hello",
};
defer sm.deinit(allocator);
var bal = ByteArrayList.init(allocator);
defer bal.deinit();
try sm.write(allocator, bal.writer());
var fbs = std.io.fixedBufferStream(bal.items);
var reader = fbs.reader();
const tag = try reader.readByte();
try std.testing.expectEqual(Tag, tag);
const len = try reader.readIntBig(u32);
const buf = try allocator.alloc(u8, len - 4);
try reader.readNoEof(buf);
var sm2 = try Query.read(allocator, buf);
defer sm2.deinit(allocator);
try std.testing.expectEqualStrings("Hello", sm2.query);
}
|