This commit is contained in:
[USERNAME] 2023-12-16 22:50:44 +04:00
parent 629074b06e
commit 9fcdc2cdeb
8 changed files with 207 additions and 57 deletions

View File

@ -8,4 +8,14 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.7" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
</ItemGroup>
</Project> </Project>

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Bulldozer.Exceptions
{
[Serializable] internal class BulldozerNotFoundException : ApplicationException
{
public BulldozerNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
public BulldozerNotFoundException() : base() { }
public BulldozerNotFoundException(string message) : base(message) { }
public BulldozerNotFoundException(string message, Exception exception) : base(message, exception) { }
protected BulldozerNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}

View File

@ -7,6 +7,7 @@ using Bulldozer.DrawningObjects;
using Bulldozer.Generics; using Bulldozer.Generics;
using Bulldozer.MovementStrategy; using Bulldozer.MovementStrategy;
using Bulldozer.Drawnings; using Bulldozer.Drawnings;
using Bulldozer.Exceptions;
namespace Bulldozer.Generics namespace Bulldozer.Generics
{ {
@ -100,7 +101,7 @@ namespace Bulldozer.Generics
/// </summary> /// </summary>
/// <param name="filename">Путь и имя файла</param> /// <param name="filename">Путь и имя файла</param>
/// <returns>true - сохранение прошло успешно, false - ошибка при сохранении данных</returns> /// <returns>true - сохранение прошло успешно, false - ошибка при сохранении данных</returns>
public bool SaveData(string filename) public void SaveData(string filename)
{ {
if (File.Exists(filename)) if (File.Exists(filename))
{ {
@ -118,37 +119,34 @@ namespace Bulldozer.Generics
} }
if (data.Length == 0) if (data.Length == 0)
{ {
return false; throw new ArgumentException("Невалидная операция, нет данных для сохранения");
} }
using (StreamWriter writer = new StreamWriter(filename)) using (StreamWriter writer = new StreamWriter(filename))
{ {
writer.Write($"BulldozerStorage{Environment.NewLine}{data}"); writer.Write($"BulldozerStorage{Environment.NewLine}{data}");
} }
return true;
} }
/// <summary> /// <summary>
/// Загрузка информации по установкам в хранилище из файла /// Загрузка информации по установкам в хранилище из файла
/// </summary> /// </summary>
/// <param name="filename">Путь и имя файла</param> /// <param name="filename">Путь и имя файла</param>
/// <returns>true - загрузка прошла успешно, false - ошибка при загрузке данных</returns> /// <returns>true - загрузка прошла успешно, false - ошибка при загрузке данных</returns>
public bool LoadData(string filename) public void LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new FileNotFoundException("Файл не найден");
} }
using (StreamReader reader = new StreamReader(filename)) using (StreamReader reader = new StreamReader(filename))
{ {
string cheker = reader.ReadLine(); string cheker = reader.ReadLine();
if (cheker == null) if (cheker == null)
{ {
return false; throw new ArgumentException("Нет данных для загрузки");
} }
if (!cheker.StartsWith("BulldozerStorage")) if (!cheker.StartsWith("BulldozerStorage"))
{ {
return false; throw new InvalidDataException("Неверный формат ввода");
} }
_tractorStorages.Clear(); _tractorStorages.Clear();
string strs; string strs;
@ -157,11 +155,11 @@ namespace Bulldozer.Generics
{ {
if (strs == null && firstinit) if (strs == null && firstinit)
{ {
return false; throw new ArgumentException("Нет данных для загрузки");
} }
if (strs == null) if (strs == null)
{ {
return false; break;
} }
firstinit = false; firstinit = false;
string name = strs.Split(_separatorForKeyValue)[0]; string name = strs.Split(_separatorForKeyValue)[0];
@ -172,16 +170,19 @@ namespace Bulldozer.Generics
data?.CreateDrawningBulldozer(_separatorForObject, _pictureWidth, _pictureHeight); data?.CreateDrawningBulldozer(_separatorForObject, _pictureWidth, _pictureHeight);
if (bulldozer != null) if (bulldozer != null)
{ {
int? result = collection + bulldozer; try { _ = collection + bulldozer; }
if (result == null || result.Value == -1) catch (BulldozerNotFoundException e)
{ {
return false; throw e;
}
catch (StorageOverflowException e)
{
throw e;
} }
} }
} }
_tractorStorages.Add(name, collection); _tractorStorages.Add(name, collection);
} }
return true;
} }
} }
} }

View File

@ -1,9 +1,10 @@
 using Microsoft.Extensions.Logging;
using Bulldozer.DrawningObjects; using Bulldozer.DrawningObjects;
using Bulldozer.Drawnings; using Bulldozer.Drawnings;
using Bulldozer.Generics; using Bulldozer.Generics;
using Bulldozer.MovementStrategy; using Bulldozer.MovementStrategy;
using System.Windows.Forms; using System.Windows.Forms;
using Bulldozer.Exceptions;
namespace Bulldozer namespace Bulldozer
{ {
@ -16,14 +17,16 @@ namespace Bulldozer
/// Набор объектов /// Набор объектов
/// </summary> /// </summary>
private readonly BulldozersGenericStorage _storage; private readonly BulldozersGenericStorage _storage;
private readonly ILogger _logger;
/// <summary> /// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
public FormBulldozerCollection() public FormBulldozerCollection(ILogger<FormBulldozerCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
_storage = new BulldozersGenericStorage(pictureBoxCollection.Width, _storage = new BulldozersGenericStorage(pictureBoxCollection.Width,
pictureBoxCollection.Height); pictureBoxCollection.Height);
_logger = logger;
} }
/// <summary> /// <summary>
/// Заполнение listBoxObjects /// Заполнение listBoxObjects
@ -58,10 +61,12 @@ namespace Bulldozer
{ {
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBox.Show("Не все данные заполнены", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning("Пустое название набора");
return; return;
} }
_storage.AddSet(textBoxStorageName.Text); _storage.AddSet(textBoxStorageName.Text);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}");
} }
/// <summary> /// <summary>
/// Выбор набора /// Выбор набора
@ -83,14 +88,17 @@ namespace Bulldozer
{ {
if (listBoxStorage.SelectedIndex == -1) if (listBoxStorage.SelectedIndex == -1)
{ {
_logger.LogWarning("Удаление невыбранного набора");
return; return;
} }
if (MessageBox.Show($"Удалить объект {listBoxStorage.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) string name = listBoxStorage.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {name}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{ {
_storage.DelSet(listBoxStorage.SelectedItem.ToString() _storage.DelSet(listBoxStorage.SelectedItem.ToString()
?? string.Empty); ?? string.Empty);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Удален набор: {name}");
} }
} }
/// <summary> /// <summary>
@ -106,22 +114,27 @@ namespace Bulldozer
} }
var formBulldozerConfig = new FormBulldozerConfig(); var formBulldozerConfig = new FormBulldozerConfig();
formBulldozerConfig.AddEvent(usta => formBulldozerConfig.AddEvent(tractor =>
{ {
if (listBoxStorage.SelectedIndex != -1) if (listBoxStorage.SelectedIndex != -1)
{ {
var obj = _storage[listBoxStorage.SelectedItem?.ToString() ?? string.Empty]; var obj = _storage[listBoxStorage.SelectedItem?.ToString() ?? string.Empty];
if (obj != null) if (obj == null)
{ {
if (obj + usta != 1) _logger.LogWarning("Добавление пустого объекта");
{ return;
MessageBox.Show("Объект добавлен"); }
pictureBoxCollection.Image = obj.ShowBulldozer(); try
} {
else _ = obj + tractor;
{ MessageBox.Show("Объект добавлен");
MessageBox.Show("Не удалось добавить объект"); pictureBoxCollection.Image = obj.ShowBulldozer();
} _logger.LogInformation($"Добавлен объект в набор {listBoxStorage.SelectedItem.ToString()}");
}
catch (Exception ex)
{
MessageBox.Show("Не удалось добавить объект");
_logger.LogWarning($"{ex.Message} в наборе {listBoxStorage.SelectedItem.ToString()}");
} }
} }
}); });
@ -137,6 +150,7 @@ namespace Bulldozer
{ {
if (listBoxStorage.SelectedIndex == -1) if (listBoxStorage.SelectedIndex == -1)
{ {
_logger.LogWarning("Удаление объекта из несуществующего набора");
return; return;
} }
var obj = _storage[listBoxStorage.SelectedItem.ToString() ?? var obj = _storage[listBoxStorage.SelectedItem.ToString() ??
@ -151,14 +165,24 @@ namespace Bulldozer
return; return;
} }
int pos = Convert.ToInt32(maskedTextBoxNumber.Text); int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (obj - pos != null) try
{ {
MessageBox.Show("Объект удален"); if (obj - pos != null)
pictureBoxCollection.Image = obj.ShowBulldozer(); {
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = obj.ShowBulldozer();
_logger.LogInformation($"Удален объект из набора {listBoxStorage.SelectedItem.ToString()}");
}
else
{
MessageBox.Show("Не удалось удалить объект");
_logger.LogWarning($"Не удалось удалить объект из набора {listBoxStorage.SelectedItem.ToString()}");
}
} }
else catch (BulldozerNotFoundException ex)
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show(ex.Message);
_logger.LogWarning($"{ex.Message} из набора {listBoxStorage.SelectedItem.ToString()}");
} }
} }
/// <summary> /// <summary>
@ -190,15 +214,16 @@ namespace Bulldozer
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.SaveData(saveFileDialog.FileName)) try
{ {
MessageBox.Show("Сохранение прошло успешно", _storage.SaveData(saveFileDialog.FileName);
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Сохранение наборов в файл {saveFileDialog.FileName}");
} }
else catch (Exception ex)
{ {
MessageBox.Show("Не сохранилось", "Результат", MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBoxButtons.OK, MessageBoxIcon.Error); _logger.LogWarning($"Не удалось сохранить наборы с ошибкой: {ex.Message}");
} }
} }
} }
@ -211,14 +236,17 @@ namespace Bulldozer
{ {
if (openFileDialog.ShowDialog() == DialogResult.OK) if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.LoadData(openFileDialog.FileName)) try
{ {
MessageBox.Show("Данные успешно загружены.", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information); _storage.LoadData(openFileDialog.FileName);
ReloadObjects(); ReloadObjects();
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Загрузились наборы из файла {openFileDialog.FileName}");
} }
else catch (Exception ex)
{ {
MessageBox.Show("Ошибка при загрузке данных.", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Не удалось сохранить наборы с ошибкой: {ex.Message}");
} }
} }
} }

View File

@ -1,3 +1,8 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
namespace Bulldozer namespace Bulldozer
{ {
internal static class Program internal static class Program
@ -11,7 +16,29 @@ namespace Bulldozer
// 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();
Application.Run(new FormBulldozerCollection()); var services = new ServiceCollection();
ConfigureServices(services);
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormBulldozerCollection>());
}
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormBulldozerCollection>().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);
});
} }
} }
} }

View File

@ -1,4 +1,6 @@
namespace Bulldozer.Generics using Bulldozer.Exceptions;
namespace Bulldozer.Generics
{ {
/// <summary> /// <summary>
/// Параметризованный набор объектов /// Параметризованный набор объектов
@ -35,7 +37,29 @@
/// <returns></returns> /// <returns></returns>
public int Insert(T tractor) public int Insert(T tractor)
{ {
return Insert(tractor, 0); if (_places.Count == 0)
{
_places.Add(tractor);
return 0;
}
else
{
if (_places.Count < _maxCount)
{
_places.Add(tractor);
for (int i = 0; i < _places.Count; i++)
{
T temp = _places[i];
_places[i] = _places[_places.Count - 1];
_places[_places.Count - 1] = temp;
}
return 0;
}
else
{
throw new StorageOverflowException(_places.Count);
}
}
} }
/// <summary> /// <summary>
/// Добавление объекта в набор на конкретную позицию /// Добавление объекта в набор на конкретную позицию
@ -43,18 +67,18 @@
/// <param name="tractor">Добавляемая установкаь</param> /// <param name="tractor">Добавляемая установкаь</param>
/// <param name="position">Позиция</param> /// <param name="position">Позиция</param>
/// <returns></returns> /// <returns></returns>
public int Insert(T tractor, int position) public bool Insert(T tractor, int position)
{ {
// TODO проверка позиции // TODO проверка позиции
if (position < 0 || position >= _maxCount) if (position < 0 || position >= _maxCount)
{ {
// Позиция недопустима // Позиция недопустима
return -1; throw new BulldozerNotFoundException(position);
} }
if (Count >= _maxCount) if (Count >= _maxCount)
return -1; throw new StorageOverflowException(position);
_places.Insert(position, tractor); _places.Insert(0, tractor);
return position; return true;
} }
/// <summary> /// <summary>
@ -66,13 +90,13 @@
{ {
// TODO проверка позиции // TODO проверка позиции
// Проверка позиции // Проверка позиции
if ((position < 0) || (position > _maxCount)) if (position < 0 || position > _maxCount || position >= Count)
throw new BulldozerNotFoundException();
if (_places[position] == null)
{ {
// Позиция недопустима throw new BulldozerNotFoundException();
return false;
} }
// TODO удаление объекта из массива, присвоив элементу массива значение null _places[position] = null;
_places.RemoveAt(position);
return true; return true;
} }
/// <summary> /// <summary>
@ -87,12 +111,16 @@
{ {
if (position < 0 || position > _maxCount) if (position < 0 || position > _maxCount)
return null; return null;
if (_places.Count <= position)
return null;
return _places[position]; return _places[position];
} }
set set
{ {
if (position < 0 || position > _maxCount) if (position < 0 || position > _maxCount)
return; return;
if (_places.Count <= position)
return;
_places[position] = value; _places[position] = value;
} }
} }

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Bulldozer.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) { }
}
}

View File

@ -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": "Bulldozer"
}
}
}