You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1444 lines
54 KiB
1444 lines
54 KiB
5 years ago
|
// Needed for NET40
|
||
|
#if !NET_4_6
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading;
|
||
|
using LinqInternal.Collections.Specialized;
|
||
|
|
||
|
namespace LinqInternal.Collections.ThreadSafe
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Represent a thread-safe lock-free hash based dictionary.
|
||
|
/// </summary>
|
||
|
/// <typeparam name="TKey">The type of the key.</typeparam>
|
||
|
/// <typeparam name="TValue">The type of the value.</typeparam>
|
||
|
/// <remarks>
|
||
|
/// Consider wrapping this class to implement <see cref="IDictionary{TKey, TValue}" /> or any other desired interface.
|
||
|
/// </remarks>
|
||
|
[Serializable]
|
||
|
internal sealed partial class SafeDictionary<TKey, TValue> : IDictionary<TKey, TValue>
|
||
|
{
|
||
|
private const int _defaultProbing = 1;
|
||
|
|
||
|
private readonly KeyCollection<TKey, TValue> _keyCollection;
|
||
|
private readonly IEqualityComparer<TKey> _keyComparer;
|
||
|
private readonly ValueCollection<TKey, TValue> _valueCollection;
|
||
|
private readonly IEqualityComparer<TValue> _valueComparer;
|
||
|
private Bucket<KeyValuePair<TKey, TValue>> _bucket;
|
||
|
private int _probing;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="SafeDictionary{TKey,TValue}" /> class.
|
||
|
/// </summary>
|
||
|
public SafeDictionary()
|
||
|
: this(EqualityComparer<TKey>.Default, _defaultProbing)
|
||
|
{
|
||
|
// Empty
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="SafeDictionary{TKey,TValue}" /> class.
|
||
|
/// </summary>
|
||
|
/// <param name="initialProbing">The number of steps in linear probing.</param>
|
||
|
public SafeDictionary(int initialProbing)
|
||
|
: this(EqualityComparer<TKey>.Default, initialProbing)
|
||
|
{
|
||
|
// Empty
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="SafeDictionary{TKey,TValue}" /> class.
|
||
|
/// </summary>
|
||
|
/// <param name="comparer">The key comparer.</param>
|
||
|
public SafeDictionary(IEqualityComparer<TKey> comparer)
|
||
|
: this(comparer, _defaultProbing)
|
||
|
{
|
||
|
// Empty
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="SafeDictionary{TKey,TValue}" /> class.
|
||
|
/// </summary>
|
||
|
/// <param name="comparer">The key comparer.</param>
|
||
|
/// <param name="initialProbing">The number of steps in linear probing.</param>
|
||
|
public SafeDictionary(IEqualityComparer<TKey> comparer, int initialProbing)
|
||
|
{
|
||
|
_keyComparer = comparer ?? EqualityComparer<TKey>.Default;
|
||
|
_valueComparer = EqualityComparer<TValue>.Default;
|
||
|
_bucket = new Bucket<KeyValuePair<TKey, TValue>>();
|
||
|
_probing = initialProbing;
|
||
|
_keyCollection = new KeyCollection<TKey, TValue>(this);
|
||
|
_valueCollection = new ValueCollection<TKey, TValue>(this);
|
||
|
}
|
||
|
|
||
|
public int Count
|
||
|
{
|
||
|
get { return _bucket.Count; }
|
||
|
}
|
||
|
|
||
|
bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly
|
||
|
{
|
||
|
get { return false; }
|
||
|
}
|
||
|
|
||
|
public IEqualityComparer<TKey> KeyComparer
|
||
|
{
|
||
|
get { return _keyComparer; }
|
||
|
}
|
||
|
|
||
|
public ICollection<TKey> Keys
|
||
|
{
|
||
|
get { return _keyCollection; }
|
||
|
}
|
||
|
|
||
|
public ICollection<TValue> Values
|
||
|
{
|
||
|
get { return _valueCollection; }
|
||
|
}
|
||
|
|
||
|
public TValue this[TKey key]
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
TValue value;
|
||
|
if (TryGetValue(key, out value))
|
||
|
{
|
||
|
return value;
|
||
|
}
|
||
|
throw new KeyNotFoundException();
|
||
|
}
|
||
|
|
||
|
set { Set(key, value); }
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Adds the specified key and associated value.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <exception cref="System.ArgumentException">An item with the same key has already been added</exception>
|
||
|
public void AddNew(TKey key, TValue value)
|
||
|
{
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.Insert(hashCode + attempts, insertPair, out found))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
throw new ArgumentException("An item with the same key has already been added", "key");
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes all the elements.
|
||
|
/// </summary>
|
||
|
public void Clear()
|
||
|
{
|
||
|
Interlocked.Exchange(ref _bucket, _bucket = new Bucket<KeyValuePair<TKey, TValue>>());
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes all the elements.
|
||
|
/// </summary>
|
||
|
/// <returns>Returns the removed pairs.</returns>
|
||
|
public IEnumerable<KeyValuePair<TKey, TValue>> ClearEnumerable()
|
||
|
{
|
||
|
return Interlocked.Exchange(ref _bucket, _bucket = new Bucket<KeyValuePair<TKey, TValue>>());
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Determines whether the specified key is contained.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key is contained; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool ContainsKey(TKey key)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Determines whether the specified key is contained.
|
||
|
/// </summary>
|
||
|
/// <param name="hashCode">The hash code to look for.</param>
|
||
|
/// <param name="keyCheck">The key predicate.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key is contained; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool ContainsKey(int hashCode, Predicate<TKey> keyCheck)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (GetHashCode(found.Key) == hashCode && keyCheck(found.Key))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Determines whether the specified key is contained.
|
||
|
/// </summary>
|
||
|
/// <param name="hashCode">The hash code to look for.</param>
|
||
|
/// <param name="keyCheck">The key predicate.</param>
|
||
|
/// <param name="valueCheck">The value predicate.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key is contained; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool ContainsKey(int hashCode, Predicate<TKey> keyCheck, Predicate<TValue> valueCheck)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (GetHashCode(found.Key) == hashCode && keyCheck(found.Key) && valueCheck(found.Value))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Copies the items to a compatible one-dimensional array, starting at the specified index of the target array.
|
||
|
/// </summary>
|
||
|
/// <param name="array">The array.</param>
|
||
|
/// <param name="arrayIndex">Index of the array.</param>
|
||
|
/// <exception cref="System.ArgumentNullException">array</exception>
|
||
|
/// <exception cref="System.ArgumentOutOfRangeException">arrayIndex;Non-negative number is required.</exception>
|
||
|
/// <exception cref="System.ArgumentException">array;The array can not contain the number of elements.</exception>
|
||
|
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
|
||
|
{
|
||
|
_bucket.CopyTo(array, arrayIndex);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns an <see cref="System.Collections.Generic.IEnumerator{T}" /> that allows to iterate through the collection.
|
||
|
/// </summary>
|
||
|
/// <returns>
|
||
|
/// An <see cref="System.Collections.Generic.IEnumerator{T}" /> object that can be used to iterate through the collection.
|
||
|
/// </returns>
|
||
|
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
|
||
|
{
|
||
|
return _bucket.GetEnumerator();
|
||
|
}
|
||
|
|
||
|
public TValue GetOrAdd(TKey key, Func<TKey, TValue> valueFactory)
|
||
|
{
|
||
|
if (valueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> storedPair;
|
||
|
if (_bucket.TryGetOrInsert(hashCode + attempts, () => new KeyValuePair<TKey, TValue>(key, valueFactory(key)), out storedPair))
|
||
|
{
|
||
|
return storedPair.Value;
|
||
|
}
|
||
|
if (_keyComparer.Equals(storedPair.Key, key))
|
||
|
{
|
||
|
return storedPair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public TValue GetOrAdd(TKey key, TValue value)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> storedPair;
|
||
|
if (_bucket.TryGetOrInsert(hashCode + attempts, insertPair, out storedPair))
|
||
|
{
|
||
|
return storedPair.Value;
|
||
|
}
|
||
|
if (_keyComparer.Equals(storedPair.Key, key))
|
||
|
{
|
||
|
return storedPair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the pairs contained in this object.
|
||
|
/// </summary>
|
||
|
/// <returns>The pairs contained in this object</returns>
|
||
|
public IList<KeyValuePair<TKey, TValue>> GetPairs()
|
||
|
{
|
||
|
var result = new List<KeyValuePair<TKey, TValue>>(_bucket.Count);
|
||
|
result.AddRange(_bucket);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item)
|
||
|
{
|
||
|
AddNew(item.Key, item.Value);
|
||
|
}
|
||
|
|
||
|
bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item)
|
||
|
{
|
||
|
var hashCode = GetHashCode(item.Key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, item.Key))
|
||
|
{
|
||
|
if (_valueComparer.Equals(found.Value, item.Value))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item)
|
||
|
{
|
||
|
var hashCode = GetHashCode(item.Key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, item.Key))
|
||
|
{
|
||
|
done = true;
|
||
|
if (_valueComparer.Equals(found.Value, item.Value))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
void IDictionary<TKey, TValue>.Add(TKey key, TValue value)
|
||
|
{
|
||
|
AddNew(key, value);
|
||
|
}
|
||
|
|
||
|
IEnumerator IEnumerable.GetEnumerator()
|
||
|
{
|
||
|
return GetEnumerator();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key was removed; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool Remove(TKey key)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
done = true;
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
check
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key was removed; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool Remove(TKey key, out TValue value)
|
||
|
{
|
||
|
value = default(TValue);
|
||
|
var hashCode = GetHashCode(key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
var previous = default(KeyValuePair<TKey, TValue>);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
previous = found;
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
done = true;
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
check
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
value = previous.Value;
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes a key by hash code and a key predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="hashCode">The hash code to look for.</param>
|
||
|
/// <param name="keyCheck">The key predicate.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key was removed; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool Remove(int hashCode, Predicate<TKey> keyCheck, out TValue value)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
value = default(TValue);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
var previous = default(KeyValuePair<TKey, TValue>);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
previous = found;
|
||
|
if (GetHashCode(found.Key) == hashCode && keyCheck(found.Key))
|
||
|
{
|
||
|
done = true;
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
check
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
value = previous.Value;
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes a key by hash code, key predicate and value predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="valueCheck">The value predicate.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key was removed; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool Remove(TKey key, Predicate<TValue> valueCheck, out TValue value)
|
||
|
{
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
value = default(TValue);
|
||
|
var hashCode = GetHashCode(key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
var previous = default(KeyValuePair<TKey, TValue>);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
previous = found;
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
done = true;
|
||
|
if (valueCheck(found.Value))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
check
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
value = previous.Value;
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes a key by hash code, key predicate and value predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="hashCode">The hash code to look for.</param>
|
||
|
/// <param name="keyCheck">The key predicate.</param>
|
||
|
/// <param name="valueCheck">The value predicate.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key was removed; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool Remove(int hashCode, Predicate<TKey> keyCheck, Predicate<TValue> valueCheck, out TValue value)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
value = default(TValue);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var done = false;
|
||
|
var previous = default(KeyValuePair<TKey, TValue>);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
previous = found;
|
||
|
if (GetHashCode(found.Key) == hashCode && keyCheck(found.Key))
|
||
|
{
|
||
|
done = true;
|
||
|
if (valueCheck(found.Value))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
var result = _bucket.RemoveAt
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
check
|
||
|
);
|
||
|
if (done)
|
||
|
{
|
||
|
value = previous.Value;
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the keys and associated values where the key satisfies the predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="keyCheck">The predicate.</param>
|
||
|
/// <returns>
|
||
|
/// The number or removed pairs of keys and associated values.
|
||
|
/// </returns>
|
||
|
/// <remarks>
|
||
|
/// It is not guaranteed that all the pairs of keys and associated values that satisfies the predicate will be removed.
|
||
|
/// </remarks>
|
||
|
public int RemoveWhereKey(Predicate<TKey> keyCheck)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
var matches = _bucket.Where(pair => keyCheck(pair.Key));
|
||
|
return matches.Count(pair => Remove(pair.Key));
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the keys and associated values where the key satisfies the predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="keyCheck">The predicate.</param>
|
||
|
/// <returns>
|
||
|
/// An <see cref="IEnumerable{TValue}" /> that allows to iterate over the values of the removed pairs.
|
||
|
/// </returns>
|
||
|
/// <remarks>
|
||
|
/// It is not guaranteed that all the pairs of keys and associated values that satisfies the predicate will be removed.
|
||
|
/// </remarks>
|
||
|
public IEnumerable<TValue> RemoveWhereKeyEnumerable(Predicate<TKey> keyCheck)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
var matches = _bucket.Where(pair => keyCheck(pair.Key));
|
||
|
return from pair in matches where Remove(pair.Key) select pair.Value;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the keys and associated values where the value satisfies the predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="valueCheck">The predicate.</param>
|
||
|
/// <returns>
|
||
|
/// The number or removed pairs of keys and associated values.
|
||
|
/// </returns>
|
||
|
/// <remarks>
|
||
|
/// It is not guaranteed that all the pairs of keys and associated values that satisfies the predicate will be removed.
|
||
|
/// </remarks>
|
||
|
public int RemoveWhereValue(Predicate<TValue> valueCheck)
|
||
|
{
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
var matches = _bucket.Where(pair => valueCheck(pair.Value));
|
||
|
return matches.Count(pair => Remove(pair.Key));
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Removes the keys and associated values where the value satisfies the predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="valueCheck">The predicate.</param>
|
||
|
/// <returns>
|
||
|
/// An <see cref="IEnumerable{TValue}" /> that allows to iterate over the values of the removed pairs.
|
||
|
/// </returns>
|
||
|
/// <remarks>
|
||
|
/// It is not guaranteed that all the pairs of keys and associated values that satisfies the predicate will be removed.
|
||
|
/// </remarks>
|
||
|
public IEnumerable<TValue> RemoveWhereValueEnumerable(Predicate<TValue> valueCheck)
|
||
|
{
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
var matches = _bucket.Where(pair => valueCheck(pair.Value));
|
||
|
return from pair in matches where Remove(pair.Key) select pair.Value;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sets the value associated with the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
public void Set(TKey key, TValue value)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
bool isNew;
|
||
|
if (_bucket.InsertOrUpdate(hashCode + attempts, insertPair, found => _keyComparer.Equals(found.Key, key), out isNew))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sets the value associated with the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <param name="isNew">if set to <c>true</c> the item value was set.</param>
|
||
|
public void Set(TKey key, TValue value, out bool isNew)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
if (_bucket.InsertOrUpdate(hashCode + attempts, insertPair, found => _keyComparer.Equals(found.Key, key), out isNew))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Attempts to add the specified key and associated value. The value is added if the key is not found.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key and associated value were added; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool TryAdd(TKey key, TValue value)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.Insert(hashCode + attempts, insertPair, out found))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Attempts to add the specified key and associated value. The value is added if the key is not found.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <param name="stored">The stored pair independently of success.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key and associated value were added; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool TryAdd(TKey key, TValue value, out KeyValuePair<TKey, TValue> stored)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
if (_bucket.Insert(hashCode + attempts, insertPair, out stored))
|
||
|
{
|
||
|
stored = insertPair;
|
||
|
return true;
|
||
|
}
|
||
|
if (_keyComparer.Equals(stored.Key, key))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public bool TryGetOrAdd(TKey key, TValue value, out TValue stored)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> storedPair;
|
||
|
if (_bucket.TryGetOrInsert(hashCode + attempts, insertPair, out storedPair))
|
||
|
{
|
||
|
stored = storedPair.Value;
|
||
|
return true;
|
||
|
}
|
||
|
if (_keyComparer.Equals(storedPair.Key, key))
|
||
|
{
|
||
|
stored = storedPair.Value;
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public bool TryGetOrAdd(TKey key, Func<TKey, TValue> valueFactory, out TValue stored)
|
||
|
{
|
||
|
if (valueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentException("valueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
KeyValuePair<TKey, TValue> storedPair;
|
||
|
if (_bucket.TryGetOrInsert(hashCode + attempts, () => new KeyValuePair<TKey, TValue>(key, valueFactory(key)), out storedPair))
|
||
|
{
|
||
|
stored = storedPair.Value;
|
||
|
return true;
|
||
|
}
|
||
|
if (_keyComparer.Equals(storedPair.Key, key))
|
||
|
{
|
||
|
stored = storedPair.Value;
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Tries to retrieve the value associated with the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the value was retrieved; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool TryGetValue(TKey key, out TValue value)
|
||
|
{
|
||
|
value = default(TValue);
|
||
|
var hashCode = GetHashCode(key);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
value = found.Value;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public bool TryUpdate(TKey key, TValue newValue, TValue comparisonValue)
|
||
|
{
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, newValue);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var keyMatch = false;
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
keyMatch = _keyComparer.Equals(found.Key, key);
|
||
|
return keyMatch && _valueComparer.Equals(found.Value, comparisonValue);
|
||
|
};
|
||
|
if (_bucket.Update(hashCode + attempts, insertPair, check))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
if (keyMatch)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public bool TryUpdate(TKey key, TValue newValue, Predicate<TValue> valueCheck)
|
||
|
{
|
||
|
if (valueCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("valueCheck");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, newValue);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
var keyMatch = false;
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
keyMatch = _keyComparer.Equals(found.Key, key);
|
||
|
return keyMatch && valueCheck(found.Value);
|
||
|
};
|
||
|
bool isEmpty;
|
||
|
if (_bucket.Update(hashCode + attempts, _ => insertPair, check, out isEmpty))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
if (keyMatch)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns the values where the key satisfies the predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="keyCheck">The predicate.</param>
|
||
|
/// <returns>
|
||
|
/// An <see cref="IEnumerable{TValue}" /> that allows to iterate over the values of the matched pairs.
|
||
|
/// </returns>
|
||
|
/// <remarks>
|
||
|
/// It is not guaranteed that all the pairs of keys and associated values that satisfies the predicate will be returned.
|
||
|
/// </remarks>
|
||
|
public IEnumerable<TValue> Where(Predicate<TKey> keyCheck)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
var matches = _bucket.Where(pair => keyCheck(pair.Key));
|
||
|
return matches.Select(pair => pair.Value);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Adds the specified key and associated value.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="keyOverwriteCheck">The key predicate to approve overwriting.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <exception cref="System.ArgumentException">An item with the same key has already been added</exception>
|
||
|
internal void AddNew(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
// This is the item that has been stored with the key
|
||
|
// Throw to abort overwrite
|
||
|
throw CreateKeyArgumentException(null); // This exception will buble up to the context where "key" is an argument.
|
||
|
}
|
||
|
// This is not the key, overwrite?
|
||
|
return keyOverwriteCheck(found.Key);
|
||
|
};
|
||
|
// No try-catch - let the exception go.
|
||
|
bool isNew;
|
||
|
// InsertOrUpdate will add if no item is found, otherwise it calls check
|
||
|
_bucket.InsertOrUpdate(hashCode + attempts, insertPair, check, out isNew);
|
||
|
if (isNew)
|
||
|
{
|
||
|
// It added a new item
|
||
|
return;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sets the value associated with the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="keyOverwriteCheck">The key predicate to approve overwriting.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
internal void Set(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
bool isNew;
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(found.Key, key) || keyOverwriteCheck(found.Key);
|
||
|
if (_bucket.InsertOrUpdate(hashCode + attempts, insertPair, check, out isNew))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sets the value associated with the specified key.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="keyOverwriteCheck">The key predicate to approve overwriting.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <param name="isNew">if set to <c>true</c> the item value was set.</param>
|
||
|
internal void Set(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value, out bool isNew)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(found.Key, key) || keyOverwriteCheck(found.Key);
|
||
|
if (_bucket.InsertOrUpdate(hashCode + attempts, insertPair, check, out isNew))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Attempts to add the specified key and associated value. The value is added if the key is not found.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="keyOverwriteCheck">The key predicate to approve overwriting.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key and associated value were added; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
internal bool TryAdd(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
// This is the item that has been stored with the key
|
||
|
// Throw to abort overwrite
|
||
|
throw CreateKeyArgumentException(null); // This exception will buble up to the context where "key" is an argument.
|
||
|
}
|
||
|
// This is not the key, overwrite?
|
||
|
return keyOverwriteCheck(found.Key);
|
||
|
};
|
||
|
try
|
||
|
{
|
||
|
bool isNew;
|
||
|
// InsertOrUpdate will add if no item is found, otherwise it calls check
|
||
|
_bucket.InsertOrUpdate(hashCode + attempts, insertPair, check, out isNew);
|
||
|
if (isNew)
|
||
|
{
|
||
|
// It added a new item
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
catch (ArgumentException)
|
||
|
{
|
||
|
// An item with the same key has already been added
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal bool TryGetOrAdd(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value, out TValue stored)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
// This is the item that has been stored with the key
|
||
|
value = found.Value;
|
||
|
// Throw to abort overwrite
|
||
|
throw CreateKeyArgumentException(null); // This exception will buble up to the context where "key" is an argument.
|
||
|
}
|
||
|
// This is not the key, overwrite?
|
||
|
return keyOverwriteCheck(found.Key);
|
||
|
};
|
||
|
try
|
||
|
{
|
||
|
bool isNew;
|
||
|
// InsertOrUpdate will add if no item is found, otherwise it calls check
|
||
|
_bucket.InsertOrUpdate(hashCode + attempts, insertPair, check, out isNew);
|
||
|
if (isNew)
|
||
|
{
|
||
|
// It added a new item
|
||
|
stored = value;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
catch (ArgumentException)
|
||
|
{
|
||
|
// An item with the same key has already been added
|
||
|
// Return it
|
||
|
stored = value;
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void ExtendProbingIfNeeded(int attempts)
|
||
|
{
|
||
|
var diff = 1 + attempts - _probing;
|
||
|
if (diff > 0)
|
||
|
{
|
||
|
Interlocked.Add(ref _probing, diff);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private int GetHashCode(TKey key)
|
||
|
{
|
||
|
var hashCode = _keyComparer.GetHashCode(key);
|
||
|
if (hashCode < 0)
|
||
|
{
|
||
|
hashCode = -hashCode;
|
||
|
}
|
||
|
// -int.MinValue == int.MinValue
|
||
|
if (hashCode < 0)
|
||
|
{
|
||
|
hashCode = 0;
|
||
|
}
|
||
|
return hashCode;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal sealed partial class SafeDictionary<TKey, TValue>
|
||
|
{
|
||
|
public TValue AddOrUpdate(TKey key, Func<TKey, TValue> addValueFactory, Func<TKey, TValue, TValue> updateValueFactory)
|
||
|
{
|
||
|
if (addValueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("addValueFactory");
|
||
|
}
|
||
|
if (updateValueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("updateValueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
var insertPair = default(KeyValuePair<TKey, TValue>);
|
||
|
var updatePair = default(KeyValuePair<TKey, TValue>);
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
bool isNew;
|
||
|
Func<KeyValuePair<TKey, TValue>> itemFactory = () =>
|
||
|
{
|
||
|
return insertPair = new KeyValuePair<TKey, TValue>(key, addValueFactory(key));
|
||
|
};
|
||
|
Func<KeyValuePair<TKey, TValue>, KeyValuePair<TKey, TValue>> itemUpdateFactory = found =>
|
||
|
{
|
||
|
return updatePair = new KeyValuePair<TKey, TValue>(key, updateValueFactory(found.Key, found.Value));
|
||
|
};
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(key, found.Key);
|
||
|
var result = _bucket.InsertOrUpdate
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
itemFactory,
|
||
|
itemUpdateFactory,
|
||
|
check,
|
||
|
out isNew
|
||
|
);
|
||
|
if (result)
|
||
|
{
|
||
|
return isNew ? insertPair.Value : updatePair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public TValue AddOrUpdate(TKey key, TValue addValue, Func<TKey, TValue, TValue> updateValueFactory)
|
||
|
{
|
||
|
if (updateValueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("updateValueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, addValue);
|
||
|
var updatePair = default(KeyValuePair<TKey, TValue>);
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
bool isNew;
|
||
|
Func<KeyValuePair<TKey, TValue>, KeyValuePair<TKey, TValue>> updateFactory = found =>
|
||
|
{
|
||
|
return updatePair = new KeyValuePair<TKey, TValue>(key, updateValueFactory(found.Key, found.Value));
|
||
|
};
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(key, found.Key);
|
||
|
var result = _bucket.InsertOrUpdate
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
insertPair,
|
||
|
updateFactory,
|
||
|
check,
|
||
|
out isNew
|
||
|
);
|
||
|
if (result)
|
||
|
{
|
||
|
return isNew ? insertPair.Value : updatePair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public TValue AddOrUpdate(TKey key, Func<TKey, TValue> addValueFactory, Func<TKey, TValue, TValue> updateValueFactory, out bool isNew)
|
||
|
{
|
||
|
if (addValueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("addValueFactory");
|
||
|
}
|
||
|
if (updateValueFactory == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("updateValueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
var insertPair = default(KeyValuePair<TKey, TValue>);
|
||
|
var updatePair = default(KeyValuePair<TKey, TValue>);
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Func<KeyValuePair<TKey, TValue>> valueFactory = () =>
|
||
|
{
|
||
|
return insertPair = new KeyValuePair<TKey, TValue>(key, addValueFactory(key));
|
||
|
};
|
||
|
Func<KeyValuePair<TKey, TValue>, KeyValuePair<TKey, TValue>> updateFactory = found =>
|
||
|
{
|
||
|
return updatePair = new KeyValuePair<TKey, TValue>(key, updateValueFactory(found.Key, found.Value));
|
||
|
};
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(key, found.Key);
|
||
|
var result = _bucket.InsertOrUpdate
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
valueFactory,
|
||
|
updateFactory,
|
||
|
check,
|
||
|
out isNew
|
||
|
);
|
||
|
if (result)
|
||
|
{
|
||
|
return isNew ? insertPair.Value : updatePair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public TValue AddOrUpdate(TKey key, TValue addValue, Func<TKey, TValue, TValue> updateValueFactory, out bool isNew)
|
||
|
{
|
||
|
if (ReferenceEquals(updateValueFactory, null))
|
||
|
{
|
||
|
throw new ArgumentNullException("updateValueFactory");
|
||
|
}
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
var insertPair = new KeyValuePair<TKey, TValue>(key, addValue);
|
||
|
var updatePair = default(KeyValuePair<TKey, TValue>);
|
||
|
while (true)
|
||
|
{
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Func<KeyValuePair<TKey, TValue>, KeyValuePair<TKey, TValue>> updateFactory = found =>
|
||
|
{
|
||
|
return updatePair = new KeyValuePair<TKey, TValue>(key, updateValueFactory(found.Key, found.Value));
|
||
|
};
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found => _keyComparer.Equals(key, found.Key);
|
||
|
var result = _bucket.InsertOrUpdate
|
||
|
(
|
||
|
hashCode + attempts,
|
||
|
insertPair,
|
||
|
updateFactory,
|
||
|
check,
|
||
|
out isNew
|
||
|
);
|
||
|
if (result)
|
||
|
{
|
||
|
return isNew ? insertPair.Value : updatePair.Value;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Tries to retrieve the value by hash code and key predicate.
|
||
|
/// </summary>
|
||
|
/// <param name="hashCode">The hash code to look for.</param>
|
||
|
/// <param name="keyCheck">The key predicate.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the value was retrieved; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
public bool TryGetValue(int hashCode, Predicate<TKey> keyCheck, out TValue value)
|
||
|
{
|
||
|
if (keyCheck == null)
|
||
|
{
|
||
|
throw new ArgumentNullException("keyCheck");
|
||
|
}
|
||
|
value = default(TValue);
|
||
|
for (var attempts = 0; attempts < _probing; attempts++)
|
||
|
{
|
||
|
KeyValuePair<TKey, TValue> found;
|
||
|
if (_bucket.TryGet(hashCode + attempts, out found))
|
||
|
{
|
||
|
if (GetHashCode(found.Key) == hashCode && keyCheck(found.Key))
|
||
|
{
|
||
|
value = found.Value;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Attempts to add the specified key and associated value. The value is added if the key is not found.
|
||
|
/// </summary>
|
||
|
/// <param name="key">The key.</param>
|
||
|
/// <param name="keyOverwriteCheck">The key predicate to approve overwriting.</param>
|
||
|
/// <param name="value">The value.</param>
|
||
|
/// <param name="stored">The stored pair independently of success.</param>
|
||
|
/// <returns>
|
||
|
/// <c>true</c> if the specified key and associated value were added; otherwise, <c>false</c>.
|
||
|
/// </returns>
|
||
|
internal bool TryAdd(TKey key, Predicate<TKey> keyOverwriteCheck, TValue value, out KeyValuePair<TKey, TValue> stored)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var created = new KeyValuePair<TKey, TValue>(key, value);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
var foundPair = created;
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Predicate<KeyValuePair<TKey, TValue>> check = found =>
|
||
|
{
|
||
|
foundPair = found;
|
||
|
if (_keyComparer.Equals(foundPair.Key, key))
|
||
|
{
|
||
|
// This is the item that has been stored with the key
|
||
|
// Throw to abort overwrite
|
||
|
throw CreateKeyArgumentException(null); // This exception will buble up to the context where "key" is an argument.
|
||
|
}
|
||
|
// This is not the key, overwrite?
|
||
|
return keyOverwriteCheck(foundPair.Key);
|
||
|
};
|
||
|
try
|
||
|
{
|
||
|
bool isNew;
|
||
|
// InsertOrUpdate will add if no item is found, otherwise it calls check
|
||
|
_bucket.InsertOrUpdate(hashCode + attempts, created, check, out isNew);
|
||
|
if (isNew)
|
||
|
{
|
||
|
// It added a new item
|
||
|
stored = created;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
catch (ArgumentException)
|
||
|
{
|
||
|
// An item with the same key has already been added
|
||
|
stored = foundPair;
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal bool TryGetOrAdd(TKey key, Func<TValue> addValueFactory, Func<TKey, TValue, TValue> updateValueFactory, out TValue stored)
|
||
|
{
|
||
|
// NOTICE this method has no null check
|
||
|
var hashCode = GetHashCode(key);
|
||
|
var attempts = 0;
|
||
|
while (true)
|
||
|
{
|
||
|
var value = default(TValue);
|
||
|
ExtendProbingIfNeeded(attempts);
|
||
|
Func<KeyValuePair<TKey, TValue>> itemFactory = () => new KeyValuePair<TKey, TValue>(key, value = addValueFactory());
|
||
|
Func<KeyValuePair<TKey, TValue>, KeyValuePair<TKey, TValue>> itemUpdateFactory = found =>
|
||
|
{
|
||
|
if (_keyComparer.Equals(found.Key, key))
|
||
|
{
|
||
|
// This is the item that has been stored with the key
|
||
|
value = found.Value;
|
||
|
// Throw to abort overwrite
|
||
|
throw CreateKeyArgumentException(null); // This exception will buble up to the context where "key" is an argument.
|
||
|
}
|
||
|
value = updateValueFactory(found.Key, found.Value);
|
||
|
return new KeyValuePair<TKey, TValue>(key, value);
|
||
|
};
|
||
|
try
|
||
|
{
|
||
|
bool isNew;
|
||
|
_bucket.InsertOrUpdate(hashCode + attempts, itemFactory, itemUpdateFactory, out isNew);
|
||
|
if (isNew)
|
||
|
{
|
||
|
// It added a new item
|
||
|
stored = value;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
catch (ArgumentException)
|
||
|
{
|
||
|
// An item with the same key has already been added
|
||
|
// Return it
|
||
|
stored = value;
|
||
|
return false;
|
||
|
}
|
||
|
attempts++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private static ArgumentException CreateKeyArgumentException(object key)
|
||
|
{
|
||
|
GC.KeepAlive(key);
|
||
|
return new ArgumentException("An item with the same key has already been added", "key");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|