diff --git a/AirBomber/AirBomber/AirBomber.csproj b/AirBomber/AirBomber/AirBomber.csproj index 13ee123..7900f0b 100644 --- a/AirBomber/AirBomber/AirBomber.csproj +++ b/AirBomber/AirBomber/AirBomber.csproj @@ -8,6 +8,17 @@ enable + + + + + + + + + + + True diff --git a/AirBomber/AirBomber/AppSettings.json b/AirBomber/AirBomber/AppSettings.json new file mode 100644 index 0000000..acbfec1 --- /dev/null +++ b/AirBomber/AirBomber/AppSettings.json @@ -0,0 +1,20 @@ +{ + "Serilog": { + "Using": [ "Serilog.Sinks.File" ], + "MinimumLevel": "Information", + "WriteTo": [ + { + "Name": "File", + "Args": { + "path": "Logs/log_.log", + "rollingInterval": "Day", + "outputTemplate": "[{Timestamp:HH:mm:ss.fff}]{Level:u4}: {Message:lj}{NewLine}{Exception}" + } + } + ], + "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ], + "Properties": { + "Application": "AirBombers" + } + } +} \ No newline at end of file diff --git a/AirBomber/AirBomber/FormPlaneCollection.cs b/AirBomber/AirBomber/FormPlaneCollection.cs index 2c07129..15fd2e7 100644 --- a/AirBomber/AirBomber/FormPlaneCollection.cs +++ b/AirBomber/AirBomber/FormPlaneCollection.cs @@ -7,6 +7,11 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using Microsoft.VisualBasic.Logging; +using AirBomber.Exceptions; +using System.Xml.Linq; +using System.Linq.Expressions; +using Microsoft.Extensions.Logging; namespace AirBomber { @@ -16,10 +21,12 @@ namespace AirBomber /// Набор объектов /// private readonly PlanesGenericStorage _storage; - public FormPlaneCollection() + private readonly ILogger _logger; + public FormPlaneCollection(ILogger logger) { InitializeComponent(); _storage = new PlanesGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height); + _logger = logger; } /// /// Заполнение listBoxObjects @@ -75,14 +82,17 @@ namespace AirBomber { return; } - if (obj + plane > -1) + try { + _ = obj + plane; MessageBox.Show("Объект добавлен"); + _logger.LogInformation("Объект добавлен"); pictureBoxCollection.Image = obj.ShowPlanes(); } - else + catch (Exception ex) { - MessageBox.Show("Не удалось добавить объект"); + MessageBox.Show(ex.Message); + _logger.LogWarning($"Объект не добавлен в набор {listBoxStorages.SelectedItem.ToString()}"); } } /// @@ -105,15 +115,29 @@ namespace AirBomber { return; } - int pos = Convert.ToInt32(maskedTextBoxNumber.Text); - if (obj - pos != null) + try { - MessageBox.Show("Объект удален"); - pictureBoxCollection.Image = obj.ShowPlanes(); + int pos = Convert.ToInt32(maskedTextBoxNumber.Text); + if (obj - pos != null) + { + MessageBox.Show("Объект удален"); + _logger.LogInformation("Объект удален"); + pictureBoxCollection.Image = obj.ShowPlanes(); + } + else + { + MessageBox.Show("Не удалось удалить объект"); + _logger.LogWarning("Не удалось удалить объект"); + } } - else + catch (PlaneNotFoundException ex) { - MessageBox.Show("Не удалось удалить объект"); + MessageBox.Show(ex.Message); + } + catch(Exception ex) + { + MessageBox.Show("Неверный ввод"); + _logger.LogWarning("Неверный ввод"); } } /// @@ -143,23 +167,26 @@ namespace AirBomber { if (string.IsNullOrEmpty(textBoxStorageName.Text)) { - MessageBox.Show("Не все данные заполнены", "Ошибка", - MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogWarning("Не все данные заполнены"); return; } _storage.AddSet(textBoxStorageName.Text); ReloadObjects(); + _logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}"); } private void buttonDelObject_Click(object sender, EventArgs e) { + string Name = listBoxStorages.SelectedItem.ToString() ?? string.Empty; if (listBoxStorages.SelectedIndex == -1) { return; } - if (MessageBox.Show($"Удалить объект{listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + if (MessageBox.Show($"Удалить набор {Name}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { - _storage.DelSet(listBoxStorages.SelectedItem.ToString() ?? string.Empty); + _storage.DelSet(Name); ReloadObjects(); + _logger.LogInformation($"Удален набор: {Name}"); } } /// @@ -171,13 +198,16 @@ namespace AirBomber { if (saveFileDialog.ShowDialog() == DialogResult.OK) { - if (_storage.SaveData(saveFileDialog.FileName)) + try { + _storage.SaveData(saveFileDialog.FileName); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logger.LogInformation("Сохранение прошло успешно"); } - else + catch (Exception ex) { MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogWarning($"Не сохранилось: {ex.Message}"); } } } @@ -191,15 +221,17 @@ namespace AirBomber // TODO продумать логику DONE if (openFileDialog.ShowDialog() == DialogResult.OK) { - if (_storage.LoadData(openFileDialog.FileName)) + try { + _storage.LoadData(openFileDialog.FileName); MessageBox.Show("Загрузка прошла успешно!", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logger.LogInformation("Загрузка прошла успешно"); ReloadObjects(); } - else + catch(Exception ex) { - MessageBox.Show("Не загрузилось!", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); - + MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogWarning($"Не загрузилось: {ex.Message}"); } } } diff --git a/AirBomber/AirBomber/PlaneNotFoundException.cs b/AirBomber/AirBomber/PlaneNotFoundException.cs new file mode 100644 index 0000000..5dc61a2 --- /dev/null +++ b/AirBomber/AirBomber/PlaneNotFoundException.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace AirBomber.Exceptions +{ + [Serializable] + internal class PlaneNotFoundException: ApplicationException + { + public PlaneNotFoundException(int i) : base($"Не найден объект по позиции {i}") { } + public PlaneNotFoundException() : base() { } + public PlaneNotFoundException(string message) : base(message) { } + public PlaneNotFoundException(string message, Exception exception) : base(message, exception) + { } + protected PlaneNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } + } +} diff --git a/AirBomber/AirBomber/PlanesGenericCollection.cs b/AirBomber/AirBomber/PlanesGenericCollection.cs index 80f7989..5c38d3c 100644 --- a/AirBomber/AirBomber/PlanesGenericCollection.cs +++ b/AirBomber/AirBomber/PlanesGenericCollection.cs @@ -49,13 +49,13 @@ namespace AirBomber /// /// /// - public static int operator +(PlanesGenericCollection collect, T? obj) + public static bool operator +(PlanesGenericCollection collect, T obj) { if (obj == null) { - return -1; + return false; } - return collect?._collection.Insert(obj) ?? -1; + return collect._collection.Insert(obj); } /// /// Перегрузка оператора вычитания @@ -63,15 +63,15 @@ namespace AirBomber /// /// /// - public static bool operator -(PlanesGenericCollection collect, int pos) + public static T? operator -(PlanesGenericCollection collect, int + pos) { T? obj = collect._collection[pos]; if (obj != null) { collect._collection.Remove(pos); - return true; } - return false; + return obj; } /// /// Получение объекта IMoveableObject diff --git a/AirBomber/AirBomber/PlanesGenericStorage.cs b/AirBomber/AirBomber/PlanesGenericStorage.cs index 3de897f..40f64d7 100644 --- a/AirBomber/AirBomber/PlanesGenericStorage.cs +++ b/AirBomber/AirBomber/PlanesGenericStorage.cs @@ -1,4 +1,5 @@ -using System; +using AirBomber.Exceptions; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -112,7 +113,7 @@ namespace AirBomber } if (data.Length == 0) { - return false; + throw new ArgumentException("Невалидная операция, нет данных для сохранения"); } using StreamWriter sw = new(filename); @@ -128,7 +129,7 @@ namespace AirBomber { if (!File.Exists(filename)) { - return false; + throw new FileNotFoundException("Файл не найден"); } using (StreamReader sr = new(filename)) { @@ -136,12 +137,12 @@ namespace AirBomber if (str == null || str.Length == 0) { - return false; + throw new ArgumentException("Нет данных для загрузки"); } if (!str.StartsWith("PlaneStorage")) { //если нет такой записи, то это не те данные - return false; + throw new InvalidDataException("Неверный формат данных"); } _planeStorages.Clear(); @@ -168,9 +169,20 @@ namespace AirBomber DrawningAirPlane? plane = elem?.CreateDrawningAirPlane(_separatorForObject, _pictureWidth, _pictureHeight); if (plane != null) { - if ((collection + plane) == -1) + if (!(collection + plane)) { - return false; + try + { + _ = collection + plane; + } + catch (PlaneNotFoundException e) + { + throw e; + } + catch (StorageOverflowException e) + { + throw e; + } } } } diff --git a/AirBomber/AirBomber/Program.cs b/AirBomber/AirBomber/Program.cs index e7cb4a7..a46f828 100644 --- a/AirBomber/AirBomber/Program.cs +++ b/AirBomber/AirBomber/Program.cs @@ -1,3 +1,9 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; +using AirBomber; + namespace AirBomber { internal static class Program @@ -11,7 +17,29 @@ namespace AirBomber // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormPlaneCollection()); + var services = new ServiceCollection(); + ConfigureServices(services); + using (ServiceProvider serviceProvider = services.BuildServiceProvider()) + { + Application.Run(serviceProvider.GetRequiredService()); + } + } + private static void ConfigureServices(ServiceCollection services) + { + services.AddSingleton().AddLogging(option => + { + string[] path = Directory.GetCurrentDirectory().Split('\\'); + string pathNeed = ""; + for (int i = 0; i < path.Length - 3; i++) + { + pathNeed += path[i] + "\\"; + } + var configuration = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile(path: $"{pathNeed}appSettings.json", optional: false, reloadOnChange: true).Build(); + var logger = new LoggerConfiguration().ReadFrom.Configuration(configuration).CreateLogger(); + + option.SetMinimumLevel(LogLevel.Information); + option.AddSerilog(logger); + }); } } } \ No newline at end of file diff --git a/AirBomber/AirBomber/SetGeneric.cs b/AirBomber/AirBomber/SetGeneric.cs index ca8d15b..0b1c8bd 100644 --- a/AirBomber/AirBomber/SetGeneric.cs +++ b/AirBomber/AirBomber/SetGeneric.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using AirBomber.Exceptions; namespace AirBomber { @@ -35,9 +36,8 @@ namespace AirBomber /// /// Добавляемый самолет /// - public int Insert(T plane) + public bool Insert(T plane) { - //was TODO return Insert(plane, 0); } /// @@ -46,16 +46,15 @@ namespace AirBomber /// Добавляемый самолет /// Позиция /// - public int Insert(T plane, int position) + public bool Insert(T plane, int position) { - // TODO проверка позиции DONE - // TODO проверка, что элемент массива по этой позиции пустой,если нет, то - // проверка, что после вставляемого элемента в массиве есть пустой элемент - // сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента - // TODO вставка по позиции - if (position < 0 || position >= _maxCount) return -1; - _places.Insert(position, plane); - return position; + if (position < 0 || position >= _maxCount) + throw new StorageOverflowException("Невозможно добавить"); + + if (Count >= _maxCount) + throw new StorageOverflowException(_maxCount); + _places.Insert(0, plane); + return true; } /// /// Удаление объекта из набора с конкретной позиции @@ -64,13 +63,11 @@ namespace AirBomber /// public bool Remove(int position) { - // TODO проверка позиции DONE - // TODO удаление объекта из массива, присвоив элементу массива значение null - if (!(position >= 0 && position < Count) || _places[position] == null) - { - return false; - } - _places[position] = null; + if (position >= Count || position < 0) + throw new PlaneNotFoundException("Невалидная операция"); + if (_places[position] == null) + throw new PlaneNotFoundException(position); + _places.RemoveAt(position); return true; } /// @@ -91,11 +88,14 @@ namespace AirBomber } set { - // TODO проверка позиции DONE - // TODO проверка свободных мест в списке DONE - // TODO вставка в список по позиции DONE - if (position < 0 || position >= Count || Count == _maxCount) return; - _places.Insert(position, value); + try + { + Insert(value, position); + } + catch + { + return; + } } } /// diff --git a/AirBomber/AirBomber/StorageOverflowException.cs b/AirBomber/AirBomber/StorageOverflowException.cs new file mode 100644 index 0000000..8ae7b29 --- /dev/null +++ b/AirBomber/AirBomber/StorageOverflowException.cs @@ -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 AirBomber.Exceptions +{ + [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) { } + } +}