Skip to content
Snippets Groups Projects
Commit 939dda12 authored by juanf's avatar juanf
Browse files

SSDM-13195 : Remove unnecesary getParents and getChildren calls

parent 091df1b5
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -48,14 +48,19 @@ public class VerifySampleParentsExecutor extends AbstractVerifyEntityCyclesExecu ...@@ -48,14 +48,19 @@ public class VerifySampleParentsExecutor extends AbstractVerifyEntityCyclesExecu
public void verify(IOperationContext context, CollectionBatch<SamplePE> batch) public void verify(IOperationContext context, CollectionBatch<SamplePE> batch)
{ {
super.verify(context, batch); super.verify(context, batch);
new CollectionBatchProcessor<SamplePE>(context, batch) new CollectionBatchProcessor<SamplePE>(context, batch)
{ {
@Override @Override
public void process(SamplePE sample) public void process(SamplePE sample)
{ {
SampleGenericBusinessRules.assertValidParents(sample); // DAO methods to fetch a list of sample parents or children are way faster than the PE
SampleGenericBusinessRules.assertValidChildren(sample); // counterparts. These checks here save unnecessary and slow database trips on sample imports.
if (getParents(context, sample).isEmpty() == false) {
SampleGenericBusinessRules.assertValidParents(sample);
}
if (getChildren(context, sample).isEmpty() == false) {
SampleGenericBusinessRules.assertValidChildren(sample);
}
} }
@Override @Override
...@@ -82,8 +87,21 @@ public class VerifySampleParentsExecutor extends AbstractVerifyEntityCyclesExecu ...@@ -82,8 +87,21 @@ public class VerifySampleParentsExecutor extends AbstractVerifyEntityCyclesExecu
@Override @Override
protected Map<Long, Set<Long>> getRelatedIdsMap(IOperationContext context, Set<Long> entityIds) protected Map<Long, Set<Long>> getRelatedIdsMap(IOperationContext context, Set<Long> entityIds)
{ {
Long relationshipId = getRelationshipIdExecutor.get(context, RelationshipType.PARENT_CHILD); Long relationshipId = getRelatedIdForParentChild(context);
return daoFactory.getSampleDAO().mapSampleIdsByChildrenIds(entityIds, relationshipId); return daoFactory.getSampleDAO().mapSampleIdsByChildrenIds(entityIds, relationshipId);
} }
private Long getRelatedIdForParentChild(IOperationContext context)
{
return getRelationshipIdExecutor.get(context, RelationshipType.PARENT_CHILD);
}
private Set<TechId> getParents(IOperationContext context, SamplePE samplePE) {
Long relationshipId = getRelatedIdForParentChild(context);
return daoFactory.getSampleDAO().listSampleIdsByChildrenIds(TechId.createList(samplePE.getId()), new TechId(relationshipId));
}
private Set<TechId> getChildren(IOperationContext context, SamplePE samplePE) {
return daoFactory.getSampleDAO().listSampleIdsByParentIds(TechId.createList(samplePE.getId()));
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment