75 lines
2.9 KiB
C#
75 lines
2.9 KiB
C#
using AutomomilePlantFileImplement.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Linq;
|
|
|
|
namespace AutomomilePlantFileImplement
|
|
{
|
|
public class DataFileSingleton
|
|
{
|
|
private static DataFileSingleton? instance;
|
|
private readonly string ComponentFileName = "Component.xml";
|
|
private readonly string OrderFileName = "Order.xml";
|
|
private readonly string CarFileName = "Car.xml";
|
|
private readonly string CarShopFileName = "CarShop.xml";
|
|
private readonly string ClientFileName = "Client.xml";
|
|
public List<Component> Components { get; private set; }
|
|
public List<Order> Orders { get; private set; }
|
|
public List<Car> Cars { get; private set; }
|
|
public List<CarShop> CarShops { get; private set; }
|
|
public List<Client> Clients { get; private set; }
|
|
public static DataFileSingleton GetInstance()
|
|
{
|
|
if (instance == null)
|
|
{
|
|
instance = new DataFileSingleton();
|
|
}
|
|
return instance;
|
|
}
|
|
public void SaveComponents() => SaveData(Components, ComponentFileName,
|
|
"Components", x => x.GetXElement);
|
|
public void SaveCars() => SaveData(Cars, CarFileName,
|
|
"Cars", x => x.GetXElement);
|
|
public void SaveCarShops() => SaveData(CarShops, CarShopFileName,
|
|
"CarShops", x => x.GetXElement);
|
|
public void SaveClients() => SaveData(Clients, ClientFileName,
|
|
"Clients", x => x.GetXElement);
|
|
public void SaveOrders() => SaveData(Orders, OrderFileName, "Orders", x
|
|
=> x.GetXElement);
|
|
private DataFileSingleton()
|
|
{
|
|
Components = LoadData(ComponentFileName, "Component", x =>
|
|
Component.Create(x)!)!;
|
|
Cars = LoadData(CarFileName, "Car", x =>
|
|
Car.Create(x)!)!;
|
|
Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!;
|
|
CarShops = LoadData(CarShopFileName, "CarShop", x => CarShop.Create(x)!)!;
|
|
Clients = LoadData(ClientFileName, "Clients", x =>
|
|
Client.Create(x)!)!;
|
|
Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!;
|
|
}
|
|
private static List<T>? LoadData<T>(string filename, string xmlNodeName,
|
|
Func<XElement, T> selectFunction)
|
|
{
|
|
if (File.Exists(filename))
|
|
{
|
|
return
|
|
XDocument.Load(filename)?.Root?.Elements(xmlNodeName)?.Select(selectFunction)?.ToList();
|
|
}
|
|
return new List<T>();
|
|
}
|
|
private static void SaveData<T>(List<T> data, string filename, string
|
|
xmlNodeName, Func<T, XElement> selectFunction)
|
|
{
|
|
if (data != null)
|
|
{
|
|
new XDocument(new XElement(xmlNodeName,
|
|
data.Select(selectFunction).ToArray())).Save(filename);
|
|
}
|
|
}
|
|
}
|
|
}
|