Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mkexp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esmenv
mkexp
Commits
e37e139f
Commit
e37e139f
authored
2 years ago
by
Karl-Hermann Wieners
Browse files
Options
Downloads
Patches
Plain Diff
update: avoid code duplication (echo/exec)
parent
e167e886
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES.txt
+1
-0
1 addition, 0 deletions
CHANGES.txt
mkexp
+5
-18
5 additions, 18 deletions
mkexp
update.py
+27
-2
27 additions, 2 deletions
update.py
with
33 additions
and
20 deletions
CHANGES.txt
+
1
−
0
View file @
e37e139f
...
...
@@ -19,6 +19,7 @@ Tools
-----
* importexp: added support for running outside of native environment
* update: avoid code duplication in generated script
Release 1.1.5
=============
...
...
This diff is collapsed.
Click to expand it.
mkexp
+
5
−
18
View file @
e37e139f
...
...
@@ -25,6 +25,7 @@ from expconfig import ConfigObj, ExpConfig, ExpConfigError
import
feedback
import
files
import
package_info
import
update
#
# Basic settings
...
...
@@ -623,21 +624,7 @@ readme_file.close()
# Create update script from experiment description
move_file_to_backup
(
os
.
path
.
join
(
script_dir
,
'
update
'
),
os
.
path
.
join
(
backup_dir
,
'
update
'
))
update_file
=
io
.
open
(
os
.
path
.
join
(
script_dir
,
'
update
'
),
'
w
'
)
update_file
.
write
(
u
'
#! /bin/sh
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
# Regenerate all files with identical configuration
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
#
'
+
extra_dict
[
'
mkexp_input
'
].
replace
(
'
$$
'
,
'
$
'
)
+
'
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
cd
'
+
quote
(
os
.
environ
.
get
(
'
PWD
'
,
os
.
getcwd
()))
+
'
\n
'
)
update_file
.
write
(
u
'
PATH=
'
+
quote
(
os
.
environ
.
get
(
'
PATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
PYTHONPATH=
'
+
quote
(
os
.
environ
.
get
(
'
PYTHONPATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
MKEXP_PATH=
'
+
quote
(
os
.
environ
.
get
(
'
MKEXP_PATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
export PATH PYTHONPATH MKEXP_PATH
\n
'
)
update_file
.
write
(
u
'
echo
'
+
'
'
.
join
(
map
(
quote
,
sys
.
argv
))
+
'
"
$@
"
>&2
\n
'
)
update_file
.
write
(
u
'
exec
'
+
'
'
.
join
(
map
(
quote
,
sys
.
argv
))
+
'
"
$@
"
\n
'
)
update_file
.
close
()
chmod_plus_x
(
os
.
path
.
join
(
script_dir
,
'
update
'
))
update_name
=
os
.
path
.
join
(
script_dir
,
'
update
'
)
move_file_to_backup
(
update_name
,
os
.
path
.
join
(
backup_dir
,
'
update
'
))
update
.
write_update
(
update_name
,
extra_dict
,
sys
.
argv
)
chmod_plus_x
(
update_name
)
This diff is collapsed.
Click to expand it.
update.py
+
27
−
2
View file @
e37e139f
...
...
@@ -4,11 +4,33 @@ Module for 'update' information generated by mkexp tool.
$Id$
'''
import
io
import
os
import
re
import
expargparse
def
write_update
(
update_name
,
extra_dict
,
argv
):
def
quote
(
value
):
return
repr
(
value
).
lstrip
(
'
u
'
)
update_file
=
io
.
open
(
update_name
,
'
w
'
)
update_file
.
write
(
u
'
#! /bin/sh
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
# Regenerate all files with identical configuration
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
#
'
+
extra_dict
[
'
mkexp_input
'
].
replace
(
'
$$
'
,
'
$
'
)
+
'
\n
'
)
update_file
.
write
(
u
'
#
\n
'
)
update_file
.
write
(
u
'
cd
'
+
quote
(
os
.
environ
.
get
(
'
PWD
'
,
os
.
getcwd
()))
+
'
\n
'
)
update_file
.
write
(
u
'
PATH=
'
+
quote
(
os
.
environ
.
get
(
'
PATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
PYTHONPATH=
'
+
quote
(
os
.
environ
.
get
(
'
PYTHONPATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
MKEXP_PATH=
'
+
quote
(
os
.
environ
.
get
(
'
MKEXP_PATH
'
,
''
))
+
'
\n
'
)
update_file
.
write
(
u
'
export PATH PYTHONPATH MKEXP_PATH
\n
'
)
update_file
.
write
(
u
'
set -
'
+
'
'
.
join
(
map
(
quote
,
argv
))
+
'
"
$@
"
\n
'
)
update_file
.
write
(
u
'
echo
"
$@
"
>&2
\n
'
)
update_file
.
write
(
u
'
exec
"
$@
"
\n
'
)
update_file
.
close
()
class
Update
:
'''
Object containing
'
update
'
information generated by mkexp tool
'''
...
...
@@ -24,16 +46,19 @@ class Update:
update_file
=
open
(
update_name
)
for
line
in
update_file
:
match
=
re
.
match
(
r
"
^
cd
'
(.*)
'
$
"
,
line
)
match
=
re
.
match
(
r
"
cd
'
(.*)
'
$
"
,
line
)
if
match
:
self
.
config_dir
=
match
.
group
(
1
)
else
:
match
=
re
.
match
(
r
"
^exec
'
.*?
'
'
(.*)
'"
,
line
)
# Support older update file formats
match
=
(
re
.
match
(
r
"
set -
'
.*?
'
'
(.*)
'"
,
line
)
or
re
.
match
(
r
"
exec
'
.*?
'
'
(.*)
'"
,
line
))
if
match
:
# Check mkexp command line
mkexp_line
=
expargparse
.
MkexpArgumentParser
()
self
.
mkexp_args
=
\
mkexp_line
.
parse_args
(
match
.
group
(
1
).
split
(
"'
'"
))
break
update_file
.
close
()
...
...
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