using ProjectElectroTrans.Drawnings; using System.Text; using ProjectElectroTrans.CollectionGenericObjects; using ProjectElectroTrans.Exceptions; using FileFormatException = ProjectElectroTrans.Exceptions.FileFormatException; using FileNotFoundException = ProjectElectroTrans.Exceptions.FileNotFoundException; namespace ProjectElectroTrans.CollectionGenericObjects; /// /// Класс-хранилище коллекций /// /// public class StorageCollection where T : DrawingTrans { /// /// Словарь (хранилище) с коллекциями /// readonly Dictionary> _storages; /// /// Возвращение списка названий коллекций /// public List Keys => _storages.Keys.ToList(); /// /// Ключевое слово, с которого должен начинаться файл /// private readonly string _collectionKey = "CollectionsStorage"; /// /// Разделитель для записи ключа и значения элемента словаря /// private readonly string _separatorForKeyValue = "|"; /// /// Разделитель для записей коллекции данных в файл /// private readonly string _separatorItems = ";"; /// /// Конструктор /// public StorageCollection() { _storages = new Dictionary>(); } /// /// Добавление коллекции в хранилище /// /// Название коллекции /// тип коллекции public void AddCollection(string name, CollectionType collectionType) { if (_storages.ContainsKey(name)) throw new CollectionAlreadyExistsException(name); if (collectionType == CollectionType.None) throw new CollectionTypeException("Пустой тип коллекции"); if (collectionType == CollectionType.Massive) _storages[name] = new MassiveGenericObjects(); else if (collectionType == CollectionType.List) _storages[name] = new ListGenericObjects(); } /// /// Удаление коллекции /// /// Название коллекции public void DelCollection(string name) { if (_storages.ContainsKey(name)) _storages.Remove(name); } /// /// Доступ к коллекции /// /// Название коллекции /// public ICollectionGenericObjects? this[string name] { get { if (_storages.ContainsKey(name)) return _storages[name]; return null; } } /// /// Сохранение информации по автомобилям в хранилище в файл /// /// Путь и имя файла /// true - сохранение прошло успешно, false - ошибка при сохранении данных public bool SaveData(string filename) { if (_storages.Count == 0) { throw new EmptyFileExeption(); } if (File.Exists(filename)) { File.Delete(filename); } using (StreamWriter writer = new StreamWriter(filename)) { writer.Write(_collectionKey); foreach (KeyValuePair> value in _storages) { StringBuilder sb = new(); sb.Append(Environment.NewLine); // не сохраняем пустые коллекции if (value.Value.Count == 0) { continue; } sb.Append(value.Key); sb.Append(_separatorForKeyValue); sb.Append(value.Value.GetCollectionType); sb.Append(_separatorForKeyValue); sb.Append(value.Value.MaxCount); sb.Append(_separatorForKeyValue); foreach (T? item in value.Value.GetItems()) { string data = item?.GetDataForSave() ?? string.Empty; if (string.IsNullOrEmpty(data)) { continue; } sb.Append(data); sb.Append(_separatorItems); } writer.Write(sb); } } return true; } /// /// Загрузка информации по автомобилям в хранилище из файла /// /// Путь и имя файла /// true - загрузка прошла успешно, false - ошибка при загрузке данных public bool LoadData(string filename) { if (!File.Exists(filename)) { return false; } using (StreamReader fs = File.OpenText(filename)) { string str = fs.ReadLine(); if (string.IsNullOrEmpty(str)) { throw new FileNotFoundException(filename); } if (!str.StartsWith(_collectionKey)) { throw new FileFormatException(filename); } _storages.Clear(); string strs = ""; while ((strs = fs.ReadLine()) != null) { string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); if (record.Length != 4) { continue; } CollectionType collectionType = (CollectionType)Enum.Parse(typeof(CollectionType), record[1]); ICollectionGenericObjects? collection = StorageCollection.CreateCollection(collectionType); if (collection == null) { throw new CollectionTypeException("Не удалось определить тип коллекции:" + record[1]); } collection.MaxCount = Convert.ToInt32(record[2]); string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries); foreach (string elem in set) { if (elem?.CreateDrawningTrans() is T ship) { try { collection.Insert(ship); } catch (Exception ex) { throw new FileFormatException(filename, ex); } } } _storages.Add(record[0], collection); } return true; } if (!File.Exists(filename)) { } using (StreamReader fs = File.OpenText(filename)) { string str = fs.ReadLine(); if (string.IsNullOrEmpty(str)) { throw new EmptyFileExeption(filename); } if (!str.StartsWith(_collectionKey)) { } _storages.Clear(); string strs = ""; while ((strs = fs.ReadLine()) != null) { string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); if (record.Length != 4) { continue; } CollectionType collectionType = (CollectionType)Enum.Parse(typeof(CollectionType), record[1]); ICollectionGenericObjects? collection = StorageCollection.CreateCollection(collectionType); if (collection == null) { } collection.MaxCount = Convert.ToInt32(record[2]); string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries); foreach (string elem in set) { if (elem?.CreateDrawningTrans() is T ship) { try { if (collection.Insert(ship) == -1) { throw new CollectionTypeException("Объект не удалось добавить в коллекцию: " + record[3]); } } catch (CollectionOverflowException ex) { throw ex.InnerException!; } } } _storages.Add(record[0], collection); } return true; } } /// /// Создание коллекции по типу /// /// /// private static ICollectionGenericObjects? CreateCollection(CollectionType collectionType) { return collectionType switch { CollectionType.Massive => new MassiveGenericObjects(), CollectionType.List => new ListGenericObjects(), _ => null, }; } }