File tree 5 files changed +63
-2
lines changed
5 files changed +63
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ mod generated {
8
8
wasmtime:: component:: bindgen!( {
9
9
path: "wit" ,
10
10
world: "wasi:http/proxy" ,
11
+ features: [ "network-error-code" ] ,
11
12
tracing: true ,
12
13
// Flag this as "possibly async" which will cause the exports to be
13
14
// generated as async, but none of the imports here are async since
@@ -56,6 +57,7 @@ pub mod sync {
56
57
#![ allow( missing_docs) ]
57
58
wasmtime:: component:: bindgen!( {
58
59
world: "wasi:http/proxy" ,
60
+ features: [ "network-error-code" ] ,
59
61
tracing: true ,
60
62
async : false ,
61
63
with: {
Original file line number Diff line number Diff line change 1
1
@since(version = 0.2.0)
2
2
interface network {
3
+ @unstable(feature = network-error-code)
4
+ use wasi :io /error @ 0.2.1 . {error };
5
+
3
6
/// An opaque resource that represents access to (a subset of) the network.
4
7
/// This enables context-based security for networking.
5
8
/// There is no need for this to map 1:1 to a physical network interface.
@@ -105,6 +108,19 @@ interface network {
105
108
permanent-resolver-failure ,
106
109
}
107
110
111
+ /// Attempts to extract a network-related `error-code` from the stream
112
+ /// `error` provided.
113
+ ///
114
+ /// Stream operations which return `stream-error::last-operation-failed`
115
+ /// have a payload with more information about the operation that failed.
116
+ /// This payload can be passed through to this function to see if there's
117
+ /// network-related information about the error to return.
118
+ ///
119
+ /// Note that this function is fallible because not all stream-related
120
+ /// errors are network-related errors.
121
+ @unstable(feature = network-error-code)
122
+ network-error-code : func (err : borrow <error >) -> option <error-code >;
123
+
108
124
@since(version = 0.2.0)
109
125
enum ip-address-family {
110
126
/// Similar to `AF_INET` in POSIX.
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ pub mod sync {
148
148
wasmtime:: component:: bindgen!( {
149
149
path: "wit" ,
150
150
world: "wasi:cli/command" ,
151
+ features: [ "network-error-code" ] ,
151
152
tracing: true ,
152
153
trappable_error_type: {
153
154
"wasi:io/streams/stream-error" => StreamError ,
@@ -326,6 +327,7 @@ mod async_io {
326
327
wasmtime:: component:: bindgen!( {
327
328
path: "wit" ,
328
329
world: "wasi:cli/command" ,
330
+ features: [ "network-error-code" ] ,
329
331
tracing: true ,
330
332
trappable_imports: true ,
331
333
async : {
Original file line number Diff line number Diff line change 15
15
fn convert_error_code ( & mut self , error : SocketError ) -> anyhow:: Result < ErrorCode > {
16
16
error. downcast ( )
17
17
}
18
+
19
+ fn network_error_code (
20
+ & mut self ,
21
+ err : Resource < anyhow:: Error > ,
22
+ ) -> anyhow:: Result < Option < ErrorCode > > {
23
+ let err = self . table ( ) . get ( & err) ?;
24
+
25
+ if let Some ( err) = err. downcast_ref :: < std:: io:: Error > ( ) {
26
+ return Ok ( Some ( ErrorCode :: from ( err) ) ) ;
27
+ }
28
+
29
+ Ok ( None )
30
+ }
18
31
}
19
32
20
33
impl < T > crate :: bindings:: sockets:: network:: HostNetwork for WasiImpl < T >
32
45
33
46
impl From < io:: Error > for ErrorCode {
34
47
fn from ( value : io:: Error ) -> Self {
48
+ ( & value) . into ( )
49
+ }
50
+ }
51
+
52
+ impl From < & io:: Error > for ErrorCode {
53
+ fn from ( value : & io:: Error ) -> Self {
35
54
// Attempt the more detailed native error code first:
36
- if let Some ( errno) = Errno :: from_io_error ( & value) {
55
+ if let Some ( errno) = Errno :: from_io_error ( value) {
37
56
return errno. into ( ) ;
38
57
}
39
58
@@ -62,7 +81,13 @@ impl From<io::Error> for ErrorCode {
62
81
63
82
impl From < Errno > for ErrorCode {
64
83
fn from ( value : Errno ) -> Self {
65
- match value {
84
+ ( & value) . into ( )
85
+ }
86
+ }
87
+
88
+ impl From < & Errno > for ErrorCode {
89
+ fn from ( value : & Errno ) -> Self {
90
+ match * value {
66
91
Errno :: WOULDBLOCK => ErrorCode :: WouldBlock ,
67
92
#[ allow( unreachable_patterns) ] // EWOULDBLOCK and EAGAIN can have the same value.
68
93
Errno :: AGAIN => ErrorCode :: WouldBlock ,
Original file line number Diff line number Diff line change 1
1
@since(version = 0.2.0)
2
2
interface network {
3
+ @unstable(feature = network-error-code)
4
+ use wasi :io /error @ 0.2.1 . {error };
5
+
3
6
/// An opaque resource that represents access to (a subset of) the network.
4
7
/// This enables context-based security for networking.
5
8
/// There is no need for this to map 1:1 to a physical network interface.
@@ -105,6 +108,19 @@ interface network {
105
108
permanent-resolver-failure ,
106
109
}
107
110
111
+ /// Attempts to extract a network-related `error-code` from the stream
112
+ /// `error` provided.
113
+ ///
114
+ /// Stream operations which return `stream-error::last-operation-failed`
115
+ /// have a payload with more information about the operation that failed.
116
+ /// This payload can be passed through to this function to see if there's
117
+ /// network-related information about the error to return.
118
+ ///
119
+ /// Note that this function is fallible because not all stream-related
120
+ /// errors are network-related errors.
121
+ @unstable(feature = network-error-code)
122
+ network-error-code : func (err : borrow <error >) -> option <error-code >;
123
+
108
124
@since(version = 0.2.0)
109
125
enum ip-address-family {
110
126
/// Similar to `AF_INET` in POSIX.
You can’t perform that action at this time.
0 commit comments