diff --git a/Bulldozer/Bulldozer/Bulldozer.csproj b/Bulldozer/Bulldozer/Bulldozer.csproj
index b57c89e..9619a2e 100644
--- a/Bulldozer/Bulldozer/Bulldozer.csproj
+++ b/Bulldozer/Bulldozer/Bulldozer.csproj
@@ -8,4 +8,14 @@
enable
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Bulldozer/Bulldozer/BulldozerNotFoundException.cs b/Bulldozer/Bulldozer/BulldozerNotFoundException.cs
new file mode 100644
index 0000000..bba1912
--- /dev/null
+++ b/Bulldozer/Bulldozer/BulldozerNotFoundException.cs
@@ -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) { }
+ }
+}
diff --git a/Bulldozer/Bulldozer/BulldozersGenericStorage.cs b/Bulldozer/Bulldozer/BulldozersGenericStorage.cs
index 16f47d5..9b5f663 100644
--- a/Bulldozer/Bulldozer/BulldozersGenericStorage.cs
+++ b/Bulldozer/Bulldozer/BulldozersGenericStorage.cs
@@ -7,6 +7,7 @@ using Bulldozer.DrawningObjects;
using Bulldozer.Generics;
using Bulldozer.MovementStrategy;
using Bulldozer.Drawnings;
+using Bulldozer.Exceptions;
namespace Bulldozer.Generics
{
@@ -100,7 +101,7 @@ namespace Bulldozer.Generics
///
/// Путь и имя файла
/// true - сохранение прошло успешно, false - ошибка при сохранении данных
- public bool SaveData(string filename)
+ public void SaveData(string filename)
{
if (File.Exists(filename))
{
@@ -118,37 +119,34 @@ namespace Bulldozer.Generics
}
if (data.Length == 0)
{
- return false;
+ throw new ArgumentException("Невалидная операция, нет данных для сохранения");
}
-
using (StreamWriter writer = new StreamWriter(filename))
{
writer.Write($"BulldozerStorage{Environment.NewLine}{data}");
}
-
- return true;
}
///
/// Загрузка информации по установкам в хранилище из файла
///
/// Путь и имя файла
/// true - загрузка прошла успешно, false - ошибка при загрузке данных
- public bool LoadData(string filename)
+ public void LoadData(string filename)
{
if (!File.Exists(filename))
{
- return false;
+ throw new FileNotFoundException("Файл не найден");
}
using (StreamReader reader = new StreamReader(filename))
{
string cheker = reader.ReadLine();
if (cheker == null)
{
- return false;
+ throw new ArgumentException("Нет данных для загрузки");
}
if (!cheker.StartsWith("BulldozerStorage"))
{
- return false;
+ throw new InvalidDataException("Неверный формат ввода");
}
_tractorStorages.Clear();
string strs;
@@ -157,11 +155,11 @@ namespace Bulldozer.Generics
{
if (strs == null && firstinit)
{
- return false;
+ throw new ArgumentException("Нет данных для загрузки");
}
if (strs == null)
{
- return false;
+ break;
}
firstinit = false;
string name = strs.Split(_separatorForKeyValue)[0];
@@ -172,16 +170,19 @@ namespace Bulldozer.Generics
data?.CreateDrawningBulldozer(_separatorForObject, _pictureWidth, _pictureHeight);
if (bulldozer != null)
{
- int? result = collection + bulldozer;
- if (result == null || result.Value == -1)
+ try { _ = collection + bulldozer; }
+ catch (BulldozerNotFoundException e)
{
- return false;
+ throw e;
+ }
+ catch (StorageOverflowException e)
+ {
+ throw e;
}
}
}
_tractorStorages.Add(name, collection);
}
- return true;
}
}
}
diff --git a/Bulldozer/Bulldozer/FormBulldozerCollection.cs b/Bulldozer/Bulldozer/FormBulldozerCollection.cs
index 4c91b56..d152d1b 100644
--- a/Bulldozer/Bulldozer/FormBulldozerCollection.cs
+++ b/Bulldozer/Bulldozer/FormBulldozerCollection.cs
@@ -1,9 +1,10 @@
-
+using Microsoft.Extensions.Logging;
using Bulldozer.DrawningObjects;
using Bulldozer.Drawnings;
using Bulldozer.Generics;
using Bulldozer.MovementStrategy;
using System.Windows.Forms;
+using Bulldozer.Exceptions;
namespace Bulldozer
{
@@ -16,14 +17,16 @@ namespace Bulldozer
/// Набор объектов
///
private readonly BulldozersGenericStorage _storage;
+ private readonly ILogger _logger;
///
/// Конструктор
///
- public FormBulldozerCollection()
+ public FormBulldozerCollection(ILogger logger)
{
InitializeComponent();
_storage = new BulldozersGenericStorage(pictureBoxCollection.Width,
pictureBoxCollection.Height);
+ _logger = logger;
}
///
/// Заполнение listBoxObjects
@@ -58,10 +61,12 @@ namespace Bulldozer
{
MessageBox.Show("Не все данные заполнены", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
+ _logger.LogWarning("Пустое название набора");
return;
}
_storage.AddSet(textBoxStorageName.Text);
ReloadObjects();
+ _logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}");
}
///
/// Выбор набора
@@ -83,14 +88,17 @@ namespace Bulldozer
{
if (listBoxStorage.SelectedIndex == -1)
{
+ _logger.LogWarning("Удаление невыбранного набора");
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()
?? string.Empty);
ReloadObjects();
+ _logger.LogInformation($"Удален набор: {name}");
}
}
///
@@ -106,22 +114,27 @@ namespace Bulldozer
}
var formBulldozerConfig = new FormBulldozerConfig();
- formBulldozerConfig.AddEvent(usta =>
+ formBulldozerConfig.AddEvent(tractor =>
{
if (listBoxStorage.SelectedIndex != -1)
{
var obj = _storage[listBoxStorage.SelectedItem?.ToString() ?? string.Empty];
- if (obj != null)
+ if (obj == null)
{
- if (obj + usta != 1)
- {
- MessageBox.Show("Объект добавлен");
- pictureBoxCollection.Image = obj.ShowBulldozer();
- }
- else
- {
- MessageBox.Show("Не удалось добавить объект");
- }
+ _logger.LogWarning("Добавление пустого объекта");
+ return;
+ }
+ try
+ {
+ _ = obj + tractor;
+ 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)
{
+ _logger.LogWarning("Удаление объекта из несуществующего набора");
return;
}
var obj = _storage[listBoxStorage.SelectedItem.ToString() ??
@@ -151,14 +165,24 @@ namespace Bulldozer
return;
}
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
- if (obj - pos != null)
+ try
{
- MessageBox.Show("Объект удален");
- pictureBoxCollection.Image = obj.ShowBulldozer();
+ if (obj - pos != null)
+ {
+ 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()}");
}
}
///
@@ -190,15 +214,16 @@ namespace Bulldozer
{
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
- if (_storage.SaveData(saveFileDialog.FileName))
+ try
{
- MessageBox.Show("Сохранение прошло успешно",
- "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _storage.SaveData(saveFileDialog.FileName);
+ MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _logger.LogInformation($"Сохранение наборов в файл {saveFileDialog.FileName}");
}
- else
+ catch (Exception ex)
{
- MessageBox.Show("Не сохранилось", "Результат",
- MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show($"Не сохранилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ _logger.LogWarning($"Не удалось сохранить наборы с ошибкой: {ex.Message}");
}
}
}
@@ -211,14 +236,17 @@ namespace Bulldozer
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
- if (_storage.LoadData(openFileDialog.FileName))
+ try
{
- MessageBox.Show("Данные успешно загружены.", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ _storage.LoadData(openFileDialog.FileName);
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}");
}
}
}
diff --git a/Bulldozer/Bulldozer/Program.cs b/Bulldozer/Bulldozer/Program.cs
index 3671b7b..bf744e5 100644
--- a/Bulldozer/Bulldozer/Program.cs
+++ b/Bulldozer/Bulldozer/Program.cs
@@ -1,3 +1,8 @@
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Logging;
+using Serilog;
+
namespace Bulldozer
{
internal static class Program
@@ -11,7 +16,29 @@ namespace Bulldozer
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
- Application.Run(new FormBulldozerCollection());
+ 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/Bulldozer/Bulldozer/SetGeneric.cs b/Bulldozer/Bulldozer/SetGeneric.cs
index 930ef2c..0c39b78 100644
--- a/Bulldozer/Bulldozer/SetGeneric.cs
+++ b/Bulldozer/Bulldozer/SetGeneric.cs
@@ -1,4 +1,6 @@
-namespace Bulldozer.Generics
+using Bulldozer.Exceptions;
+
+namespace Bulldozer.Generics
{
///
/// Параметризованный набор объектов
@@ -35,7 +37,29 @@
///
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);
+ }
+ }
}
///
/// Добавление объекта в набор на конкретную позицию
@@ -43,18 +67,18 @@
/// Добавляемая установкаь
/// Позиция
///
- public int Insert(T tractor, int position)
+ public bool Insert(T tractor, int position)
{
// TODO проверка позиции
if (position < 0 || position >= _maxCount)
{
// Позиция недопустима
- return -1;
+ throw new BulldozerNotFoundException(position);
}
if (Count >= _maxCount)
- return -1;
- _places.Insert(position, tractor);
- return position;
+ throw new StorageOverflowException(position);
+ _places.Insert(0, tractor);
+ return true;
}
///
@@ -66,13 +90,13 @@
{
// TODO проверка позиции
// Проверка позиции
- if ((position < 0) || (position > _maxCount))
+ if (position < 0 || position > _maxCount || position >= Count)
+ throw new BulldozerNotFoundException();
+ if (_places[position] == null)
{
- // Позиция недопустима
- return false;
+ throw new BulldozerNotFoundException();
}
- // TODO удаление объекта из массива, присвоив элементу массива значение null
- _places.RemoveAt(position);
+ _places[position] = null;
return true;
}
///
@@ -87,12 +111,16 @@
{
if (position < 0 || position > _maxCount)
return null;
+ if (_places.Count <= position)
+ return null;
return _places[position];
}
set
{
if (position < 0 || position > _maxCount)
return;
+ if (_places.Count <= position)
+ return;
_places[position] = value;
}
}
diff --git a/Bulldozer/Bulldozer/StorageOverflowException.cs b/Bulldozer/Bulldozer/StorageOverflowException.cs
new file mode 100644
index 0000000..c4dba11
--- /dev/null
+++ b/Bulldozer/Bulldozer/StorageOverflowException.cs
@@ -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) { }
+ }
+}
diff --git a/Bulldozer/Bulldozer/appsettings.json b/Bulldozer/Bulldozer/appsettings.json
new file mode 100644
index 0000000..802dfa2
--- /dev/null
+++ b/Bulldozer/Bulldozer/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": "Bulldozer"
+ }
+ }
+ }
\ No newline at end of file