diff --git a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/AbstractCompany.cs b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/AbstractCompany.cs
index b944027..ae6c62f 100644
--- a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/AbstractCompany.cs
+++ b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/AbstractCompany.cs
@@ -10,35 +10,29 @@ namespace ProjectAirPlane.CollectionGenericObjects;
public abstract class AbstractCompany
{
///
- /// Размер места (ширина)
- ///
- protected readonly int _placeSizeWidth = 210;
-
+ /// Размер места (ширина)
+ ///
+ protected readonly int _placeSizeWidth = 210;
///
/// Размер места (высота)
///
- protected readonly int _placeSizeHeight = 80;
-
+ protected readonly int _placeSizeHeight = 90;
///
/// Ширина окна
///
protected readonly int _pictureWidth;
-
///
/// Высота окна
///
protected readonly int _pictureHeight;
-
///
- /// Коллекция автомобилей
+ /// Коллекция судов
///
protected ICollectionGenericObjects? _collection = null;
-
///
/// Вычисление максимального количества элементов, который можно разместить в окне
///
private int GetMaxCount => _pictureWidth * _pictureHeight / (_placeSizeWidth * _placeSizeHeight);
-
///
/// Конструктор
///
@@ -52,18 +46,16 @@ public abstract class AbstractCompany
_collection = collection;
_collection.MaxCount = GetMaxCount;
}
-
///
/// Перегрузка оператора сложения для класса
///
/// Компания
- /// Добавляемый объект
+ /// Добавляемый объект
///
public static int operator +(AbstractCompany company, DrawningPlane plane)
{
- return company._collection?.Insert(plane) ?? -1;
+ return company._collection.Insert(plane);
}
-
///
/// Перегрузка оператора удаления для класса
///
@@ -72,9 +64,8 @@ public abstract class AbstractCompany
///
public static DrawningPlane operator -(AbstractCompany company, int position)
{
- return company._collection?.Remove(position) ?? null;
+ return company._collection?.Remove(position);
}
-
///
/// Получение случайного объекта из коллекции
///
@@ -84,7 +75,6 @@ public abstract class AbstractCompany
Random rnd = new();
return _collection?.Get(rnd.Next(GetMaxCount));
}
-
///
/// Вывод всей коллекции
///
@@ -94,25 +84,25 @@ public abstract class AbstractCompany
Bitmap bitmap = new(_pictureWidth, _pictureHeight);
Graphics graphics = Graphics.FromImage(bitmap);
DrawBackgound(graphics);
-
SetObjectsPosition();
for (int i = 0; i < (_collection?.Count ?? 0); ++i)
{
- DrawningPlane? obj = _collection?.Get(i);
- obj?.DrawTransport(graphics);
+ try
+ {
+ DrawningPlane? obj = _collection?.Get(i);
+ obj?.DrawTransport(graphics);
+ }
+ catch (Exception) { }
}
-
return bitmap;
}
-
///
/// Вывод заднего фона
///
///
protected abstract void DrawBackgound(Graphics g);
-
///
/// Расстановка объектов
///
protected abstract void SetObjectsPosition();
-}
+}
\ No newline at end of file
diff --git a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/ListGenericObjects.cs b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/ListGenericObjects.cs
index 18e91d3..d983574 100644
--- a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/ListGenericObjects.cs
+++ b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/ListGenericObjects.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ProjectAirPlane.Drawnings;
+using ProjectAirPlane.Exceptions;
namespace ProjectAirPlane.CollectionGenericObjects;
@@ -48,7 +49,7 @@ public class ListGenericObjects : ICollectionGenericObjects
public T? Get(int position)
{
// TODO проверка позиции
- if (position >= Count || position < 0) return null;
+ if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position);
return _collection[position];
}
@@ -56,7 +57,7 @@ public class ListGenericObjects : ICollectionGenericObjects
{
// TODO проверка, что не превышено максимальное количество элементов
// TODO вставка в конец набора
- if (Count == _maxCount) return -1;
+ if (Count == _maxCount) throw new CollectionOverflowException(Count);
_collection.Add(obj);
return Count;
}
@@ -66,8 +67,8 @@ public class ListGenericObjects : ICollectionGenericObjects
// TODO проверка, что не превышено максимальное количество элементов
// TODO проверка позиции
// TODO вставка по позиции
- if (Count == _maxCount) return -1;
- if (position >= Count || position < 0) return -1;
+ if (Count == _maxCount) throw new CollectionOverflowException(Count);
+ if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position);
_collection.Insert(position, obj);
return position;
}
@@ -76,7 +77,7 @@ public class ListGenericObjects : ICollectionGenericObjects
{
// TODO проверка позиции
// TODO удаление объекта из списка
- if (position >= Count || position < 0) return null;
+ if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position);
T obj = _collection[position];
_collection.RemoveAt(position);
return obj;
diff --git a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/MassiveGenericObjects.cs b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/MassiveGenericObjects.cs
index 606c4e1..38a1ead 100644
--- a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/MassiveGenericObjects.cs
+++ b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/MassiveGenericObjects.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using ProjectAirPlane.Exceptions;
namespace ProjectAirPlane.CollectionGenericObjects;
@@ -51,7 +52,8 @@ public class MassiveGenericObjects : ICollectionGenericObjects
public T? Get(int position)
{
// TODO проверка позиции
- if (position >= _collection.Length || position < 0) return null;
+ if (position >= _collection.Length || position < 0) throw new PositionOutOfCollectionException(position);
+ if (_collection[position] == null) throw new ObjectNotFoundException(position);
return _collection[position];
}
@@ -68,18 +70,18 @@ public class MassiveGenericObjects : ICollectionGenericObjects
}
++index;
}
- return -1;
+ throw new CollectionOverflowException(Count);
}
public int Insert(T obj, int position)
{
// TODO проверка позиции
// TODO проверка, что элемент массива по этой позиции пустой, если нет, то
- // ищется свободное место после этой позиции и идет вставка туда
- // если нет после, ищем до
+ // ищется свободное место после этой позиции и идет вставка туда
+ // если нет после, ищем до
// TODO вставка
- if (position >= _collection.Length || position < 0)
- return -1;
+ if (position >= _collection.Length || position < 0) throw new PositionOutOfCollectionException(position);
+
if (_collection[position] == null)
{
_collection[position] = obj;
@@ -105,17 +107,16 @@ public class MassiveGenericObjects : ICollectionGenericObjects
}
--index;
}
- return -1;
+ throw new CollectionOverflowException(Count);
}
public T Remove(int position)
{
// TODO проверка позиции
// TODO удаление объекта из массива, присвоив элементу массива значение null
- if (position >= _collection.Length || position < 0)
- {
- return null;
- }
+
+ if (position >= _collection.Length || position < 0) throw new PositionOutOfCollectionException(position);
+ if (_collection[position] == null) throw new ObjectNotFoundException(position);
T obj = _collection[position];
_collection[position] = null;
diff --git a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/PlaneSharingService.cs b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/PlaneSharingService.cs
index 2b20d90..9c6db7c 100644
--- a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/PlaneSharingService.cs
+++ b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/PlaneSharingService.cs
@@ -12,10 +12,9 @@ public class PlaneSharingService : AbstractCompany
public PlaneSharingService(int picWidth, int picHeight, ICollectionGenericObjects collection) : base(picWidth, picHeight, collection)
{
}
-
protected override void DrawBackgound(Graphics g)
{
-
+ //рисуем пристань
int width = _pictureWidth / _placeSizeWidth;
int height = _pictureHeight / _placeSizeHeight;
Pen pen = new(Color.Black, 3);
@@ -27,7 +26,6 @@ public class PlaneSharingService : AbstractCompany
}
}
}
-
protected override void SetObjectsPosition()
{
int width = _pictureWidth / _placeSizeWidth;
@@ -38,11 +36,12 @@ public class PlaneSharingService : AbstractCompany
for (int i = 0; i < (_collection?.Count ?? 0); i++)
{
- if (_collection.Get(i) != null)
+ try
{
_collection.Get(i).SetPictureSize(_pictureWidth, _pictureHeight);
- _collection.Get(i).SetPosition(_placeSizeWidth * curWidth + 15, curHeight * _placeSizeHeight + 3);
+ _collection.Get(i).SetPosition(_placeSizeWidth * curWidth + 20, curHeight * _placeSizeHeight + 4);
}
+ catch (Exception) { }
if (curWidth > 0)
curWidth--;
else
@@ -55,5 +54,6 @@ public class PlaneSharingService : AbstractCompany
return;
}
}
+
}
}
diff --git a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/StorageCollection.cs b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/StorageCollection.cs
index d304ba8..0348da0 100644
--- a/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/StorageCollection.cs
+++ b/ProjectAirPlane/ProjectAirPlane/CollectionGenericObjects/StorageCollection.cs
@@ -1,5 +1,6 @@
using System.Text;
using ProjectAirPlane.Drawnings;
+using ProjectAirPlane.Exceptions;
namespace ProjectAirPlane.CollectionGenericObjects;
@@ -11,15 +12,13 @@ public class StorageCollection
where T : DrawningPlane
{
///
- /// Словарь (хранилище) с коллекциями
- ///
- readonly Dictionary> _storages;
-
+ /// Словарь (хранилище) с коллекциями
+ ///
+ readonly Dictionary> _storages;
///
/// Возвращение списка названий коллекций
///
public List Keys => _storages.Keys.ToList();
-
///
/// Конструктор
///
@@ -27,7 +26,6 @@ public class StorageCollection
{
_storages = new Dictionary>();
}
-
///
/// Добавление коллекции в хранилище
///
@@ -35,37 +33,22 @@ public class StorageCollection
/// тип коллекции
public void AddCollection(string name, CollectionType collectionType)
{
- // TODO проверка, что name не пустой и нет в словаре записи с таким ключом
- // TODO Прописать логику для добавления
- if (!(collectionType == CollectionType.None) && !_storages.ContainsKey(name))
- {
- if (collectionType == CollectionType.List)
- {
- _storages.Add(name, new ListGenericObjects());
- }
- else if (collectionType == CollectionType.Massive)
- {
- _storages.Add(name, new MassiveGenericObjects());
- }
- }
+ if (_storages.ContainsKey(name)) return;
+ if (collectionType == CollectionType.None) return;
+ else if (collectionType == CollectionType.Massive)
+ _storages[name] = new MassiveGenericObjects();
+ else if (collectionType == CollectionType.List)
+ _storages[name] = new ListGenericObjects();
}
-
///
/// Удаление коллекции
///
/// Название коллекции
public void DelCollection(string name)
{
- // TODO Прописать логику для удаления коллекции
- if (_storages.ContainsKey(name)) { _storages.Remove(name); }
+ if (_storages.ContainsKey(name))
+ _storages.Remove(name);
}
-
- ///
- /// Доступ к коллекции
- ///
- /// Название коллекции
- ///
-
///
/// Доступ к коллекции
///
@@ -75,7 +58,6 @@ public class StorageCollection
{
get
{
- // TODO Продумать логику получения объекта
if (_storages.ContainsKey(name))
return _storages[name];
return null;
@@ -97,12 +79,11 @@ public class StorageCollection
/// Сохранение информации по автомобилям в хранилище в файл
///
/// Путь и имя файла
- /// true - сохранение прошло успешно, false - ошибка при сохранении данных
- public bool SaveData(string filename)
+ public void SaveData(string filename)
{
if (_storages.Count == 0)
{
- return false;
+ throw new Exception("В хранилище отсутствуют коллекции для сохранения");
}
if (File.Exists(filename))
{
@@ -113,19 +94,17 @@ public class StorageCollection
writer.Write(_collectionKey);
foreach (KeyValuePair> value in _storages)
{
- StringBuilder sb = new();
- sb.Append(Environment.NewLine);
- // не сохраняем пустые коллекции
+ writer.Write(Environment.NewLine);
if (value.Value.Count == 0)
{
continue;
}
- sb.Append(value.Key);
- sb.Append(_separatorForKeyValue);
- sb.Append(value.Value.GetCollectionType);
- sb.Append(_separatorForKeyValue);
- sb.Append(value.Value.MaxCount);
- sb.Append(_separatorForKeyValue);
+ writer.Write(value.Key);
+ writer.Write(_separatorForKeyValue);
+ writer.Write(value.Value.GetCollectionType);
+ writer.Write(_separatorForKeyValue);
+ writer.Write(value.Value.MaxCount);
+ writer.Write(_separatorForKeyValue);
foreach (T? item in value.Value.GetItems())
{
string data = item?.GetDataForSave() ?? string.Empty;
@@ -133,43 +112,37 @@ public class StorageCollection
{
continue;
}
- sb.Append(data);
- sb.Append(_separatorItems);
+ writer.Write(data);
+ writer.Write(_separatorItems);
}
- writer.Write(sb);
}
-
}
-
- return true;
}
///
/// Загрузка информации по автомобилям в хранилище из файла
///
/// Путь и имя файла
- /// true - загрузка прошла успешно, false - ошибка при загрузке данных
- public bool LoadData(string filename)
+ public void LoadData(string filename)
{
if (!File.Exists(filename))
{
- return false;
+ throw new Exception("Файл не существует");
}
using (StreamReader fs = File.OpenText(filename))
{
string str = fs.ReadLine();
if (str == null || str.Length == 0)
{
- return false;
+ throw new Exception("В файле нет данных");
}
if (!str.StartsWith(_collectionKey))
{
- return false;
+ throw new Exception("В файле неверные данные");
}
_storages.Clear();
string strs = "";
while ((strs = fs.ReadLine()) != null)
{
-
string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries);
if (record.Length != 4)
{
@@ -179,7 +152,7 @@ public class StorageCollection
ICollectionGenericObjects? collection = StorageCollection.CreateCollection(collectionType);
if (collection == null)
{
- return false;
+ throw new Exception("Не удалось создать коллекцию");
}
collection.MaxCount = Convert.ToInt32(record[2]);
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
@@ -187,16 +160,21 @@ public class StorageCollection
{
if (elem?.CreateDrawningPlane() is T plane)
{
- if (collection.Insert(plane) == -1)
+ try
{
- return false;
+ if (collection.Insert(plane) == -1)
+ {
+ throw new Exception("Объект не удалось добавить в коллекцию: " + record[3]);
+ }
+ }
+ catch (CollectionOverflowException ex)
+ {
+ throw new Exception("Коллекция переполнена", ex);
}
}
}
_storages.Add(record[0], collection);
}
- return true;
-
}
}
///
diff --git a/ProjectAirPlane/ProjectAirPlane/Exceptions/CollectionOverflowException.cs b/ProjectAirPlane/ProjectAirPlane/Exceptions/CollectionOverflowException.cs
new file mode 100644
index 0000000..97064d1
--- /dev/null
+++ b/ProjectAirPlane/ProjectAirPlane/Exceptions/CollectionOverflowException.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectAirPlane.Exceptions;
+
+///
+/// Класс, описывающий переполнение коллекции
+///
+[Serializable]
+public class CollectionOverflowException : ApplicationException
+{
+ public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество: " + count) { }
+ public CollectionOverflowException() : base() { }
+ public CollectionOverflowException(string message) : base(message) { }
+ public CollectionOverflowException(string message, Exception exception) : base(message, exception) { }
+ protected CollectionOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
+}
\ No newline at end of file
diff --git a/ProjectAirPlane/ProjectAirPlane/Exceptions/ObjectNotFoundException.cs b/ProjectAirPlane/ProjectAirPlane/Exceptions/ObjectNotFoundException.cs
new file mode 100644
index 0000000..435ffcc
--- /dev/null
+++ b/ProjectAirPlane/ProjectAirPlane/Exceptions/ObjectNotFoundException.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectAirPlane.Exceptions;
+
+///
+/// Класс, описывающий ошибку, что по указанной позиции нет элемента
+///
+[Serializable]
+internal class ObjectNotFoundException : ApplicationException
+{
+ public ObjectNotFoundException(int i) : base("Не найден объект по позиции " + i) { }
+ public ObjectNotFoundException() : base() { }
+ public ObjectNotFoundException(string message) : base(message) { }
+ public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { }
+ protected ObjectNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
+}
\ No newline at end of file
diff --git a/ProjectAirPlane/ProjectAirPlane/Exceptions/PositionOutOfCollectionException.cs b/ProjectAirPlane/ProjectAirPlane/Exceptions/PositionOutOfCollectionException.cs
new file mode 100644
index 0000000..60ad119
--- /dev/null
+++ b/ProjectAirPlane/ProjectAirPlane/Exceptions/PositionOutOfCollectionException.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ProjectAirPlane.Exceptions;
+
+[Serializable]
+internal class PositionOutOfCollectionException : ApplicationException
+{
+ public PositionOutOfCollectionException(int i) : base("Выход за границы коллекции.Позиция " + i) { }
+ public PositionOutOfCollectionException() : base() { }
+ public PositionOutOfCollectionException(string message) : base(message) { }
+ public PositionOutOfCollectionException(string message, Exception exception) : base(message, exception) { }
+ protected PositionOutOfCollectionException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
+}
diff --git a/ProjectAirPlane/ProjectAirPlane/FormPlaneCollection.cs b/ProjectAirPlane/ProjectAirPlane/FormPlaneCollection.cs
index 2658f96..6fbce15 100644
--- a/ProjectAirPlane/ProjectAirPlane/FormPlaneCollection.cs
+++ b/ProjectAirPlane/ProjectAirPlane/FormPlaneCollection.cs
@@ -7,8 +7,10 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using Microsoft.Extensions.Logging;
using ProjectAirPlane.CollectionGenericObjects;
using ProjectAirPlane.Drawnings;
+using ProjectAirPlane.Exceptions;
namespace ProjectAirPlane;
@@ -27,13 +29,20 @@ public partial class FormPlaneCollection : Form
///
private AbstractCompany? _company = null;
+ ///
+ /// Логер
+ ///
+ private readonly ILogger _logger;
+
///
/// Конструктор
///
- public FormPlaneCollection()
+ public FormPlaneCollection(ILogger logger)
{
InitializeComponent();
_storageCollection = new();
+ _logger = logger;
+ _logger.LogInformation("Форма загрузилась");
}
///
@@ -60,19 +69,25 @@ public partial class FormPlaneCollection : Form
///
private void SetPlane(DrawningPlane plane)
{
- if (_company == null || plane == null)
+ try
{
- return;
- }
+ if (_company == null || plane == null)
+ {
+ return;
+ }
- if (_company + plane != -1)
- {
- MessageBox.Show("Объект добавлен");
- pictureBox.Image = _company.Show();
+ if (_company + plane != -1)
+ {
+ MessageBox.Show("Объект добавлен");
+ pictureBox.Image = _company.Show();
+ _logger.LogInformation("Добавлен объект: " + plane.GetDataForSave());
+ }
}
- else
+ catch (ObjectNotFoundException) { }
+ catch (CollectionOverflowException ex)
{
MessageBox.Show("Не удалось добавить объект");
+ _logger.LogError("Ошибка : {Messsage}", ex.Message);
}
}
@@ -94,15 +109,20 @@ public partial class FormPlaneCollection : Form
return;
}
- int pos = Convert.ToInt32(maskedTextBox.Text);
- if (_company - pos != null)
+ int position = Convert.ToInt32(maskedTextBox.Text);
+ try
{
- MessageBox.Show("Объект удален");
- pictureBox.Image = _company.Show();
+ if (_company - position != null)
+ {
+ MessageBox.Show("Объект удален");
+ pictureBox.Image = _company.Show();
+ _logger.LogInformation("Удален объект по позиции " + position);
+ }
}
- else
+ catch (Exception ex)
{
MessageBox.Show("Не удалось удалить объект");
+ _logger.LogInformation("Ошибка: {Message}", ex.Message);
}
}
@@ -115,26 +135,33 @@ public partial class FormPlaneCollection : Form
DrawningPlane? plane = null;
int counter = 100;
- while (plane == null)
+
+ try
{
- plane = _company.GetRandomObject();
- counter--;
- if (counter <= 0)
+ while (plane == null)
{
- break;
+ plane = _company.GetRandomObject();
+ counter--;
+ if (counter <= 0)
+ {
+ break;
+ }
}
+ FormAirPlane form = new()
+ {
+ SetPlane = plane
+ };
+ form.ShowDialog();
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
if (plane == null)
{
return;
}
-
- FormAirPlane form = new()
- {
- SetPlane = plane
- };
- form.ShowDialog();
}
private void ButtonRefresh_Click(object sender, EventArgs e)
@@ -157,22 +184,30 @@ public partial class FormPlaneCollection : Form
{
if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked))
{
- MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show("Не все данные заполнены", "Ошибка",
+ MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
- CollectionType collectionType = CollectionType.None;
- if (radioButtonMassive.Checked)
+ try
{
- collectionType = CollectionType.Massive;
+ CollectionType collectionType = CollectionType.None;
+ if (radioButtonMassive.Checked)
+ {
+ collectionType = CollectionType.Massive;
+ }
+ else if (radioButtonList.Checked)
+ {
+ collectionType = CollectionType.List;
+ }
+ _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType);
+ RerfreshListBoxItems();
+ _logger.LogInformation("Коллекция добавлена " + textBoxCollectionName.Text);
}
- else if (radioButtonList.Checked)
+ catch (Exception ex)
{
- collectionType = CollectionType.List;
+ _logger.LogError("Ошибка: {Message}", ex.Message);
}
-
- _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType);
- RerfreshListBoxItems();
}
///
@@ -198,17 +233,29 @@ public partial class FormPlaneCollection : Form
///
private void ButtonCollectionDel_Click(object sender, EventArgs e)
{
+ // TODO прописать логику удаления элемента из коллекции
+ // нужно убедиться, что есть выбранная коллекция
+ // спросить у пользователя через MessageBox, что он подтверждает, что хочет удалить запись
+ // удалить и обновить ListBox
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
{
MessageBox.Show("Коллекция не выбрана");
return;
}
- if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
+ try
{
- return;
+ if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
+ {
+ return;
+ }
+ _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
+ RerfreshListBoxItems();
+ _logger.LogInformation("Коллекция: " + listBoxCollection.SelectedItem.ToString() + " удалена");
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError("Ошибка: {Message}", ex.Message);
}
- _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
- RerfreshListBoxItems();
}
///
/// Создание компании
@@ -249,15 +296,16 @@ public partial class FormPlaneCollection : Form
{
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
- if (_storageCollection.SaveData(saveFileDialog.FileName))
+ try
{
- MessageBox.Show("Сохранение прошло успешно",
- "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _storageCollection.SaveData(saveFileDialog.FileName);
+ MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName);
}
- else
+ catch (Exception ex)
{
- MessageBox.Show("Не сохранилось", "Результат",
- MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ _logger.LogError("Ошибка: {Message}", ex.Message);
}
}
@@ -271,16 +319,17 @@ public partial class FormPlaneCollection : Form
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
- if (_storageCollection.LoadData(openFileDialog.FileName))
+ try
{
- MessageBox.Show("Загрузка прошла успешно",
- "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _storageCollection.LoadData(openFileDialog.FileName);
+ MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
RerfreshListBoxItems();
+ _logger.LogInformation("Загрузка из файла: {filename}", openFileDialog.FileName);
}
- else
+ catch (Exception ex)
{
- MessageBox.Show("Не сохранилось", "Результат",
- MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ _logger.LogError("Ошибка: {Message}", ex.Message);
}
}
}
diff --git a/ProjectAirPlane/ProjectAirPlane/Program.cs b/ProjectAirPlane/ProjectAirPlane/Program.cs
index 831f9a4..d2a9cac 100644
--- a/ProjectAirPlane/ProjectAirPlane/Program.cs
+++ b/ProjectAirPlane/ProjectAirPlane/Program.cs
@@ -1,3 +1,8 @@
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Logging;
+using Serilog;
+
namespace ProjectAirPlane
{
internal static class Program
@@ -11,8 +16,32 @@ namespace ProjectAirPlane
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
- Application.Run(new FormPlaneCollection());
-
+
+ ServiceCollection services = new();
+ ConfigureServices(services);
+ using ServiceProvider serviceProvider = services.BuildServiceProvider();
+ Application.Run(serviceProvider.GetRequiredService());
+
+ }
+
+ private static void ConfigureServices(ServiceCollection services)
+ {
+ string[] path = Directory.GetCurrentDirectory().Split('\\');
+ string pathNeed = "";
+ for (int i = 0; i < path.Length - 3; i++)
+ {
+ pathNeed += path[i] + "\\";
+ }
+ services.AddSingleton()
+ .AddLogging(option =>
+ {
+ option.SetMinimumLevel(LogLevel.Information);
+ option.AddSerilog(new LoggerConfiguration()
+ .ReadFrom.Configuration(new ConfigurationBuilder()
+ .AddJsonFile($"{pathNeed}serilog.json")
+ .Build())
+ .CreateLogger());
+ });
}
}
}
\ No newline at end of file
diff --git a/ProjectAirPlane/ProjectAirPlane/ProjectAirPlane.csproj b/ProjectAirPlane/ProjectAirPlane/ProjectAirPlane.csproj
index 244387d..8ba3240 100644
--- a/ProjectAirPlane/ProjectAirPlane/ProjectAirPlane.csproj
+++ b/ProjectAirPlane/ProjectAirPlane/ProjectAirPlane.csproj
@@ -8,6 +8,16 @@
enable
+
+
+
+
+
+
+
+
+
+
True
diff --git a/ProjectAirPlane/ProjectAirPlane/serilog.json b/ProjectAirPlane/ProjectAirPlane/serilog.json
new file mode 100644
index 0000000..fd4d7d8
--- /dev/null
+++ b/ProjectAirPlane/ProjectAirPlane/serilog.json
@@ -0,0 +1,15 @@
+{
+ "Serilog": {
+ "Using": [ "Serilog.Sinks.File" ],
+ "MinimumLevel": "Debug",
+ "WriteTo": [
+ {
+ "Name": "File",
+ "Args": { "path": "log.log" }
+ }
+ ],
+ "Properties": {
+ "Application": "Sample"
+ }
+ }
+}