diff --git a/AirBomber/AirBomber/AirBomber.csproj b/AirBomber/AirBomber/AirBomber.csproj
index ad1bb7a..9f633c8 100644
--- a/AirBomber/AirBomber/AirBomber.csproj
+++ b/AirBomber/AirBomber/AirBomber.csproj
@@ -16,6 +16,29 @@
preview
+
+
+
+
+
+
+ Always
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
True
diff --git a/AirBomber/AirBomber/AirBomberNotFoundException.cs b/AirBomber/AirBomber/AirBomberNotFoundException.cs
new file mode 100644
index 0000000..7e674a9
--- /dev/null
+++ b/AirBomber/AirBomber/AirBomberNotFoundException.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
+{
+ [Serializable]
+ internal class AirBomberNotFoundException : ApplicationException
+ {
+ public AirBomberNotFoundException() : base() { }
+ public AirBomberNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
+ public AirBomberNotFoundException(string message) : base(message) { }
+ public AirBomberNotFoundException(string message, Exception exception) : base (message, exception) { }
+ protected AirBomberNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
+ }
+}
diff --git a/AirBomber/AirBomber/FormAirBomberConfig.cs b/AirBomber/AirBomber/FormAirBomberConfig.cs
index 51e0803..af7293e 100644
--- a/AirBomber/AirBomber/FormAirBomberConfig.cs
+++ b/AirBomber/AirBomber/FormAirBomberConfig.cs
@@ -12,9 +12,10 @@ namespace AirBomber
{
public partial class FormAirBomberConfig : Form
{
- DrawningBomber _airBomber = null;
+ static DrawningBomber _airBomber = null;
private Action EventAddAirBomber;
+
public FormAirBomberConfig()
{
InitializeComponent();
@@ -51,6 +52,7 @@ namespace AirBomber
}
}
+
private void LabelObject_MouseDown(object sender, MouseEventArgs e)
{
(sender as Label).DoDragDrop((sender as Label).Name, DragDropEffects.Move | DragDropEffects.Copy);
diff --git a/AirBomber/AirBomber/FormMapWithSetAirBomber.cs b/AirBomber/AirBomber/FormMapWithSetAirBomber.cs
index 2aed3ef..d014f00 100644
--- a/AirBomber/AirBomber/FormMapWithSetAirBomber.cs
+++ b/AirBomber/AirBomber/FormMapWithSetAirBomber.cs
@@ -1,4 +1,5 @@
-using System;
+using Microsoft.Extensions.Logging;
+using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -23,9 +24,12 @@ namespace AirBomber
private readonly MapsCollection _mapsCollection;
- public FormMapWithSetAirBomber()
+ private readonly ILogger _logger;
+
+ public FormMapWithSetAirBomber(ILogger logger)
{
InitializeComponent();
+ _logger = logger;
_mapsCollection = new MapsCollection(pictureBox.Width, pictureBox.Height);
comboBoxSelectorMap.Items.Clear();
foreach (var elem in _mapsDict)
@@ -41,7 +45,7 @@ namespace AirBomber
for (int i = 0; i < _mapsCollection.Keys.Count; i++)
{
listBoxMaps.Items.Add(_mapsCollection.Keys[i]);
- }
+ }
if (listBoxMaps.Items.Count > 0 && (index == -1 || index >=
listBoxMaps.Items.Count))
{
@@ -67,14 +71,28 @@ namespace AirBomber
{
return;
}
- if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawningObjectBomber(airBomber) > -1)
+ try
{
- MessageBox.Show("Объект добавлен");
- pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
+ if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawningObjectBomber(airBomber) != -1)
+ {
+ MessageBox.Show("Объект добавлен");
+ pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
+ _logger.LogInformation($"Добавлен объект: {airBomber} на карте: {listBoxMaps.SelectedItem}");
+ }
+ else
+ {
+ MessageBox.Show("Не удалось добавить объект");
+ }
}
- else
+ catch (StorageOverflowException ex)
{
- MessageBox.Show("Не удалось добавить объект");
+ _logger.LogWarning($"Ошибка переполнения при добавлении объекта: {ex.Message}");
+ MessageBox.Show($"Ошибка переполнения: {ex.Message}");
+ }
+ catch (Exception ex)
+ {
+ _logger.LogWarning($"Неизвестная ошибка при добавлении объекта: {ex.Message}");
+ MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
}
}
@@ -93,14 +111,33 @@ namespace AirBomber
return;
}
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();
+ if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null)
+ {
+ MessageBox.Show("Объект удален");
+ _logger.LogInformation($"Удален объект с позиции: [{pos}] на карте: {listBoxMaps.SelectedItem}");
+ pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось удалить объект");
+ }
}
- else
+ catch(AirBomberNotFoundException ex)
{
- MessageBox.Show("Не удалось удалить объект");
+ _logger.LogWarning($"Ошибка отсутствия объекта на позиции: [{pos}] при его удалении: {ex.Message}");
+ MessageBox.Show($"Ошибка удаления: {ex.Message}");
+ }
+ catch (StorageOverflowException ex)
+ {
+ _logger.LogWarning($"Ошибка при удалении объекта на позиции: [{pos}] выходя за рамки поля: {ex.Message}");
+ MessageBox.Show($"Превышение размерности: {ex.Message}");
+ }
+ catch(Exception ex)
+ {
+ _logger.LogWarning($"Неизвестная ошибка при удалении объекта на позиции: [{pos}] : {ex.Message}");
+ MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
}
}
@@ -111,6 +148,7 @@ namespace AirBomber
return;
}
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
+ _logger.LogInformation($"Переход в хранилище: {listBoxMaps.SelectedItem}");
}
private void ButtonShowOnMap_Click(object sender, EventArgs e)
@@ -120,6 +158,7 @@ namespace AirBomber
return;
}
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap();
+ _logger.LogInformation($"Переход на карту: {listBoxMaps.SelectedItem}");
}
private void ButtonMove_Click(object sender, EventArgs e)
@@ -162,6 +201,7 @@ namespace AirBomber
}
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
ReloadMaps();
+ _logger.LogInformation($"Добавлена карта: {textBoxNewMapName.Text}");
}
private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
@@ -177,23 +217,26 @@ namespace AirBomber
}
if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
+ _logger.LogInformation($"Удалена карта: {listBoxMaps.SelectedItem}");
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
ReloadMaps();
}
-
}
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($"Карта успешно сохранена в файл: {saveFileDialog.FileName}");
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
- else
+ catch(Exception ex)
{
- MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ _logger.LogWarning($"Не сохранилось в файл: {saveFileDialog.FileName}");
+ MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); ; ;
}
}
}
@@ -202,15 +245,18 @@ namespace AirBomber
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
- if (_mapsCollection.LoadData(openFileDialog.FileName))
+ try
{
+ _mapsCollection.LoadData(openFileDialog.FileName);
+ _logger.LogInformation($"Карта успешно загружена из файла: {openFileDialog.FileName}");
MessageBox.Show("Загрузка прошла успешно", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadMaps();
}
- else
+ catch(Exception ex)
{
- MessageBox.Show("Не загрузилось", "Результат",
+ _logger.LogWarning($"Не загрузилось из файла: {openFileDialog.FileName}");
+ MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
diff --git a/AirBomber/AirBomber/MapsCollection.cs b/AirBomber/AirBomber/MapsCollection.cs
index f5868cd..d092ec0 100644
--- a/AirBomber/AirBomber/MapsCollection.cs
+++ b/AirBomber/AirBomber/MapsCollection.cs
@@ -45,7 +45,7 @@ namespace AirBomber
}
}
- public bool SaveData(string filename)
+ public void SaveData(string filename)
{
if (File.Exists(filename))
{
@@ -56,18 +56,16 @@ namespace AirBomber
sw.Write($"MapsCollection{Environment.NewLine}");
foreach (var storage in _mapStorages)
{
- sw.Write($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict,
- separatorData)}{Environment.NewLine}");
+ sw.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("Файл не найден");
}
string bufferTextFromFile = "";
using (StreamReader sr = new(filename))
@@ -80,7 +78,7 @@ namespace AirBomber
{
if (!str.Contains("MapsCollection"))
{
- return false;
+ throw new FormatException("Формат данных в файле не правильный");
}
else
{
@@ -111,7 +109,6 @@ namespace AirBomber
}
}
}
- return true;
}
}
}
diff --git a/AirBomber/AirBomber/Program.cs b/AirBomber/AirBomber/Program.cs
index 4c9e3e7..d44e7a1 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 System.ServiceProcess;
+
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 FormMapWithSetAirBomber());
+ 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 config = new ConfigurationBuilder()
+ .SetBasePath(Directory.GetCurrentDirectory())
+ .AddJsonFile("serilog.json")
+ .Build();
+
+ Log.Logger = new LoggerConfiguration().ReadFrom.Configuration(config).CreateLogger();
+
+ option.SetMinimumLevel(LogLevel.Information);
+ option.AddSerilog();
+ });
}
}
}
\ No newline at end of file
diff --git a/AirBomber/AirBomber/SetAirBomberGeneric.cs b/AirBomber/AirBomber/SetAirBomberGeneric.cs
index db6bec4..4cac74d 100644
--- a/AirBomber/AirBomber/SetAirBomberGeneric.cs
+++ b/AirBomber/AirBomber/SetAirBomberGeneric.cs
@@ -28,9 +28,13 @@ namespace AirBomber
public int Insert(T airBomber, int position)
{
- if (position < 0 || position > _maxCount)
+ if (_places.Count >= _maxCount)
{
- return -1;
+ throw new StorageOverflowException(_maxCount);
+ }
+ if (position < 0 || position >= _maxCount)
+ {
+ throw new StorageOverflowException(_maxCount);
}
_places.Insert(position, airBomber);
return position;
@@ -38,12 +42,18 @@ namespace AirBomber
public T Remove(int position)
{
- if (position < 0 || position > _maxCount)
+ if (position < 0 || position >= _maxCount)
{
- return null;
+ throw new StorageOverflowException(_maxCount);
}
+
T elem = _places[position];
- _places[position] = null;
+ _places.Remove(elem);
+
+ if (elem == null)
+ {
+ throw new AirBomberNotFoundException(position);
+ }
return elem;
}
diff --git a/AirBomber/AirBomber/StorageOverflowException.cs b/AirBomber/AirBomber/StorageOverflowException.cs
new file mode 100644
index 0000000..a619a5a
--- /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
+{
+ [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 innerException) : base(message, innerException) { }
+ protected StorageOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
+ }
+}
diff --git a/AirBomber/AirBomber/serilog.json b/AirBomber/AirBomber/serilog.json
new file mode 100644
index 0000000..7727326
--- /dev/null
+++ b/AirBomber/AirBomber/serilog.json
@@ -0,0 +1,17 @@
+{
+ "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}"
+ }
+ }
+ ],
+ "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ]
+ }
+}