Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
939dda12
Commit
939dda12
authored
2 years ago
by
juanf
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-13195 : Remove unnecesary getParents and getChildren calls
parent
091df1b5
No related branches found
No related tags found
1 merge request
!40
SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/ethz/sis/openbis/generic/server/asapi/v3/executor/sample/VerifySampleParentsExecutor.java
+22
-4
22 additions, 4 deletions
...asapi/v3/executor/sample/VerifySampleParentsExecutor.java
with
22 additions
and
4 deletions
openbis/source/java/ch/ethz/sis/openbis/generic/server/asapi/v3/executor/sample/VerifySampleParentsExecutor.java
+
22
−
4
View file @
939dda12
...
@@ -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
=
getRelat
ionshipIdExecutor
.
get
(
context
,
RelationshipType
.
PARENT_CHILD
);
Long
relationshipId
=
getRelat
edIdForParentChild
(
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
()));
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment