From 21130c889bd8564b201aa16c8f645abdf85d374a Mon Sep 17 00:00:00 2001 From: vnugent Date: Sun, 31 Mar 2024 17:00:45 -0400 Subject: Squashed commit of the following: commit 448a93bb1d18d032087afe2476ffccb98634a54c Author: vnugent Date: Sun Mar 31 16:56:51 2024 -0400 ci: fix third-party dir cleanup commit 9afed1427472da1ea13079f98dbe27339e55ee7d Author: vnugent Date: Sun Mar 31 16:43:15 2024 -0400 perf: Deprecate unsafememoryhandle span extensions commit 3ff90da4f02af47ea6d233fdd4445337ebe36452 Author: vnugent Date: Sat Mar 30 21:36:18 2024 -0400 refactor: Updates, advanced tracing, http optimizations commit 8d6b79b5ae309b36f265ba81529bcef8bfcd7414 Merge: 6c1667b 5585915 Author: vnugent Date: Sun Mar 24 21:01:31 2024 -0400 Merge branch 'main' into develop commit 6c1667be23597513537f8190e2f55d65eb9b7c7a Author: vnugent Date: Fri Mar 22 12:01:53 2024 -0400 refactor: Overhauled native library loading and lazy init commit ebf688f2f974295beabf7b5def7e6f6f150551d0 Author: vnugent Date: Wed Mar 20 22:16:17 2024 -0400 refactor: Update compression header files and macros + Ci build commit 9c7b564911080ccd5cbbb9851a0757b05e1e9047 Author: vnugent Date: Tue Mar 19 21:54:49 2024 -0400 refactor: JWK overhaul & add length getter to FileUpload commit 6d8c3444e09561e5957491b3cc1ae858e0abdd14 Author: vnugent Date: Mon Mar 18 16:13:20 2024 -0400 feat: Add FNV1a software checksum and basic correction tests commit 00d182088cecefc08ca80b1faee9bed3f215f40b Author: vnugent Date: Fri Mar 15 01:05:27 2024 -0400 chore: #6 Use utils filewatcher instead of built-in commit d513c10d9895c6693519ef1d459c6a5a76929436 Author: vnugent Date: Sun Mar 10 21:58:14 2024 -0400 source tree project location updated --- lib/Utils/src/Async/AsyncAccessSerializer.cs | 43 +++++++++++----------------- lib/Utils/src/Async/AsyncQueue.cs | 12 ++------ 2 files changed, 20 insertions(+), 35 deletions(-) (limited to 'lib/Utils/src/Async') diff --git a/lib/Utils/src/Async/AsyncAccessSerializer.cs b/lib/Utils/src/Async/AsyncAccessSerializer.cs index 76532bc..1beb4dc 100644 --- a/lib/Utils/src/Async/AsyncAccessSerializer.cs +++ b/lib/Utils/src/Async/AsyncAccessSerializer.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2023 Vaughn Nugent +* Copyright (c) 2024 Vaughn Nugent * * Library: VNLib * Package: VNLib.Utils @@ -37,42 +37,35 @@ namespace VNLib.Utils.Async /// Creates a base concrete implementation of an /// /// The moniker (key) type - public class AsyncAccessSerializer : IAsyncAccessSerializer, ICacheHolder where TMoniker : notnull + /// + /// Initializes a new with the desired + /// caching pool size and initial capacity + /// + /// The maxium number of cached wait entry objects + /// The initial capacity of the wait table + /// The moniker key comparer + public class AsyncAccessSerializer(int maxPoolSize, int initialCapacity, IEqualityComparer? keyComparer) + : IAsyncAccessSerializer, ICacheHolder where TMoniker : notnull { /// /// The mutual exclusion monitor locking object /// - protected object StoreLock { get; } + protected object StoreLock { get; } = new(); /// /// A cache pool for /// - protected Stack EntryPool { get; } + protected Stack EntryPool { get; } = new(maxPoolSize); /// /// The table containing all active waiters /// - protected Dictionary WaitTable { get; } + protected Dictionary WaitTable { get; } = new(initialCapacity, keyComparer); /// /// The maxium number of elements allowed in the internal entry cache pool /// - protected int MaxPoolSize { get; } - - /// - /// Initializes a new with the desired - /// caching pool size and initial capacity - /// - /// The maxium number of cached wait entry objects - /// The initial capacity of the wait table - /// The moniker key comparer - public AsyncAccessSerializer(int maxPoolSize, int initialCapacity, IEqualityComparer? keyComparer) - { - MaxPoolSize = maxPoolSize; - StoreLock = new(); - EntryPool = new(maxPoolSize); - WaitTable = new(initialCapacity, keyComparer); - } + protected int MaxPoolSize { get; } = maxPoolSize; /// public virtual Task WaitAsync(TMoniker moniker, CancellationToken cancellation = default) @@ -464,11 +457,9 @@ namespace VNLib.Utils.Async * next task in the queue and be awaitable as a task */ - private sealed class TaskNode : Task + private sealed class TaskNode(Action callback, object item, CancellationToken cancellation) + : Task(callback, item, cancellation) { - public TaskNode(Action callback, object item, CancellationToken cancellation) : base(callback, item, cancellation) - { } - public TaskNode? Next { get; set; } } @@ -500,7 +491,7 @@ namespace VNLib.Utils.Async /// another waiter is not selected. /// /// - /// A value that indicates if the task was transition successfully + /// A value that indicates if the task was transitioned successfully public readonly bool Release() { //return success if no next waiter diff --git a/lib/Utils/src/Async/AsyncQueue.cs b/lib/Utils/src/Async/AsyncQueue.cs index 45f1219..e94d08e 100644 --- a/lib/Utils/src/Async/AsyncQueue.cs +++ b/lib/Utils/src/Async/AsyncQueue.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2023 Vaughn Nugent +* Copyright (c) 2024 Vaughn Nugent * * Library: VNLib * Package: VNLib.Utils @@ -93,19 +93,13 @@ namespace VNLib.Utils.Async /// Initalizes a new unbound channel based queue /// /// Channel options - public AsyncQueue(UnboundedChannelOptions ubOptions) - { - _channel = Channel.CreateUnbounded(ubOptions); - } + public AsyncQueue(UnboundedChannelOptions ubOptions) => _channel = Channel.CreateUnbounded(ubOptions); /// /// Initalizes a new bound channel based queue /// /// Channel options - public AsyncQueue(BoundedChannelOptions options) - { - _channel = Channel.CreateBounded(options); - } + public AsyncQueue(BoundedChannelOptions options) => _channel = Channel.CreateBounded(options); /// public bool TryEnque(T item) => _channel.Writer.TryWrite(item); -- cgit