Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/zig-impl/src/switch.zig

247 lines
8.1 KiB
Zig
Raw Normal View History

const std = @import("std");
const testing = std.testing;
const fmt = std.fmt;
2023-01-07 16:46:39 +01:00
const net = std.net;
2023-01-07 16:46:39 +01:00
const ipc = @import("./main.zig");
const Message = ipc.Message;
const CBEventType = ipc.CBEvent.Type;
const Allocator = std.mem.Allocator;
2023-01-07 16:46:39 +01:00
const print_eq = @import("./util.zig").print_eq;
const print = std.debug.print;
2023-01-07 16:46:39 +01:00
const Event = ipc.Event;
2023-01-08 20:06:22 +01:00
/// SwitchDB
pub const SwitchDB = struct {
const Self = @This();
db: std.AutoArrayHashMap(i32, ManagedConnection),
2023-01-07 16:46:39 +01:00
pub fn init (allocator: Allocator) Self {
return Self {
.db = std.AutoArrayHashMap(i32, ManagedConnection).init(allocator),
};
}
pub fn deinit (self: *Self) void {
self.db.deinit();
}
2023-01-07 16:46:39 +01:00
pub fn format(self: Self, comptime _: []const u8, _: fmt.FormatOptions, out_stream: anytype) !void {
for(self.db.keys()) |k,i| {
try fmt.format(out_stream, "({},{})", .{k, self.db.values()[i].dest});
}
}
// Read message from a switched fd.
pub fn read (self: *Self, fd: i32) !?Message {
2023-01-08 20:06:22 +01:00
// TODO: assert there is an entry with this fd as a key.
var managedconnection = self.db.get(fd);
var message: Message = undefined;
2023-01-08 20:06:22 +01:00
var r: CBEventType = managedconnection.?.in(fd, &message);
switch (r) {
// The message should be ignored (protocol specific).
2023-01-08 20:06:22 +01:00
CBEventType.IGNORE => { return null; },
// No error. A message was generated.
2023-01-08 20:06:22 +01:00
CBEventType.NO_ERROR => {
message.fd = managedconnection.?.dest;
return message;
},
2023-01-08 20:06:22 +01:00
CBEventType.FD_CLOSING => { return error.closeFD; },
// Generic error, or the message was read but with errors.
2023-01-08 20:06:22 +01:00
CBEventType.ERROR => {
return error.generic;
},
}
unreachable;
}
2023-01-07 16:46:39 +01:00
// Write a message to a switched fd.
pub fn write (self: *Self, message: Message) !void {
2023-01-08 20:06:22 +01:00
// TODO: assert there is an entry with this fd as a key.
var managedconnection = self.db.get(message.fd);
2023-01-08 20:06:22 +01:00
var r = managedconnection.?.out(managedconnection.?.dest, &message);
switch (r) {
// The message should be ignored (protocol specific).
// No error. A message was generated.
2023-01-08 20:06:22 +01:00
CBEventType.NO_ERROR => {
return;
},
2023-01-08 20:06:22 +01:00
CBEventType.FD_CLOSING => { return error.closeFD; },
// Generic error, or the message was read but with errors.
2023-01-08 20:06:22 +01:00
CBEventType.IGNORE,
CBEventType.ERROR => {
return error.generic;
},
}
unreachable;
}
2023-01-08 20:06:22 +01:00
pub fn handle_event_read (self: *Self, index: usize, fd: i32) Event {
var message: ?Message = null;
message = self.read (fd) catch |err| switch(err) {
error.closeFD => {
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.DISCONNECTION, index, fd, null);
},
error.generic => {
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.ERROR, index, fd, null);
},
};
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.SWITCH_RX, index, fd, message);
}
2023-01-08 20:06:22 +01:00
pub fn handle_event_write (self: *Self, index: usize, message: Message) Event {
defer message.deinit();
var fd = message.fd;
self.write(message) catch |err| switch(err) {
error.closeFD => {
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.DISCONNECTION, index, fd, null);
},
error.generic => {
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.ERROR, index, fd, null);
},
};
2023-01-08 20:06:22 +01:00
return Event.init(Event.Type.SWITCH_TX, index, fd, null);
}
};
2023-01-08 20:06:22 +01:00
const ManagedConnection = struct {
2023-01-07 16:46:39 +01:00
dest : i32,
in : *const fn (origin: i32, m: *Message) CBEventType = default_in,
2023-01-08 20:06:22 +01:00
out : *const fn (origin: i32, m: *const Message) CBEventType = default_out,
2023-01-07 16:46:39 +01:00
};
test "creation and display" {
const config = .{.safety = true};
var gpa = std.heap.GeneralPurposeAllocator(config){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();
2023-01-08 20:06:22 +01:00
var switchdb = SwitchDB.init(allocator);
defer switchdb.deinit();
try switchdb.db.put(5, ManagedConnection {.dest = 6});
try switchdb.db.put(6, ManagedConnection {.dest = 5});
try print_eq("{ (5,6)(6,5) }", .{switchdb});
}
2023-01-08 20:06:22 +01:00
fn successful_in (_: i32, m: *Message) CBEventType {
m.* = Message.init(8, std.heap.c_allocator, "coucou") catch {
return CBEventType.ERROR;
};
return CBEventType.NO_ERROR;
}
fn successful_out (_: i32, _: *const Message) CBEventType {
return CBEventType.NO_ERROR;
}
test "successful exchanges" {
const config = .{.safety = true};
var gpa = std.heap.GeneralPurposeAllocator(config){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();
var switchdb = SwitchDB.init(allocator);
defer switchdb.deinit();
try switchdb.db.put(5, ManagedConnection {.dest = 6, .in = successful_in, .out = successful_out});
try switchdb.db.put(6, ManagedConnection {.dest = 5, .in = successful_in, .out = successful_out});
// should return a new message (hardcoded: fd 8, payload "coucou")
var event_1: Event = switchdb.handle_event_read (1, 5);
if (event_1.m) |m| { m.deinit(); }
else { return error.NoMessage; }
// should return a new message (hardcoded: fd 8, payload "coucou")
var event_2: Event = switchdb.handle_event_read (1, 6);
if (event_2.m) |m| { m.deinit(); }
else { return error.NoMessage; }
var message = try Message.init(6, allocator, "coucou");
var event_3 = switchdb.handle_event_write (5, message);
if (event_3.m) |_| { return error.ShouldNotCarryMessage; }
}
fn unsuccessful_in (_: i32, _: *Message) CBEventType {
return CBEventType.ERROR;
}
fn unsuccessful_out (_: i32, _: *const Message) CBEventType {
return CBEventType.ERROR;
}
test "unsuccessful exchanges" {
const config = .{.safety = true};
var gpa = std.heap.GeneralPurposeAllocator(config){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();
var switchdb = SwitchDB.init(allocator);
defer switchdb.deinit();
try switchdb.db.put(5, ManagedConnection {.dest = 6, .in = unsuccessful_in, .out = unsuccessful_out});
try switchdb.db.put(6, ManagedConnection {.dest = 5, .in = unsuccessful_in, .out = unsuccessful_out});
// should return a new message (hardcoded: fd 8, payload "coucou")
var event_1: Event = switchdb.handle_event_read (1, 5);
if (event_1.m) |_| { return error.ShouldNotCarryMessage; }
// should return a new message (hardcoded: fd 8, payload "coucou")
var event_2: Event = switchdb.handle_event_read (1, 6);
if (event_2.m) |_| { return error.ShouldNotCarryMessage; }
var message = try Message.init(6, allocator, "coucou");
var event_3 = switchdb.handle_event_write (5, message);
if (event_3.m) |_| { return error.ShouldNotCarryMessage; }
}
2023-01-07 16:46:39 +01:00
fn default_in (origin: i32, m: *Message) CBEventType {
print ("receiving a message originated from {}\n", .{origin});
2023-01-07 16:46:39 +01:00
var buffer: [2000000]u8 = undefined; // TODO: FIXME??
var packet_size: usize = undefined;
2023-01-07 16:46:39 +01:00
// This may be kinda hacky, idk.
var stream: net.Stream = .{ .handle = origin };
2023-01-08 20:06:22 +01:00
packet_size = stream.read(buffer[0..]) catch return CBEventType.ERROR;
2023-01-07 16:46:39 +01:00
// Let's handle this as a disconnection.
if (packet_size <= 4) {
return CBEventType.FD_CLOSING;
}
m.* = Message.read(origin, buffer[0..], std.heap.c_allocator)
2023-01-08 20:06:22 +01:00
catch return CBEventType.ERROR;
2023-01-07 16:46:39 +01:00
return CBEventType.NO_ERROR;
}
2023-01-07 16:46:39 +01:00
2023-01-08 20:06:22 +01:00
fn default_out (origin: i32, m: *const Message) CBEventType {
print ("sending a message originated from {}\n", .{origin});
2023-01-07 16:46:39 +01:00
// Message contains the fd, no need to search for
// the right structure to copy, let's just recreate
// a Stream from the fd.
var stream = net.Stream { .handle = m.fd };
var buffer: [200000]u8 = undefined; // TODO: buffer size
var fbs = std.io.fixedBufferStream(&buffer);
var writer = fbs.writer();
// returning basic errors, no details.
2023-01-08 20:06:22 +01:00
_ = m.write(writer) catch return CBEventType.ERROR;
_ = stream.write (fbs.getWritten()) catch return CBEventType.ERROR;
2023-01-07 16:46:39 +01:00
return CBEventType.NO_ERROR;
}