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
079837fd
Commit
079837fd
authored
2 years ago
by
Adam Laskowski
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-13300: fixed clone command after code refactor in obis
parent
e34d352b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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/commands/clone.py
+18
-18
18 additions, 18 deletions
...openbis-command-line/src/python/obis/dm/commands/clone.py
with
18 additions
and
18 deletions
app-openbis-command-line/src/python/obis/dm/commands/clone.py
+
18
−
18
View file @
079837fd
...
...
@@ -13,14 +13,12 @@
# limitations under the License.
#
import
os
import
pybis
from
.openbis_command
import
OpenbisCommand
,
ContentCopySelector
from
..checksum
import
validate_checksum
from
..command_result
import
CommandResult
,
CommandException
from
..utils
import
cd
from
..utils
import
run_shell
from
..utils
import
complete_openbis_config
from
..repository_utils
import
copy_repository
from
..utils
import
cd
from
...
import
dm
...
...
@@ -40,7 +38,8 @@ class Clone(OpenbisCommand):
:param skip_integrity_check: Checksums are not validated if True
"""
if
dm
.
data_path
!=
dm
.
metadata_path
:
raise
CommandException
(
CommandResult
(
returncode
=-
1
,
output
=
'
Clone/move not supported with obis_metadata_folder.
'
))
raise
CommandException
(
CommandResult
(
returncode
=-
1
,
output
=
'
Clone/move not supported with obis_metadata_folder.
'
))
self
.
data_set_id
=
data_set_id
self
.
ssh_user
=
ssh_user
self
.
content_copy_index
=
content_copy_index
...
...
@@ -48,7 +47,6 @@ class Clone(OpenbisCommand):
self
.
load_global_config
(
dm
)
super
(
Clone
,
self
).
__init__
(
dm
)
def
check_configuration
(
self
):
missing_config_settings
=
[]
if
self
.
openbis
is
None
:
...
...
@@ -57,10 +55,10 @@ class Clone(OpenbisCommand):
missing_config_settings
.
append
(
'
user
'
)
if
len
(
missing_config_settings
)
>
0
:
return
CommandResult
(
returncode
=-
1
,
output
=
"
Missing configuration settings for {}.
"
.
format
(
missing_config_settings
))
output
=
"
Missing configuration settings for {}.
"
.
format
(
missing_config_settings
))
return
CommandResult
(
returncode
=
0
,
output
=
""
)
def
run
(
self
):
result
=
self
.
prepare_run
()
...
...
@@ -84,12 +82,14 @@ class Clone(OpenbisCommand):
data_set
=
self
.
openbis
.
get_dataset
(
self
.
data_set_id
)
if
self
.
skip_integrity_check
!=
True
:
data_path
=
os
.
path
.
join
(
self
.
data_mgmt
.
data_path
,
repository_folder
)
invalid_files
=
validate_checksum
(
self
.
openbis
,
data_set
.
file_list
,
data_set
.
permId
,
data_path
,
self
.
data_mgmt
.
metadata_path
)
invalid_files
=
validate_checksum
(
self
.
openbis
,
data_set
.
file_list
,
data_set
.
permId
,
data_path
,
self
.
data_mgmt
.
metadata_path
)
if
len
(
invalid_files
)
>
0
:
raise
CommandException
(
CommandResult
(
returncode
=-
1
,
output
=
"
Invalid checksum for files {}.
"
.
format
(
str
(
invalid_files
))))
raise
CommandException
(
CommandResult
(
returncode
=-
1
,
output
=
"
Invalid checksum for files {}.
"
.
format
(
str
(
invalid_files
))))
return
self
.
add_content_copy_to_openbis
(
repository_folder
)
def
checkout_commit
(
self
,
content_copy
,
path
):
"""
Checks out the commit of the content copy from which the clone was made
...
...
@@ -100,17 +100,17 @@ class Clone(OpenbisCommand):
repository_folder
=
path
.
split
(
'
/
'
)[
-
1
]
return
self
.
git_wrapper
.
git_checkout
(
commit_hash
,
relative_repo_path
=
repository_folder
)
def
add_content_copy_to_openbis
(
self
,
repository_folder
):
with
cd
(
repository_folder
):
data_path
=
os
.
path
.
join
(
self
.
data_mgmt
.
data_path
,
repository_folder
)
metadata_path
=
os
.
path
.
join
(
self
.
data_mgmt
.
metadata_path
,
repository_folder
)
invocation_path
=
self
.
data_mgmt
.
invocation_path
data_mgmt
=
dm
.
DataMgmt
(
openbis_config
=
{},
git_config
=
{
'
find_git
'
:
True
,
'
data_path
'
:
data_path
,
'
metadata_path
'
:
metadata_path
,
'
invocation_path
'
:
invocation_path
})
data_mgmt
.
set_property
(
data_mgmt
.
settings_resolver
.
config
,
'
hostname
'
,
None
,
False
)
'
find_git
'
:
True
,
'
data_path
'
:
data_path
,
'
metadata_path
'
:
metadata_path
,
'
invocation_path
'
:
invocation_path
})
data_mgmt
.
set_property
(
data_mgmt
.
debug
,
data_mgmt
.
settings_resolver
.
config
,
'
hostname
'
,
None
,
False
)
return
data_mgmt
.
addref
()
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