80 lines
3.7 KiB
C#
80 lines
3.7 KiB
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using StructureHelperCommon.Models.Forces.Logics;
|
|
using StructureHelperCommon.Models.Loggers;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataAccess.DTOs
|
|
{
|
|
public class ForceCombinationListFromDTOConvertStrategy : ConvertStrategy<ForceCombinationList, ForceCombinationListDTO>
|
|
{
|
|
private IUpdateStrategy<IForceAction> baseUpdateStrategy;
|
|
private IUpdateStrategy<IForceCombinationList> updateStrategy;
|
|
private IConvertStrategy<Point2D, Point2DDTO> pointConvertStrategy;
|
|
private IConvertStrategy<DesignForceTuple, DesignForceTupleDTO> designTupleConvertStrategy;
|
|
|
|
public ForceCombinationListFromDTOConvertStrategy(
|
|
IUpdateStrategy<IForceAction> baseUpdateStrategy,
|
|
IUpdateStrategy<IForceCombinationList> updateStrategy,
|
|
IConvertStrategy<Point2D, Point2DDTO> pointConvertStrategy,
|
|
IConvertStrategy<DesignForceTuple, DesignForceTupleDTO> designTupleConvertStrategy)
|
|
{
|
|
this.baseUpdateStrategy = baseUpdateStrategy;
|
|
this.updateStrategy = updateStrategy;
|
|
this.pointConvertStrategy = pointConvertStrategy;
|
|
this.designTupleConvertStrategy = designTupleConvertStrategy;
|
|
}
|
|
|
|
public ForceCombinationListFromDTOConvertStrategy() { }
|
|
|
|
public override ForceCombinationList GetNewItem(ForceCombinationListDTO source)
|
|
{
|
|
TraceLogger?.AddMessage($"Force combination list Id = {source.Id}, Name = {source.Name} converting has been started");
|
|
InitializeStrategies();
|
|
try
|
|
{
|
|
ForceCombinationList newItem = GetNewItemBySource(source);
|
|
TraceLogger?.AddMessage($"Force combination list Id = {source.Id}, Name = {source.Name} has been finished successfully");
|
|
return newItem;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
TraceErrorByEntity(this, ex.Message);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
private ForceCombinationList GetNewItemBySource(ForceCombinationListDTO source)
|
|
{
|
|
ForceCombinationList newItem = new(source.Id);
|
|
baseUpdateStrategy.Update(newItem, source);
|
|
//updateStrategy.Update(newItem, source);
|
|
newItem.ForcePoint = pointConvertStrategy.Convert((Point2DDTO)source.ForcePoint);
|
|
newItem.DesignForces.Clear();
|
|
foreach (var item in source.DesignForces)
|
|
{
|
|
DesignForceTuple newDesignTuple = designTupleConvertStrategy.Convert((DesignForceTupleDTO)item);
|
|
TraceLogger?.AddMessage($"New Design Tuple Limit state = {newDesignTuple.LimitState}, Calc term = {newDesignTuple.CalcTerm}");
|
|
TraceLogger?.AddMessage($"Mx = {newDesignTuple.ForceTuple.Mx}, My = {newDesignTuple.ForceTuple.My}, Nz = {newDesignTuple.ForceTuple.Nz}");
|
|
newItem.DesignForces.Add(newDesignTuple);
|
|
}
|
|
|
|
return newItem;
|
|
}
|
|
|
|
private void InitializeStrategies()
|
|
{
|
|
baseUpdateStrategy ??= new ForceActionBaseUpdateStrategy();
|
|
updateStrategy ??= new ForceCombinationListUpdateStrategy();
|
|
pointConvertStrategy ??= new Point2DFromDTOConvertStrategy() { ReferenceDictionary = ReferenceDictionary, TraceLogger = TraceLogger};
|
|
designTupleConvertStrategy ??= new DesignForceTupleFromDTOConvertStrategy() { ReferenceDictionary = ReferenceDictionary, TraceLogger = TraceLogger };
|
|
}
|
|
}
|
|
}
|