Добавил проверки и обработку ошибки

This commit is contained in:
insideq 2024-05-16 11:36:31 +04:00
parent 6c87b978a6
commit 12f8e6c828
5 changed files with 16 additions and 11 deletions

View File

@ -25,7 +25,7 @@ public interface ICollectionGenericObjects<T>
/// <param name="obj">Добавляемый объект</param> /// <param name="obj">Добавляемый объект</param>
/// <param name="comparer">Сравнение двух объектов</param> /// <param name="comparer">Сравнение двух объектов</param>
/// <returns>true - вставка прошла успешно, false - вставка не удалась</returns> /// <returns>true - вставка прошла успешно, false - вставка не удалась</returns>
int Insert(T obj, IEqualityComparer<DrawningBulldozer?>? comparer = null); int Insert(T obj, IEqualityComparer<T?>? comparer = null);
/// <summary> /// <summary>
/// Добавление элемента в коллекцию на конкретную позицию /// Добавление элемента в коллекцию на конкретную позицию
@ -34,7 +34,7 @@ public interface ICollectionGenericObjects<T>
/// <param name="position">Позиция</param> /// <param name="position">Позиция</param>
/// <param name="comparer">Сравнение двух объектов</param> /// <param name="comparer">Сравнение двух объектов</param>
/// <returns>true - вставка прошла успешно, false - вставка не удалась</returns> /// <returns>true - вставка прошла успешно, false - вставка не удалась</returns>
int Insert(T obj, int position, IEqualityComparer<DrawningBulldozer?>? comparer = null); int Insert(T obj, int position, IEqualityComparer<T?>? comparer = null);
/// <summary> /// <summary>
/// Удаление объекта из коллекции с конкретной позиции /// Удаление объекта из коллекции с конкретной позиции

View File

@ -39,10 +39,10 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
return _collection[position]; return _collection[position];
} }
public int Insert(T obj, IEqualityComparer<DrawningBulldozer?>? comparer = null) public int Insert(T obj, IEqualityComparer<T?>? comparer = null)
{ {
// TODO выброс ошибки, если такой объект есть в коллекции // TODO выброс ошибки, если такой объект есть в коллекции
if (comparer != null && _collection.Contains(obj)) if (comparer != null && _collection.Contains(obj, comparer))
{ {
throw new CollectionAlreadyExistsException(); throw new CollectionAlreadyExistsException();
} }
@ -56,10 +56,10 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
return _maxCount; return _maxCount;
} }
public int Insert(T obj, int position, IEqualityComparer<DrawningBulldozer?>? comparer = null) public int Insert(T obj, int position, IEqualityComparer<T?>? comparer = null)
{ {
// TODO выброс ошибки, если такой объект есть в коллекции // TODO выброс ошибки, если такой объект есть в коллекции
if (comparer != null && _collection.Contains(obj)) if (comparer != null && _collection.Contains(obj, comparer))
{ {
throw new CollectionAlreadyExistsException(); throw new CollectionAlreadyExistsException();
} }

View File

@ -61,10 +61,10 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
return _collection[position]; return _collection[position];
} }
public int Insert(T obj, IEqualityComparer<DrawningBulldozer?>? comparer = null) public int Insert(T obj, IEqualityComparer<T?>? comparer = null)
{ {
// TODO выброс ошибки, если такой объект есть в коллекции // TODO выброс ошибки, если такой объект есть в коллекции
if (comparer != null && _collection.Contains(obj)) if (comparer != null && _collection.Contains(obj, comparer))
{ {
throw new CollectionAlreadyExistsException(); throw new CollectionAlreadyExistsException();
} }
@ -82,11 +82,11 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
throw new CollectionOverflowException(Count); throw new CollectionOverflowException(Count);
} }
public int Insert(T obj, int position, IEqualityComparer<DrawningBulldozer?>? comparer = null) public int Insert(T obj, int position, IEqualityComparer<T?>? comparer = null)
{ {
// TODO выброс ошибки, если такой объект есть в коллекции // TODO выброс ошибки, если такой объект есть в коллекции
if (comparer != null && _collection.Contains(obj)) if (comparer != null && _collection.Contains(obj, comparer))
{ {
throw new CollectionAlreadyExistsException(); throw new CollectionAlreadyExistsException();
} }

View File

@ -10,7 +10,7 @@ namespace ProjectExcavator.Exceptions;
internal class CollectionAlreadyExistsException : ApplicationException internal class CollectionAlreadyExistsException : ApplicationException
{ {
public CollectionAlreadyExistsException(CollectionInfo collectionInfo) : base("В коллекции уже есть такой элемент: " + collectionInfo) { } public CollectionAlreadyExistsException(CollectionInfo collectionInfo) : base("В коллекции уже есть такой элемент: " + collectionInfo) { }
public CollectionAlreadyExistsException() : base() { } public CollectionAlreadyExistsException() : base("В коллекции уже есть такой элемент") { }
public CollectionAlreadyExistsException(string message) : base(message) { } public CollectionAlreadyExistsException(string message) : base(message) { }
public CollectionAlreadyExistsException(string message, Exception exception) : base(message, exception) { } public CollectionAlreadyExistsException(string message, Exception exception) : base(message, exception) { }
protected CollectionAlreadyExistsException(SerializationInfo info, StreamingContext context) : base(info, context) { } protected CollectionAlreadyExistsException(SerializationInfo info, StreamingContext context) : base(info, context) { }

View File

@ -82,6 +82,11 @@ public partial class FormBulldozerCollection : Form
MessageBox.Show(ex.Message); MessageBox.Show(ex.Message);
_logger.LogError("Ошибка: {Message}", ex.Message); _logger.LogError("Ошибка: {Message}", ex.Message);
} }
catch (CollectionAlreadyExistsException ex)
{
MessageBox.Show(ex.Message);
_logger.LogError("Ошибка: {Message}", ex.Message);
}
} }
private void ButtonRemoveCar_Click(object sender, EventArgs e) private void ButtonRemoveCar_Click(object sender, EventArgs e)