using System.Collections.Concurrent;
using SPTarkov.DI.Annotations;
using SPTarkov.Server.Core.Helpers;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Services;
[Injectable(InjectionType.Singleton)]
public class RagfairRequiredItemsService(RagfairOfferService ragfairOfferService, PaymentHelper paymentHelper)
{
private bool _cacheIsStale = true;
///
/// Key = tpl
///
protected readonly ConcurrentDictionary> RequiredItemsCache = new();
///
/// Empty hashset to be returned when no keys found by GetRequiredOffersById (reduces memory allocations)
///
protected readonly IReadOnlySet EmptyOfferIdSet = new HashSet();
///
/// Get the offerId of offers that require the supplied tpl
///
/// Tpl to find offers ids for
/// Set of OfferIds
public IReadOnlySet GetRequiredOffersById(MongoId tpl)
{
if (_cacheIsStale)
{
BuildRequiredItemTable();
}
return RequiredItemsCache.TryGetValue(tpl, out var offerIds) ? offerIds : EmptyOfferIdSet;
}
///
/// Create a cache of offer Ids keyed against the item tpl they require
///
public void BuildRequiredItemTable()
{
Clear();
foreach (var offer in ragfairOfferService.GetOffers())
{
foreach (var requirement in offer.Requirements ?? [])
{
// Skip offers for currency, we only need barter offers as this cache is used by `GetOffersThatRequireItem`
if (paymentHelper.IsMoneyTpl(requirement.TemplateId))
{
continue;
}
// Ensure cache has Hashset init for this tpl
var offerIds = RequiredItemsCache.GetOrAdd(requirement.TemplateId, _ => []);
// Add offer id against the tpl key
offerIds.Add(offer.Id);
}
}
// Cache is now fresh
_cacheIsStale = false;
}
///
/// Clear all data from cache
///
public void Clear()
{
RequiredItemsCache.Clear();
}
///
/// Flag the cache as stale
///
public void CacheIsStale()
{
_cacheIsStale = true;
}
}