Лабораторная 7
This commit is contained in:
parent
c0a10c660b
commit
cf54a61f9e
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using LocomativeProject.Exceptions;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@ -58,57 +59,50 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
|||||||
|
|
||||||
public int Insert(T obj)
|
public int Insert(T obj)
|
||||||
{
|
{
|
||||||
|
// TODO вставка в свободное место набора
|
||||||
for (int i = 0; i < Count; i++)
|
for (int i = 0; i < Count; i++)
|
||||||
{
|
{
|
||||||
if (_collection[i] == null )
|
if (InsertingElementCollection(i, obj)) return i;
|
||||||
{
|
|
||||||
_collection[i] = obj;
|
|
||||||
return i;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return -1;
|
throw new CollectionOverflowException("Превышение лимита Count");
|
||||||
}
|
}
|
||||||
|
|
||||||
public int Insert(T obj, int position)
|
public int Insert(T obj, int position)
|
||||||
{
|
{
|
||||||
if (_collection[position]== null)
|
// TODO проверка позиции
|
||||||
|
// TODO проверка, что элемент массива по этой позиции пустой, если нет, то
|
||||||
|
// ищется свободное место после этой позиции и идет вставка туда
|
||||||
|
// если нет после, ищем до
|
||||||
|
// TODO вставка
|
||||||
|
if (!(position >= 0 && position < Count)) throw new PositionOutOfCollectionException(position);
|
||||||
|
if (InsertingElementCollection(position, obj)) return position;
|
||||||
|
|
||||||
|
for (int i = position + 1; i < Count; i++)
|
||||||
{
|
{
|
||||||
_collection[position] = obj;
|
if (InsertingElementCollection(i, obj)) return i;
|
||||||
return position;
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
for (int i = position - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
for (int i = position; i < Count; i++)
|
if (InsertingElementCollection(i, obj)) return i;
|
||||||
{
|
|
||||||
if (_collection[i] == null)
|
|
||||||
{
|
|
||||||
_collection[i] = obj;
|
|
||||||
return i;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
for (int i = Count -1; i > 0; i--)
|
throw new CollectionOverflowException("Нет свободного места для вставки");
|
||||||
{
|
|
||||||
if (_collection[i] == null)
|
|
||||||
{
|
|
||||||
_collection[i] = obj;
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public T? Remove(int position)
|
public T? Remove(int position)
|
||||||
{
|
{
|
||||||
if (position >= Count || position < 0) return null;
|
// TODO проверка позиции
|
||||||
if (_collection[position] != null)
|
// TODO удаление объекта из массива, присвоив элементу массива значение null
|
||||||
{
|
|
||||||
|
if (!(position >= 0 && position < Count) || _collection[position] == null) throw new ObjectNotFoundException(position);
|
||||||
|
|
||||||
T obj = _collection[position];
|
T obj = _collection[position];
|
||||||
_collection[position] = null;
|
_collection[position] = null;
|
||||||
|
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool InsertingElementCollection(int index, T obj)
|
private bool InsertingElementCollection(int index, T obj)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
using LocomativeProject.Drawnings;
|
using LocomativeProject.Drawnings;
|
||||||
|
using LocomativeProject.Exceptions;
|
||||||
|
using System;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace LocomotiveProject.CollectionGenericObjects
|
namespace LocomotiveProject.CollectionGenericObjects
|
||||||
@ -108,7 +110,7 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
{
|
{
|
||||||
if (_storages.Count == 0)
|
if (_storages.Count == 0)
|
||||||
{
|
{
|
||||||
return false;
|
throw new Exception("Storage is empty");
|
||||||
}
|
}
|
||||||
if (File.Exists(filename))
|
if (File.Exists(filename))
|
||||||
{
|
{
|
||||||
@ -155,11 +157,11 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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 FileDoesNotExistException("Файл не существует " + filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
using (StreamReader streamRader = File.OpenText(filename))
|
using (StreamReader streamRader = File.OpenText(filename))
|
||||||
@ -168,12 +170,12 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
|
|
||||||
if (inputString == null || inputString.Length == 0)
|
if (inputString == null || inputString.Length == 0)
|
||||||
{
|
{
|
||||||
return false;
|
throw new FileEmptyException("Файл пустой " + filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!inputString.StartsWith(_collectionKey))
|
if (!inputString.StartsWith(_collectionKey))
|
||||||
{
|
{
|
||||||
return false;
|
throw new ObjectNotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
_storages.Clear();
|
_storages.Clear();
|
||||||
@ -189,7 +191,7 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
ICollectionGenericObjects<T>? collection = StorageCollection<T>.CreateCollection(collectionType);
|
ICollectionGenericObjects<T>? collection = StorageCollection<T>.CreateCollection(collectionType);
|
||||||
if (collection == null)
|
if (collection == null)
|
||||||
{
|
{
|
||||||
return false;
|
throw new ObjectNotFoundException();
|
||||||
}
|
}
|
||||||
collection.MaxCount = Convert.ToInt32(record[2]);
|
collection.MaxCount = Convert.ToInt32(record[2]);
|
||||||
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
|
string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries);
|
||||||
@ -199,13 +201,12 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
{
|
{
|
||||||
if (collection.Insert(ship) == -1)
|
if (collection.Insert(ship) == -1)
|
||||||
{
|
{
|
||||||
return false;
|
throw new PositionOutOfCollectionException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_storages.Add(record[0], collection);
|
_storages.Add(record[0], collection);
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -218,5 +219,17 @@ namespace LocomotiveProject.CollectionGenericObjects
|
|||||||
_ => null,
|
_ => null,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public T? this[int index]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (index >= 0 && index < Keys.Count && Keys[index] != null)
|
||||||
|
{
|
||||||
|
return (T)_storages[Keys[index]];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace LocomativeProject.Exceptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Класс, описывающий ошибку переполнения коллекции
|
||||||
|
/// </summary>
|
||||||
|
[Serializable]
|
||||||
|
public class CollectionOverflowException : ApplicationException
|
||||||
|
{
|
||||||
|
public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество: " + 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) { }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace LocomativeProject.Exceptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Класс, описывающий ошибку, что файл пустой
|
||||||
|
/// </summary>
|
||||||
|
[Serializable]
|
||||||
|
public class FileDoesNotExistException : ApplicationException
|
||||||
|
{
|
||||||
|
public FileDoesNotExistException() : base() { }
|
||||||
|
public FileDoesNotExistException(string message) : base(message) { }
|
||||||
|
public FileDoesNotExistException(string message, Exception exception) : base(message, exception) { }
|
||||||
|
protected FileDoesNotExistException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace LocomativeProject.Exceptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Класс, описывающий ошибку, что по указанной позиции нет элемента
|
||||||
|
/// </summary>
|
||||||
|
[Serializable]
|
||||||
|
public class FileEmptyException : ApplicationException
|
||||||
|
{
|
||||||
|
public FileEmptyException() : base() { }
|
||||||
|
public FileEmptyException(string message) : base(message) { }
|
||||||
|
public FileEmptyException(string message, Exception exception) : base(message, exception) { }
|
||||||
|
protected FileEmptyException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace LocomativeProject.Exceptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Класс, описывающий ошибку, что по указанной позиции нет элемента
|
||||||
|
/// </summary>
|
||||||
|
[Serializable]
|
||||||
|
public class ObjectNotFoundException : ApplicationException
|
||||||
|
{
|
||||||
|
public ObjectNotFoundException(int i) : base("Не найден объект по позиции " + i) { }
|
||||||
|
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) { }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace LocomativeProject.Exceptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Класс, описывающий ошибку выхода за границы коллекции
|
||||||
|
/// </summary>
|
||||||
|
[Serializable]
|
||||||
|
public class PositionOutOfCollectionException : ApplicationException
|
||||||
|
{
|
||||||
|
public PositionOutOfCollectionException(int i) : base("Выход за границы коллекции.Позиция " + i) { }
|
||||||
|
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) { }
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +1,8 @@
|
|||||||
using LocomativeProject.Drawnings;
|
using LocomativeProject.Drawnings;
|
||||||
|
using LocomativeProject.Exceptions;
|
||||||
using LocomotiveProject.CollectionGenericObjects;
|
using LocomotiveProject.CollectionGenericObjects;
|
||||||
using LocomotiveProject.Drawnings;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace LocomotiveProject
|
namespace LocomotiveProject
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -13,6 +15,11 @@ namespace LocomotiveProject
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly StorageCollection<DrawningBaseLocomotive> _storageCollection;
|
private readonly StorageCollection<DrawningBaseLocomotive> _storageCollection;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Логер
|
||||||
|
/// </summary>
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Компания
|
/// Компания
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -21,10 +28,12 @@ namespace LocomotiveProject
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Конструктор
|
/// Конструктор
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public FormLocomotiveCollection()
|
public FormLocomotiveCollection(ILogger<FormLocomotiveCollection> logger)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_storageCollection = new StorageCollection<DrawningBaseLocomotive>();
|
_storageCollection = new StorageCollection<DrawningBaseLocomotive>();
|
||||||
|
_logger = logger;
|
||||||
|
_logger.LogInformation("Форма загрузилась");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -49,24 +58,59 @@ namespace LocomotiveProject
|
|||||||
form.AddEventListener_Locomotive(SetLocomotive);
|
form.AddEventListener_Locomotive(SetLocomotive);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetLocomotive(DrawningBaseLocomotive Locomotive)
|
private void SetLocomotive(DrawningBaseLocomotive locomotive)
|
||||||
{
|
{
|
||||||
if (Locomotive == null || _company == null) return;
|
try
|
||||||
|
{
|
||||||
|
if (locomotive == null || _company == null) return;
|
||||||
|
|
||||||
if (_company + Locomotive != -1)
|
if (_company + locomotive != -1)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Объект добавлен");
|
MessageBox.Show("Объект добавлен");
|
||||||
pictureBox.Image = _company.Show();
|
pictureBox.Image = _company.Show();
|
||||||
|
_logger.LogInformation("Объект добавлен");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не удалось добавить объект");
|
||||||
|
LogException(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogException(Exception ex)
|
||||||
|
{
|
||||||
|
if (ex is CollectionOverflowException)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка {Message}", ((CollectionOverflowException)ex).Message);
|
||||||
|
}
|
||||||
|
else if (ex is FileEmptyException)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка {Message}", ((FileEmptyException)ex).Message);
|
||||||
|
}
|
||||||
|
else if (ex is FileDoesNotExistException)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка {Message}", ((FileDoesNotExistException)ex).Message);
|
||||||
|
}
|
||||||
|
else if (ex is ObjectNotFoundException)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка {Message}", ((ObjectNotFoundException)ex).Message);
|
||||||
|
}
|
||||||
|
else if (ex is PositionOutOfCollectionException)
|
||||||
|
{
|
||||||
|
_logger.LogError("Ошибка {Message}", ((PositionOutOfCollectionException)ex).Message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не удалось добавить объект");
|
_logger.LogError("Ошибка {Message}", ex.Message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonRemoveLocomotive_Click(object sender, EventArgs e)
|
private void buttonRemoveLocomotive_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) return;
|
try
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) throw new Exception("Входные дынне пустые");
|
||||||
|
|
||||||
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
||||||
|
|
||||||
@ -76,10 +120,13 @@ namespace LocomotiveProject
|
|||||||
{
|
{
|
||||||
MessageBox.Show("Объект удален");
|
MessageBox.Show("Объект удален");
|
||||||
pictureBox.Image = _company.Show();
|
pictureBox.Image = _company.Show();
|
||||||
|
_logger.LogInformation("Объект удален");
|
||||||
}
|
}
|
||||||
else
|
}
|
||||||
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не удалось удалить объект");
|
MessageBox.Show("Не удалось удалить объект");
|
||||||
|
LogException(ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,11 +179,13 @@ namespace LocomotiveProject
|
|||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void ButtonCollectionAdd_Click(object sender, EventArgs e)
|
private void ButtonCollectionAdd_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked))
|
if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
throw new Exception("Не все данные заполнены");
|
||||||
}
|
}
|
||||||
CollectionType collectionType = CollectionType.None;
|
CollectionType collectionType = CollectionType.None;
|
||||||
if (radioButtonMassive.Checked)
|
if (radioButtonMassive.Checked)
|
||||||
@ -147,10 +196,15 @@ namespace LocomotiveProject
|
|||||||
{
|
{
|
||||||
collectionType = CollectionType.List;
|
collectionType = CollectionType.List;
|
||||||
}
|
}
|
||||||
_storageCollection.AddCollection(textBoxCollectionName.Text,
|
_storageCollection.AddCollection(textBoxCollectionName.Text, collectionType);
|
||||||
collectionType);
|
_logger.LogInformation("Коллекция добавлена " + textBoxCollectionName.Text);
|
||||||
RerfreshListBoxItems();
|
RerfreshListBoxItems();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LogException(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Удаление коллекции
|
/// Удаление коллекции
|
||||||
@ -158,6 +212,8 @@ namespace LocomotiveProject
|
|||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void ButtonCollectionDelete_Click(object sender, EventArgs e)
|
private void ButtonCollectionDelete_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
// TODO прописать логику удаления элемента из коллекции
|
// TODO прописать логику удаления элемента из коллекции
|
||||||
// нужно убедиться, что есть выбранная коллекция
|
// нужно убедиться, что есть выбранная коллекция
|
||||||
@ -170,8 +226,14 @@ namespace LocomotiveProject
|
|||||||
}
|
}
|
||||||
if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
||||||
_storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
|
_storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString());
|
||||||
|
_logger.LogInformation("Коллекция с название: " + listBoxCollection.SelectedItem.ToString() + " удалена");
|
||||||
RerfreshListBoxItems();
|
RerfreshListBoxItems();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LogException(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Создание компании
|
/// Создание компании
|
||||||
@ -179,29 +241,35 @@ namespace LocomotiveProject
|
|||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void ButtonCreateCompany_Click(object sender, EventArgs e)
|
private void ButtonCreateCompany_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
|
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Коллекция не выбрана");
|
MessageBox.Show("Коллекция не выбрана");
|
||||||
return;
|
throw new Exception("Коллекция не выбрана");
|
||||||
}
|
}
|
||||||
ICollectionGenericObjects<DrawningBaseLocomotive>? collection =
|
ICollectionGenericObjects<DrawningBaseLocomotive>? collection =
|
||||||
_storageCollection[listBoxCollection.SelectedItem.ToString() ?? string.Empty];
|
_storageCollection[listBoxCollection.SelectedItem.ToString() ?? string.Empty];
|
||||||
if (collection == null)
|
if (collection == null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Коллекция не проинициализирована");
|
MessageBox.Show("Коллекция не проинициализирована");
|
||||||
return;
|
throw new Exception("Коллекция не проинициализирована");
|
||||||
}
|
}
|
||||||
switch (comboBoxSelectorCompany.Text)
|
switch (comboBoxSelectorCompany.Text)
|
||||||
{
|
{
|
||||||
case "Хранилище":
|
case "Хранилище":
|
||||||
_company = new LocomotiveSharingService(pictureBox.Width,
|
_company = new LocomotiveSharingService(pictureBox.Width, pictureBox.Height, collection);
|
||||||
pictureBox.Height, (ICollectionGenericObjects<LocomativeProject.Drawnings.DrawningBaseLocomotive>)collection);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
panelCompanyTools.Enabled = true;
|
panelCompanyTools.Enabled = true;
|
||||||
RerfreshListBoxItems();
|
RerfreshListBoxItems();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LogException(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Обработка нажатия "Сохранения"
|
/// Обработка нажатия "Сохранения"
|
||||||
@ -209,17 +277,20 @@ namespace LocomotiveProject
|
|||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
if (_storageCollection.SaveData(saveFileDialog.FileName))
|
_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("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
LogException(ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -229,18 +300,21 @@ namespace LocomotiveProject
|
|||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
|
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
if (_storageCollection.LoadData(openFileDialog.FileName))
|
_storageCollection.LoadData(openFileDialog.FileName);
|
||||||
{
|
|
||||||
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
RerfreshListBoxItems();
|
RerfreshListBoxItems();
|
||||||
|
_logger.LogInformation("Загрузка успешна завершена");
|
||||||
}
|
}
|
||||||
else
|
}
|
||||||
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
LogException(ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,16 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
||||||
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
|
||||||
|
<PackageReference Include="Serilog" Version="3.1.1" />
|
||||||
|
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Update="Properties\Resources.Designer.cs">
|
<Compile Update="Properties\Resources.Designer.cs">
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
using LocomativeProject;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using NLog.Extensions.Logging;
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
namespace LocomotiveProject
|
namespace LocomotiveProject
|
||||||
{
|
{
|
||||||
@ -8,12 +11,28 @@ namespace LocomotiveProject
|
|||||||
/// The main entry point for the application.
|
/// The main entry point for the application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[STAThread]
|
[STAThread]
|
||||||
static void Main()
|
private 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 FormLocomotiveCollection());
|
|
||||||
|
ServiceCollection services = new ServiceCollection();
|
||||||
|
ConfigureServices(services);
|
||||||
|
using ServiceProvider serviceProvider = services.BuildServiceProvider();
|
||||||
|
|
||||||
|
Application.Run(serviceProvider.GetRequiredService<FormLocomotiveCollection>());
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Êîíôèãóðàöèÿ ñåðâèñà DI
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="services"></param>
|
||||||
|
private static void ConfigureServices(ServiceCollection services)
|
||||||
|
{
|
||||||
|
services.AddSingleton<FormLocomotiveCollection>()
|
||||||
|
.AddLogging(option => option.AddSerilog(dispose: true));
|
||||||
|
|
||||||
|
Log.Logger = new LoggerConfiguration()
|
||||||
|
.MinimumLevel.Debug().WriteTo.File("C:\\Users\\79603\\Desktop\\ÎÎÏ Êèðèëèí ÏÈáä11 (2)\\ÎÎÏ Êèðèëèí ÏÈáä11\\LocomativeProject\\LocomativeProject\\log.txt").CreateLogger();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
8
LocomativeProject/LocomativeProject/log.txt
Normal file
8
LocomativeProject/LocomativeProject/log.txt
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024-05-20 11:53:12.373 +04:00 [INF] Форма загрузилась
|
||||||
|
2024-05-20 11:53:15.800 +04:00 [INF] Коллекция добавлена dsfdsf
|
||||||
|
2024-05-20 11:53:22.306 +04:00 [INF] Объект добавлен
|
||||||
|
2024-05-20 11:53:29.080 +04:00 [INF] Объект добавлен
|
||||||
|
2024-05-20 11:55:31.262 +04:00 [INF] Форма загрузилась
|
||||||
|
2024-05-20 11:55:34.488 +04:00 [INF] Коллекция добавлена dfgdfg
|
||||||
|
2024-05-20 11:55:40.963 +04:00 [INF] Объект добавлен
|
||||||
|
2024-05-20 11:55:43.055 +04:00 [ERR] Ошибка Входные дынне пустые
|
Loading…
Reference in New Issue
Block a user