Files
PIbd-21_SagirovM.M_Liner_Base/Liner/Generics/SetGeneric.cs
2023-12-18 16:11:55 +04:00

135 lines
4.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Liner.Exceptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Liner.Generics
{
/// <summary>
/// Параметризованный набор объектов
/// </summary>
/// <typeparam name="T"></typeparam>
public class SetGeneric<T>
where T : class
{
/// <summary>
/// Массив объектов, которые храним
/// </summary>
private readonly List<T?> _places;
/// <summary>
/// Количество объектов в массиве
/// </summary>
public int Count => _places.Capacity;
/// <summary>
/// Максимальное количество объектов в списке
/// </summary>
private readonly int _maxCount;
/// <summary>
/// Конструктор
/// </summary>
/// <param name="count"></param>
public SetGeneric(int count)
{
_maxCount = count;
_places = new List<T?>(count);
}
/// <summary>
/// Добавление объекта в набор
/// </summary>
/// <param name="liner">Добавляемый лайнер</param>
/// <returns></returns>
public int Insert(T liner, IEqualityComparer<T?>? equal = null)
{
if (_places.Count >= _maxCount)
{
throw new StorageOverflowException(_places.Count);
}
return Insert(liner,0, equal);
return 0;
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
/// </summary>
/// <param name="liner">Добавляемый лайнер</param>
/// <param name="position">Позиция</param>
/// <returns></returns>
public int Insert(T liner, int position, IEqualityComparer<T?>? equal = null)
{
if(_places.Count >= _maxCount)
{
throw new StorageOverflowException(_places.Count);
}
if(position < 0 || position > _places.Count)
{
throw new LinerNotFoundException(position);
}
if (equal != null && _places.Contains(liner, equal))
{
throw new ArgumentException("Этот объект уже существует в коллекции");
}
_places.Insert(position, liner);
return position;
}
/// <summary>
/// Удаление объекта из набора с конкретной позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public bool Remove(int position)
{
if(_places.Count > position && position >= 0)
{
_places.RemoveAt(position);
return true;
}
throw new LinerNotFoundException(position);
}
public void SortSet(IComparer<T?> comparer) => _places.Sort(comparer);
/// <summary>
/// Получение объекта из набора по позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public T? this[int position]
{
get
{
if (_places.Count > position && position >= 0)
{
return _places[position];
}
return null;
}
set
{
try
{
Insert(value, position);
}
catch
{
return;
}
}
}
/// <summary>
/// Проход по списку
/// </summary>
/// <returns></returns>
public IEnumerable<T?> GetLiners(int? maxLiners = null)
{
for (int i = 0; i < _places.Count; ++i)
{
yield return _places[i];
if (maxLiners.HasValue && i == maxLiners.Value)
{
yield break;
}
}
}
}
}