Split IDDB filtering into a helper method

This commit is contained in:
Matt Nadareski
2024-03-19 14:10:51 -04:00
parent b03628ca9e
commit 6cb8f60917

View File

@@ -858,25 +858,7 @@ namespace SabreTools.DatFiles
foreach (var key in keys) foreach (var key in keys)
#endif #endif
{ {
(long, DatItem)[]? items = GetDatItemsForBucket(key); ExecuteFilterOnBucket(filterRunner, key);
if (items == null)
#if NET40_OR_GREATER || NETCOREAPP
return;
#else
continue;
#endif
// Filter all items in the current key
var newItems = new ConcurrentList<(long, DatItem)>();
foreach (var item in items)
{
if (item.Item2.PassesFilter(filterRunner))
newItems.Add(item);
}
// Set the value in the key to the new set
_buckets[key] = newItems.Select(i => i.Item1).ToConcurrentList();
#if NET40_OR_GREATER || NETCOREAPP #if NET40_OR_GREATER || NETCOREAPP
}); });
#else #else
@@ -884,6 +866,29 @@ namespace SabreTools.DatFiles
#endif #endif
} }
/// <summary>
/// Execute all filters in a filter runner on a single bucket
/// </summary>
/// <param name="filterRunner">Preconfigured filter runner to use</param>
/// <param name="bucketName">Name of the bucket to filter on</param>
private void ExecuteFilterOnBucket(FilterRunner filterRunner, string bucketName)
{
(long, DatItem)[]? items = GetDatItemsForBucket(bucketName);
if (items == null)
return;
// Filter all items in the current key
var newItems = new ConcurrentList<(long, DatItem)>();
foreach (var item in items)
{
if (item.Item2.PassesFilter(filterRunner))
newItems.Add(item);
}
// Set the value in the key to the new set
_buckets[bucketName] = newItems.Select(i => i.Item1).ToConcurrentList();
}
#endregion #endregion
#region Statistics #region Statistics