-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[dotnet] [bidi] Provide extension points for custom BiDi modules #15420
base: trunk
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,9 +24,11 @@ | |
using System; | ||
using System.Collections.Concurrent; | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using System.Linq; | ||
using System.Text.Json; | ||
using System.Text.Json.Serialization; | ||
using System.Text.Json.Serialization.Metadata; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
|
@@ -52,7 +54,7 @@ public class Broker : IAsyncDisposable | |
private Task? _eventEmitterTask; | ||
private CancellationTokenSource? _receiveMessagesCancellationTokenSource; | ||
|
||
private readonly BiDiJsonSerializerContext _jsonSerializerContext; | ||
private readonly JsonSerializerOptions _jsonSerializerContext; | ||
|
||
internal Broker(BiDi bidi, ITransport transport) | ||
{ | ||
|
@@ -99,13 +101,29 @@ internal Broker(BiDi bidi, ITransport transport) | |
new Json.Converters.Enumerable.GetUserContextsResultConverter(), | ||
new Json.Converters.Enumerable.GetClientWindowsResultConverter(), | ||
new Json.Converters.Enumerable.GetRealmsResultConverter(), | ||
}, | ||
TypeInfoResolverChain = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think And Appium (who is most likely on top of Selenium), will also provide their own json context, they are still able to define it on top of our default. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems good idea. Then We can: - internal Broker(BiDi bidi, Uri url)
+ internal Broker(SessionModule session, Uri url) Meaning be closer to |
||
{ | ||
BiDiJsonSerializerContext.Default | ||
} | ||
}; | ||
|
||
_jsonSerializerContext = new BiDiJsonSerializerContext(jsonSerializerOptions); | ||
_jsonSerializerContext = jsonSerializerOptions; | ||
} | ||
|
||
[RequiresUnreferencedCode("Uses reflection-based JSON serialization")] | ||
[RequiresDynamicCode("Uses reflection-based JSON serialization")] | ||
public void EnableReflectionBasedJson() | ||
{ | ||
_jsonSerializerContext.TypeInfoResolverChain.Add(new DefaultJsonTypeInfoResolver()); | ||
} | ||
|
||
public void ProvideCustomSerializationContext(JsonSerializerContext extensionContext) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Guidance for users: do not call this method after |
||
{ | ||
_jsonSerializerContext.TypeInfoResolverChain.Add(extensionContext); | ||
} | ||
|
||
public async Task ConnectAsync(CancellationToken cancellationToken) | ||
public async Task ConnectAsync(CancellationToken cancellationToken = default) | ||
{ | ||
await _transport.ConnectAsync(cancellationToken).ConfigureAwait(false); | ||
|
||
|
@@ -120,7 +138,8 @@ private async Task ReceiveMessagesAsync(CancellationToken cancellationToken) | |
{ | ||
var data = await _transport.ReceiveAsync(cancellationToken).ConfigureAwait(false); | ||
|
||
var message = JsonSerializer.Deserialize(new ReadOnlySpan<byte>(data), _jsonSerializerContext.Message); | ||
var messageTypeInfo = (JsonTypeInfo<Message>)_jsonSerializerContext.GetTypeInfo(typeof(Message)); | ||
var message = JsonSerializer.Deserialize(new ReadOnlySpan<byte>(data), messageTypeInfo); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
We know that the |
||
|
||
switch (message) | ||
{ | ||
|
@@ -131,9 +150,9 @@ private async Task ReceiveMessagesAsync(CancellationToken cancellationToken) | |
case MessageEvent messageEvent: | ||
_pendingEvents.Add(messageEvent); | ||
break; | ||
case MessageError mesageError: | ||
_pendingCommands[mesageError.Id].SetException(new BiDiException($"{mesageError.Error}: {mesageError.Message}")); | ||
_pendingCommands.TryRemove(mesageError.Id, out _); | ||
case MessageError messageError: | ||
_pendingCommands[messageError.Id].SetException(new BiDiException($"{messageError.Error}: {messageError.Message}")); | ||
_pendingCommands.TryRemove(messageError.Id, out _); | ||
break; | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BiDi
is not a sealed type, we have to implement theIAsyncDisposable
pattern for types which users may extend.