потом доделаю

This commit is contained in:
victinass 2024-04-28 22:03:27 +04:00
parent 69ba7b26d6
commit 5831712711
9 changed files with 135 additions and 24 deletions

View File

@ -8,6 +8,10 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
</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 @@
namespace Battleship.CollectionGenericObjects; using Battleship.Exception;
namespace Battleship.CollectionGenericObjects;
/// <summary> /// <summary>
/// Конструктор /// Конструктор
@ -55,7 +57,7 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
// TODO проверка, что не превышено максимальное количество элементов // TODO проверка, что не превышено максимальное количество элементов
// TODO проверка позиции // TODO проверка позиции
// TODO вставка по позиции // TODO вставка по позиции
if (Count == _maxCount) return -1; if (Count == _maxCount) throw new CollectionOverflowException(_maxCount);
_collection.Add(obj); _collection.Add(obj);
return Count; return Count;
} }

View File

@ -1,4 +1,6 @@
 
using Battleship.Exception;
namespace Battleship.CollectionGenericObjects; namespace Battleship.CollectionGenericObjects;
/// <summary> /// <summary>
@ -12,6 +14,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
/// Массив объектов, которые храним /// Массив объектов, которые храним
/// </summary> /// </summary>
private T?[] _collection; private T?[] _collection;
private int _maxCount;
public int Count => _collection.Length; public int Count => _collection.Length;
@ -70,7 +73,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
} }
++index; ++index;
} }
return -1; throw new CollectionOverflowException(_maxCount);
} }
public int Insert(T obj, int position) public int Insert(T obj, int position)

View File

@ -1,5 +1,6 @@
using Battleship.Drawings; using Battleship.Drawings;
using System.Text; using System.Text;
using Battleship.Exception;
namespace Battleship.CollectionGenericObjects; namespace Battleship.CollectionGenericObjects;
@ -20,6 +21,11 @@ public class StorageCollection<T>
/// </summary> /// </summary>
public List<string> Keys => _storages.Keys.ToList(); public List<string> Keys => _storages.Keys.ToList();
/// <summary>
/// Ключевое слово, с которого должен начинаться файл
/// </summary>
private readonly string _collectionKey = "CollectionStorage";
/// <summary> /// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
@ -36,9 +42,10 @@ public class StorageCollection<T>
public void AddCollection(string name, CollectionType collectionType) public void AddCollection(string name, CollectionType collectionType)
{ {
// TODO проверка, что name не пустой и нет в словаре записи с таким ключом // TODO проверка, что name не пустой и нет в словаре записи с таким ключом
if (_storages.ContainsKey(name)) if (string.IsNullOrEmpty(name) || _storages.ContainsKey(name))
{
return; return;
}
// TODO Прописать логику для добавления // TODO Прописать логику для добавления
if (collectionType == CollectionType.List) if (collectionType == CollectionType.List)
{ {
@ -80,6 +87,9 @@ public class StorageCollection<T>
} }
} }
/// <summary>
/// Ключевое слово, с которого должен начинаться файл
/// </summary>
private readonly string _collectionKey = "CollectionsStorage"; private readonly string _collectionKey = "CollectionsStorage";
private readonly string _separatorForKeyValue = "|"; private readonly string _separatorForKeyValue = "|";
@ -91,11 +101,11 @@ public class StorageCollection<T>
/// </summary> /// </summary>
/// <param name="filname"></param> /// <param name="filname"></param>
/// <returns></returns> /// <returns></returns>
public bool SaveData(string filname) public void SaveData(string filname)
{ {
if (_storages.Count == 0) if (_storages.Count == 0)
{ {
return false; throw new Exception("В хранилище отсутствуют коллекции для сохранения");
} }
if (File.Exists(filname)) if (File.Exists(filname))
@ -117,7 +127,7 @@ public class StorageCollection<T>
// не сохраняем пустые коллекции // не сохраняем пустые коллекции
if (value.Value.Count == 0) if (value.Value.Count == 0)
{ {
continue; throw new Exception("В хранилище отсутствуют коллекции для сохранения");
} }
sb.Append(value.Key); sb.Append(value.Key);
@ -143,19 +153,18 @@ public class StorageCollection<T>
using FileStream fs = new(filname, FileMode.Create); using FileStream fs = new(filname, FileMode.Create);
byte[] info = new UTF8Encoding(true).GetBytes(sb.ToString()); byte[] info = new UTF8Encoding(true).GetBytes(sb.ToString());
fs.Write(info, 0, info.Length); fs.Write(info, 0, info.Length);
return true;
} }
/// <summary> /// <summary>
/// Загрузка информации по кораблям в хранилище из файла /// Загрузка информации по кораблям в хранилище из файла
/// </summary> /// </summary>
/// <param name="filename"></param> /// <param name="filename"></param>
/// <returns></returns> /// <returns></returns>
public bool LoadData(string filename) public void LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
{ {
return false; throw new Exception("Файл не существует");
} }
string bufferTextFromFile = ""; string bufferTextFromFile = "";
@ -172,12 +181,11 @@ public class StorageCollection<T>
string[] strs = bufferTextFromFile.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries); string[] strs = bufferTextFromFile.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
if (strs == null || strs.Length == 0) if (strs == null || strs.Length == 0)
{ {
return false; throw new Exception("В файле нет данных");
} }
if (!strs[0].Equals(_collectionKey)) if (!strs[0].Equals(_collectionKey))
{ {
//если нет такой записи, то это не те файлы throw new Exception("В файле неверные данные");
return false;
} }
_storages.Clear(); _storages.Clear();
@ -193,7 +201,7 @@ public class StorageCollection<T>
ICollectionGenericObjects<T> collection = StorageCollection<T>.CreateCollection(collectionType); ICollectionGenericObjects<T> collection = StorageCollection<T>.CreateCollection(collectionType);
if (collection == null) if (collection == null)
{ {
return false; throw new Exception("Не удалось создать коллекцию");
} }
collection.MaxCount = Convert.ToInt32(record[2]); collection.MaxCount = Convert.ToInt32(record[2]);
@ -202,16 +210,22 @@ public class StorageCollection<T>
{ {
if (elem?.CreateDrawingWarship() is T warship) if (elem?.CreateDrawingWarship() is T warship)
{ {
if (collection.Insert(warship) == -1) try
{ {
return false; if (collection.Insert(warship) == -1)
{
throw new Exception("Не удалось создать коллекцию");
}
}
catch (CollectionOverflowException ex)
{
throw new Exception("Коллекция переполнена", ex);
} }
} }
} }
_storages.Add(record[0], collection); _storages.Add(record[0], collection);
} }
return true;
} }
private static ICollectionGenericObjects<T>? CreateCollection(CollectionType collectionType) private static ICollectionGenericObjects<T>? CreateCollection(CollectionType collectionType)

View File

@ -0,0 +1,20 @@
using System.Runtime.Serialization;
namespace Battleship.Exception;
/// <summary>
/// Класс, описывающий ошибку переполнения коллекции
/// </summary>
[Serializable]
internal class CollectionOverflowException : ApplicationException
{
public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество count" + count) { }
public CollectionOverflowException() : base() { }
public CollectionOverflowException(string message) : base(message) { }
public CollectionOverflowException(string message, Exception exception) : base(message, exception) { }
protected CollectionOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}

View File

@ -0,0 +1,19 @@
using System.Runtime.Serialization;
namespace Battleship.Exception;
/// <summary>
/// Класс, описывающий ошибку, что по указанной позиции нет элемента
/// </summary>
[Serializable]
internal class ObjectNotFoundException : ApplicationException
{
public ObjectNotFoundException(int count) : base("В коллекции превышено допустимое количество count" + count) { }
public ObjectNotFoundException() : base() { }
public ObjectNotFoundException(string message) : base(message) { }
public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { }
protected ObjectNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}

View File

@ -0,0 +1,20 @@
using System.Runtime.Serialization;
namespace Battleship.Exception;
/// <summary>
/// Класс, описывающий ошибку выхода за границы коллекции
/// </summary>
[Serializable]
internal class PositionOutOfCollectionException : ApplicationException
{
public PositionOutOfCollectionException(int count) : base("В коллекции превышено допустимое количество count" + count) { }
public PositionOutOfCollectionException() : base() { }
public PositionOutOfCollectionException(string message) : base(message) { }
public PositionOutOfCollectionException(string message, Exception exception) : base(message, exception) { }
protected PositionOutOfCollectionException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}

View File

@ -1,5 +1,6 @@
using Battleship.CollectionGenericObjects; using Battleship.CollectionGenericObjects;
using Battleship.Drawings; using Battleship.Drawings;
using Microsoft.Extensions.Logging;
using System.Windows.Forms; using System.Windows.Forms;
namespace Battleship; namespace Battleship;
@ -19,13 +20,16 @@ public partial class FormWarshipCollection : Form
/// </summary> /// </summary>
private AbstractCompany? _company = null; private AbstractCompany? _company = null;
private readonly ILogger _logger;
/// <summary> /// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
public FormWarshipCollection() public FormWarshipCollection(ILogger<FormWarshipCollection> logger)
{ {
InitializeComponent(); InitializeComponent();
_storageCollection = new(); _storageCollection = new();
_logger = logger;
} }
/// <summary> /// <summary>
@ -256,13 +260,16 @@ public partial class FormWarshipCollection : Form
{ {
if (saveFileDialog.ShowDialog() == DialogResult.OK) if (saveFileDialog.ShowDialog() == DialogResult.OK)
{ {
if (_storageCollection.SaveData(saveFileDialog.FileName)) try
{ {
_storageCollection.SaveData(saveFileDialog.FileName);
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
_logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName);
} }
else catch (Exception ex)
{ {
MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogError("Ошибка: {Message}", ex.Message);
} }
} }
} }

View File

@ -1,3 +1,6 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Battleship namespace Battleship
{ {
internal static class Program internal static class Program
@ -11,7 +14,26 @@ namespace Battleship
// 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 FormWarshipCollection()); ServiceCollection services = new();
ConfigureServices(services);
using ServiceProvider serviceProvider = services.BuildServiceProvider();
Application.Run(serviceProvider.GetRequiredService<FormWarshipCollection>());
} }
/// <summary>
/// Êîíôèãóðàöèÿ ñåðâèñà DI
/// </summary>
/// <param name="services"></param>
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormWarshipCollection>()
.AddLogging(option =>
{
optinon.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
}
} }
} }