From 122a5dbfe1431c6828efce594d02da6d64530731 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 23 Dec 2022 00:48:39 +0400 Subject: [PATCH 1/4] =?UTF-8?q?=D0=B3=D0=BE=D1=82=D0=BE=D0=B2=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WinFormsApp1/FormMapWithSetTraktor.cs | 93 +++++++++++++++++------ WinFormsApp1/MapsCollection.cs | 10 +-- WinFormsApp1/Program.cs | 33 +++++++- WinFormsApp1/SetTraktorGeneric.cs | 13 +++- WinFormsApp1/StoreageOverflowException.cs | 23 ++++++ WinFormsApp1/Tractors.csproj | 27 +++++++ WinFormsApp1/TraktorNotFoundExeption.cs | 22 ++++++ WinFormsApp1/appsettings.json | 19 +++++ WinFormsApp1/nlog.config | 13 ++++ 9 files changed, 214 insertions(+), 39 deletions(-) create mode 100644 WinFormsApp1/StoreageOverflowException.cs create mode 100644 WinFormsApp1/TraktorNotFoundExeption.cs create mode 100644 WinFormsApp1/appsettings.json create mode 100644 WinFormsApp1/nlog.config diff --git a/WinFormsApp1/FormMapWithSetTraktor.cs b/WinFormsApp1/FormMapWithSetTraktor.cs index a76aaf7..ece47e0 100644 --- a/WinFormsApp1/FormMapWithSetTraktor.cs +++ b/WinFormsApp1/FormMapWithSetTraktor.cs @@ -1,4 +1,5 @@ -using System; +using Microsoft.Extensions.Logging; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; @@ -23,16 +24,22 @@ namespace WinFormsApp1 private readonly MapsCollection _mapsCollection; - public FormMapWithSetTraktor() + private readonly ILogger _logger; + + public FormMapWithSetTraktor(ILogger logger) { InitializeComponent(); + _logger = logger; _mapsCollection = new MapsCollection(pictureBox.Width, pictureBox.Height); comboBoxSelectorMap.Items.Clear(); foreach (var item in _mapsDict) { comboBoxSelectorMap.Items.Add(item.Key); } + } + public FormMapWithSetTraktor() + { } private void ReloadMaps() @@ -79,8 +86,6 @@ namespace WinFormsApp1 } } - - private void ButtonAddTraktor_Click(object sender, EventArgs e) { var formBusConfig = new FormTraktorConfig(); @@ -90,21 +95,37 @@ namespace WinFormsApp1 private void AddTraktor(TractorDraw traktor) { - if (listBoxMaps.SelectedIndex == -1) + try { - return; + if (listBoxMaps.SelectedIndex == -1) + { + return; + } + DrawningObjectTractor boat = new(traktor); + if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + boat >= 0) + { + MessageBox.Show("Объект добавлен"); + _logger.LogInformation("Объект добавлен"); + pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + } + else + { + MessageBox.Show("Не удалось добавить объект"); + _logger.LogInformation("Не удалось добавить объект"); + } } - DrawningObjectTractor boat = new(traktor); - if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + boat >= 0) + catch (StorageOverflowException ex) { - MessageBox.Show("Объект добавлен"); - pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + _logger.LogWarning($"Ошибка, переполнение хранилища: {0}", ex.Message); + MessageBox.Show($"Ошибка, хранилище переполнено: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } - else + catch (ArgumentException ex) { - MessageBox.Show("Не удалось добавить объект"); + _logger.LogWarning("Ошибка добавления"); + MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + private void ButtonRemoveTraktor_Click(object sender, EventArgs e) { if (listBoxMaps.SelectedIndex == -1) @@ -124,15 +145,25 @@ namespace WinFormsApp1 } int pos = Convert.ToInt32(maskedTextBoxPosition.Text); - if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) + try { - MessageBox.Show("Объект удален"); - pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + var deletedTraktor = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos; + if (deletedTraktor != null) + { + MessageBox.Show("Объект удален"); + _logger.LogInformation("Из текущей карты удален объект {@ship}", deletedTraktor); + pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + } + else + { + _logger.LogInformation("Не удалось добавить объект по позиции {0} равен null", pos); + MessageBox.Show("Не удалось удалить объект"); + } } - - else + catch (Exception ex) { - MessageBox.Show("Не удалось удалить объект"); + _logger.LogWarning("Ошибка удаления: {0}", ex.Message); + MessageBox.Show($"Ошибка удаления: {ex.Message}"); } } @@ -186,20 +217,24 @@ namespace WinFormsApp1 if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text)) { MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogInformation("При добавлении карты {0}", comboBoxSelectorMap.SelectedIndex == -1 ? "Не была выбрана карта" : "Не была названа карта"); return; } if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text)) { MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogInformation("При добавлении карты {0}", comboBoxSelectorMap.SelectedIndex == -1 ? "Не была выбрана карта" : "Не была названа карта"); return; } _mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]); ReloadMaps(); + _logger.LogInformation("Добавлена карта {0}", textBoxNewMapName.Text); } private void listBoxMaps_SelectedIndexChanged(object sender, EventArgs e) { pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + _logger.LogInformation("Осуществлён переход на карту под названием {0}", listBoxMaps.SelectedItem?.ToString() ?? string.Empty); } private void buttonDeleteMap_Click(object sender, EventArgs e) @@ -213,19 +248,24 @@ namespace WinFormsApp1 { _mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty); ReloadMaps(); + _logger.LogInformation("Удалена карта {0}", listBoxMaps.SelectedItem?.ToString() ?? string.Empty); } } + private void SaveToolStripMenuItem_Click(object sender, EventArgs e) { if (saveFileDialog.ShowDialog() == DialogResult.OK) { - if (_mapsCollection.SaveData(saveFileDialog.FileName)) + try { + _mapsCollection.SaveData(saveFileDialog.FileName); + _logger.LogInformation("Загрузка данных из файла '{0}' прошла успешно", openFileDialog.FileName); MessageBox.Show("Сохранение прошло успешно!", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); } - else + catch (Exception ex) { - MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogInformation("Не удалось загрузить файл '{0}'. Текст ошибки: {1}", openFileDialog.FileName, ex.Message); } } } @@ -234,14 +274,17 @@ namespace WinFormsApp1 { if (openFileDialog.ShowDialog() == DialogResult.OK) { - if (_mapsCollection.LoadData(openFileDialog.FileName)) + try { - MessageBox.Show("Загрузка прошла успешно!", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _mapsCollection.LoadData(openFileDialog.FileName); + MessageBox.Show("Загрузка данных прошла успешно", "Результат", + MessageBoxButtons.OK, MessageBoxIcon.Information); ReloadMaps(); } - else + catch (Exception ex) { - MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", + MessageBoxButtons.OK, MessageBoxIcon.Error); } } } diff --git a/WinFormsApp1/MapsCollection.cs b/WinFormsApp1/MapsCollection.cs index 900299e..08c0e58 100644 --- a/WinFormsApp1/MapsCollection.cs +++ b/WinFormsApp1/MapsCollection.cs @@ -60,7 +60,7 @@ namespace WinFormsApp1 stream.Write(info, 0, info.Length); } - public bool SaveData(string filename) + public void SaveData(string filename) { if (File.Exists(filename)) { @@ -74,14 +74,13 @@ namespace WinFormsApp1 fs.Write($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}{Environment.NewLine}"); } } - return true; } - public bool LoadData(string filename) + public void LoadData(string filename) { if (!File.Exists(filename)) { - return false; + throw new FileNotFoundException("Файл не найден"); } using (StreamReader sr = new(filename)) { @@ -89,7 +88,7 @@ namespace WinFormsApp1 if ((str = sr.ReadLine()) == null || !str.Contains("MapsCollection")) { //если нет такой записи, то это не те данные - return false; + throw new FileFormatException("Формат данных в файле неправильный"); } //очищаем записи _mapStorages.Clear(); @@ -110,7 +109,6 @@ namespace WinFormsApp1 _mapStorages[elem[0]].LoadData(elem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries)); } } - return true; } } } diff --git a/WinFormsApp1/Program.cs b/WinFormsApp1/Program.cs index 8196d6e..e456584 100644 --- a/WinFormsApp1/Program.cs +++ b/WinFormsApp1/Program.cs @@ -1,5 +1,10 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; @@ -14,10 +19,30 @@ namespace WinFormsApp1 [STAThread] static void Main() { - Application.SetHighDpiMode(HighDpiMode.SystemAware); - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new FormMapWithSetTraktor()); + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + 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 => + { + var configuration = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile(path: "appsettings.json").Build(); + + var logger = new LoggerConfiguration() + .ReadFrom.Configuration(configuration) + .CreateLogger(); + + option.SetMinimumLevel(LogLevel.Information); + option.AddSerilog(logger); + }); } } } diff --git a/WinFormsApp1/SetTraktorGeneric.cs b/WinFormsApp1/SetTraktorGeneric.cs index b4c2e7e..87dcc16 100644 --- a/WinFormsApp1/SetTraktorGeneric.cs +++ b/WinFormsApp1/SetTraktorGeneric.cs @@ -27,15 +27,20 @@ namespace WinFormsApp1 public int Insert(T tractor, int position) { - if (position < 0 && position > _maxCount) + if (position > _maxCount && position < 0) { return -1; } - else + if (_places.Contains(tractor)) { - _places.Insert(position, tractor); - return position; + throw new ArgumentException($"Объект {tractor} уже есть в наборе"); } + if (Count == _maxCount) + { + throw new StorageOverflowException(_maxCount); + } + _places.Insert(position, tractor); + return position; } public T Remove(int position) diff --git a/WinFormsApp1/StoreageOverflowException.cs b/WinFormsApp1/StoreageOverflowException.cs new file mode 100644 index 0000000..574a32e --- /dev/null +++ b/WinFormsApp1/StoreageOverflowException.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace WinFormsApp1 +{ + [Serializable] + 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) { } + } +} diff --git a/WinFormsApp1/Tractors.csproj b/WinFormsApp1/Tractors.csproj index 2f866a5..447667d 100644 --- a/WinFormsApp1/Tractors.csproj +++ b/WinFormsApp1/Tractors.csproj @@ -3,9 +3,36 @@ WinExe net6.0-windows + enable true + enable + + + + + + + Always + + + + + + + + + + + + + + + + + + True diff --git a/WinFormsApp1/TraktorNotFoundExeption.cs b/WinFormsApp1/TraktorNotFoundExeption.cs new file mode 100644 index 0000000..eaa072e --- /dev/null +++ b/WinFormsApp1/TraktorNotFoundExeption.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace WinFormsApp1 +{ + internal class TraktorNotFoundException : ApplicationException + { + public TraktorNotFoundException(int i) : base($"Не найден объект по позиции {i}") { } + + public TraktorNotFoundException() : base() { } + + public TraktorNotFoundException(string message) : base(message) { } + + public TraktorNotFoundException(string message, Exception exception) : base(message, exception) { } + + protected TraktorNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } + } +} diff --git a/WinFormsApp1/appsettings.json b/WinFormsApp1/appsettings.json new file mode 100644 index 0000000..52d9b60 --- /dev/null +++ b/WinFormsApp1/appsettings.json @@ -0,0 +1,19 @@ +{ + "Serilog": { + "Using": [ "Serilog.Sinks.File" ], + "MinimumLevel": "Information", + "WriteTo": [ + { + "Name": "File", + "Args": { + "outputTemplate": "{Timestamp:HH:mm:ss. zzz} [{Level}] {Message} {Exception} {NewLine}", + "path": "D:/log.txt", + "fileSizeLimitBytes": 2147483648 + } + } + ], + "Properties": { + "Application": "Serilog-Demo" + } + } +} \ No newline at end of file diff --git a/WinFormsApp1/nlog.config b/WinFormsApp1/nlog.config new file mode 100644 index 0000000..9058ac4 --- /dev/null +++ b/WinFormsApp1/nlog.config @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file -- 2.25.1 From 01d98db1161e9971506f843017fe4aa1cc6a118e Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 23 Dec 2022 01:13:22 +0400 Subject: [PATCH 2/4] =?UTF-8?q?=D0=B4=D0=BE=D0=BF=D0=B8=D1=81=D0=B0=D0=BB?= =?UTF-8?q?=20=D0=B8=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WinFormsApp1/FormMapWithSetTraktor.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/WinFormsApp1/FormMapWithSetTraktor.cs b/WinFormsApp1/FormMapWithSetTraktor.cs index ece47e0..d5fd96e 100644 --- a/WinFormsApp1/FormMapWithSetTraktor.cs +++ b/WinFormsApp1/FormMapWithSetTraktor.cs @@ -160,11 +160,16 @@ namespace WinFormsApp1 MessageBox.Show("Не удалось удалить объект"); } } - catch (Exception ex) + catch (TraktorNotFoundException ex) { _logger.LogWarning("Ошибка удаления: {0}", ex.Message); MessageBox.Show($"Ошибка удаления: {ex.Message}"); } + catch (Exception ex) + { + _logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message); + MessageBox.Show($"Неизвестная ошибка: {ex.Message}"); + } } private void ButtonShowStorage_Click(object sender, EventArgs e) -- 2.25.1 From beb635889b894e1cbc55354ed752788dcd804e8c Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 23 Dec 2022 01:28:21 +0400 Subject: [PATCH 3/4] . --- WinFormsApp1/FormMapWithSetTraktor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WinFormsApp1/FormMapWithSetTraktor.cs b/WinFormsApp1/FormMapWithSetTraktor.cs index d5fd96e..81d3fa6 100644 --- a/WinFormsApp1/FormMapWithSetTraktor.cs +++ b/WinFormsApp1/FormMapWithSetTraktor.cs @@ -151,12 +151,12 @@ namespace WinFormsApp1 if (deletedTraktor != null) { MessageBox.Show("Объект удален"); - _logger.LogInformation("Из текущей карты удален объект {@ship}", deletedTraktor); + _logger.LogInformation("Из текущей карты удален объект {@traktor}", deletedTraktor); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } else { - _logger.LogInformation("Не удалось добавить объект по позиции {0} равен null", pos); + _logger.LogWarning("Не удалось добавить объект по позиции {0} равен null", pos); MessageBox.Show("Не удалось удалить объект"); } } @@ -165,7 +165,7 @@ namespace WinFormsApp1 _logger.LogWarning("Ошибка удаления: {0}", ex.Message); MessageBox.Show($"Ошибка удаления: {ex.Message}"); } - catch (Exception ex) + catch (ArgumentException ex) { _logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message); MessageBox.Show($"Неизвестная ошибка: {ex.Message}"); -- 2.25.1 From 931ccb2599822d1ff042d4a1796b0d07fca81748 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 23 Dec 2022 01:31:29 +0400 Subject: [PATCH 4/4] =?UTF-8?q?=D0=B8=D1=81=D0=BA=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WinFormsApp1/FormMapWithSetTraktor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WinFormsApp1/FormMapWithSetTraktor.cs b/WinFormsApp1/FormMapWithSetTraktor.cs index 81d3fa6..49e527f 100644 --- a/WinFormsApp1/FormMapWithSetTraktor.cs +++ b/WinFormsApp1/FormMapWithSetTraktor.cs @@ -165,7 +165,7 @@ namespace WinFormsApp1 _logger.LogWarning("Ошибка удаления: {0}", ex.Message); MessageBox.Show($"Ошибка удаления: {ex.Message}"); } - catch (ArgumentException ex) + catch (Exception ex) { _logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message); MessageBox.Show($"Неизвестная ошибка: {ex.Message}"); -- 2.25.1