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
ca6e6fdc
Commit
ca6e6fdc
authored
2 years ago
by
Adam Laskowski
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-13330: Added missing config operations for PhysicalDataMgmt type
parent
d1989b1a
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
app-openbis-command-line/src/python/obis/dm/data_mgmt.py
+80
-0
80 additions, 0 deletions
app-openbis-command-line/src/python/obis/dm/data_mgmt.py
with
80 additions
and
0 deletions
app-openbis-command-line/src/python/obis/dm/data_mgmt.py
+
80
−
0
View file @
ca6e6fdc
...
@@ -656,3 +656,83 @@ class PhysicalDataMgmt(AbstractDataMgmt):
...
@@ -656,3 +656,83 @@ class PhysicalDataMgmt(AbstractDataMgmt):
cmd
=
Search
(
self
,
type_code
,
space
,
project
,
experiment
,
property_code
,
property_value
,
cmd
=
Search
(
self
,
type_code
,
space
,
project
,
experiment
,
property_code
,
property_value
,
save
)
save
)
return
cmd
.
search_data_sets
()
return
cmd
.
search_data_sets
()
def
config
(
self
,
category
,
is_global
,
is_data_set_property
,
prop
=
None
,
value
=
None
,
set
=
False
,
get
=
False
,
clear
=
False
):
"""
:param category: config, object, collection, data_set or repository
:param is_global: act on global settings - local if false
:param is_data_set_property: true if prop / value are a data set property
:param prop: setting key
:param value: setting value
:param set: True for setting values
:param get: True for getting values
:param clear: True for clearing values
"""
resolver
=
self
.
settings_resolver
.
get
(
category
)
if
resolver
is
None
:
raise
ValueError
(
'
Invalid settings category:
'
+
category
)
# we can only do one action at a time
if
set
is
True
:
assert
get
is
False
assert
clear
is
False
assert
prop
is
not
None
assert
value
is
not
None
elif
get
is
True
:
assert
set
is
False
assert
clear
is
False
assert
value
is
None
elif
clear
is
True
:
assert
get
is
False
assert
set
is
False
assert
value
is
None
assert
set
is
True
or
get
is
True
or
clear
is
True
if
is_global
:
resolver
.
set_location_search_order
([
'
global
'
])
else
:
resolver
.
set_location_search_order
([
'
local
'
])
config_dict
=
resolver
.
config_dict
()
if
is_data_set_property
:
config_dict
=
config_dict
[
'
properties
'
]
if
get
is
True
:
if
prop
is
None
:
config_str
=
json
.
dumps
(
config_dict
,
indent
=
4
,
sort_keys
=
True
)
click_echo
(
"
{}
"
.
format
(
config_str
),
with_timestamp
=
False
)
else
:
if
not
prop
in
config_dict
:
raise
ValueError
(
"
Unknown setting {} for {}.
"
.
format
(
prop
,
resolver
.
categoty
))
little_dict
=
{
prop
:
config_dict
[
prop
]}
config_str
=
json
.
dumps
(
little_dict
,
indent
=
4
,
sort_keys
=
True
)
click_echo
(
"
{}
"
.
format
(
config_str
),
with_timestamp
=
False
)
elif
set
is
True
:
return
check_result
(
"
config
"
,
self
.
set_property
(
resolver
,
prop
,
value
,
is_global
,
is_data_set_property
))
elif
clear
is
True
:
if
prop
is
None
:
return_code
=
0
for
prop
in
config_dict
.
keys
():
return_code
+=
check_result
(
"
config
"
,
self
.
set_property
(
resolver
,
prop
,
None
,
is_global
,
is_data_set_property
))
return
return_code
else
:
return
check_result
(
"
config
"
,
self
.
set_property
(
resolver
,
prop
,
None
,
is_global
,
is_data_set_property
))
def
set_property
(
self
,
resolver
,
prop
,
value
,
is_global
,
is_data_set_property
=
False
):
"""
Helper function to implement the property setting semantics.
"""
loc
=
'
global
'
if
is_global
else
'
local
'
try
:
if
is_data_set_property
:
resolver
.
set_value_for_json_parameter
(
'
properties
'
,
prop
,
value
,
loc
,
apply_rules
=
True
)
else
:
resolver
.
set_value_for_parameter
(
prop
,
value
,
loc
,
apply_rules
=
True
)
except
Exception
as
e
:
if
self
.
debug
is
True
:
raise
e
return
CommandResult
(
returncode
=-
1
,
output
=
"
Error:
"
+
str
(
e
))
else
:
return
CommandResult
(
returncode
=
0
,
output
=
""
)
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