Доработка

This commit is contained in:
Володя 2022-12-02 19:35:58 +03:00
parent f53ee640bc
commit aa24557081
8 changed files with 180 additions and 64 deletions

View File

@ -9,11 +9,11 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<None Remove="nlog.config" /> <None Remove="appsettings.json" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<EmbeddedResource Include="nlog.config"> <EmbeddedResource Include="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource> </EmbeddedResource>
</ItemGroup> </ItemGroup>
@ -23,6 +23,11 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.0" /> <PackageReference Include="NLog.Extensions.Logging" Version="5.2.0" />
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="Serilog.AspNetCore" Version="6.1.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.4.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -64,12 +64,13 @@ namespace AirPlaneWithRadar
} }
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]); _mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
ReloadMaps(); ReloadMaps();
_logger.LogInformation($"{textBoxNewMapName}"); _logger.LogInformation($"Добавлена карта: {textBoxNewMapName.Text}");
} }
private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e) private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
{ {
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
_logger.LogInformation($"Переключение на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty}");
} }
private void ButtonDeleteMap_Click(object sender, EventArgs e) private void ButtonDeleteMap_Click(object sender, EventArgs e)
@ -81,8 +82,10 @@ namespace AirPlaneWithRadar
if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{ {
string nameMap = listBoxMaps.SelectedItem?.ToString() ?? string.Empty;
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty); _mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
ReloadMaps(); ReloadMaps();
_logger.LogInformation($"Удалена карта: {nameMap}");
} }
} }
@ -100,17 +103,35 @@ namespace AirPlaneWithRadar
{ {
return; return;
} }
try
{
if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawingObjectPlane(dp)) >= 0) if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawingObjectPlane(dp)) >= 0)
{ {
MessageBox.Show("Объект добавлен"); MessageBox.Show("Объект добавлен");
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
_logger.LogInformation($"На карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} добавлен новый самолет");
} }
else else
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show("Не удалось добавить объект");
_logger.LogInformation($"Добавление самолета на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} прошло неудачно");
}
}
catch (StorageOverFullException ex)
{
MessageBox.Show($"Ошибка добавления : {ex.Message}");
_logger.LogWarning($"Ошибка добавления самолета на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} : {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Неизвестная ошибка : {ex.Message}");
_logger.LogWarning($"Неизвестная ошибка при добавлении самолета на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} : {ex.Message}");
} }
} }
private void ButtonRemovePlain_Click(object sender, EventArgs e) private void ButtonRemovePlain_Click(object sender, EventArgs e)
{ {
if (listBoxMaps.SelectedIndex == -1) if (listBoxMaps.SelectedIndex == -1)
@ -121,27 +142,39 @@ namespace AirPlaneWithRadar
{ {
return; return;
} }
if (maskedTextBoxPosition.Text == null) if (maskedTextBoxPosition.Text == null || (maskedTextBoxPosition.Text).Equals(""))
{
MessageBox.Show("Упс, что-то пошло не так");
return; return;
}
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
try try
{ {
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - (pos - 1)) != null) if ((_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - (pos - 1)) != null)
{ {
MessageBox.Show("Объект удален"); MessageBox.Show("Объект удален");
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
_logger.LogInformation($"С карты {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} был удален самолет");
} }
else else
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show("Не удалось удалить объект");
_logger.LogInformation($"Удаление на карте{listBoxMaps.SelectedItem?.ToString() ?? string.Empty} прошло неудачно");
} }
}catch(PlainNotFoundException ex)
{
MessageBox.Show("Wrong id");
}catch(Exception ex)
{
MessageBox.Show("Error of delete");
} }
catch (PlainNotFoundException ex)
{
MessageBox.Show($"Ошибка удаления : {ex.Message}");
_logger.LogWarning($"Ошибка удаления самолета на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} : {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Неизвестная ошибка : {ex.Message}");
_logger.LogWarning($"Неизвестная ошибка при удалении самолета на карту {listBoxMaps.SelectedItem?.ToString() ?? string.Empty} : {ex.Message}");
}
} }
private void ButtonShowStorage_Click(object sender, EventArgs e) private void ButtonShowStorage_Click(object sender, EventArgs e)
{ {
@ -150,6 +183,7 @@ namespace AirPlaneWithRadar
return; return;
} }
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
_logger.LogInformation($"Переход в гараж карты {listBoxMaps.SelectedItem?.ToString() ?? string.Empty}");
} }
private void ButtonShowOnMap_Click(object sender, EventArgs e) private void ButtonShowOnMap_Click(object sender, EventArgs e)
{ {
@ -158,6 +192,7 @@ namespace AirPlaneWithRadar
return; return;
} }
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap(); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap();
_logger.LogInformation($"Переход на поле карты {listBoxMaps.SelectedItem?.ToString() ?? string.Empty}");
} }
private void ButtonMove_Click(object sender, EventArgs e) private void ButtonMove_Click(object sender, EventArgs e)
{ {
@ -185,21 +220,24 @@ namespace AirPlaneWithRadar
} }
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].MoveObject(dir); pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].MoveObject(dir);
} }
private void SaveToolStrip_Click(object sender, EventArgs e) private void SaveToolStrip_Click(object sender, EventArgs e)
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
try try
{ {
_mapsCollection.SaveData(saveFileDialog.FileName); _mapsCollection.SaveData(saveFileDialog.FileName);
}
catch(Exception ex) {
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Было проведено сохранение в файл : {saveFileDialog.FileName}");
} }
catch (Exception ex)
{
MessageBox.Show($"Не сохранилось {ex.Message} ", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка при сохранении : {ex.Message}");
}
}
} }
private void loadToolStrip_Click(object sender, EventArgs e) private void loadToolStrip_Click(object sender, EventArgs e)
@ -209,17 +247,32 @@ namespace AirPlaneWithRadar
try try
{ {
_mapsCollection.LoadData(openFileDialog.FileName); _mapsCollection.LoadData(openFileDialog.FileName);
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadMaps();
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
_logger.LogInformation($"Была проведена загрузка из файла {openFileDialog.FileName}");
}
catch (FileNotFoundException ex)
{
MessageBox.Show($"Не удалось загрузить {ex.Message} ", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка при загрузке из файла {openFileDialog.FileName} : {ex.Message}");
}
catch (NullReferenceException ex)
{
MessageBox.Show($"Не удалось загрузить {ex.Message} ", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка при загрузке из файла {openFileDialog.FileName} : {ex.Message}");
}
catch (FormatException ex)
{
MessageBox.Show($"Не удалось загрузить {ex.Message} ", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка при загрузке из файла {openFileDialog.FileName} : {ex.Message}");
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Не удалось загрузить", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show($"Не удалось загрузить {ex.Message} ", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Неизвестная ошибка при загрузке из файла {openFileDialog.FileName} : {ex.Message}");
} }
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
ReloadMaps();
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
} }
} }

View File

@ -0,0 +1,39 @@
2022-12-02 19:08:53.919 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:08:53.934 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\lab7.txt
2022-12-02 19:08:56.950 +03:00 [WRN] Ошибка добавления самолета на карту 1234 : В наборе превышено допустимое количество: 30
2022-12-02 19:09:04.295 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:09:07.323 +03:00 [INF] С карты 1234 был удален самолет
2022-12-02 19:09:13.786 +03:00 [INF] На карту 1234 добавлен новый самолет
2022-12-02 19:09:15.292 +03:00 [INF] Переключение на карту 4321
2022-12-02 19:09:15.780 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:09:22.952 +03:00 [INF] Было проведено сохранение в файл : C:\Users\Вова\Documents\123.txt
2022-12-02 19:09:24.254 +03:00 [INF] Переход в гараж карты 1234
2022-12-02 19:09:25.625 +03:00 [INF] Переход на поле карты 1234
2022-12-02 19:09:26.998 +03:00 [INF] Переход в гараж карты 1234
2022-12-02 19:09:30.990 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:09:30.990 +03:00 [INF] Добавлена карта: 231
2022-12-02 19:09:32.147 +03:00 [INF] Переключение на карту 231
2022-12-02 19:09:35.672 +03:00 [INF] На карту 231 добавлен новый самолет
2022-12-02 19:09:45.113 +03:00 [INF] На карту 231 добавлен новый самолет
2022-12-02 19:21:10.651 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:21:10.666 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\lab7.txt
2022-12-02 19:21:17.227 +03:00 [INF] С карты 1234 был удален самолет
2022-12-02 19:21:23.521 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:21:27.938 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:23:37.287 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:23:43.057 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:24:06.386 +03:00 [INF] С карты 1234 был удален самолет
2022-12-02 19:24:14.974 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:24:30.815 +03:00 [INF] С карты 1234 был удален самолет
2022-12-02 19:24:45.861 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:31:41.675 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:31:41.694 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\123.txt
2022-12-02 19:31:46.120 +03:00 [WRN] Ошибка при загрузке из файла C:\Users\Вова\Documents\test0.txt : Неверный формат данных в файле
2022-12-02 19:31:49.588 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:31:49.590 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\123.txt
2022-12-02 19:33:06.889 +03:00 [WRN] Ошибка при загрузке из файла C:\Users\Вова\Documents\test0.txt : Неверный формат данных в файле
2022-12-02 19:35:03.298 +03:00 [INF] Переключение на карту 1234
2022-12-02 19:35:03.301 +03:00 [INF] Была проведена загрузка из файла C:\Users\Вова\Documents\123.txt
2022-12-02 19:35:15.398 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
2022-12-02 19:35:20.416 +03:00 [INF] С карты 1234 был удален самолет
2022-12-02 19:35:24.176 +03:00 [WRN] Неизвестная ошибка при удалении самолета на карту 1234 : Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')

View File

@ -78,13 +78,13 @@ namespace AirPlaneWithRadar
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
throw new Exception("File not found"); throw new FileNotFoundException("Файл не найден");
} }
using (StreamReader sr = new StreamReader(filename)) using (StreamReader sr = new StreamReader(filename))
{ {
if (!sr.ReadLine().Equals("MapsCollection")) if (!sr.ReadLine().Equals("MapsCollection"))
{ {
throw new Exception("Wrong file"); throw new FormatException("Неверный формат данных в файле");
} }
_mapStorages.Clear(); _mapStorages.Clear();
string line = sr.ReadLine(); string line = sr.ReadLine();
@ -109,7 +109,10 @@ namespace AirPlaneWithRadar
line = sr.ReadLine(); line = sr.ReadLine();
} }
} }
if (_mapStorages.Count == 0)
{
throw new NullReferenceException("Пустой Файл");
}
} }
} }

View File

@ -1,38 +1,51 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging; using NLog.Extensions.Logging;
using Serilog;
using System; using System;
namespace AirPlaneWithRadar namespace AirPlaneWithRadar
{ {
internal static class Program internal static class Program
{ {
/// <summary> /// <summary>
/// The main entry point for the application. /// The main entry point for the application.
/// </summary> /// </summary>
[STAThread] [STAThread]
static void Main() static void Main()
{ {
// To customize application configuration such as set high DPI settings or default font, // To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration. // see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize(); ApplicationConfiguration.Initialize();
var services = new ServiceCollection(); var servives = new ServiceCollection();
ConfigureServices(services); ConfigureServices(servives);
using (ServiceProvider serviceProvider = services.BuildServiceProvider()) using (ServiceProvider serviceProvider = servives.BuildServiceProvider())
{ {
Application.Run(serviceProvider.GetRequiredService < FormMapWithSetPlains>()); Application.Run(serviceProvider.GetRequiredService<FormMapWithSetPlains>());
} }
} }
private static void ConfigureServices(ServiceCollection services) private static void ConfigureServices(ServiceCollection services)
{ {
services.AddSingleton<FormMapWithSetPlains>() services.AddSingleton<FormMapWithSetPlains>()
.AddLogging(option => .AddLogging(option =>
{ {
var configuration = new ConfigurationBuilder()
.AddJsonFile("C:\\Users\\Âîâà\\source\\repos\\ProjectAirPlaneWithRadar\\AirPlaneWithRadar\\AirPlaneWithRadar\\appsettings.json")
.Build();
var Logger = new LoggerConfiguration()
.ReadFrom.Configuration(configuration)
.CreateLogger();
option.SetMinimumLevel(LogLevel.Information); option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config"); option.AddSerilog(Logger);
}); });
} }
} }
} }

View File

@ -26,6 +26,10 @@ namespace AirPlaneWithRadar
} }
public int Insert(T plain, int position) public int Insert(T plain, int position)
{ {
if (_places.Count == _maxCount)
{
throw new StorageOverFullException(_maxCount);
}
if (position < 0 || _places.Count < position||position > _maxCount || _places.Count == _maxCount) if (position < 0 || _places.Count < position||position > _maxCount || _places.Count == _maxCount)
return -1; return -1;
else if (plain == null) else if (plain == null)
@ -36,16 +40,15 @@ namespace AirPlaneWithRadar
} }
public T Remove(int position) public T Remove(int position)
{ {
T mid; if (_places[position] == null || (position < 0 || _places.Count < position || position > _maxCount))
if (position < 0 || _places.Count < position || position > _maxCount)
return null;
else if (_places[position] == null)
return null;
else
{ {
throw new PlainNotFoundException(position);
}
T mid;
mid = _places[position]; mid = _places[position];
_places.RemoveAt(position); _places.RemoveAt(position);
}
return mid; return mid;
} }
public T this[int position] public T this[int position]

View File

@ -0,0 +1,15 @@
{
"Serilog": {
"Using": [ "Serilog.Sinks.File" ],
"MinimumLevel": "Debug",
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "C:\\Users\\Вова\\source\\repos\\ProjectAirPlaneWithRadar\\AirPlaneWithRadar\\AirPlaneWithRadar\\Log.txt"
}
}
]
}
}

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true" internalLogLevel="Info">
<targets>
<target xsi:type="File" name="tofile" fileName="carlog-${shortdate}.log" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="tofile" />
</rules>
</nlog>
</configuration>