На сдачу

This commit is contained in:
DyCTaTOR 2023-12-05 17:09:00 +04:00
parent c2a8a8318e
commit d5474b1357
4 changed files with 33 additions and 31 deletions

View File

@ -24,7 +24,7 @@ namespace Monorail
private readonly ILogger _logger; private readonly ILogger _logger;
readonly int countPlace = 35; readonly int countPlace = 22;
public FormMonorailCollection(ILogger<FormMonorailCollection> logger) public FormMonorailCollection(ILogger<FormMonorailCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
@ -62,7 +62,7 @@ namespace Monorail
} }
_storage.AddSet(textBoxStorageName.Text); _storage.AddSet(textBoxStorageName.Text);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Добавлен набор:{ textBoxStorageName.Text}"); _logger.LogInformation($"Добавлен набор:{textBoxStorageName.Text}");
} }
private void ListBoxObjects_SelectedIndexChanged(object sender, private void ListBoxObjects_SelectedIndexChanged(object sender,
@ -127,10 +127,11 @@ EventArgs e)
_logger.LogInformation($"Добавлен монорельс"); _logger.LogInformation($"Добавлен монорельс");
} }
} }
catch(StorageOverflowException ex) catch (StorageOverflowException ex)
{ {
MessageBox.Show(ex.Message); MessageBox.Show(ex.Message, "Ошибка",
_logger.LogWarning("Не удалось добавить объект"); MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
} }
} }
@ -158,21 +159,22 @@ EventArgs e)
{ {
pos = Convert.ToInt32(maskedTextBoxNumber.Text); pos = Convert.ToInt32(maskedTextBoxNumber.Text);
} }
catch (Exception) { catch (Exception)
{
MessageBox.Show("Введите позицию монорельса", "Ошибка", MessageBox.Show("Введите позицию монорельса", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
if (obj - pos != null) try {
{ var curObj = obj - pos;
MessageBox.Show("Объект удален"); MessageBox.Show("Объект удален");
pictureBoxCollection.Image = obj.ShowMonorails(); pictureBoxCollection.Image = obj.ShowMonorails();
_logger.LogInformation("Объект удален"); _logger.LogInformation($"Объект удален по позиции: {pos}");
} }catch(MonorailNotFoundException ex)
else
{ {
MessageBox.Show(ex.Message, "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Не удалось удалить объект по позиции {pos}"); _logger.LogWarning($"Не удалось удалить объект по позиции {pos}");
throw new MonorailNotFoundException(pos);
} }
} }
private void ButtonRefreshCollection_Click(object sender, EventArgs e) private void ButtonRefreshCollection_Click(object sender, EventArgs e)
@ -197,11 +199,13 @@ EventArgs e)
_storage.SaveData(saveFileDialog.FileName); _storage.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", MessageBox.Show("Сохранение прошло успешно",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation("Сохранение файла");
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show($"Не сохранилось: {ex.Message}", MessageBox.Show($"Не сохранилось: {ex.Message}",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Не сохранилось: {ex.Message}");
} }
} }
} }
@ -215,10 +219,13 @@ EventArgs e)
MessageBox.Show("Загрузка прошло успешно", MessageBox.Show("Загрузка прошло успешно",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadObjects(); ReloadObjects();
} catch(MonorailNotFoundException ex) _logger.LogInformation("Загрузка файла");
}
catch (Exception ex)
{ {
MessageBox.Show($"Не загрузилось {ex.Message}", MessageBox.Show($"Не загрузилось. {ex.Message}",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Не загрузилось: {ex.Message}");
} }
} }
} }

View File

@ -37,10 +37,7 @@ namespace Monorail.Generics
public static T? operator -(MonorailsGenericCollection<T, U> collect, int pos) public static T? operator -(MonorailsGenericCollection<T, U> collect, int pos)
{ {
T? obj = collect._collection[pos]; T? obj = collect._collection[pos];
if (obj != null)
{
collect._collection.Remove(pos); collect._collection.Remove(pos);
}
return obj; return obj;
} }
public U? GetU(int pos) public U? GetU(int pos)

View File

@ -72,7 +72,7 @@ namespace Monorail.Generics
} }
if (data.Length == 0) if (data.Length == 0)
{ {
throw new Exception("Невалиданя операция, нет данных для сохранения"); throw new Exception("Невалидная операция, нет данных для сохранения");
} }
using StreamWriter sw = new(filename); using StreamWriter sw = new(filename);
sw.Write($"MonorailStorage{Environment.NewLine}{data}"); sw.Write($"MonorailStorage{Environment.NewLine}{data}");

View File

@ -1,4 +1,5 @@
using System; using Monorail.Exceptions;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -23,15 +24,12 @@ namespace Monorail.Generics
} }
public int Insert(T monorail, int position) public int Insert(T monorail, int position)
{ {
if (Count == _maxCount) if (Count == _maxCount || position >= _maxCount)
return -1; throw new StorageOverflowException(Count);
if (position < 0 || monorail == null) if (position < 0 || monorail == null)
return -1; throw new StorageOverflowException("Ошибка. Объект не найден или введённый " +
"номер позиции = отрицательное число");
if (position >= _maxCount)
return -1;
if (Count == 0) if (Count == 0)
{ {
@ -48,7 +46,7 @@ namespace Monorail.Generics
// TODO проверка позиции // TODO проверка позиции
if (position >= Count) if (position >= Count)
{ {
return false; throw new MonorailNotFoundException(position);
} }
// TODO удаление объекта из массива, присвоив элементу массива значение null // TODO удаление объекта из массива, присвоив элементу массива значение null
if (_places[position] != null) if (_places[position] != null)
@ -58,7 +56,7 @@ namespace Monorail.Generics
} }
else else
{ {
return false; throw new MonorailNotFoundException(position);
} }
} }
public T? this[int position] public T? this[int position]