Генерация ошибок

This commit is contained in:
ityurner02@mail.ru 2022-11-20 12:36:36 +04:00
parent f76229aecc
commit a74bda99cf
5 changed files with 68 additions and 17 deletions

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 AntiAircraftGun
{
[Serializable]
internal class AntiAircraftGunNotFoundException : ApplicationException
{
public AntiAircraftGunNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
public AntiAircraftGunNotFoundException() : base() { }
public AntiAircraftGunNotFoundException(string message) : base(message) { }
public AntiAircraftGunNotFoundException(string message, Exception exception) : base(message, exception) { }
protected AntiAircraftGunNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}

View File

@ -150,14 +150,25 @@ namespace AntiAircraftGun
return; return;
} }
int pos = Convert.ToInt32(maskedTextBoxPosition.Text); int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) try
{ {
MessageBox.Show("Объект удален"); if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null)
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); {
MessageBox.Show("Объект удален");
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
} }
else catch (AntiAircraftGunNotFoundException ex)
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show($"Ошибка удаления {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Неизвестная ошибка {ex.Message}");
} }
} }
/// <summary> /// <summary>
@ -226,13 +237,14 @@ namespace AntiAircraftGun
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_mapsCollection.SaveData(saveFileDialog.FileName)) try
{ {
_mapsCollection.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
else catch(Exception ex)
{ {
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show($"Не сохранилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
} }
@ -245,14 +257,15 @@ namespace AntiAircraftGun
{ {
if (openFileDialog.ShowDialog() == DialogResult.OK) if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_mapsCollection.LoadData(openFileDialog.FileName)) try
{ {
_mapsCollection.LoadData(openFileDialog.FileName);
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadMaps(); ReloadMaps();
} }
else catch(Exception ex)
{ {
MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show($"Не загрузилось {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
} }

View File

@ -78,7 +78,7 @@ namespace AntiAircraftGun
/// </summary> /// </summary>
/// <param name="filename">Путь и имя файла</param> /// <param name="filename">Путь и имя файла</param>
/// <returns></returns> /// <returns></returns>
public bool SaveData(string filename) public void SaveData(string filename)
{ {
if (File.Exists(filename)) if (File.Exists(filename))
{ {
@ -92,18 +92,17 @@ namespace AntiAircraftGun
sw.WriteLine($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}"); sw.WriteLine($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}");
} }
} }
return true;
} }
/// <summary> /// <summary>
/// Загрузка нформации по орудиям на парковках из файла /// Загрузка нформации по орудиям на парковках из файла
/// </summary> /// </summary>
/// <param name="filename"></param> /// <param name="filename"></param>
/// <returns></returns> /// <returns></returns>
public bool LoadData(string filename) public void LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new Exception("Файл не найден");
} }
using (StreamReader sr = new StreamReader(filename)) using (StreamReader sr = new StreamReader(filename))
{ {
@ -112,7 +111,7 @@ namespace AntiAircraftGun
str = sr.ReadLine(); str = sr.ReadLine();
if (!str.Contains("MapsCollection")) if (!str.Contains("MapsCollection"))
{ {
return false; throw new Exception("Формат данных в файле неправильный");
} }
while ((str = sr.ReadLine()) != null) while ((str = sr.ReadLine()) != null)
{ {
@ -130,7 +129,6 @@ namespace AntiAircraftGun
_mapStorages.Add(elem[0], new MapWithSetAntiAircraftGunsGeneric<IDrawingObject, AbstractMap>(_pictureWidth, _pictureHeight, map)); _mapStorages.Add(elem[0], new MapWithSetAntiAircraftGunsGeneric<IDrawingObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
_mapStorages[elem[0]].LoadData(elem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries)); _mapStorages[elem[0]].LoadData(elem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries));
} }
return true;
} }
} }
} }

View File

@ -56,6 +56,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 < 0 || position >= _places.Count) return -1; if (position < 0 || position >= _places.Count) return -1;
_places.Insert(position, antiAircraftGun); _places.Insert(position, antiAircraftGun);
return position; return position;
@ -67,6 +68,7 @@ namespace AntiAircraftGun
/// <returns></returns> /// <returns></returns>
public T Remove(int position) public T Remove(int position)
{ {
//TODO исключение
if (position < 0 || position >= _places.Count) return null; if (position < 0 || position >= _places.Count) return null;
if (_places[position] == null) return null; if (_places[position] == null) return null;
T removed = _places[position]; T removed = _places[position];

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 AntiAircraftGun
{
[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) { }
}
}