готовая 7 лаба

This commit is contained in:
Казначеева Елизавета 2023-12-18 22:52:40 +04:00
parent d5982487e8
commit 9f41ebdfdf
10 changed files with 179 additions and 70 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,15 @@
<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.7" />
<PackageReference Include="Serilog.AspNetCore" 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

@ -1,4 +1,6 @@
using Battleship.DrawningObjects; using Microsoft.Extensions.Logging;
using Battleship.DrawningObjects;
using Battleship.Exceptions;
using Battleship.Generics; using Battleship.Generics;
using Battleship.MovementStrategy; using Battleship.MovementStrategy;
using System; using System;
@ -20,12 +22,17 @@ namespace Battleship
/// </summary> /// </summary>
private readonly ShipsGenericStorage _storage; private readonly ShipsGenericStorage _storage;
/// <summary> /// <summary>
/// Логер
/// </summary>
private readonly ILogger _logger;
/// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
public FormShipCollection() public FormShipCollection(ILogger<FormShipCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
_storage = new ShipsGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height); _storage = new ShipsGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
_logger = logger;
} }
/// <summary> /// <summary>
/// Обработка нажатия "Сохранение" /// Обработка нажатия "Сохранение"
@ -36,15 +43,16 @@ namespace Battleship
{ {
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}");
} }
} }
} }
@ -57,15 +65,16 @@ namespace Battleship
{ {
if(openFileDialog.ShowDialog() == DialogResult.OK) if(openFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storage.LoadData(openFileDialog.FileName)) try
{ {
MessageBox.Show("Загрузка прошла успешно", _storage.LoadData(openFileDialog.FileName);
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation($"Данные загружены из файла {openFileDialog.FileName}");
} }
else catch(Exception ex)
{ {
MessageBox.Show("Не загрузилось", "Результат", MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBoxButtons.OK, MessageBoxIcon.Error); _logger.LogWarning($"Не удалось загрузить информацию из файла: {ex.Message}");
} }
} }
ReloadObjects(); ReloadObjects();
@ -99,12 +108,12 @@ namespace Battleship
{ {
if (string.IsNullOrEmpty(textBoxStorageName.Text)) if (string.IsNullOrEmpty(textBoxStorageName.Text))
{ {
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
_storage.AddSet(textBoxStorageName.Text); _storage.AddSet(textBoxStorageName.Text);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}");
} }
/// <summary> /// <summary>
/// Выбор набора /// Выбор набора
@ -125,12 +134,16 @@ namespace Battleship
{ {
if (listBoxStorages.SelectedIndex == -1) if (listBoxStorages.SelectedIndex == -1)
{ {
_logger.LogWarning("Коллекция не выбрана");
return; return;
} }
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) string nameSet = listBoxStorages.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {nameSet}?", "Удаление",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{ {
_storage.DelSet(listBoxStorages.SelectedItem.ToString() ?? string.Empty); _storage.DelSet(nameSet);
ReloadObjects(); ReloadObjects();
_logger.LogInformation($"Удален набор: {nameSet}");
} }
} }
/// <summary> /// <summary>
@ -142,6 +155,7 @@ namespace Battleship
{ {
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];
@ -170,10 +184,12 @@ namespace Battleship
{ {
MessageBox.Show("Объект добавлен"); MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowShips(); pictureBoxCollection.Image = obj.ShowShips();
} _logger.LogInformation($"Объект {obj.GetType()} добавлен");
}
else else
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show("Не удалось добавить объект");
_logger.LogInformation($"Не удалось добавить объект");
} }
} }
@ -194,25 +210,30 @@ namespace Battleship
return; return;
} }
int pos; int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
try try
{ {
if (obj - pos != null)
pos = Convert.ToInt32(maskedTextBoxNumber.Text); {
MessageBox.Show("Объект удален");
_logger.LogInformation($"Удален объект из коллекции {listBoxStorages.SelectedItem.ToString() ?? string.Empty} по номеру {pos}");
pictureBoxCollection.Image = obj.ShowShips();
}
else
{
MessageBox.Show("Не удалось удалить объект");
_logger.LogWarning($"Не удалось удалить объект из набора {listBoxStorages.SelectedItem.ToString()}");
}
} }
catch catch (ShipNotFoundException ex)
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show(ex.Message);
return; _logger.LogWarning($"Нет объекта{ex.Message} из набора {listBoxStorages.SelectedItem.ToString()}");
} }
if (obj - pos != null) catch (FormatException)
{ {
MessageBox.Show("Объект удален"); _logger.LogWarning($"Было введено не число");
pictureBoxCollection.Image = obj.ShowShips(); MessageBox.Show("Введите число");
}
else
{
MessageBox.Show("Не удалось удалить объект");
} }
} }

View File

@ -40,7 +40,7 @@ namespace Battleship
buttonCancel.Click += (s, e) => Close(); buttonCancel.Click += (s, e) => Close();
} }
/// <summary> /// <summary>
/// Отрисовать машину /// Отрисовать
/// </summary> /// </summary>
private void DrawShip() private void DrawShip()
{ {
@ -112,7 +112,7 @@ namespace Battleship
DrawShip(); DrawShip();
} }
/// <summary> /// <summary>
/// Добавление машины /// Добавление
/// </summary> /// </summary>
/// <param name="sender"></param> /// <param name="sender"></param>
/// <param name="e"></param> /// <param name="e"></param>

View File

@ -1,3 +1,8 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
namespace Battleship namespace Battleship
{ {
internal static class Program internal static class Program
@ -8,10 +13,31 @@ namespace Battleship
[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 FormShipCollection()); var services = new ServiceCollection();
ConfigureServices(services);
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormShipCollection>());
}
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormShipCollection>().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 Battleship.Exceptions;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -19,49 +20,45 @@ namespace Battleship.Generics
_places = new List<T?>(count); _places = new List<T?>(count);
} }
public bool Insert(T ship) public void Insert(T ship)
{ {
if(_places.Count == _maxCount) if(_places.Count == _maxCount)
{ {
return false; throw new StorageOverflowException(_maxCount);
} }
Insert(ship, 0); Insert(ship, 0);
return true;
} }
public bool Insert(T ship, int position) public void Insert(T ship, int position)
{ {
if(!(position >= 0 && position <= Count && _places.Count < _maxCount)) if(_places.Count == _maxCount)
{ throw new StorageOverflowException(_maxCount);
return false; if (position < 0 || position >= _maxCount)
} throw new ShipNotFoundException("Impossible to insert");
_places.Insert(position, ship); _places.Insert(position, ship);
return true;
} }
public bool Remove(int position) public void Remove(int position)
{ {
if (position < 0 || position >= Count) if (position < 0 || position > _maxCount || position >= Count)
return false; throw new ShipNotFoundException(position);
_places.RemoveAt(position); _places.RemoveAt(position);
return true;
} }
public T? this[int position] public T? this[int position]
{ {
get get
{ {
if (position < 0 || position > _maxCount) if (position < 0 || position >= Count)
return null; return null;
return _places[position]; return _places[position];
} }
set set
{ {
if(!(position >= 0 && position < Count && _places.Count < _maxCount)) if (position < 0 || position > _maxCount || Count == _maxCount)
{
return; return;
} _places[position] = value;
_places.Insert(position, value);
return;
} }
} }

View File

@ -33,7 +33,8 @@ namespace Battleship.Generics
{ {
if (obj != null && collect != null) if (obj != null && collect != null)
{ {
return collect._collection.Insert(obj); collect._collection.Insert(obj);
return true;
} }
return false; return false;
} }

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 Battleship.Exceptions
{
[Serializable]
internal class ShipNotFoundException : ApplicationException
{
public ShipNotFoundException(int i) : base($"Не найден объект по позиции {i}") { }
public ShipNotFoundException() : base() { }
public ShipNotFoundException(string message) : base(message) { }
public ShipNotFoundException(string message, Exception exception) : base(message, exception) { }
protected ShipNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}

View File

@ -68,7 +68,7 @@ namespace Battleship.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))
{ {
@ -86,13 +86,12 @@ namespace Battleship.Generics
} }
if (data.Length == 0) if (data.Length == 0)
{ {
return false; throw new InvalidOperationException("Невалидная операция, нет данных для сохранения");
} }
using (StreamWriter writer = new StreamWriter(filename)) using (StreamWriter writer = new StreamWriter(filename))
{ {
writer.Write($"ShipStorage{Environment.NewLine}{data}"); writer.Write($"ShipStorage{Environment.NewLine}{data}");
} }
return true;
} }
/// <summary> /// <summary>
/// Загрузка информации по кораблям в хранилище из файла /// Загрузка информации по кораблям в хранилище из файла
@ -100,11 +99,11 @@ namespace Battleship.Generics
/// <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($"Файл {filename} не найден");
} }
using (StreamReader fs = File.OpenText(filename)) using (StreamReader fs = File.OpenText(filename))
@ -112,21 +111,20 @@ namespace Battleship.Generics
string str = fs.ReadLine(); string str = fs.ReadLine();
if (str == null || str.Length == 0) if (str == null || str.Length == 0)
{ {
return false; throw new NullReferenceException("Нет данных для загрузки");
} }
if (!str.StartsWith("ShipStorage")) if (!str.StartsWith("ShipStorage"))
{ {
return false; throw new FormatException("Неверный формат данных");
} }
_shipStorages.Clear(); _shipStorages.Clear();
string strs = ""; string strs = "";
while ((strs = fs.ReadLine()) != null) while ((strs = fs.ReadLine()) != null)
{ {
if (strs == null) if (strs == null)
{ {
return false; throw new NullReferenceException("Нет данных для загрузки");
} }
string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries);
@ -143,13 +141,12 @@ namespace Battleship.Generics
{ {
if (!(collection + plane)) if (!(collection + plane))
{ {
return false; throw new InvalidOperationException("Ошибка добавления в коллекцию");
} }
} }
} }
_shipStorages.Add(record[0], collection); _shipStorages.Add(record[0], collection);
} }
return true;
} }
} }
} }

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 Battleship.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) { }
}
}