Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Core Modules
dune-common
Commits
1951c018
Commit
1951c018
authored
3 years ago
by
Andreas Dedner
Browse files
Options
Downloads
Patches
Plain Diff
[Python] avoid logging both 'generating' and 'compiling' module in two lines
parent
4960775d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1057
[Python] avoid logging both 'generating' and 'compiling' module in two lines
Pipeline
#41454
passed
3 years ago
Stage: test
Stage: downstream
Pipeline: Dune Nightly Test
#41456
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/dune/generator/cmakebuilder.py
+18
-11
18 additions, 11 deletions
python/dune/generator/cmakebuilder.py
with
18 additions
and
11 deletions
python/dune/generator/cmakebuilder.py
+
18
−
11
View file @
1951c018
...
...
@@ -245,6 +245,19 @@ class Builder:
self
.
savedOutput
[
1
].
write
(
"
\n
###############################
\n
"
)
def
load
(
self
,
moduleName
,
source
,
pythonName
,
extraCMake
=
None
):
# use with-statement to log info if compiling takes some time
class
PrintCompiling
:
def
handle_signal
(
self
,
signum
,
frame
):
logger
.
info
(
"
Compiling
"
+
pythonName
)
def
__enter__
(
self
):
signal
.
signal
(
signal
.
SIGALRM
,
self
.
handle_signal
)
signal
.
alarm
(
1
)
def
__exit__
(
self
,
type
,
value
,
traceback
):
signal
.
alarm
(
0
)
class
EmptyPrintCompiling
:
def
__enter__
(
self
):
pass
def
__exit__
(
self
,
type
,
value
,
traceback
):
pass
## TODO replace if rank with something better
## and remove barrier further down
if
not
self
.
initialized
:
...
...
@@ -265,6 +278,8 @@ class Builder:
found
=
line
in
out
.
read
()
if
not
os
.
path
.
isfile
(
sourceFileName
)
or
not
found
:
logger
.
info
(
"
Generating
"
+
pythonName
)
# don't print 'Compiling' twice
PrintCompiling
=
EmptyPrintCompiling
code
=
str
(
source
)
with
open
(
os
.
path
.
join
(
sourceFileName
),
'
w
'
)
as
out
:
...
...
@@ -301,6 +316,8 @@ class Builder:
raise
elif
isString
(
source
)
and
not
source
==
open
(
os
.
path
.
join
(
sourceFileName
),
'
r
'
).
read
():
logger
.
info
(
"
Compiling
"
+
pythonName
+
"
(updated)
"
)
# don't print 'Compiling' twice
PrintCompiling
=
EmptyPrintCompiling
code
=
str
(
source
)
with
open
(
os
.
path
.
join
(
sourceFileName
),
'
w
'
)
as
out
:
...
...
@@ -320,21 +337,11 @@ class Builder:
# that dune-py was updated in the mean time.
# This step is quite fast but there is room for optimization.
# use with-statement to log info if compiling takes some time
class
printCompiling
:
def
handle_signal
(
self
,
signum
,
frame
):
logger
.
info
(
"
Compiling
"
+
pythonName
)
def
__enter__
(
self
):
signal
.
signal
(
signal
.
SIGALRM
,
self
.
handle_signal
)
signal
.
alarm
(
1
)
def
__exit__
(
self
,
type
,
value
,
traceback
):
signal
.
alarm
(
0
)
# for compilation a shared lock is enough
with
Lock
(
os
.
path
.
join
(
self
.
dune_py_dir
,
'
..
'
,
'
lock-module.lock
'
),
flags
=
LOCK_SH
):
# lock generated module
with
Lock
(
os
.
path
.
join
(
self
.
dune_py_dir
,
'
lock-
'
+
moduleName
+
'
.lock
'
),
flags
=
LOCK_EX
):
with
p
rintCompiling
():
with
P
rintCompiling
():
self
.
compile
(
target
=
moduleName
)
## TODO remove barrier here
...
...
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