lab 7 надеюсь готова

This commit is contained in:
Камилия Сафиулова 2023-12-19 18:27:50 +04:00
parent 7e81c6ca04
commit a58085b4d1
10 changed files with 266 additions and 96 deletions

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": "Battleship"
}
}
}

View File

@ -8,6 +8,17 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" 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.5" />
<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>
<ItemGroup> <ItemGroup>
<Compile Update="Properties\Resources.Designer.cs"> <Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>

View File

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

View File

@ -92,7 +92,7 @@ namespace Catamaran.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))
{ {
@ -110,65 +110,70 @@ namespace Catamaran.Generics
} }
if (data.Length == 0) if (data.Length == 0)
{ {
return false; throw new Exception("Невалидная операция, нет данных для сохранения");
} }
using (StreamWriter writer = new StreamWriter(filename)) using FileStream fs = new(filename, FileMode.Create);
{ byte[] info = new
writer.Write($"CatamaranStorage{Environment.NewLine}{data}"); UTF8Encoding(true).GetBytes($"CatamaranStorage{Environment.NewLine}{data}");
} fs.Write(info, 0, info.Length);
return true; return;
} }
public bool LoadData(string filename)
public void LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new Exception("Файл не найден");
} }
using (StreamReader fs = File.OpenText(filename)) string bufferTextFromFile = "";
using (FileStream fs = new(filename, FileMode.Open))
{ {
string str = fs.ReadLine(); byte[] b = new byte[fs.Length];
if (str == null || str.Length == 0) UTF8Encoding temp = new(true);
while (fs.Read(b, 0, b.Length) > 0)
{ {
return false; bufferTextFromFile += temp.GetString(b);
} }
if (!str.StartsWith("CatamaranStorage")) }
var strs = bufferTextFromFile.Split(new char[] { '\n', '\r' },
StringSplitOptions.RemoveEmptyEntries);
if (strs == null || strs.Length == 0)
{
throw new Exception("Нет данных для загрузки");
}
if (!strs[0].StartsWith("CatamaranStorage"))
{
//если нет такой записи, то это не те данные
throw new Exception("Неверный формат данных");
}
_catamaranStorages.Clear();
foreach (string data in strs)
{
string[] record = data.Split(_separatorForKeyValue,
StringSplitOptions.RemoveEmptyEntries);
if (record.Length != 2)
{ {
return false; continue;
} }
CatamaransGenericCollection<DrawningCatamaran, DrawningObjectCatamaran>
_catamaranStorages.Clear(); collection = new(_pictureWidth, _pictureHeight);
string strs = ""; string[] set = record[1].Split(_separatorRecords,
StringSplitOptions.RemoveEmptyEntries);
while ((strs = fs.ReadLine()) != null) foreach (string elem in set)
{ {
if (strs == null) DrawningCatamaran? catamaran =
elem?.CreateDrawningCatamaran(_separatorForObject, _pictureWidth, _pictureHeight);
if (catamaran != null)
{ {
return false; if (!(collection + catamaran))
}
string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries);
if (record.Length != 2)
{
continue;
}
CatamaransGenericCollection<DrawningCatamaran, DrawningObjectCatamaran> collection = new(_pictureWidth, _pictureHeight);
string[] set = record[1].Split(_separatorRecords, StringSplitOptions.RemoveEmptyEntries);
foreach (string elem in set)
{
DrawningCatamaran? catamaran = elem?.CreateDrawningCatamaran(_separatorForObject, _pictureWidth, _pictureHeight);
if (catamaran != null)
{ {
if (!(collection + catamaran)) throw new Exception("Ошибка добавления в коллекцию");
{
return false;
}
} }
} }
_catamaranStorages.Add(record[0], collection);
} }
return true; _catamaranStorages.Add(record[0], collection);
} }
} }
} }

View File

@ -1,6 +1,18 @@
using Catamaran.DrawningObjects; using Microsoft.Extensions.Logging;
using Catamaran.DrawningObjects;
using Catamaran.Exceptions;
using Catamaran.Generics; using Catamaran.Generics;
using Catamaran.MovementStrategy; using Catamaran.MovementStrategy;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Catamaran namespace Catamaran
{ {
@ -13,16 +25,21 @@ namespace Catamaran
/// Набор объектов /// Набор объектов
/// </summary> /// </summary>
private readonly CatamaransGenericStorage _storage; private readonly CatamaransGenericStorage _storage;
/// <summary>
/// Логер
/// </summary>
private readonly ILogger _logger;
/// <summary> /// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
public FormCatamaranCollection() public FormCatamaranCollection(ILogger<FormCatamaranCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
_storage = new CatamaransGenericStorage(pictureBoxCollection.Width,pictureBoxCollection.Height); _storage = new CatamaransGenericStorage(pictureBoxCollection.Width,
pictureBoxCollection.Height);
_logger = logger;
} }
/// <summary> /// <summary>
/// Заполнение listBoxStorages /// Заполнение listBoxStorages
/// </summary> /// </summary>
@ -45,7 +62,6 @@ namespace Catamaran
listBoxStorages.SelectedIndex = index; listBoxStorages.SelectedIndex = index;
} }
} }
/// <summary> /// <summary>
/// Добавление набора в коллекцию /// Добавление набора в коллекцию
/// </summary> /// </summary>
@ -61,31 +77,33 @@ namespace Catamaran
} }
_storage.AddSet(textBoxStorageName.Text); _storage.AddSet(textBoxStorageName.Text);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Добавлен набор:{ textBoxStorageName.Text}");
} }
private void AddCatamaran(DrawningCatamaran drawningCatamaran) private void AddCatamaran(DrawningCatamaran drawningCatamaran)
{ {
if (listBoxStorages.SelectedIndex == -1) if (listBoxStorages.SelectedIndex == -1)
{ {
return; return;
} }
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
string.Empty];
if (obj == null) if (obj == null)
{ {
return; return;
} }
try
if (obj + drawningCatamaran)
{ {
_ = obj + drawningCatamaran;
MessageBox.Show("Объект добавлен"); MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowCatamarans(); pictureBoxCollection.Image = obj.ShowCatamarans();
_logger.LogInformation($"Объект добавлен в набор {listBoxStorages.SelectedItem.ToString()}");
} }
else catch (Exception ex)
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show(ex.Message);
_logger.LogWarning($"Не удалось добавить объект в набор {listBoxStorages.SelectedItem.ToString()}");
} }
} }
/// <summary> /// <summary>
/// Выбор набора /// Выбор набора
/// </summary> /// </summary>
@ -108,15 +126,15 @@ namespace Catamaran
{ {
return; return;
} }
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, string name = listBoxStorages.SelectedItem.ToString() ??string.Empty;
MessageBoxIcon.Question) == DialogResult.Yes) if (MessageBox.Show($"Удалить объект {name}?", "Удаление",
{ MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
_storage.DelSet(listBoxStorages.SelectedItem.ToString() {
?? string.Empty); _storage.DelSet(name);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Удален набор: {name}");
} }
} }
/// <summary> /// <summary>
/// Добавление объекта /// Добавление объекта
/// </summary> /// </summary>
@ -126,6 +144,7 @@ namespace Catamaran
{ {
if (listBoxStorages.SelectedIndex == -1) if (listBoxStorages.SelectedIndex == -1)
{ {
_logger.LogWarning("Коллекция не выбрана");
return; return;
} }
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
@ -134,11 +153,11 @@ namespace Catamaran
return; return;
} }
var formBoatConfig = new FormCatamaranConfig(); var formBoatConfig = new FormCatamaranConfig();
// TODO Call method AddEvent from formCarConfig // TODO Call method AddEvent from FormCatamaranConfig
formBoatConfig.AddEvent(AddCatamaran); var FormCatamaranConfig = new FormCatamaranConfig();
formBoatConfig.Show(); FormCatamaranConfig.AddEvent(AddCatamaran);
FormCatamaranConfig.Show();
} }
/// <summary> /// <summary>
/// Удаление объекта из набора /// Удаление объекта из набора
/// </summary>listBoxStorages /// </summary>listBoxStorages
@ -162,17 +181,31 @@ namespace Catamaran
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.ShowCatamarans(); {
MessageBox.Show("Объект удален");
_logger.LogInformation($"Удален объект из коллекции {listBoxStorages.SelectedItem.ToString() ?? string.Empty} по номеру {pos}");
pictureBoxCollection.Image = obj.ShowCatamarans();
}
else
{
MessageBox.Show("Не удалось удалить объект");
_logger.LogWarning($"Не удалось удалить объект из набора {listBoxStorages.SelectedItem.ToString()}");
}
} }
else catch (CatamaranNotFoundException ex)
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show(ex.Message);
_logger.LogWarning($"Нет объекта{ex.Message} из набора {listBoxStorages.SelectedItem.ToString()}");
}
catch (FormatException)
{
_logger.LogWarning($"Было введено не число");
MessageBox.Show("Введите число");
} }
} }
/// <summary> /// <summary>
/// Обновление рисунка по набору /// Обновление рисунка по набору
/// </summary> /// </summary>
@ -202,15 +235,16 @@ namespace Catamaran
{ {
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.Information);
MessageBoxButtons.OK, MessageBoxIcon.Error); _logger.LogWarning($"Не удалось сохранить информацию в файл: {ex.Message}");
} }
} }
} }
@ -221,20 +255,24 @@ namespace Catamaran
/// <param name="e"></param> /// <param name="e"></param>
private void LoadToolStripMenuItem_Click(object sender, EventArgs e) private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
{ {
if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.LoadData(openFileDialog.FileName)) // TODO продумать логику
if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
MessageBox.Show("Загрузка прошла успешно", try
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); {
} _storage.LoadData(openFileDialog.FileName);
else MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
{ _logger.LogInformation($"Данные загружены из файла {openFileDialog.FileName}");
MessageBox.Show("Не загрузилось", "Результат", }
MessageBoxButtons.OK, MessageBoxIcon.Error); catch (Exception ex)
{
MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogWarning($"Не удалось загрузить информацию из файла: {ex.Message}");
}
} }
ReloadObjects();
} }
ReloadObjects();
} }
} }
} }

View File

@ -7,6 +7,8 @@ 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 Microsoft.Extensions.Logging.Abstractions;
using Catamaran.DrawningObjects; using Catamaran.DrawningObjects;
using Catamaran.Entities; using Catamaran.Entities;
@ -108,6 +110,8 @@ namespace Catamaran
/// <param name="e"></param> /// <param name="e"></param>
private void PanelObject_DragDrop(object sender, DragEventArgs e) private void PanelObject_DragDrop(object sender, DragEventArgs e)
{ {
ILogger<FormCatamaranCollection> logger = new NullLogger<FormCatamaranCollection>();
FormCatamaranCollection form = new FormCatamaranCollection(logger);
switch (e.Data?.GetData(DataFormats.Text).ToString()) switch (e.Data?.GetData(DataFormats.Text).ToString())
{ {
case "labelSimpleObject": case "labelSimpleObject":

View File

@ -1,3 +1,9 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
namespace Catamaran namespace Catamaran
{ {
internal static class Program internal static class Program
@ -8,10 +14,31 @@ namespace Catamaran
[STAThread] [STAThread]
static void Main() static void Main()
{ {
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize(); ApplicationConfiguration.Initialize();
Application.Run(new FormCatamaranCollection()); var services = new ServiceCollection();
ConfigureServices(services);
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormCatamaranCollection>());
}
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormCatamaranCollection>().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}appSetting.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,5 @@
using System; using Catamaran.Exceptions;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Numerics; using System.Numerics;
@ -63,11 +64,14 @@ namespace Catamaran.Generics
//если нет, то проверка, что после вставляемого элемента в массиве есть пустой элемент //если нет, то проверка, что после вставляемого элемента в массиве есть пустой элемент
// сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента // сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
// TODO вставка по позиции // TODO вставка по позиции
if (!(position >= 0 && position <= Count && _places.Count < _maxCount)) if (Count >= _maxCount)
{ {
return false; throw new StorageOverflowException(_maxCount);
}
if (position < 0 || position >= _maxCount)
{
throw new StorageOverflowException("Impossible to insert");
} }
_places.Insert(position, catamaran); _places.Insert(position, catamaran);
return true; return true;
} }
@ -80,9 +84,13 @@ namespace Catamaran.Generics
{ {
// TODO проверка позиции // TODO проверка позиции
// TODO удаление объекта из массива, присвоив элементу массива значение null // TODO удаление объекта из массива, присвоив элементу массива значение null
if (position < 0 || position >= Count) if (position >= Count || position < 0)
{ {
return false; throw new CatamaranNotFoundException("Invalid operation");
}
if (_places[position] == null)
{
throw new CatamaranNotFoundException(position);
} }
_places.RemoveAt(position); _places.RemoveAt(position);
return true; return true;

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace Catamaran.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,14 @@
<?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>