Compare commits

..

3 Commits

5 changed files with 35 additions and 8 deletions

View File

@ -7,6 +7,10 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualBasic.Logging;
using AirBomber.Exceptions;
using Serilog;
using Log = Serilog.Log;
namespace AirBomber
{

View File

@ -5,8 +5,9 @@ using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AirBomber
namespace AirBomber.Exceptions
{
[Serializable]
internal class PlaneNotFoundException: ApplicationException
{
public PlaneNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }

View File

@ -112,7 +112,7 @@ namespace AirBomber
}
if (data.Length == 0)
{
return false;
throw new Exception("Невалидная операция, нет данных для сохранения");
}
using StreamWriter sw = new(filename);
@ -128,7 +128,7 @@ namespace AirBomber
{
if (!File.Exists(filename))
{
return false;
throw new Exception("Файл не найден");
}
using (StreamReader sr = new(filename))
{
@ -136,12 +136,12 @@ namespace AirBomber
if (str == null || str.Length == 0)
{
return false;
throw new Exception("Нет данных для загрузки");
}
if (!str.StartsWith("PlaneStorage"))
{
//если нет такой записи, то это не те данные
return false;
throw new Exception("Неверный формат данных");
}
_planeStorages.Clear();
@ -170,7 +170,7 @@ namespace AirBomber
{
if ((collection + plane) == -1)
{
return false;
throw new Exception("Ошибка добавления в коллекцию");
}
}
}

View File

@ -53,7 +53,10 @@ namespace AirBomber
// проверка, что после вставляемого элемента в массиве есть пустой элемент
// сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
// TODO вставка по позиции
if (position < 0 || position >= _maxCount) return -1;
if (position < 0 || position >= _maxCount)
{
throw new StorageOverflowException(_maxCount);
}
_places.Insert(position, plane);
return position;
}
@ -68,7 +71,7 @@ namespace AirBomber
// TODO удаление объекта из массива, присвоив элементу массива значение null
if (!(position >= 0 && position < Count) || _places[position] == null)
{
return false;
throw new PlaneNotFoundException(position);
}
_places[position] = null;
return true;

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AirBomber.Exceptions
{
[Serializable]
internal class StorageOverflowException: ApplicationException
{
public StorageOverflowException(int count) : base($"В наборе превышено допустимое количество: { count}") { }
public StorageOverflowException() : base() { }
public StorageOverflowException(string message) : base(message) { }
public StorageOverflowException(string message, Exception exception) : base(message, exception) { }
protected StorageOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}