diff --git a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/AbstractCompany.cs b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/AbstractCompany.cs index ffbcce3..1406305 100644 --- a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/AbstractCompany.cs +++ b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/AbstractCompany.cs @@ -2,19 +2,19 @@ namespace ProjectLinkor.CollectionGenericObjects; /// -/// Абстракция компании, хранящий коллекцию линкора +/// Абстракция компании, хранящий коллекцию линкора /// public abstract class AbstractCompany { /// /// Размер места (ширина) /// - protected readonly int _placeSizeWidth = 240; + protected readonly int _placeSizeWidth = 237; /// /// Размер места (высота) /// - protected readonly int _placeSizeHeight = 95; + protected readonly int _placeSizeHeight = 91; /// /// Ширина окна @@ -32,7 +32,7 @@ public abstract class AbstractCompany /// /// Вычисление максимального количества элементов, который можно разместить в окне /// - private int GetMaxCount => _pictureWidth * _pictureHeight / (_placeSizeWidth * _placeSizeHeight); + private int GetMaxCount => (_pictureWidth * _pictureHeight) / (_placeSizeWidth * _placeSizeHeight); public static int getAmountOfObjects() { diff --git a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/ListGenericObjects.cs b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/ListGenericObjects.cs index 8aed789..9d50884 100644 --- a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/ListGenericObjects.cs +++ b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/ListGenericObjects.cs @@ -1,4 +1,6 @@ -namespace ProjectLinkor.CollectionGenericObjects; +using ProjectLinkor.Exceptions; + +namespace ProjectLinkor.CollectionGenericObjects; /// /// Конструктор @@ -45,53 +47,53 @@ public class ListGenericObjects : ICollectionGenericObjects public T? Get(int position) { - // TODO проверка позиции - if (position >= Count || position < 0) - return null; + // проверка позиции + // выброс ошибки, если выход за границы списка + if (position < 0 || position > _maxCount) throw new PositionOutOfCollectionException(position); + return _collection[position]; } public int Insert(T obj) { - // TODO проверка, что не превышено максимальное количество элементов - // TODO проверка позиции - // TODO вставка по позиции - if (Count == _maxCount) return -1; + // проверка, что не превышено максимальное количество элементов + if (_collection.Count >= _maxCount) + { + throw new CollectionOverflowException(_maxCount); + } + // вставка в конец набора _collection.Add(obj); - return Count; + return _maxCount; } public int Insert(T obj, int position) { - // TODO проверка, что не превышено максимальное количество элементов - // TODO проверка позиции - // TODO вставка по позиции - if (position >= Count || position < 0) - { - return -1; - } - if (Count == _maxCount) - { - return -1; - } + // проверка, что не превышено максимальное количество элементов + if (Count >= _maxCount) + throw new CollectionOverflowException(_maxCount); + + // проверка позиции + if (position < 0 || position >= _maxCount) + throw new PositionOutOfCollectionException(position); + + // вставка по позиции _collection.Insert(position, obj); return position; } public T Remove(int position) { - // TODO проверка позиции - // TODO удаление объекта из списка - if (position >= Count || position < 0) - return null; - T obj = _collection[position]; - _collection.RemoveAt(position); - return obj; + // проверка позиции + if (position < 0 || position > _maxCount) throw new PositionOutOfCollectionException(position); + // удаление объекта из списка + T temp = _collection[position]; + _collection[position] = null; + return temp; } public IEnumerable GetItems() { - for (int i = 0; i < Count; ++i) + for (int i = 0; i < _collection.Count; i++) { yield return _collection[i]; } diff --git a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/MassiveGenericObjects.cs b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/MassiveGenericObjects.cs index af4936b..93dc425 100644 --- a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/MassiveGenericObjects.cs +++ b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/MassiveGenericObjects.cs @@ -1,4 +1,5 @@ using ProjectLinkor.CollectionGenericObjects; +using ProjectLinkor.Exceptions; namespace ProjectLinkor.CollectionGenericObjects; @@ -51,7 +52,10 @@ 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); + } return _collection[position]; } @@ -68,59 +72,67 @@ 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 (_collection[position] == null) + // проверка позиции + if (position >= _collection.Length || position < 0) + throw new PositionOutOfCollectionException(position); + + // проверка, что элемент массива по этой позиции пустой, если нет, то + if (_collection[position] != null) { - _collection[position] = obj; - return position; - } - int index = position + 1; - while (index < _collection.Length) - { - if (_collection[index] == null) + // проверка, что после вставляемого элемента в массиве есть пустой элемент + int nullIndex = -1; + for (int i = position + 1; i < Count; i++) { - _collection[index] = obj; - return index; + if (_collection[i] == null) + { + nullIndex = i; + break; + } } - index++; - } - index = position - 1; - while (index >= 0) - { - if (_collection[index] == null) + // Если пустого элемента нет, то выходим + if (nullIndex < 0) { - _collection[index] = obj; - return index; + return -1; } - index--; + // сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента + int j = nullIndex - 1; + while (j >= position) + { + _collection[j + 1] = _collection[j]; + j--; + } + throw new CollectionOverflowException(Count); } - return -1; + // вставка по позиции + _collection[position] = obj; + return position; } public T? Remove(int position) { - // TODO проверка позиции - // TODO удаление объекта из массива, присвоив элементу массива значение null + // проверка позиции + // удаление объекта из массива, присвоив элементу массива значение null if (position >= _collection.Length || position < 0) - return null; - T obj = _collection[position]; + { + throw new PositionOutOfCollectionException(position); + } + if (_collection[position] == null) + { + throw new ObjectNotFoundException(position); + } + T temp = _collection[position]; _collection[position] = null; - return obj; + return temp; } public IEnumerable GetItems() { - for (int i = 0; i < _collection.Length; ++i) + for (int i = 0; i < _collection.Length; i++) { yield return _collection[i]; } diff --git a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/StorageCollection.cs b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/StorageCollection.cs index 52e8842..bb67d6c 100644 --- a/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/StorageCollection.cs +++ b/ProjectSportCar/ProjectSportCar/CollectionGenericObjects/StorageCollection.cs @@ -1,4 +1,5 @@ using ProjectLinkor.Drawnings; +using ProjectLinkor.Exceptions; using System.Text; namespace ProjectLinkor.CollectionGenericObjects; @@ -89,13 +90,13 @@ public class StorageCollection /// /// Сохранение информации по кораблям в хранилище в файл /// - /// + /// Путь и имя файла /// - public bool SaveData(string filename) + public void SaveData(string filename) { if (_storages.Count == 0) { - return false; + throw new Exception("В хранилище отсутствуют коллекции для сохранения"); } if (File.Exists(filename)) @@ -135,19 +136,18 @@ public class StorageCollection } } } - return true; } /// /// Загрузка информации по кораблям в хранилище из файла /// - /// + /// Путь и имя файла /// - public bool LoadData(string filename) + public void LoadData(string filename) { if (!File.Exists(filename)) { - return false; + throw new Exception("Файл не существует"); } using (StreamReader reader = File.OpenText(filename)) @@ -156,13 +156,13 @@ public class StorageCollection if (str == null || str.Length == 0) { - return false; + throw new Exception("В файле нет данных"); } if (!str.StartsWith(_collectionKey)) { //если нет такой записи, то это не те данные - return false; + throw new Exception("В файле неверные данные"); } _storages.Clear(); @@ -179,7 +179,7 @@ public class StorageCollection ICollectionGenericObjects? collection = StorageCollection.CreateCollection(collectionType); if (collection == null) { - return false; + throw new Exception("Не удалось создать коллекцию"); } collection.MaxCount = Convert.ToInt32(record[2]); @@ -189,9 +189,16 @@ public class StorageCollection { if (elem?.CreateDrawingWarship() is T bulldozer) { - if (collection.Insert(bulldozer) == -1) + try { - return false; + if (collection.Insert(bulldozer) == -1) + { + throw new Exception("Объект не удалось добавить в коллекцию: " + record[3]); + } + } + catch (CollectionOverflowException ex) + { + throw new Exception("Коллекция переполнена", ex); } } } @@ -199,7 +206,6 @@ public class StorageCollection _storages.Add(record[0], collection); } } - return true; } diff --git a/ProjectSportCar/ProjectSportCar/Drawnings/DrawingWarship.cs b/ProjectSportCar/ProjectSportCar/Drawnings/DrawingWarship.cs index c1f927b..6585c55 100644 --- a/ProjectSportCar/ProjectSportCar/Drawnings/DrawingWarship.cs +++ b/ProjectSportCar/ProjectSportCar/Drawnings/DrawingWarship.cs @@ -36,12 +36,12 @@ public class DrawingWarship /// /// Ширина прорисовки военного корабля /// - private readonly int _drawingWarshipWidth = 148; + private readonly int _drawingWarshipWidth = 160; /// /// Высота прорисовки военного корабля /// - private readonly int _drawingWarshipHeight = 75; + private readonly int _drawingWarshipHeight = 80; /// /// Координата Х объекта diff --git a/ProjectSportCar/ProjectSportCar/Drawnings/DrawningLinkor.cs b/ProjectSportCar/ProjectSportCar/Drawnings/DrawningLinkor.cs index 1a3c560..f7e0ef3 100644 --- a/ProjectSportCar/ProjectSportCar/Drawnings/DrawningLinkor.cs +++ b/ProjectSportCar/ProjectSportCar/Drawnings/DrawningLinkor.cs @@ -16,7 +16,7 @@ public class DrawningLinkor : DrawingWarship /// Признак наличия орудийной башни /// Признак наличия отсека под ракеты /// Признак наличия - public DrawningLinkor(int speed, double weigth, Color bodyColor, bool gunTurret, bool compartment, bool linkorMotor, Color additionalColor) : base(148, 75) + public DrawningLinkor(int speed, double weigth, Color bodyColor, bool gunTurret, bool compartment, bool linkorMotor, Color additionalColor) : base(160, 80) { EntityWarship = new EntityLinkor(speed, weigth, bodyColor, gunTurret, compartment, linkorMotor, additionalColor); } diff --git a/ProjectSportCar/ProjectSportCar/Exceptions/CollectionOverflowException.cs b/ProjectSportCar/ProjectSportCar/Exceptions/CollectionOverflowException.cs new file mode 100644 index 0000000..3225024 --- /dev/null +++ b/ProjectSportCar/ProjectSportCar/Exceptions/CollectionOverflowException.cs @@ -0,0 +1,17 @@ +using System.Runtime.Serialization; + +namespace ProjectLinkor.Exceptions; + +/// +/// Класс, описывающий ошибку переполнения коллекции +/// + +[Serializable] +internal 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 context) : base(info, context) { } +} diff --git a/ProjectSportCar/ProjectSportCar/Exceptions/ObjectNotFoundException.cs b/ProjectSportCar/ProjectSportCar/Exceptions/ObjectNotFoundException.cs new file mode 100644 index 0000000..4fe5012 --- /dev/null +++ b/ProjectSportCar/ProjectSportCar/Exceptions/ObjectNotFoundException.cs @@ -0,0 +1,18 @@ +using System.Runtime.Serialization; + +namespace ProjectLinkor.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 context) : base(info, context) { } +} diff --git a/ProjectSportCar/ProjectSportCar/Exceptions/PositionOutOfCollectionException.cs b/ProjectSportCar/ProjectSportCar/Exceptions/PositionOutOfCollectionException.cs new file mode 100644 index 0000000..cc42688 --- /dev/null +++ b/ProjectSportCar/ProjectSportCar/Exceptions/PositionOutOfCollectionException.cs @@ -0,0 +1,17 @@ +using System.Runtime.Serialization; + +namespace ProjectLinkor.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 context) : base(info, context) { } +} diff --git a/ProjectSportCar/ProjectSportCar/FormWarshipCollection.Designer.cs b/ProjectSportCar/ProjectSportCar/FormWarshipCollection.Designer.cs index 5215a50..1e4cba5 100644 --- a/ProjectSportCar/ProjectSportCar/FormWarshipCollection.Designer.cs +++ b/ProjectSportCar/ProjectSportCar/FormWarshipCollection.Designer.cs @@ -66,9 +66,9 @@ groupBoxTools.Controls.Add(panelStorage); groupBoxTools.Controls.Add(comboBoxSelectionCompany); groupBoxTools.Dock = DockStyle.Right; - groupBoxTools.Location = new Point(961, 28); + groupBoxTools.Location = new Point(892, 28); groupBoxTools.Name = "groupBoxTools"; - groupBoxTools.Size = new Size(292, 676); + groupBoxTools.Size = new Size(292, 678); groupBoxTools.TabIndex = 0; groupBoxTools.TabStop = false; groupBoxTools.Text = "Инструменты"; @@ -82,9 +82,9 @@ panelCompanyTools.Controls.Add(buttonGoToCheck); panelCompanyTools.Dock = DockStyle.Bottom; panelCompanyTools.Enabled = false; - panelCompanyTools.Location = new Point(3, 362); + panelCompanyTools.Location = new Point(3, 384); panelCompanyTools.Name = "panelCompanyTools"; - panelCompanyTools.Size = new Size(286, 311); + panelCompanyTools.Size = new Size(286, 291); panelCompanyTools.TabIndex = 9; // // buttonAddWarship @@ -101,7 +101,7 @@ // maskedTextBox1 // maskedTextBox1.Anchor = AnchorStyles.Left | AnchorStyles.Right; - maskedTextBox1.Location = new Point(3, 91); + maskedTextBox1.Location = new Point(3, 81); maskedTextBox1.Mask = "00"; maskedTextBox1.Name = "maskedTextBox1"; maskedTextBox1.Size = new Size(271, 27); @@ -249,7 +249,7 @@ pictureBox.Dock = DockStyle.Fill; pictureBox.Location = new Point(0, 28); pictureBox.Name = "pictureBox"; - pictureBox.Size = new Size(961, 676); + pictureBox.Size = new Size(892, 678); pictureBox.TabIndex = 1; pictureBox.TabStop = false; // @@ -259,7 +259,7 @@ menuStrip.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem }); menuStrip.Location = new Point(0, 0); menuStrip.Name = "menuStrip"; - menuStrip.Size = new Size(1253, 28); + menuStrip.Size = new Size(1184, 28); menuStrip.TabIndex = 2; menuStrip.Text = "menuStrip1"; // @@ -298,7 +298,7 @@ // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; - ClientSize = new Size(1253, 704); + ClientSize = new Size(1184, 706); Controls.Add(pictureBox); Controls.Add(groupBoxTools); Controls.Add(menuStrip); diff --git a/ProjectSportCar/ProjectSportCar/FormWarshipCollection.cs b/ProjectSportCar/ProjectSportCar/FormWarshipCollection.cs index c4071da..a431dd6 100644 --- a/ProjectSportCar/ProjectSportCar/FormWarshipCollection.cs +++ b/ProjectSportCar/ProjectSportCar/FormWarshipCollection.cs @@ -1,5 +1,7 @@ -using ProjectLinkor.CollectionGenericObjects; +using Microsoft.Extensions.Logging; +using ProjectLinkor.CollectionGenericObjects; using ProjectLinkor.Drawnings; +using ProjectLinkor.Exceptions; using System.Windows.Forms; namespace ProjectLinkor; @@ -19,13 +21,16 @@ public partial class FormWarshipCollection : Form /// private AbstractCompany? _company = null; + private readonly ILogger _logger; + /// /// Конструктор /// - public FormWarshipCollection() + public FormWarshipCollection(ILogger logger) { InitializeComponent(); _storageCollection = new(); + _logger = logger; } /// @@ -49,26 +54,36 @@ public partial class FormWarshipCollection : Form { return; } + DrawingWarship? warship = null; int counter = 100; - while (warship == null) + try { - warship = _company.GetRandomObject(); - counter--; - if (counter < -0) + while (warship == null) { - break; + warship = _company.GetRandomObject(); + counter--; + if (counter <= 0) + { + break; + } } + + if (warship == null) + { + return; + } + + FormLinkor form = new() + { + SetWarship = warship + }; + form.ShowDialog(); } - if (warship == null) + catch (Exception ex) { - return; + MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } - FormLinkor form = new() - { - SetWarship = warship - }; - form.ShowDialog(); } @@ -80,8 +95,8 @@ public partial class FormWarshipCollection : Form private void ButtonAddWarship_Click(object sender, EventArgs e) { FormWarshipConfig form = new(); - form.Show(); form.AddEvent(SetWarship); + form.Show(); } /// @@ -94,15 +109,19 @@ public partial class FormWarshipCollection : Form { return; } - - if (_company + warship != -1) + try { - MessageBox.Show("Объект добавлен"); - pictureBox.Image = _company.Show(); + if (_company + warship != -1) + { + MessageBox.Show("Объект добавлен"); + pictureBox.Image = _company.Show(); + _logger.LogInformation("Добавлен объект: {object}", warship.GetDataForSave()); + } } - else + catch (CollectionOverflowException ex) { - MessageBox.Show("Не удалось добавить объект"); + MessageBox.Show(ex.Message); + _logger.LogError("Ошибка: {Message}", ex.Message); } } @@ -125,14 +144,19 @@ public partial class FormWarshipCollection : Form } int pos = Convert.ToInt32(maskedTextBox1.Text); - if (_company - pos != null) + try { - MessageBox.Show("Объект удален"); - pictureBox.Image = _company.Show(); + if (_company - pos != null) + { + MessageBox.Show("Объект удален"); + pictureBox.Image = _company.Show(); + _logger.LogInformation("Удален объект по позиции " + pos); + } } - else + catch (ObjectNotFoundException ex) { - MessageBox.Show("Не удалось удалить объект"); + MessageBox.Show(ex.Message); + _logger.LogError("Ошибка: {Message}", ex.Message); } } @@ -159,10 +183,10 @@ public partial class FormWarshipCollection : 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) { @@ -172,8 +196,10 @@ public partial class FormWarshipCollection : Form { collectionType = CollectionType.List; } + _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType); RerfreshListBoxItems(); + _logger.LogInformation("Добавлена коллекция: {collectionName} типа: {collectionType}", textBoxCollectionName.Text, collectionType); } /// @@ -183,7 +209,7 @@ public partial class FormWarshipCollection : Form /// private void ButtonCollectionDel_Click(object sender, EventArgs e) { - // TODO прописать логику удаления элемента из коллекции + //прописать логику удаления элемента из коллекции // нужно убедиться, что есть выбранная коллекция // спросить у пользователя через MessageBox, что он подтверждает, что хочет удалить запись // удалить и обновить ListBox @@ -192,12 +218,20 @@ public partial class FormWarshipCollection : Form 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(); } /// @@ -243,6 +277,7 @@ public partial class FormWarshipCollection : Form _company = new WarshipSharingService(pictureBox.Width, pictureBox.Height, collection); break; } + panelCompanyTools.Enabled = true; RerfreshListBoxItems(); } @@ -256,13 +291,16 @@ public partial class FormWarshipCollection : Form { if (saveFileDialog.ShowDialog() == DialogResult.OK) { - if (_storageCollection.SaveData(saveFileDialog.FileName)) + try { + _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); } } } @@ -276,14 +314,18 @@ public partial class FormWarshipCollection : Form { if (openFileDialog.ShowDialog() == DialogResult.OK) { - if (_storageCollection.LoadData(openFileDialog.FileName)) + try { + _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); + _logger.LogError("Ошибка: {Message}", ex.Message); + } } } diff --git a/ProjectSportCar/ProjectSportCar/Program.cs b/ProjectSportCar/ProjectSportCar/Program.cs index fa8cf6d..9e3816c 100644 --- a/ProjectSportCar/ProjectSportCar/Program.cs +++ b/ProjectSportCar/ProjectSportCar/Program.cs @@ -1,3 +1,8 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; + namespace ProjectLinkor { internal static class Program @@ -11,7 +16,34 @@ namespace ProjectLinkor // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormWarshipCollection()); + ServiceCollection services = new(); + ConfigureServices(services); + using ServiceProvider serviceProvider = services.BuildServiceProvider(); + Application.Run(serviceProvider.GetRequiredService()); + } + + /// + /// DI + /// + /// + 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/ProjectSportCar/ProjectSportCar/ProjectLinkor.csproj b/ProjectSportCar/ProjectSportCar/ProjectLinkor.csproj index 244387d..96dd190 100644 --- a/ProjectSportCar/ProjectSportCar/ProjectLinkor.csproj +++ b/ProjectSportCar/ProjectSportCar/ProjectLinkor.csproj @@ -8,6 +8,17 @@ enable + + + + + + + + + + + True @@ -23,4 +34,13 @@ + + + Always + + + Always + + + \ No newline at end of file diff --git a/ProjectSportCar/ProjectSportCar/nlog.config b/ProjectSportCar/ProjectSportCar/nlog.config new file mode 100644 index 0000000..7470629 --- /dev/null +++ b/ProjectSportCar/ProjectSportCar/nlog.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectSportCar/ProjectSportCar/serilog.json b/ProjectSportCar/ProjectSportCar/serilog.json new file mode 100644 index 0000000..fa91ef7 --- /dev/null +++ b/ProjectSportCar/ProjectSportCar/serilog.json @@ -0,0 +1,15 @@ +{ + "Serilog": { + "Using": [ "Serilog.Sinks.File" ], + "MinimumLevel": "Debug", + "WriteTo": [ + { + "Name": "File", + "Args": { "path": "log.log" } + } + ], + "Properties": { + "Application": "Sample" + } + } +} \ No newline at end of file