Andrew Kelley
10b1eef2d3
std: fix compilation errors on Windows
2025-10-29 06:20:50 -07:00
Andrew Kelley
b215f8667a
std.Io.net.HostName.ResolvConf: ignore nameservers above max
2025-10-29 06:20:50 -07:00
Andrew Kelley
83e4ff6f4c
std.Io: add dirClose
2025-10-29 06:20:50 -07:00
Andrew Kelley
21e195a1a9
std: move some windows path checking logic
2025-10-29 06:20:50 -07:00
Andrew Kelley
2d7d98da0c
std.fs: use BadPathName rather than InvalidWtf8 on Windows
2025-10-29 06:20:50 -07:00
Andrew Kelley
97b9cc0adf
aro: avoid asking for the time
...
this value should be calculated earlier and passed in
2025-10-29 06:20:50 -07:00
Andrew Kelley
43c2ba375d
std: accessZ -> access
2025-10-29 06:20:50 -07:00
Andrew Kelley
752d38612f
std.Io.Threaded: fix -fsingle-threaded build
2025-10-29 06:20:50 -07:00
Andrew Kelley
81e7e9fdbb
std.Io: add dirOpenDir and WASI impl
2025-10-29 06:20:50 -07:00
Andrew Kelley
da6b959f64
std.Io.Threaded: implement dirOpenFile for WASI
2025-10-29 06:20:50 -07:00
Andrew Kelley
e87ceb76c2
std.Io.net.Server: refine AcceptError set
2025-10-29 06:20:50 -07:00
Andrew Kelley
cf6fa219fd
std.Io.Threaded: fix netWrite cancellation
...
Move std.posix logic over rather than calling into it.
2025-10-29 06:20:50 -07:00
Andrew Kelley
d4215ffaa0
std.Io.Threaded: implement dirCreateFile for WASI
2025-10-29 06:20:50 -07:00
Andrew Kelley
143127529b
std.Io.Threaded: implement dirMake for WASI
2025-10-29 06:20:50 -07:00
Andrew Kelley
ec9dfc540b
std.Io.Threaded: handle ECANCELED
...
none of these APIs are documented to return this error code, but it
would be cool if they did.
2025-10-29 06:20:50 -07:00
Andrew Kelley
f8ea00bd6d
std.Io: add dirAccess
2025-10-29 06:20:50 -07:00
Andrew Kelley
3bf0ce65a5
fix miscellaneous compilation errors
...
- ILSEQ -> error.BadPathName
- implement dirStatPath for WASI
2025-10-29 06:20:50 -07:00
Andrew Kelley
7b1502f327
std: fix compilation errors on macos
2025-10-29 06:20:50 -07:00
Andrew Kelley
f14c4c3db8
std.Io.net.HostName: fix connectMany not running DNS async
2025-10-29 06:20:50 -07:00
Andrew Kelley
6336d58661
std.Io.Threaded: fix getaddrinfo usage
2025-10-29 06:20:50 -07:00
Andrew Kelley
f7bbcb4a4b
fix miscellaneous compilation failures
2025-10-29 06:20:50 -07:00
Andrew Kelley
22334f5730
std: make IPv6 address parsing system-independent
...
before, the max length of the host name depended on the target.
2025-10-29 06:20:50 -07:00
Andrew Kelley
90fdd21df6
std: move DNS record enum to a better namespace
2025-10-29 06:20:50 -07:00
Andrew Kelley
bf841bb4ae
std.Io.Threaded: implement futexes on darwin
2025-10-29 06:20:50 -07:00
Andrew Kelley
18ec9685fb
std.Io.Threaded: add support for getaddrinfo
...
this API sucks but it's the best we've got on some operating systems
2025-10-29 06:20:49 -07:00
Andrew Kelley
031044b399
std: fix macos compilation errors
2025-10-29 06:20:49 -07:00
Andrew Kelley
bb1bf5b96f
std.Io: stub file writing rather than incorrect impl
2025-10-29 06:20:49 -07:00
Andrew Kelley
1e81c3a925
std.Io: rename EventLoop to IoUring
...
`std.Io.Evented` is introduced to select an appropriate Io
implementation depending on OS
2025-10-29 06:20:49 -07:00
Andrew Kelley
81b1bfbfbb
std.Io.Threaded: wrangle TODOs
2025-10-29 06:20:49 -07:00
Andrew Kelley
060fd975d9
std.Io.Group: add cancellation support to "wait"
2025-10-29 06:20:49 -07:00
Andrew Kelley
10bfbd7d60
std.Io.Threaded: rename from "pool"
2025-10-29 06:20:49 -07:00
Andrew Kelley
870a682cd8
std.Io.net.HostName.connect: fix resource leaks
...
Must free other succeeded connections that lost the race.
2025-10-29 06:20:49 -07:00
Andrew Kelley
426a377c7b
std.Io.net.Stream: add "const" variant to "close"
...
useful for resource management
2025-10-29 06:20:49 -07:00
Andrew Kelley
80069c1e69
std.Io.Queue: add "uncancelable" variants to "get"
...
useful for resource management
2025-10-29 06:20:49 -07:00
Andrew Kelley
adaef433d2
std.net.HostName.connect: rework to avoid waiting for DNS
...
The previous implementation would eagerly attempt TCP connection upon
receiving a DNS reply, but it would still wait for all the DNS results
before returning from the function.
This implementation returns immediately upon first successful TCP
connection, canceling not only in-flight TCP connection attempts but
also unfinished DNS queries.
2025-10-29 06:20:49 -07:00
Andrew Kelley
d3c4158a10
std.Io: implement Select
...
and finish implementation of HostName.connect
2025-10-29 06:20:49 -07:00
Andrew Kelley
35ce907c06
std.Io.net.HostName: move lookup to the interface
...
Unfortunately this can't be implemented "above the vtable" because
various operating systems don't provide low level DNS resolution
primitives such as just putting the list of nameservers in a file.
Without libc on Linux it works great though!
Anyway this also changes the API to be based on Io.Queue. By using a
large enough buffer, reusable code can be written that does not require
concurrent, yet takes advantage of responding to DNS queries as they
come in. I sketched out a new implementation of `HostName.connect` to
demonstrate this, but it will require an additional API (`Io.Select`) to
be implemented in a future commit.
This commit also introduces "uncancelable" variants for mutex locking,
waiting on a condition, and putting items into a queue.
2025-10-29 06:20:49 -07:00
Andrew Kelley
1382e41226
std.Io.Threaded: import std.Io.net
2025-10-29 06:20:49 -07:00
Andrew Kelley
2bcdde2985
compiler: update for introduction of std.Io
...
only thing remaining is using libc dns resolution when linking libc
2025-10-29 06:20:49 -07:00
Andrew Kelley
c2d1a339da
std.fs.File: begrudgingly add back deprecated APIs
...
I'm not ready to rework MachO linker file access at the moment.
2025-10-29 06:20:49 -07:00
Andrew Kelley
0732ff2263
std.Io.Threaded: implement connecting to unix sockets
2025-10-29 06:20:49 -07:00
Andrew Kelley
e8cea8accb
std.Io.Threaded: implement netListenUnix
2025-10-29 06:20:49 -07:00
Andrew Kelley
d680b9e9b2
std.Io.File: add WouldBlock to the error set
...
Even in an asynchronous world, the concept of a non-blocking flag is
useful because it determines under what conditions the operation
completes.
2025-10-29 06:20:49 -07:00
Andrew Kelley
539808239e
std.net: IPv6 parsing fixes
2025-10-29 06:20:49 -07:00
Andrew Kelley
d3f0c460ec
std.Io.net.HostName: fix DNS resolution
...
* merge conflict with changing behavior of takeDelimiterExclusive
* check bounds before adding to result array
2025-10-29 06:20:49 -07:00
Andrew Kelley
923a7bdd7e
std.Io.net: fix parsing IPv4-mapped IPv6 addresses
2025-10-29 06:20:49 -07:00
Andrew Kelley
e0e463bcf7
std.Io.net.Stream.Reader: fix not using buffer
2025-10-29 06:20:49 -07:00
Andrew Kelley
be1ae430a1
std.Io.Threaded.netReadPosix: support cancelation
2025-10-29 06:20:49 -07:00
Andrew Kelley
71ff6e0ef7
std: fix seekBy unit test
2025-10-29 06:20:49 -07:00
Andrew Kelley
d40803284e
progress towards compiler building again
2025-10-29 06:20:49 -07:00