From 382d4199454c7f9f6f18fad03b1c3d2ea376955e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=9A=D1=80?= =?UTF-8?q?=D1=8E=D0=BA=D0=BE=D0=B2?= Date: Tue, 27 Feb 2024 20:12:40 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B3=D0=BE=D1=82=D0=BE=D0=B2=D0=B0=D1=8F=20?= =?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=B0=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TypographyFileImplement/DataFileSingleton.cs | 63 +++++++++++++ .../Implements/ComponentStorage.cs | 73 +++++++++++++++ .../Implements/OrderStorage.cs | 83 +++++++++++++++++ .../Implements/PrintedStorage.cs | 82 +++++++++++++++++ TypographyFileImplement/Models/Component.cs | 64 ++++++++++++++ TypographyFileImplement/Models/Order.cs | 88 +++++++++++++++++++ TypographyFileImplement/Models/Printed.cs | 81 +++++++++++++++++ .../TypographyFileImplement.csproj | 14 +++ TypographyView/Program.cs | 2 +- TypographyView/TypographyView.csproj | 1 + TypographyView/TypographyView.sln | 6 ++ 11 files changed, 556 insertions(+), 1 deletion(-) create mode 100644 TypographyFileImplement/DataFileSingleton.cs create mode 100644 TypographyFileImplement/Implements/ComponentStorage.cs create mode 100644 TypographyFileImplement/Implements/OrderStorage.cs create mode 100644 TypographyFileImplement/Implements/PrintedStorage.cs create mode 100644 TypographyFileImplement/Models/Component.cs create mode 100644 TypographyFileImplement/Models/Order.cs create mode 100644 TypographyFileImplement/Models/Printed.cs create mode 100644 TypographyFileImplement/TypographyFileImplement.csproj diff --git a/TypographyFileImplement/DataFileSingleton.cs b/TypographyFileImplement/DataFileSingleton.cs new file mode 100644 index 0000000..53cb395 --- /dev/null +++ b/TypographyFileImplement/DataFileSingleton.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Linq; +using TypographyFileImplement.Models; + + +namespace TypographyFileImplement +{ + public class DataFileSingleton + { + private static DataFileSingleton? instance; + + private readonly string ComponentFileName = "Component.xml"; + + private readonly string OrderFileName = "Order.xml"; + + private readonly string PrintedFileName = "Printed.xml"; + + public List Components { get; private set; } + public List Orders { get; private set; } + public List Printeds { 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 SavePrinteds() => SaveData(Printeds, PrintedFileName, "Printeds", x => x.GetXElement); + public void SaveOrders() => SaveData(Orders, OrderFileName, "Orders", x => x.GetXElement); + + private DataFileSingleton() + { + Components = LoadData(ComponentFileName, "Component", x => Component.Create(x)!)!; + Printeds = LoadData(PrintedFileName, "Printed", x => Printed.Create(x)!)!; + Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!; + } + + private static List? LoadData(string filename, string xmlNodeName, Func selectFunction) + { + if (File.Exists(filename)) + { + return + XDocument.Load(filename)?.Root?.Elements(xmlNodeName)?.Select(selectFunction)?.ToList(); + } + return new List(); + } + private static void SaveData(List data, string filename, string xmlNodeName, Func selectFunction) + { + if (data != null) + { + new XDocument(new XElement(xmlNodeName, data.Select(selectFunction).ToArray())).Save(filename); + } + } + } +} diff --git a/TypographyFileImplement/Implements/ComponentStorage.cs b/TypographyFileImplement/Implements/ComponentStorage.cs new file mode 100644 index 0000000..50705ab --- /dev/null +++ b/TypographyFileImplement/Implements/ComponentStorage.cs @@ -0,0 +1,73 @@ +using TypographyContracts.BindingModels; +using TypographyContracts.SearchModels; +using TypographyContracts.StoragesContracts; +using TypographyContracts.ViewModels; +using TypographyFileImplement.Models; + + +namespace TypographyFileImplement.Implements +{ + public class ComponentStorage : IComponentStorage + { + private readonly DataFileSingleton source; + public ComponentStorage() + { + source = DataFileSingleton.GetInstance(); + } + public List GetFullList() + { + return source.Components.Select(x => x.GetViewModel).ToList(); + } + public List GetFilteredList(ComponentSearchModel model) + { + if (string.IsNullOrEmpty(model.ComponentName)) + { + return new(); + } + return source.Components.Where(x => x.ComponentName.Contains(model.ComponentName)).Select(x => x.GetViewModel).ToList(); + } + public ComponentViewModel? GetElement(ComponentSearchModel model) + { + if (string.IsNullOrEmpty(model.ComponentName) && !model.Id.HasValue) + { + return null; + } + return source.Components.FirstOrDefault(x => + (!string.IsNullOrEmpty(model.ComponentName) && x.ComponentName == model.ComponentName) || (model.Id.HasValue && x.Id == model.Id))?.GetViewModel; + } + public ComponentViewModel? Insert(ComponentBindingModel model) + { + model.Id = source.Components.Count > 0 ? source.Components.Max(x => x.Id) + 1 : 1; + var newComponent = Component.Create(model); + if (newComponent == null) + { + return null; + } + source.Components.Add(newComponent); + source.SaveComponents(); + return newComponent.GetViewModel; + } + public ComponentViewModel? Update(ComponentBindingModel model) + { + var component = source.Components.FirstOrDefault(x => x.Id == model.Id); + if (component == null) + { + return null; + } + component.Update(model); + source.SaveComponents(); + return component.GetViewModel; + } + public ComponentViewModel? Delete(ComponentBindingModel model) + { + var element = source.Components.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.Components.Remove(element); + source.SaveComponents(); + return element.GetViewModel; + } + return null; + } + } +} diff --git a/TypographyFileImplement/Implements/OrderStorage.cs b/TypographyFileImplement/Implements/OrderStorage.cs new file mode 100644 index 0000000..2a79e63 --- /dev/null +++ b/TypographyFileImplement/Implements/OrderStorage.cs @@ -0,0 +1,83 @@ +using TypographyContracts.StoragesContracts; +using TypographyContracts.BindingModels; +using TypographyContracts.SearchModels; +using TypographyContracts.ViewModels; +using TypographyFileImplement.Models; + +namespace TypographyFileImplement.Implements +{ + public class OrderStorage : IOrderStorage + { + private readonly DataFileSingleton source; + + public OrderStorage() + { + source = DataFileSingleton.GetInstance(); + } + public List GetFullList() + { + return source.Orders.Select(x => GetViewModel(x)).ToList(); + } + public List GetFilteredList(OrderSearchModel model) + { + if (!model.Id.HasValue) + { + return new(); + } + return source.Orders.Where(x => x.Id == model.Id).Select(x => GetViewModel(x)).ToList(); + } + public OrderViewModel? GetElement(OrderSearchModel model) + { + if (!model.Id.HasValue) + { + return null; + } + return GetViewModel(source.Orders.FirstOrDefault(x => model.Id.HasValue && x.Id == model.Id)); + } + public OrderViewModel? Insert(OrderBindingModel model) + { + model.Id = source.Orders.Count > 0 ? source.Orders.Max(x => x.Id) + 1 : 1; + var newOrder = Order.Create(model); + if (newOrder == null) + { + return null; + } + source.Orders.Add(newOrder); + source.SaveOrders(); + return GetViewModel(newOrder); + } + public OrderViewModel? Update(OrderBindingModel model) + { + var order = source.Orders.FirstOrDefault(x => x.Id == model.Id); + if (order == null) + { + return null; + } + order.Update(model); + source.SaveOrders(); + return GetViewModel(order); + } + public OrderViewModel? Delete(OrderBindingModel model) + { + var element = source.Orders.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.Orders.Remove(element); + source.SaveOrders(); + return GetViewModel(element); + } + return null; + } + + public OrderViewModel GetViewModel(Order order) + { + var viewModel = order.GetViewModel; + var printed = source.Printeds.FirstOrDefault(x => x.Id == order.PrintedId); + if (printed != null) + { + viewModel.PrintedName = printed.PrintedName; + } + return viewModel; + } + } +} diff --git a/TypographyFileImplement/Implements/PrintedStorage.cs b/TypographyFileImplement/Implements/PrintedStorage.cs new file mode 100644 index 0000000..5b842bc --- /dev/null +++ b/TypographyFileImplement/Implements/PrintedStorage.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using TypographyContracts.BindingModels; +using TypographyContracts.SearchModels; +using TypographyContracts.StoragesContracts; +using TypographyContracts.ViewModels; +using TypographyFileImplement.Models; + + +namespace TypographyFileImplement.Implements +{ + public class PrintedStorage : IPrintedStorage + { + private readonly DataFileSingleton source; + public PrintedStorage() + { + source = DataFileSingleton.GetInstance(); + } + + public List GetFullList() + { + return source.Printeds.Select(x => x.GetViewModel).ToList(); + } + + public List GetFilteredList(PrintedSearchModel model) + { + if (string.IsNullOrEmpty(model.PrintedName)) + { + return new(); + } + return source.Printeds.Where(x => x.PrintedName.Contains(model.PrintedName)).Select(x => x.GetViewModel).ToList(); + } + + public PrintedViewModel? GetElement(PrintedSearchModel model) + { + if (string.IsNullOrEmpty(model.PrintedName) && !model.Id.HasValue) + { + return null; + } + return source.Printeds.FirstOrDefault(x => (!string.IsNullOrEmpty(model.PrintedName) && + x.PrintedName == model.PrintedName) || (model.Id.HasValue && x.Id == model.Id))?.GetViewModel; + } + + public PrintedViewModel? Insert(PrintedBindingModel model) + { + model.Id = source.Printeds.Count > 0 ? source.Printeds.Max(x => x.Id) + 1 : 1; + var newPrinted = Printed.Create(model); + if (newPrinted == null) + { + return null; + } + source.Printeds.Add(newPrinted); + source.SavePrinteds(); + return newPrinted.GetViewModel; + } + public PrintedViewModel? Update(PrintedBindingModel model) + { + var printed = source.Printeds.FirstOrDefault(x => x.Id == model.Id); + if (printed == null) + { + return null; + } + printed.Update(model); + source.SavePrinteds(); + return printed.GetViewModel; + } + public PrintedViewModel? Delete(PrintedBindingModel model) + { + var element = source.Printeds.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.Printeds.Remove(element); + source.SavePrinteds(); + return element.GetViewModel; + } + return null; + } + } +} diff --git a/TypographyFileImplement/Models/Component.cs b/TypographyFileImplement/Models/Component.cs new file mode 100644 index 0000000..bfc5292 --- /dev/null +++ b/TypographyFileImplement/Models/Component.cs @@ -0,0 +1,64 @@ +using TypographyContracts.BindingModels; +using TypographyContracts.ViewModels; +using TypographyDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Linq; + +namespace TypographyFileImplement.Models +{ + public class Component : IComponentModel + { + public int Id { get; private set; } + public string ComponentName { get; private set; } = string.Empty; + public double Cost { get; set; } + public static Component? Create(ComponentBindingModel model) + { + if (model == null) + { + return null; + } + return new Component() + { + Id = model.Id, + ComponentName = model.ComponentName, + Cost = model.Cost + }; + } + public static Component? Create(XElement element) + { + if (element == null) + { + return null; + } + return new Component() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + ComponentName = element.Element("ComponentName")!.Value, + Cost = Convert.ToDouble(element.Element("Cost")!.Value) + }; + } + public void Update(ComponentBindingModel model) + { + if (model == null) + { + return; + } + ComponentName = model.ComponentName; + Cost = model.Cost; + } + public ComponentViewModel GetViewModel => new() + { + Id = Id, + ComponentName = ComponentName, + Cost = Cost + }; + public XElement GetXElement => new("Component", + new XAttribute("Id", Id), + new XElement("ComponentName", ComponentName), + new XElement("Cost", Cost.ToString())); + } +} diff --git a/TypographyFileImplement/Models/Order.cs b/TypographyFileImplement/Models/Order.cs new file mode 100644 index 0000000..437beda --- /dev/null +++ b/TypographyFileImplement/Models/Order.cs @@ -0,0 +1,88 @@ +using TypographyContracts.BindingModels; +using TypographyContracts.ViewModels; +using TypographyDataModels.Enums; +using TypographyDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Linq; + +namespace TypographyFileImplement.Models +{ + public class Order : IOrderModel + { + public int Id { get; private set; } + public int PrintedId { get; private set; } + public int Count { get; private set; } + public double Sum { get; private set; } + public OrderStatus Status { get; private set; } = OrderStatus.Неизвестен; + public DateTime DateCreate { get; private set; } = DateTime.Now; + public DateTime? DateImplement { get; private set; } + public static Order? Create(OrderBindingModel? model) + { + if (model == null) + { + return null; + } + return new Order() + { + Id = model.Id, + PrintedId = model.PrintedId, + Count = model.Count, + Sum = model.Sum, + Status = model.Status, + DateCreate = model.DateCreate, + DateImplement = model.DateImplement + }; + } + public static Order? Create(XElement element) + { + if (element == null) + { + return null; + } + return new Order() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + PrintedId = Convert.ToInt32(element.Element("PrintedId")!.Value), + Count = Convert.ToInt32(element.Element("Count")!.Value), + Sum = Convert.ToDouble(element.Element("Sum")!.Value), + Status = (OrderStatus)Enum.Parse(typeof(OrderStatus), element.Element("Status")!.Value), + DateCreate = Convert.ToDateTime(element.Element("DateCreate")!.Value), + DateImplement = string.IsNullOrEmpty(element.Element("DateImplement")!.Value) ? null : + Convert.ToDateTime(element.Element("DateImplement")!.Value) + }; + } + public void Update(OrderBindingModel model) + { + if (model == null) + { + return; + } + Status = model.Status; + DateImplement = model.DateImplement; + } + public OrderViewModel GetViewModel => new() + { + Id = Id, + PrintedId = PrintedId, + Count = Count, + Sum = Sum, + Status = Status, + DateCreate = DateCreate, + DateImplement = DateImplement, + }; + public XElement GetXElement => + new("Order", + new XAttribute("Id", Id), + new XElement("PrintedId", PrintedId.ToString()), + new XElement("Count", PrintedId.ToString()), + new XElement("Sum", Sum.ToString()), + new XElement("Status", Status.ToString()), + new XElement("DateCreate", DateCreate.ToString()), + new XElement("DateImplement", DateImplement.ToString()) + ); + } +} diff --git a/TypographyFileImplement/Models/Printed.cs b/TypographyFileImplement/Models/Printed.cs new file mode 100644 index 0000000..7ee8404 --- /dev/null +++ b/TypographyFileImplement/Models/Printed.cs @@ -0,0 +1,81 @@ +using TypographyDataModels.Models; +using TypographyContracts.BindingModels; +using TypographyContracts.ViewModels; +using System.Xml.Linq; + +namespace TypographyFileImplement.Models +{ + public class Printed : IPrintedModel + { + public int Id { get; private set; } + public string PrintedName { get; private set; } = string.Empty; + public double Price { get; private set; } + public Dictionary Components { get; private set; } = new(); + private Dictionary? _srintedComponents = null; + public Dictionary PrintedComponents + { + get + { + if (_srintedComponents == null) + { + var source = DataFileSingleton.GetInstance(); + _srintedComponents = Components.ToDictionary(x => x.Key, y => + ((source.Components.FirstOrDefault(z => z.Id == y.Key) as IComponentModel)!, y.Value)); + } + return _srintedComponents; + } + } + public static Printed? Create(PrintedBindingModel model) + { + if (model == null) + { + return null; + } + return new Printed() + { + Id = model.Id, + PrintedName = model.PrintedName, + Price = model.Price, + Components = model.PrintedComponents.ToDictionary(x => x.Key, x + => x.Value.Item2) + }; + } + public static Printed? Create(XElement element) + { + if (element == null) + { + return null; + } + return new Printed() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + PrintedName = element.Element("PrintedName")!.Value, + Price = Convert.ToDouble(element.Element("Price")!.Value), + Components = element.Element("PrintedComponents")!.Elements("PrintedComponent").ToDictionary(x => Convert.ToInt32(x.Element("Key")?.Value), x => Convert.ToInt32(x.Element("Value")?.Value)) + }; + } + public void Update(PrintedBindingModel model) + { + if (model == null) + { + return; + } + PrintedName = model.PrintedName; + Price = model.Price; + Components = model.PrintedComponents.ToDictionary(x => x.Key, x => x.Value.Item2); + _srintedComponents = null; + } + public PrintedViewModel GetViewModel => new() + { + Id = Id, + PrintedName = PrintedName, + Price = Price, + PrintedComponents = PrintedComponents + }; + public XElement GetXElement => new("Printed", + new XAttribute("Id", Id), + new XElement("PrintedName", PrintedName), + new XElement("Price", Price.ToString()), + new XElement("PrintedComponents", Components.Select(x => new XElement("PrintedComponent", new XElement("Key", x.Key), new XElement("Value", x.Value))).ToArray())); + } +} diff --git a/TypographyFileImplement/TypographyFileImplement.csproj b/TypographyFileImplement/TypographyFileImplement.csproj new file mode 100644 index 0000000..95efe1f --- /dev/null +++ b/TypographyFileImplement/TypographyFileImplement.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + diff --git a/TypographyView/Program.cs b/TypographyView/Program.cs index c3b8cca..1ae9508 100644 --- a/TypographyView/Program.cs +++ b/TypographyView/Program.cs @@ -1,7 +1,7 @@ using TypographyBusinessLogic.BusinessLogics; using TypographyContracts.BusinessLogicsContracts; using TypographyContracts.StoragesContracts; -using TypographyListImplement.Implements; +using TypographyFileImplement.Implements; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using NLog.Extensions.Logging; diff --git a/TypographyView/TypographyView.csproj b/TypographyView/TypographyView.csproj index 443c7f0..a892ebf 100644 --- a/TypographyView/TypographyView.csproj +++ b/TypographyView/TypographyView.csproj @@ -16,6 +16,7 @@ + diff --git a/TypographyView/TypographyView.sln b/TypographyView/TypographyView.sln index 71b5d33..246d0b9 100644 --- a/TypographyView/TypographyView.sln +++ b/TypographyView/TypographyView.sln @@ -13,6 +13,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TypographyContracts", "..\T EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TypographyBusinessLogic", "..\TypographyBusinessLogic\TypographyBusinessLogic.csproj", "{1057A33D-538D-4E7F-862B-1FF8E9E021A0}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TypographyFileImplement", "..\TypographyFileImplement\TypographyFileImplement.csproj", "{DCBDF361-C514-4319-A542-5629650E7E8A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -39,6 +41,10 @@ Global {1057A33D-538D-4E7F-862B-1FF8E9E021A0}.Debug|Any CPU.Build.0 = Debug|Any CPU {1057A33D-538D-4E7F-862B-1FF8E9E021A0}.Release|Any CPU.ActiveCfg = Release|Any CPU {1057A33D-538D-4E7F-862B-1FF8E9E021A0}.Release|Any CPU.Build.0 = Release|Any CPU + {DCBDF361-C514-4319-A542-5629650E7E8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DCBDF361-C514-4319-A542-5629650E7E8A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DCBDF361-C514-4319-A542-5629650E7E8A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DCBDF361-C514-4319-A542-5629650E7E8A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE -- 2.25.1