-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fixes #2638 cannot export HI to snapshot * Update DiseaseState.cs make sure we use old way of namespacing * Update DiseaseStateMapper.cs * Update DiseaseStateMapper.cs * Fixes #2638. Use file scoped namespace * Fixes #2638 by reverting to namespace
- Loading branch information
Showing
16 changed files
with
394 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
configuration: Debug | ||
image: Visual Studio 2019 | ||
image: Visual Studio 2022 | ||
|
||
version: '{build}' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
configuration: Debug | ||
image: Visual Studio 2019 | ||
image: Visual Studio 2022 | ||
|
||
version: '{build}' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using OSPSuite.Core.Domain; | ||
|
||
namespace PKSim.Core.Snapshots | ||
{ | ||
public class DiseaseState : IWithName | ||
{ | ||
/// <summary> | ||
/// Name of disease state associated with OriginData | ||
/// </summary> | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// List of disease state parameters associated with the selected disease state | ||
/// </summary> | ||
public Parameter[] Parameters { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using OSPSuite.Core.Domain; | ||
using OSPSuite.Core.Domain.UnitSystem; | ||
using OSPSuite.Utility.Extensions; | ||
using PKSim.Assets; | ||
using PKSim.Core.Model; | ||
using PKSim.Core.Repositories; | ||
using SnapshotDiseaseState = PKSim.Core.Snapshots.DiseaseState; | ||
using ModelOriginData = PKSim.Core.Model.OriginData; | ||
|
||
namespace PKSim.Core.Snapshots.Mappers | ||
{ | ||
public class DiseaseStateContext : SnapshotContext | ||
{ | ||
public ModelOriginData OriginData { get; } | ||
|
||
public DiseaseStateContext(ModelOriginData originData, SnapshotContext baseContext) : base(baseContext) | ||
{ | ||
OriginData = originData; | ||
} | ||
} | ||
|
||
public class DiseaseStateMapper : SnapshotMapperBase<ModelOriginData, SnapshotDiseaseState, DiseaseStateContext> | ||
{ | ||
private readonly IDiseaseStateRepository _diseaseStateRepository; | ||
private readonly ParameterMapper _parameterMapper; | ||
private readonly IDimensionRepository _dimensionRepository; | ||
|
||
public DiseaseStateMapper( | ||
IDiseaseStateRepository diseaseStateRepository, | ||
ParameterMapper parameterMapper, | ||
IDimensionRepository dimensionRepository | ||
) | ||
{ | ||
_diseaseStateRepository = diseaseStateRepository; | ||
_parameterMapper = parameterMapper; | ||
_dimensionRepository = dimensionRepository; | ||
} | ||
|
||
public override Task<SnapshotDiseaseState> MapToSnapshot(ModelOriginData originData) | ||
{ | ||
var diseaseState = originData?.DiseaseState; | ||
if (diseaseState == null || diseaseState.IsHealthy) | ||
return Task.FromResult<SnapshotDiseaseState>(null); | ||
|
||
var snapshot = new SnapshotDiseaseState | ||
{ | ||
Name = diseaseState.Name, | ||
}; | ||
|
||
if (originData.DiseaseStateParameters.Any()) | ||
snapshot.Parameters = originData.DiseaseStateParameters.Select(namedParameterFrom).ToArray(); | ||
|
||
return Task.FromResult(snapshot); | ||
} | ||
|
||
public override Task<ModelOriginData> MapToModel(SnapshotDiseaseState diseaseStateSnapshot, DiseaseStateContext diseaseStateContext) | ||
{ | ||
var originData = diseaseStateContext.OriginData; | ||
|
||
if (diseaseStateSnapshot == null) | ||
return Task.FromResult(originData); | ||
|
||
var diseaseState = _diseaseStateRepository.AllFor(originData.Population).FindByName(diseaseStateSnapshot.Name); | ||
if (diseaseState == null) | ||
throw new PKSimException(PKSimConstants.Error.CannotFindDiseaseState(diseaseStateSnapshot.Name, originData.Population.DisplayName)); | ||
|
||
originData.DiseaseState = diseaseState; | ||
diseaseState.Parameters.Each(x => | ||
{ | ||
var diseaseStateParameter = new OriginDataParameter {Name = x.Name, Value = x.Value, Unit = x.DisplayUnitName()}; | ||
var snapshotParameter = diseaseStateSnapshot.Parameters.FindByName(x.Name); | ||
if (snapshotParameter != null) | ||
{ | ||
diseaseStateParameter.Value = baseParameterValueFrom(snapshotParameter, x.Value); | ||
diseaseStateParameter.Unit = snapshotParameter.Unit; | ||
} | ||
|
||
originData.AddDiseaseStateParameter(diseaseStateParameter); | ||
}); | ||
|
||
|
||
return Task.FromResult(originData); | ||
} | ||
|
||
private Parameter namedParameterFrom(OriginDataParameter parameter) | ||
{ | ||
return parameterFrom(parameter, _dimensionRepository.DimensionForUnit(parameter.Unit)).WithName(parameter.Name); | ||
} | ||
|
||
private Parameter parameterFrom(OriginDataParameter parameter, IDimension dimension) | ||
{ | ||
if (parameter == null) | ||
return null; | ||
|
||
return _parameterMapper.ParameterFrom(parameter.Value, parameter.Unit, dimension); | ||
} | ||
|
||
private double baseParameterValueFrom(Parameter snapshot, double defaultValueInBaseUnit) => | ||
baseParameterValueFrom(snapshot, _dimensionRepository.DimensionForUnit(snapshot.Unit), defaultValueInBaseUnit); | ||
|
||
private double baseParameterValueFrom(Parameter snapshot, IDimension dimension, double defaultValueInBaseUnit) | ||
{ | ||
if (snapshot?.Value == null) | ||
return defaultValueInBaseUnit; | ||
|
||
var unit = dimension.Unit(ModelValueFor(snapshot.Unit)); | ||
return dimension.UnitValueToBaseUnitValue(unit, snapshot.Value.Value); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.