работа движется

This commit is contained in:
dex_moth 2023-12-10 11:45:41 +04:00
parent 6018455bd6
commit 4b53ad808a
12 changed files with 215 additions and 54 deletions

View File

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

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace ProjectAirbus.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 context) : base(info, context) { }
}
}

View File

@ -7,9 +7,11 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using Microsoft.Extensions.Logging;
using ProjectAirbus.Generics; using ProjectAirbus.Generics;
using ProjectAirbus.Drawnings; using ProjectAirbus.Drawnings;
using ProjectAirbus.MovementStrategy; using ProjectAirbus.Exceptions;
using System.Xml.Linq;
namespace ProjectAirbus namespace ProjectAirbus
{ {
@ -17,11 +19,14 @@ namespace ProjectAirbus
{ {
// Набор объектов // Набор объектов
private readonly AirbusGenericStorage _storage; private readonly AirbusGenericStorage _storage;
// Логер
private readonly ILogger _logger;
public FormAirbusCollection() public FormAirbusCollection(ILogger<FormAirbusCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
_storage = new AirbusGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height); _storage = new AirbusGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
_logger = logger;
} }
// Обработка нажатия "Сохранение" // Обработка нажатия "Сохранение"
@ -29,13 +34,16 @@ namespace ProjectAirbus
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.SaveData(saveFileDialog.FileName)) try
{ {
_storage.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Файл сохранён по пути: {saveFileDialog.FileName}");
} }
else catch (InvalidOperationException ex)
{ {
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
} }
} }
} }
@ -45,15 +53,16 @@ namespace ProjectAirbus
{ {
if (openFileDialog.ShowDialog() == DialogResult.OK) if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.LoadData(openFileDialog.FileName)) try
{ {
//var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; _storage.LoadData(openFileDialog.FileName);
//pictureBoxCollection.Image = obj.ShowAirbus();
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); 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);
} }
} }
ReloadObjects(); ReloadObjects();
@ -89,6 +98,7 @@ namespace ProjectAirbus
} }
_storage.AddSet(textBoxStorageName.Text); _storage.AddSet(textBoxStorageName.Text);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Добавлен набор: { textBoxStorageName.Text}");
} }
// выбрать набор // выбрать набор
@ -104,10 +114,12 @@ namespace ProjectAirbus
{ {
return; return;
} }
string name = listBoxStorages.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{ {
_storage.DelSet(listBoxStorages.SelectedItem.ToString() ?? string.Empty); _storage.DelSet(name);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Удалён набор: {name}");
} }
} }
@ -133,14 +145,23 @@ namespace ProjectAirbus
} }
// меняем границы после закрытия конфига // меняем границы после закрытия конфига
_airbus.ChangeBordersPicture(Width, Height); _airbus.ChangeBordersPicture(Width, Height);
if (obj + _airbus != -1) try
{ {
MessageBox.Show("Объект добавлен"); if (obj + _airbus != -1)
pictureBoxCollection.Image = obj.ShowAirbus(); {
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowAirbus();
_logger.LogInformation($"Добавлен объект: {_airbus.EntityAirbus.BodyColor}");
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
} }
else catch (StorageOverflowException ex)
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
} }
} }
@ -160,24 +181,29 @@ namespace ProjectAirbus
{ {
return; return;
} }
int pos = 0;
try try
{ {
pos = Convert.ToInt32(maskedTextBoxNumber.Text); int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (obj - pos)
{
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = obj.ShowAirbus();
_logger.LogInformation($"Удалён объект по позиции : {pos}");
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
} }
catch catch (FormatException ex)
{ {
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show("Неверный формат ввода");
return; _logger.LogWarning("Неверный формат ввода");
} }
if (obj - pos) catch (Exception ex)
{ {
MessageBox.Show("Объект удален"); MessageBox.Show(ex.Message);
pictureBoxCollection.Image = obj.ShowAirbus(); _logger.LogWarning(ex.Message);
}
else
{
MessageBox.Show("Не удалось удалить объект");
} }
} }

View File

@ -1,6 +1,6 @@
namespace ProjectAirbus namespace ProjectAirbus
{ {
partial class FormPlane partial class FormAirbus
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@ -28,7 +28,7 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPlane)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAirbus));
pictureAirBus = new PictureBox(); pictureAirBus = new PictureBox();
buttonUp = new Button(); buttonUp = new Button();
buttonLeft = new Button(); buttonLeft = new Button();

View File

@ -4,7 +4,7 @@ using ProjectAirbus.Entities;
namespace ProjectAirbus namespace ProjectAirbus
{ {
public partial class FormPlane : Form public partial class FormAirbus : Form
{ {
private DrawningAirbus? _drawningAirbus; private DrawningAirbus? _drawningAirbus;
private AbstractStrategy? _abstractStrategy; private AbstractStrategy? _abstractStrategy;
@ -12,7 +12,7 @@ namespace ProjectAirbus
// Выбранный автомобиль // Выбранный автомобиль
public DrawningAirbus? SelectedAirbus { get; private set; } public DrawningAirbus? SelectedAirbus { get; private set; }
public FormPlane() public FormAirbus()
{ {
InitializeComponent(); InitializeComponent();
_abstractStrategy = null; _abstractStrategy = null;

View File

@ -12,6 +12,7 @@ namespace ProjectAirbus.Generics
where T : DrawningAirbus where T : DrawningAirbus
where U : IMoveableObject where U : IMoveableObject
{ {
public int count => _collection.Count;
private readonly int _pictureWidth; private readonly int _pictureWidth;
private readonly int _pictureHeight; private readonly int _pictureHeight;
// Размер занимаемого места // Размер занимаемого места
@ -29,6 +30,7 @@ namespace ProjectAirbus.Generics
_collection = new SetGeneric<T>(width * height); _collection = new SetGeneric<T>(width * height);
} }
public static int operator +(AirbusGenericCollection<T, U> collect, T? obj) public static int operator +(AirbusGenericCollection<T, U> collect, T? obj)
{ {
if (obj != null) if (obj != null)

View File

@ -77,7 +77,9 @@ namespace ProjectAirbus.Generics
public bool SaveData(string filename) public bool SaveData(string filename)
{ {
if (_airbusStorages.Count == 0) if (_airbusStorages.Count == 0)
return false; {
throw new InvalidOperationException("Невалидная операция, нет данных для сохранения");
}
if (File.Exists(filename)) if (File.Exists(filename))
{ {
@ -92,6 +94,10 @@ namespace ProjectAirbus.Generics
{ {
StringBuilder records = new(); StringBuilder records = new();
if (record.Value.count <= 0)
{
throw new InvalidOperationException("Невалидная операция, нет данных для сохранения");
}
foreach (DrawningAirbus? elem in record.Value.GetAirbus) foreach (DrawningAirbus? elem in record.Value.GetAirbus)
{ {
records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}"); records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}");
@ -99,7 +105,6 @@ namespace ProjectAirbus.Generics
sw.WriteLine($"{record.Key}{_separatorForKeyValue}{records}"); sw.WriteLine($"{record.Key}{_separatorForKeyValue}{records}");
} }
} }
return true; return true;
} }
@ -108,7 +113,7 @@ namespace ProjectAirbus.Generics
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new FileNotFoundException($"Файл {filename} не найден");
} }
using (StreamReader sr = File.OpenText(filename)) using (StreamReader sr = File.OpenText(filename))
@ -118,21 +123,31 @@ namespace ProjectAirbus.Generics
// пустая или не те данные // пустая или не те данные
if (curLine == null || curLine.Length == 0 || !curLine.StartsWith("AirbusStorage")) if (curLine == null || curLine.Length == 0 || !curLine.StartsWith("AirbusStorage"))
{ {
return false; throw new ArgumentException("Неверный формат данных");
} }
// очищаем // очищаем
_airbusStorages.Clear(); _airbusStorages.Clear();
// загружаем данные построчно // загружаем данные построчно
curLine = sr.ReadLine(); curLine = sr.ReadLine();
if (curLine == null || curLine.Length == 0)
{
throw new ArgumentException("Нет данных");
}
while (curLine != null) while (curLine != null)
{ {
// загружаем запись // загружаем запись
if (!curLine.Contains(_separatorRecords))
{
throw new ArgumentException("Коллекция пуста");
}
string[] record = curLine.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); string[] record = curLine.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries);
// загружаем набор // загружаем набор
AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus> collection = new(_pictureWidth, _pictureHeight); AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus> collection = new(_pictureWidth, _pictureHeight);
// record[0] - название набора, record[1] - куча объектов // record[0] - название набора, record[1] - куча объектов
string[] set = record[1].Split(_separatorRecords, StringSplitOptions.RemoveEmptyEntries); string[] set = record[1].Split(_separatorRecords, StringSplitOptions.RemoveEmptyEntries);
foreach (string elem in set) foreach (string elem in set)
@ -143,7 +158,7 @@ namespace ProjectAirbus.Generics
{ {
if (collection + airbus == -1) if (collection + airbus == -1)
{ {
return false; throw new InvalidOperationException("Невалидная операция, ошибка добавления в коллекцию");
} }
} }
} }

View File

@ -1,4 +1,5 @@
using System; using ProjectAirbus.Exceptions;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -18,32 +19,30 @@ namespace ProjectAirbus.Generics
public SetGeneric(int count) public SetGeneric(int count)
{ {
_maxCount = count; //_maxCount = count;
_maxCount = 2;
_places = new List<T?>(count); _places = new List<T?>(count);
} }
// Добавление объекта в начало набора // Добавление объекта в начало набора
public int Insert(T airbus) public int Insert(T airbus)
{ {
if (_places.Count >= _maxCount) return Insert(airbus, 0);
{
return -1;
}
_places.Insert(0, airbus);
return 0;
} }
// Добавление объекта в набор на конкретную позицию // Добавление объекта в набор на конкретную позицию
public bool Insert(T airbus, int position) public int Insert(T airbus, int position)
{ {
if (Count >= _maxCount || position < 0 || position >= Count) if (Count >= _maxCount)
{ {
return false; throw new StorageOverflowException(_maxCount);
}
if (position < 0 || position >= _maxCount)
{
throw new IndexOutOfRangeException("Индекс вне границ коллекции");
} }
_places.Insert(position, airbus); _places.Insert(position, airbus);
return true; return 0;
} }
// Удаление объекта из набора с конкретной позиции // Удаление объекта из набора с конкретной позиции
@ -51,10 +50,9 @@ namespace ProjectAirbus.Generics
{ {
if (position < 0 || position >= Count) if (position < 0 || position >= Count)
{ {
return false; throw new AirbusNotFoundException(position);
} }
_places.RemoveAt(position); _places.RemoveAt(position);
return true; return true;
} }

View File

@ -1,3 +1,8 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
namespace ProjectAirbus namespace ProjectAirbus
{ {
internal static class Program internal static class Program
@ -11,7 +16,30 @@ namespace ProjectAirbus
// 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 FormAirbusCollection()); var services = new ServiceCollection();
ConfigureServices(services);
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormAirbusCollection>());
}
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormAirbusCollection>().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}serilog.json", optional: false, reloadOnChange: true).Build();
var logger = new LoggerConfiguration().ReadFrom.Configuration(configuration).CreateLogger();
option.SetMinimumLevel(LogLevel.Information);
option.AddSerilog(logger);
});
} }
} }
} }

View File

@ -23,4 +23,27 @@
</EmbeddedResource> </EmbeddedResource>
</ItemGroup> </ItemGroup>
<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.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="serilog.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
</Project> </Project>

11
Airbus/nlog.config Normal file
View File

@ -0,0 +1,11 @@
<?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>

20
Airbus/serilog.json Normal file
View File

@ -0,0 +1,20 @@
{
"Serilog": {
"Using": [ "Serilog.Sinks.File" ],
"MinimumLevel": "Information",
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "Logs/carlog.log",
"rollingInterval": "Day",
"outputTemplate": "[{Timestamp:HH:mm:ss.fff}]{Level:u4}: {Message:lj}{NewLine}{Exception}"
}
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
"Properties": {
"Application": "ProjectAirbus"
}
}
}