From 70fac808b0635782bb3da28a2653303ecae0e8b4 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:29:59 -0500 Subject: [PATCH] Use `FrozenDictionary` in `StaticClientStore` (#3833) * Add Benchmark * Use FrozenDictionary * Use TryGetValue * Format --- .../IdentityServer/StaticClientStoreTests.cs | 27 +++++++++++++++++++ src/Identity/IdentityServer/ClientStore.cs | 4 +-- .../IdentityServer/StaticClientStore.cs | 7 ++--- 3 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 perf/MicroBenchmarks/Identity/IdentityServer/StaticClientStoreTests.cs diff --git a/perf/MicroBenchmarks/Identity/IdentityServer/StaticClientStoreTests.cs b/perf/MicroBenchmarks/Identity/IdentityServer/StaticClientStoreTests.cs new file mode 100644 index 0000000000..1fcd6a9f99 --- /dev/null +++ b/perf/MicroBenchmarks/Identity/IdentityServer/StaticClientStoreTests.cs @@ -0,0 +1,27 @@ +using BenchmarkDotNet.Attributes; +using Bit.Core.Settings; +using Bit.Identity.IdentityServer; +using Duende.IdentityServer.Models; + +namespace Bit.MicroBenchmarks.Identity.IdentityServer; + +public class StaticClientStoreTests +{ + private readonly StaticClientStore _store; + + public StaticClientStoreTests() + { + _store = new StaticClientStore(new GlobalSettings()); + } + + [Params("mobile", "connector", "invalid", "a_much_longer_invalid_value_that_i_am_making_up", "WEB", "")] + public string? ClientId { get; set; } + + [Benchmark] + public Client? TryGetValue() + { + return _store.ApiClients.TryGetValue(ClientId, out var client) + ? client + : null; + } +} diff --git a/src/Identity/IdentityServer/ClientStore.cs b/src/Identity/IdentityServer/ClientStore.cs index 19a4f8ffa8..310c0ce98f 100644 --- a/src/Identity/IdentityServer/ClientStore.cs +++ b/src/Identity/IdentityServer/ClientStore.cs @@ -80,9 +80,9 @@ public class ClientStore : IClientStore return await CreateUserClientAsync(clientId); } - if (_staticClientStore.ApiClients.ContainsKey(clientId)) + if (_staticClientStore.ApiClients.TryGetValue(clientId, out var client)) { - return _staticClientStore.ApiClients[clientId]; + return client; } return await CreateApiKeyClientAsync(clientId); diff --git a/src/Identity/IdentityServer/StaticClientStore.cs b/src/Identity/IdentityServer/StaticClientStore.cs index d589ab219e..e6880b7670 100644 --- a/src/Identity/IdentityServer/StaticClientStore.cs +++ b/src/Identity/IdentityServer/StaticClientStore.cs @@ -1,4 +1,5 @@ -using Bit.Core.Enums; +using System.Collections.Frozen; +using Bit.Core.Enums; using Bit.Core.Settings; using Duende.IdentityServer.Models; @@ -16,8 +17,8 @@ public class StaticClientStore new ApiClient(globalSettings, BitwardenClient.Desktop, 30, 1), new ApiClient(globalSettings, BitwardenClient.Cli, 30, 1), new ApiClient(globalSettings, BitwardenClient.DirectoryConnector, 30, 24) - }.ToDictionary(c => c.ClientId); + }.ToFrozenDictionary(c => c.ClientId); } - public IDictionary ApiClients { get; private set; } + public FrozenDictionary ApiClients { get; } }