2021-04-10 10:54:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace ARMeilleure.Common
|
2021-04-09 16:52:28 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-04-13 07:30:22 +00:00
|
|
|
|
/// Represents a numeric counter which can be used for instrumentation of compiled code.
|
2021-04-09 16:52:28 +00:00
|
|
|
|
/// </summary>
|
2021-04-10 10:54:24 +00:00
|
|
|
|
/// <typeparam name="T">Type of the counter</typeparam>
|
2021-04-11 09:54:33 +00:00
|
|
|
|
class Counter<T> : IDisposable where T : unmanaged
|
2021-04-09 16:52:28 +00:00
|
|
|
|
{
|
2021-04-11 09:54:33 +00:00
|
|
|
|
private bool _disposed;
|
2021-04-09 16:52:28 +00:00
|
|
|
|
private readonly int _index;
|
2021-04-10 10:54:24 +00:00
|
|
|
|
private readonly EntryTable<T> _countTable;
|
2021-04-09 16:52:28 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-04-10 10:54:24 +00:00
|
|
|
|
/// Initializes a new instance of the <see cref="Counter{T}"/> class from the specified
|
|
|
|
|
/// <see cref="EntryTable{T}"/> instance and index.
|
2021-04-09 16:52:28 +00:00
|
|
|
|
/// </summary>
|
2021-04-13 06:41:41 +00:00
|
|
|
|
/// <param name="countTable"><see cref="EntryTable{T}"/> instance</param>
|
2021-04-10 10:54:24 +00:00
|
|
|
|
/// <param name="index">Index in the <see cref="EntryTable{T}"/></param>
|
2021-04-16 14:20:05 +00:00
|
|
|
|
/// <exception cref="ArgumentNullException"><paramref name="countTable"/> is <see langword="null"/></exception>
|
|
|
|
|
/// <exception cref="ArgumentException"><typeparamref name="T"/> is unsupported</exception>
|
|
|
|
|
public Counter(EntryTable<T> countTable)
|
2021-04-09 16:52:28 +00:00
|
|
|
|
{
|
2021-04-16 14:20:05 +00:00
|
|
|
|
if (typeof(T) != typeof(byte) && typeof(T) != typeof(sbyte) &&
|
|
|
|
|
typeof(T) != typeof(short) && typeof(T) != typeof(ushort) &&
|
|
|
|
|
typeof(T) != typeof(int) && typeof(T) != typeof(uint) &&
|
|
|
|
|
typeof(T) != typeof(long) && typeof(T) != typeof(ulong) &&
|
|
|
|
|
typeof(T) != typeof(nint) && typeof(T) != typeof(nuint) &&
|
|
|
|
|
typeof(T) != typeof(float) && typeof(T) != typeof(double))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Counter does not support the specified type.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_countTable = countTable ?? throw new ArgumentNullException(nameof(countTable));
|
|
|
|
|
_index = countTable.Allocate();
|
2021-04-09 16:52:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a reference to the value of the counter.
|
|
|
|
|
/// </summary>
|
2021-04-13 07:30:22 +00:00
|
|
|
|
/// <exception cref="ObjectDisposedException"><see cref="Counter{T}"/> instance was disposed</exception>
|
2021-04-11 09:54:33 +00:00
|
|
|
|
public ref T Value
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (_disposed)
|
|
|
|
|
{
|
|
|
|
|
throw new ObjectDisposedException(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ref _countTable.GetValue(_index);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-09 16:52:28 +00:00
|
|
|
|
|
2021-04-13 10:55:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Releases all resources used by the <see cref="Counter{T}"/> instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Releases all unmanaged and optionally managed resources used by the <see cref="Counter{T}"/> instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing"><see langword="true"/> to dispose managed resources also; otherwise just unmanaged resouces</param>
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (!_disposed)
|
|
|
|
|
{
|
|
|
|
|
// The index into the EntryTable is essentially an unmanaged resource since we allocate and free the
|
|
|
|
|
// resource ourselves.
|
|
|
|
|
_countTable.Free(_index);
|
|
|
|
|
|
|
|
|
|
_disposed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-04-16 14:20:05 +00:00
|
|
|
|
/// Frees resources used by the <see cref="Counter{T}"/> instance.
|
2021-04-13 10:55:07 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
~Counter()
|
|
|
|
|
{
|
|
|
|
|
Dispose(false);
|
|
|
|
|
}
|
2021-04-09 16:52:28 +00:00
|
|
|
|
}
|
2021-04-13 06:41:41 +00:00
|
|
|
|
}
|