134 lines
5.1 KiB
C#
134 lines
5.1 KiB
C#
using DataAccess.DTOs.Converters;
|
|
using StructureHelper.Models.Materials;
|
|
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
using StructureHelperCommon.Models.Loggers;
|
|
using StructureHelperLogics.Models.CrossSections;
|
|
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
|
|
namespace DataAccess.DTOs
|
|
{
|
|
public class CrossSectionRepositoryToDTOConvertStrategy : IConvertStrategy<CrossSectionRepositoryDTO, ICrossSectionRepository>
|
|
{
|
|
private IConvertStrategy<HeadMaterialDTO, IHeadMaterial> materialConvertStrategy;
|
|
private ICheckEntityLogic<ICrossSectionRepository> checkEntityLogic;
|
|
private ICrossSectionRepository oldRepository;
|
|
|
|
private ICheckEntityLogic<ICrossSectionRepository> CheckEntityLogic => checkEntityLogic ??= new CrossSectionRepositoryCheckLogic() { Entity = oldRepository };
|
|
|
|
|
|
public CrossSectionRepositoryToDTOConvertStrategy(IConvertStrategy<HeadMaterialDTO, IHeadMaterial> materialConvertStrategy)
|
|
{
|
|
this.materialConvertStrategy = materialConvertStrategy;
|
|
}
|
|
|
|
public CrossSectionRepositoryToDTOConvertStrategy(Dictionary<(Guid id, Type type), ISaveable> referenceDictionary, IShiftTraceLogger traceLogger)
|
|
{
|
|
ReferenceDictionary = referenceDictionary;
|
|
TraceLogger = traceLogger;
|
|
}
|
|
|
|
public Dictionary<(Guid id, Type type), ISaveable> ReferenceDictionary { get; set; }
|
|
public IShiftTraceLogger TraceLogger { get; set; }
|
|
|
|
public CrossSectionRepositoryDTO Convert(ICrossSectionRepository source)
|
|
{
|
|
oldRepository = source;
|
|
if (CheckEntityLogic.Check() == false)
|
|
{
|
|
TraceLogger.AddMessage(CheckEntityLogic.CheckResult, TraceLogStatuses.Error);
|
|
TraceLogger.AddMessage("All calculators will be removed", TraceLogStatuses.Error);
|
|
oldRepository.Calculators.Clear();
|
|
}
|
|
Check();
|
|
InitializeStrategies();
|
|
try
|
|
{
|
|
CrossSectionRepositoryDTO newItem = GetNewRepository(source);
|
|
return newItem;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
TraceLogger?.AddMessage(LoggerStrings.LogicType(this), TraceLogStatuses.Error);
|
|
TraceLogger?.AddMessage(ex.Message, TraceLogStatuses.Error);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
private void InitializeStrategies()
|
|
{
|
|
materialConvertStrategy ??= new HeadMaterialToDTOConvertStrategy();
|
|
}
|
|
|
|
private CrossSectionRepositoryDTO GetNewRepository(ICrossSectionRepository source)
|
|
{
|
|
CrossSectionRepositoryDTO newItem = new()
|
|
{
|
|
Id = source.Id
|
|
};
|
|
ProcessForceActions(newItem, source);
|
|
List<IHeadMaterial> materials = ProcessMaterials(source);
|
|
newItem.HeadMaterials.AddRange(materials);
|
|
ProcessPrimitives(newItem, source);
|
|
ProcessCalculators(newItem, source);
|
|
return newItem;
|
|
}
|
|
|
|
private void ProcessCalculators(IHasCalculators target, IHasCalculators source)
|
|
{
|
|
HasCalculatorsToDTOUpdateStrategy updateStrategy = new()
|
|
{
|
|
ReferenceDictionary = ReferenceDictionary,
|
|
TraceLogger = TraceLogger
|
|
};
|
|
updateStrategy.Update(target, source);
|
|
}
|
|
|
|
private void ProcessPrimitives(IHasPrimitives target, IHasPrimitives source)
|
|
{
|
|
HasPrimitivesToDTOUpdateStrategy updateStrategy = new()
|
|
{
|
|
ReferenceDictionary = ReferenceDictionary,
|
|
TraceLogger = TraceLogger
|
|
};
|
|
updateStrategy.Update(target, source);
|
|
}
|
|
|
|
private void ProcessForceActions(IHasForceActions target, IHasForceActions source)
|
|
{
|
|
HasForceActionToDTOUpdateStrategy updateStrategy = new()
|
|
{
|
|
ReferenceDictionary = ReferenceDictionary,
|
|
TraceLogger = TraceLogger
|
|
};
|
|
updateStrategy.Update(target, source);
|
|
}
|
|
|
|
private List<IHeadMaterial> ProcessMaterials(ICrossSectionRepository source)
|
|
{
|
|
materialConvertStrategy.ReferenceDictionary = ReferenceDictionary;
|
|
materialConvertStrategy.TraceLogger = TraceLogger;
|
|
var convertLogic = new DictionaryConvertStrategy<HeadMaterialDTO, IHeadMaterial>()
|
|
{
|
|
ReferenceDictionary = ReferenceDictionary,
|
|
ConvertStrategy = materialConvertStrategy,
|
|
TraceLogger = TraceLogger
|
|
};
|
|
List<IHeadMaterial> materials = new();
|
|
foreach (var item in source.HeadMaterials)
|
|
{
|
|
materials.Add(convertLogic.Convert(item));
|
|
}
|
|
|
|
return materials;
|
|
}
|
|
|
|
private void Check()
|
|
{
|
|
var checkLogic = new CheckConvertLogic<CrossSectionRepositoryDTO, ICrossSectionRepository>(this);
|
|
checkLogic.Check();
|
|
}
|
|
}
|
|
}
|