Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-pylib
Commits
3a76adea
Commit
3a76adea
authored
3 years ago
by
Alexander Schlemmer
Browse files
Options
Downloads
Patches
Plain Diff
MAINT: removed a hack that was accidentally introduced in retrieve_substructure function
parent
97b3ec48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!57
RELEASE 0.7.3
,
!47
Refactored the plantuml module
Pipeline
#20466
passed
3 years ago
Stage: code_style
Stage: linting
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/caosdb/utils/plantuml.py
+9
-14
9 additions, 14 deletions
src/caosdb/utils/plantuml.py
with
9 additions
and
14 deletions
src/caosdb/utils/plantuml.py
+
9
−
14
View file @
3a76adea
...
...
@@ -276,7 +276,8 @@ def retrieve_substructure(start_record_types, depth, result_id_set=None, result_
Returns
-------
db.Container
A container containing all the retrieved entites or None if cleanup is False.
A container containing all the retrieved entites
or None if cleanup is False.
"""
# Initialize the id set and result container for level zero recursion depth:
if
result_id_set
is
None
:
...
...
@@ -290,18 +291,11 @@ def retrieve_substructure(start_record_types, depth, result_id_set=None, result_
result_container
.
append
(
entity
)
result_id_set
.
add
(
entity
.
id
)
for
prop
in
entity
.
properties
:
if
is_reference
(
prop
.
datatype
)
and
prop
.
datatype
!=
db
.
FILE
and
depth
>
0
:
rt
=
db
.
RecordType
(
name
=
get_referenced_recordtype
(
prop
.
datatype
)).
retrieve
()
retrieve_substructure
([
rt
],
depth
-
1
,
result_id_set
,
result_container
,
False
)
# TODO: clean up this hack
# TODO: make it also work for files
if
is_reference
(
prop
.
datatype
)
and
prop
.
value
is
not
None
:
r
=
db
.
Record
(
id
=
prop
.
value
).
retrieve
()
retrieve_substructure
([
r
],
depth
-
1
,
result_id_set
,
result_container
,
False
)
if
r
.
id
not
in
result_id_set
:
result_container
.
append
(
r
)
result_id_set
.
add
(
r
.
id
)
if
(
is_reference
(
prop
.
datatype
)
and
prop
.
datatype
!=
db
.
FILE
and
depth
>
0
):
rt
=
db
.
RecordType
(
name
=
get_referenced_recordtype
(
prop
.
datatype
)).
retrieve
()
retrieve_substructure
([
rt
],
depth
-
1
,
result_id_set
,
result_container
,
False
)
if
prop
.
id
not
in
result_id_set
:
result_container
.
append
(
prop
)
...
...
@@ -313,7 +307,8 @@ def retrieve_substructure(start_record_types, depth, result_id_set=None, result_
result_container
.
append
(
rt
)
result_id_set
.
add
(
parent
.
id
)
if
depth
>
0
:
retrieve_substructure
([
rt
],
depth
-
1
,
result_id_set
,
result_container
,
False
)
retrieve_substructure
([
rt
],
depth
-
1
,
result_id_set
,
result_container
,
False
)
if
cleanup
:
return
result_container
...
...
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