Skip to content

Commit 8808137

Browse files
committed
1 parent ca5b8e1 commit 8808137

27 files changed

+9680
-19
lines changed

src/libraries/System.Net.Http/src/System.Net.Http.csproj

+16-1
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,22 @@
452452
Link="Common\System\Net\Http\HttpHandlerDefaults.cs" />
453453
</ItemGroup>
454454

455+
<ItemGroup Condition="'$(TargetPlatformIdentifier)' == 'wasi'">
456+
<Reference Include="System.Threading.Thread" />
457+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpHandler.cs" />
458+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttp.cs" />
459+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.clocks.v0_2_0.MonotonicClockInterop.cs" />
460+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.http.v0_2_0.ITypes.cs" />
461+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.http.v0_2_0.OutgoingHandlerInterop.cs" />
462+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.http.v0_2_0.TypesInterop.cs" />
463+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.ErrorInterop.cs" />
464+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.IError.cs" />
465+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.IPoll.cs" />
466+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.IStreams.cs" />
467+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.PollInterop.cs" />
468+
<Compile Include="System\Net\Http\WasiHttpHandler\WasiHttpWorld.wit.imports.wasi.io.v0_2_0.StreamsInterop.cs" />
469+
</ItemGroup>
470+
455471
<ItemGroup>
456472
<Reference Include="Microsoft.Win32.Primitives" />
457473
<Reference Include="System.Collections.NonGeneric" />
@@ -505,5 +521,4 @@
505521
<ItemGroup>
506522
<None Include="Resources\SR.resx" />
507523
</ItemGroup>
508-
509524
</Project>

src/libraries/System.Net.Http/src/System/Net/Http/HttpClientHandler.cs

+11-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
using System.Threading;
1111
using System.Threading.Tasks;
1212
using System.Diagnostics.Metrics;
13-
#if TARGET_BROWSER
13+
#if TARGET_WASI
14+
using System.Diagnostics;
15+
using System.Net.Http.Metrics;
16+
using HttpHandlerType = System.Net.Http.WasiHttpHandler;
17+
#elif TARGET_BROWSER
1418
using System.Diagnostics;
1519
using System.Net.Http.Metrics;
1620
using HttpHandlerType = System.Net.Http.BrowserHttpHandler;
@@ -24,7 +28,7 @@ public partial class HttpClientHandler : HttpMessageHandler
2428
{
2529
private readonly HttpHandlerType _underlyingHandler;
2630

27-
#if TARGET_BROWSER
31+
#if TARGET_BROWSER || TARGET_WASI
2832
private IMeterFactory? _meterFactory;
2933
private MetricsHandler? _metricsHandler;
3034

@@ -90,7 +94,7 @@ protected override void Dispose(bool disposing)
9094
[CLSCompliant(false)]
9195
public IMeterFactory? MeterFactory
9296
{
93-
#if TARGET_BROWSER
97+
#if TARGET_BROWSER || TARGET_WASI
9498
get => _meterFactory;
9599
set
96100
{
@@ -258,14 +262,14 @@ public ClientCertificateOption ClientCertificateOptions
258262
switch (value)
259263
{
260264
case ClientCertificateOption.Manual:
261-
#if !TARGET_BROWSER
265+
#if !(TARGET_BROWSER || TARGET_WASI)
262266
ThrowForModifiedManagedSslOptionsIfStarted();
263267
_underlyingHandler.SslOptions.LocalCertificateSelectionCallback = (sender, targetHost, localCertificates, remoteCertificate, acceptableIssuers) => CertificateHelper.GetEligibleClientCertificate(_underlyingHandler.SslOptions.ClientCertificates)!;
264268
#endif
265269
break;
266270

267271
case ClientCertificateOption.Automatic:
268-
#if !TARGET_BROWSER
272+
#if !(TARGET_BROWSER || TARGET_WASI)
269273
ThrowForModifiedManagedSslOptionsIfStarted();
270274
_underlyingHandler.SslOptions.LocalCertificateSelectionCallback = (sender, targetHost, localCertificates, remoteCertificate, acceptableIssuers) => CertificateHelper.GetEligibleClientCertificate()!;
271275
#endif
@@ -296,7 +300,7 @@ public X509CertificateCollection ClientCertificates
296300
[UnsupportedOSPlatform("browser")]
297301
public Func<HttpRequestMessage, X509Certificate2?, X509Chain?, SslPolicyErrors, bool>? ServerCertificateCustomValidationCallback
298302
{
299-
#if TARGET_BROWSER
303+
#if TARGET_BROWSER || TARGET_WASI
300304
get => throw new PlatformNotSupportedException();
301305
set => throw new PlatformNotSupportedException();
302306
#else
@@ -345,7 +349,7 @@ public SslProtocols SslProtocols
345349
//[UnsupportedOSPlatform("tvos")]
346350
protected internal override HttpResponseMessage Send(HttpRequestMessage request, CancellationToken cancellationToken)
347351
{
348-
#if TARGET_BROWSER
352+
#if TARGET_BROWSER || TARGET_WASI
349353
throw new PlatformNotSupportedException();
350354
#else
351355
ArgumentNullException.ThrowIfNull(request);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
// Generated by `wit-bindgen` 0.26.0. DO NOT EDIT!
2+
// <auto-generated />
3+
#nullable enable
4+
using System;
5+
using System.Runtime.CompilerServices;
6+
using System.Collections;
7+
using System.Runtime.InteropServices;
8+
using System.Text;
9+
using System.Collections.Generic;
10+
using System.Diagnostics;
11+
using System.Diagnostics.CodeAnalysis;
12+
13+
namespace WasiHttpWorld {
14+
15+
internal interface IWasiHttpWorld {
16+
}
17+
18+
internal readonly struct None {}
19+
20+
[StructLayout(LayoutKind.Sequential)]
21+
internal readonly struct Result<Ok, Err>
22+
{
23+
internal readonly byte Tag;
24+
private readonly object value;
25+
26+
private Result(byte tag, object value)
27+
{
28+
Tag = tag;
29+
this.value = value;
30+
}
31+
32+
internal static Result<Ok, Err> ok(Ok ok)
33+
{
34+
return new Result<Ok, Err>(OK, ok!);
35+
}
36+
37+
internal static Result<Ok, Err> err(Err err)
38+
{
39+
return new Result<Ok, Err>(ERR, err!);
40+
}
41+
42+
internal bool IsOk => Tag == OK;
43+
internal bool IsErr => Tag == ERR;
44+
45+
internal Ok AsOk
46+
{
47+
get
48+
{
49+
if (Tag == OK)
50+
return (Ok)value;
51+
else
52+
throw new ArgumentException("expected OK, got " + Tag);
53+
}
54+
}
55+
56+
internal Err AsErr
57+
{
58+
get
59+
{
60+
if (Tag == ERR)
61+
return (Err)value;
62+
else
63+
throw new ArgumentException("expected ERR, got " + Tag);
64+
}
65+
}
66+
67+
internal const byte OK = 0;
68+
internal const byte ERR = 1;
69+
}
70+
71+
internal class Option<T> {
72+
private static Option<T> none = new ();
73+
74+
private Option()
75+
{
76+
HasValue = false;
77+
}
78+
79+
internal Option(T v)
80+
{
81+
HasValue = true;
82+
Value = v;
83+
}
84+
85+
internal static Option<T> None => none;
86+
87+
[MemberNotNullWhen(true, nameof(Value))]
88+
internal bool HasValue { get; }
89+
90+
internal T? Value { get; }
91+
}
92+
93+
internal static class InteropString
94+
{
95+
internal static IntPtr FromString(string input, out int length)
96+
{
97+
var utf8Bytes = Encoding.UTF8.GetBytes(input);
98+
length = utf8Bytes.Length;
99+
var gcHandle = GCHandle.Alloc(utf8Bytes, GCHandleType.Pinned);
100+
return gcHandle.AddrOfPinnedObject();
101+
}
102+
}
103+
104+
internal class WitException: Exception {
105+
internal object Value { get; }
106+
internal uint NestingLevel { get; }
107+
108+
internal WitException(object v, uint level)
109+
{
110+
Value = v;
111+
NestingLevel = level;
112+
}
113+
}
114+
115+
namespace exports {
116+
internal static class WasiHttpWorld
117+
{
118+
}
119+
}
120+
121+
}

0 commit comments

Comments
 (0)