nado
This commit is contained in:
parent
b0e6c97466
commit
89a9f30dda
@ -1,4 +1,5 @@
|
||||
using ProjectDumpTruck.Drawnings;
|
||||
using ProjectDumpTruck.Exceptions;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -102,7 +103,7 @@ public class StorageCollection<T>
|
||||
{
|
||||
if (File.Exists(filename)) File.Delete(filename);
|
||||
|
||||
if (_storages.Count == 0) return false;
|
||||
if (_storages.Count == 0) throw new NullReferenceException("В хранилище отсутствуют коллекции для сохранения");
|
||||
|
||||
using (StreamWriter sw = new StreamWriter(filename))
|
||||
{
|
||||
@ -143,19 +144,16 @@ public class StorageCollection<T>
|
||||
/// <returns>true - загрузка прошла успешно, false - ошибка при загрузке данных</returns>
|
||||
public bool LoadData(string filename)
|
||||
{
|
||||
if (!File.Exists(filename)) return false;
|
||||
if (!File.Exists(filename)) throw new FileNotFoundException("Файл не существует"); ;
|
||||
|
||||
using (StreamReader sr = new(filename))
|
||||
{
|
||||
string line = sr.ReadLine();
|
||||
|
||||
if (line == null || line.Length == 0) return false;
|
||||
if (line == null || line.Length == 0) throw new FileFormatException("В файле нет данных"); ;
|
||||
|
||||
if (!line.Equals(_collectionKey)) throw new FileFormatException("В файле неверные данные");
|
||||
|
||||
if (!line.Equals(_collectionKey))
|
||||
{
|
||||
//если нет такой записи, то это не те данные
|
||||
return false;
|
||||
}
|
||||
_storages.Clear();
|
||||
|
||||
while ((line = sr.ReadLine()) != null)
|
||||
@ -168,20 +166,25 @@ public class StorageCollection<T>
|
||||
|
||||
CollectionType collectionType = (CollectionType)Enum.Parse(typeof(CollectionType), record[1]);
|
||||
ICollectionGenericObject<T>? collection = StorageCollection<T>.CreateCollection(collectionType);
|
||||
if (collection == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (collection == null) throw new InvalidOperationException("Не удалось создать коллекцию");
|
||||
|
||||
collection.MaxCount = Convert.ToInt32(record[2]);
|
||||
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
|
||||
foreach (string elem in set)
|
||||
{
|
||||
if (elem?.CreateDrawningTruck() is T warship)
|
||||
if (elem?.CreateDrawningTruck() is T truck)
|
||||
{
|
||||
if (collection.Insert(warship) == -1)
|
||||
try
|
||||
{
|
||||
return false;
|
||||
if (collection.Insert(truck) == -1)
|
||||
{
|
||||
throw new InvalidOperationException("Объект не удалось добавить в коллекцию: " + record[3]);
|
||||
}
|
||||
}
|
||||
catch (CollectionOverflowException ex)
|
||||
{
|
||||
throw new OverflowException("Коллекция переполнена", ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user