Files
sx/library/modules/std/net/kqueue.sx
agra 59f90d2939 refactor(ffi-linkage): Phase 6.3 — migrate std/ #foreign→extern
Pure source rename across 11 std modules (~60 sites): cli/core/fmt/fs/log/
net/kqueue/process/socket/thread/time/trace. All fn-decl markers — bare
'#foreign;', '#foreign libc;'/'#foreign tlib;' (LIB ref), and
'#foreign libc "csym";' (LIB+rename) → the same 'extern …' tail (extern carries
the identical [LIB] ["csym"] axis). Plus 2 stale comment mentions (fmt/fs).
No class forms in std. These modules ARE host-corpus-exercised, so the empty
snapshot diff is direct validation. Suite green (647 corpus / 444 unit, 0
failed).
2026-06-15 04:35:52 +03:00

86 lines
2.9 KiB
Plaintext

// std/net/kqueue — raw kqueue/kevent bindings (PLAN-HTTPZ S3).
// darwin-only by definition; the linux twin is std/net/epoll (S4) and
// the OS-neutral Loop facade over both is std.event (S5). Import this
// module explicitly — it deliberately does not ride the std.sx barrel.
//
// One kernel queue multiplexes readiness for any number of fds: a
// registered (ident, filter) pair reports through `kevent` when ready,
// and an idle registration costs nothing — the head-of-line-free
// substrate httpz workers stand on.
libc :: #library "c";
// darwin 64-bit struct kevent — 32 bytes:
// uintptr_t ident; int16_t filter; uint16_t flags; uint32_t fflags;
// intptr_t data; void *udata;
// `ident` is the fd for READ/WRITE filters; `udata` is an opaque
// caller word handed back verbatim with each event (connection
// pointer/index in a loop).
Kevent :: struct {
ident: usize = 0;
filter: i16 = 0;
flags: u16 = 0;
fflags: u32 = 0;
data: i64 = 0;
udata: usize = 0;
}
// kevent's timeout — same layout as std.time's Timespec, declared
// locally so the module stands alone.
KqTimespec :: struct {
sec: i64 = 0;
nsec: i64 = 0;
}
kqueue :: () -> i32 extern libc;
kevent :: (kq: i32, changelist: *Kevent, nchanges: i32, eventlist: *Kevent, nevents: i32, timeout: *KqTimespec) -> i32 extern libc;
// Filters (darwin)
EVFILT_READ :i16: -1;
EVFILT_WRITE :i16: -2;
EVFILT_TIMER :i16: -7;
EVFILT_USER :i16: -10;
// EVFILT_USER fflags
NOTE_TRIGGER :u32: 0x01000000;
// Action/state flags (darwin)
EV_ADD :u16: 0x0001;
EV_DELETE :u16: 0x0002;
EV_ENABLE :u16: 0x0004;
EV_DISABLE :u16: 0x0008;
EV_ONESHOT :u16: 0x0010;
EV_CLEAR :u16: 0x0020;
EV_ERROR :u16: 0x4000;
EV_EOF :u16: 0x8000;
// A change entry for one (fd, filter) registration.
kev_change :: (fd: i32, filter: i16, flags: u16, udata: usize) -> Kevent {
return Kevent.{ ident = xx fd, filter = filter, flags = flags, udata = udata };
}
// Apply one registration change immediately (no event drain).
// True on success.
kq_apply :: (kq: i32, change: Kevent) -> bool {
ch := change;
return kevent(kq, @ch, 1, null, 0, null) >= 0;
}
// Drain ready events into `events` (capacity `cap`), waiting at most
// `timeout_ms` (negative = wait forever). Returns the event count
// (0 = timeout); -1 only for a real kevent failure — EINTR is retried.
kq_wait :: (kq: i32, events: *Kevent, cap: i32, timeout_ms: i64) -> i32 {
ts : KqTimespec = .{ sec = timeout_ms / 1000, nsec = (timeout_ms % 1000) * 1000000 };
while true {
n := if timeout_ms < 0
then kevent(kq, null, 0, events, cap, null)
else kevent(kq, null, 0, events, cap, @ts);
if n >= 0 { return n; }
if errno_slot_kq().* != 4 { return -1; } // 4 = EINTR: reissue
}
return -1;
}
// errno, bound locally (the std.socket accessor is module-scoped there).
errno_slot_kq :: () -> *i32 extern libc "__error";