Добавление исключений и логирования на нужные действия
This commit is contained in:
parent
ff6ce298cd
commit
f809f7eb78
@ -1,10 +1,12 @@
|
|||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Serilog.Filters;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Reflection.PortableExecutable;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
@ -72,11 +74,13 @@ namespace AntiAircraftGun
|
|||||||
if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text))
|
if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
_logger.LogInformation("При добавлении карты {0}", comboBoxSelectorMap.SelectedIndex == -1 ? "не была выбрана карта" : "не была названа карта");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text))
|
if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
_logger.LogInformation($"Попытка добавить несуществующую карту: {textBoxNewMapName.Text}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
|
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
|
||||||
@ -91,6 +95,7 @@ namespace AntiAircraftGun
|
|||||||
private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
|
private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
_logger.LogInformation($"Переход на карту: {listBoxMaps.SelectedItem?.ToString() ?? string.Empty}");
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Удаление карты
|
/// Удаление карты
|
||||||
@ -101,12 +106,14 @@ namespace AntiAircraftGun
|
|||||||
{
|
{
|
||||||
if (listBoxMaps.SelectedIndex == -1)
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
{
|
{
|
||||||
|
_logger.LogInformation($"Попытка удалить несуществующую карту: {textBoxNewMapName.Text}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||||
{
|
{
|
||||||
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
|
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
|
||||||
ReloadMaps();
|
ReloadMaps();
|
||||||
|
_logger.LogInformation($"Удалена карта: {listBoxMaps.SelectedItem?.ToString() ?? string.Empty}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -121,20 +128,37 @@ namespace AntiAircraftGun
|
|||||||
formAntiAircraftGunConfig.Show();
|
formAntiAircraftGunConfig.Show();
|
||||||
}
|
}
|
||||||
private void AddAntiAircraftGun(DrawingAntiAircraftGun drawingAntiAircraftGuns)
|
private void AddAntiAircraftGun(DrawingAntiAircraftGun drawingAntiAircraftGuns)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (listBoxMaps.SelectedIndex == -1)
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
{
|
{
|
||||||
|
_logger.LogInformation($"Попытка добавления объекта на невыбранную карту");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (drawingAntiAircraftGuns == null)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Нужно выбрать объект перед добавлением");
|
||||||
|
_logger.LogInformation($"Не выбран объект для добавления на карту");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
DrawingObjectAntiAircraftGun antiAircraftGun = new DrawingObjectAntiAircraftGun(drawingAntiAircraftGuns);
|
DrawingObjectAntiAircraftGun antiAircraftGun = new DrawingObjectAntiAircraftGun(drawingAntiAircraftGuns);
|
||||||
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + antiAircraftGun != -1)
|
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + antiAircraftGun != -1)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Object added");
|
MessageBox.Show("Объект добавлен");
|
||||||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
_logger.LogInformation($"Добавлен объект {drawingAntiAircraftGuns} на карту ");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MessageBox.Show("Cant add object");
|
MessageBox.Show("Не получилось добавить объект");
|
||||||
|
_logger.LogInformation($"Не получилось добавить объект {drawingAntiAircraftGuns} на карту ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (StorageOverflowException ex)
|
||||||
|
{
|
||||||
|
_logger.LogWarning($"Ошибка переполнения хранилища: {ex.Message}");
|
||||||
|
MessageBox.Show($"Ошибка переполнения хранилища: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -163,18 +187,22 @@ namespace AntiAircraftGun
|
|||||||
{
|
{
|
||||||
MessageBox.Show("Объект удален");
|
MessageBox.Show("Объект удален");
|
||||||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
_logger.LogInformation($"Удален объект {pos}");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не удалось удалить объект");
|
MessageBox.Show("Не удалось удалить объект");
|
||||||
|
_logger.LogInformation($"Не удалось удалить объект {pos}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (AntiAircraftGunNotFoundException ex)
|
catch (AntiAircraftGunNotFoundException ex)
|
||||||
{
|
{
|
||||||
|
_logger.LogWarning($"Ошибка удаления: {ex.Message}");
|
||||||
MessageBox.Show($"Ошибка удаления {ex.Message}");
|
MessageBox.Show($"Ошибка удаления {ex.Message}");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
_logger.LogWarning($"Неизвестная ошибка: {ex.Message}");
|
||||||
MessageBox.Show($"Неизвестная ошибка {ex.Message}");
|
MessageBox.Show($"Неизвестная ошибка {ex.Message}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -248,10 +276,12 @@ namespace AntiAircraftGun
|
|||||||
{
|
{
|
||||||
_mapsCollection.SaveData(saveFileDialog.FileName);
|
_mapsCollection.SaveData(saveFileDialog.FileName);
|
||||||
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
_logger.LogInformation($"Успешно сохранено в файл: {saveFileDialog.FileName}");
|
||||||
}
|
}
|
||||||
catch(Exception ex)
|
catch(Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show($"Не сохранилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show($"Не сохранилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
_logger.LogWarning($"Ошибка сохранения в файл: {saveFileDialog.FileName}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -269,10 +299,12 @@ namespace AntiAircraftGun
|
|||||||
_mapsCollection.LoadData(openFileDialog.FileName);
|
_mapsCollection.LoadData(openFileDialog.FileName);
|
||||||
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
ReloadMaps();
|
ReloadMaps();
|
||||||
|
_logger.LogInformation($"Успешная загрузка из файла: {openFileDialog.FileName}");
|
||||||
}
|
}
|
||||||
catch(Exception ex)
|
catch(Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show($"Не загрузилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show($"Не загрузилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
_logger.LogWarning($"Ошибка загрузки из файла: {openFileDialog.FileName}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -102,7 +102,7 @@ namespace AntiAircraftGun
|
|||||||
{
|
{
|
||||||
if (!File.Exists(filename))
|
if (!File.Exists(filename))
|
||||||
{
|
{
|
||||||
throw new Exception("Файл не найден");
|
throw new FileNotFoundException("Файл не найден");
|
||||||
}
|
}
|
||||||
using (StreamReader sr = new StreamReader(filename))
|
using (StreamReader sr = new StreamReader(filename))
|
||||||
{
|
{
|
||||||
@ -111,7 +111,7 @@ namespace AntiAircraftGun
|
|||||||
str = sr.ReadLine();
|
str = sr.ReadLine();
|
||||||
if (!str.Contains("MapsCollection"))
|
if (!str.Contains("MapsCollection"))
|
||||||
{
|
{
|
||||||
throw new Exception("Формат данных в файле неправильный");
|
throw new FileFormatException($"Неправильный формат данных в файле {filename}");
|
||||||
}
|
}
|
||||||
while ((str = sr.ReadLine()) != null)
|
while ((str = sr.ReadLine()) != null)
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
using System;
|
using Serilog.Filters;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Reflection.PortableExecutable;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@ -38,15 +40,8 @@ namespace AntiAircraftGun
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int Insert(T antiAircraftGun)
|
public int Insert(T antiAircraftGun)
|
||||||
{
|
{
|
||||||
if (_places.Count < _maxCount)
|
if (_places.Count < _maxCount) return Insert(antiAircraftGun, 0);
|
||||||
{
|
else throw new StorageOverflowException(_maxCount);
|
||||||
_places.Add(antiAircraftGun);
|
|
||||||
for (int i = 0; i < _places.Count; i++)
|
|
||||||
{
|
|
||||||
if (_places[i] == antiAircraftGun) return i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Добавление объекта в набор на конкретную позицию
|
/// Добавление объекта в набор на конкретную позицию
|
||||||
@ -56,8 +51,7 @@ namespace AntiAircraftGun
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int Insert(T antiAircraftGun, int position)
|
public int Insert(T antiAircraftGun, int position)
|
||||||
{
|
{
|
||||||
//TODO проверка на _maxCount
|
if (position >= _maxCount) throw new StorageOverflowException(_maxCount);
|
||||||
if (position < 0 || position >= _places.Count) return -1;
|
|
||||||
_places.Insert(position, antiAircraftGun);
|
_places.Insert(position, antiAircraftGun);
|
||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
@ -68,9 +62,8 @@ namespace AntiAircraftGun
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public T Remove(int position)
|
public T Remove(int position)
|
||||||
{
|
{
|
||||||
//TODO исключение
|
if (position < 0 || position >= _places.Count) throw new AntiAircraftGunNotFoundException(position); ;
|
||||||
if (position < 0 || position >= _places.Count) return null;
|
if (_places[position] == null) throw new AntiAircraftGunNotFoundException(position);
|
||||||
if (_places[position] == null) return null;
|
|
||||||
T removed = _places[position];
|
T removed = _places[position];
|
||||||
_places.RemoveAt(position);
|
_places.RemoveAt(position);
|
||||||
return removed;
|
return removed;
|
||||||
|
Loading…
Reference in New Issue
Block a user