Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
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
Giacomo Mulas
NP_TMcode
Commits
ea91f54f
Commit
ea91f54f
authored
10 months ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Enable line-wise pycompare option for big files.
parent
61b07d95
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/scripts/pycompare.py
+108
-51
108 additions, 51 deletions
src/scripts/pycompare.py
with
108 additions
and
51 deletions
src/scripts/pycompare.py
+
108
−
51
View file @
ea91f54f
...
...
@@ -19,6 +19,7 @@
# The script execution requires python3.
import
re
import
os
from
math
import
log10
from
sys
import
argv
...
...
@@ -99,51 +100,98 @@ def compare_files(config):
fortran_file
=
open
(
config
[
'
fortran_file_name
'
],
'
r
'
)
c_file
=
open
(
config
[
'
c_file_name
'
],
'
r
'
)
l_file
=
None
f_lines
=
fortran_file
.
readlines
()
c_lines
=
c_file
.
readlines
()
fortran_file
.
close
()
c_file
.
close
()
if
(
len
(
f_lines
)
==
len
(
c_lines
)):
f_lines
=
[]
c_lines
=
[]
line_count
=
0
if
(
not
config
[
'
linewise
'
]):
f_lines
=
fortran_file
.
readlines
()
c_lines
=
c_file
.
readlines
()
line_count
=
len
(
f_lines
)
num_len
=
1
if
(
line_count
>
0
):
num_len
=
max
(
4
,
int
(
log10
(
line_count
))
+
1
)
if
(
config
[
'
log_html
'
]):
l_file
=
open
(
config
[
'
html_output
'
],
'
w
'
)
l_file
.
write
(
"
<!DOCTYPE html>
\n
"
)
l_file
.
write
(
"
<html xmnls=
\"
http://www.w3.org/1999/xhtml
\"
>
\n
"
)
l_file
.
write
(
"
<header>
\n
"
)
l_file
.
write
(
"
<h1>Comparison between {0:s} and {1:s}</h1>
\n
"
.
format
(
config
[
'
fortran_file_name
'
],
config
[
'
c_file_name
'
]
)
fortran_file
.
close
()
c_file
.
close
()
else
:
# line-wise comparison mode
f_lines
=
[
fortran_file
.
readline
()]
c_lines
=
[
c_file
.
readline
()]
print
(
"
INFO: using line-wise mode
"
)
print
(
"
INFO: counting result lines...
"
)
while
(
f_lines
[
0
]
!=
''
):
if
(
c_lines
[
0
]
!=
''
):
line_count
+=
1
else
:
print
(
"
ERROR: C++ file is shorter than FORTRAN file.
"
)
fortran_file
.
close
()
c_file
.
close
()
mismatch_count
[
'
errors
'
]
=
line_count
return
mismatch_count
f_lines
[
0
]
=
fortran_file
.
readline
()
c_lines
[
0
]
=
c_file
.
readline
()
if
(
c_lines
[
0
]
!=
''
):
print
(
"
ERROR: C++ file is longer than FORTRAN file.
"
)
fortran_file
.
close
()
c_file
.
close
()
mismatch_count
[
'
errors
'
]
=
line_count
return
mismatch_count
fortran_file
.
close
()
c_file
.
close
()
print
(
"
INFO: the output files have %d lines
"
%
line_count
)
fortran_file
=
open
(
config
[
'
fortran_file_name
'
],
'
r
'
)
c_file
=
open
(
config
[
'
c_file_name
'
],
'
r
'
)
num_read_lines
=
0
# LOG FILE INITIALIZATION #
if
(
config
[
'
log_html
'
]):
l_file
=
open
(
config
[
'
html_output
'
],
'
w
'
)
l_file
.
write
(
"
<!DOCTYPE html>
\n
"
)
l_file
.
write
(
"
<html xmnls=
\"
http://www.w3.org/1999/xhtml
\"
>
\n
"
)
l_file
.
write
(
"
<header>
\n
"
)
l_file
.
write
(
"
<h1>Comparison between {0:s} and {1:s}</h1>
\n
"
.
format
(
config
[
'
fortran_file_name
'
],
config
[
'
c_file_name
'
]
)
l_file
.
write
(
"
</header>
\n
"
)
l_file
.
write
(
"
<body>
\n
"
)
l_file
.
write
(
"
<div>Numeric noise is marked <span style=
\"
font-weight: bold; color: rgb(0,185,0)
\"
>
"
+
"
GREEN</span>, warnings are marked <span style=
\"
font-weight: bold; color: rgb(0,0,255)
\"
>
"
+
"
BLUE</span> and errors are marked <span style=
\"
font-weight: bold; color: rgb(255,0,0)
\"
>
"
+
"
RED</span>.</div>
\n
"
)
for
li
in
range
(
line_count
):
line_result
=
compare_lines
(
f_lines
[
li
],
c_lines
[
li
],
config
,
li
+
1
,
num_len
,
l_file
)
mismatch_count
[
'
errors
'
]
+=
line_result
[
0
]
mismatch_count
[
'
warnings
'
]
+=
line_result
[
1
]
mismatch_count
[
'
noisy
'
]
+=
line_result
[
2
]
if
(
mismatch_count
[
'
errors
'
]
>
0
and
not
config
[
'
check_all
'
]):
print
(
"
INFO: mismatch found at line %d
"
%
(
li
+
1
))
break
if
l_file
is
not
None
:
l_file
.
write
(
"
</body>
\n
"
)
l_file
.
write
(
"
</html>
\n
"
)
l_file
.
close
()
else
:
mismatch_count
[
'
errors
'
]
=
len
(
c_lines
)
print
(
"
ERROR: {0:s} and {1:s} have different numbers of lines!
"
.
format
(
config
[
'
fortran_file_name
'
],
config
[
'
c_file_name
'
]
))
if
(
config
[
'
log_html
'
]):
print
(
"
Different file sizes. No log produced.
"
)
config
[
'
log_html
'
]
=
False
)
l_file
.
write
(
"
</header>
\n
"
)
l_file
.
write
(
"
<body>
\n
"
)
l_file
.
write
(
"
<div>Numeric noise is marked <span style=
\"
font-weight: bold; color: rgb(0,185,0)
\"
>
"
+
"
GREEN</span>, warnings are marked <span style=
\"
font-weight: bold; color: rgb(0,0,255)
\"
>
"
+
"
BLUE</span> and errors are marked <span style=
\"
font-weight: bold; color: rgb(255,0,0)
\"
>
"
+
"
RED</span>.</div>
\n
"
)
# END LOG FILE INITIALIZATION #
line_loop
=
True
num_len
=
1
if
(
line_count
>
0
):
num_len
=
max
(
4
,
int
(
log10
(
line_count
))
+
1
)
print
(
"
INFO: checking file contents...
"
)
while
(
line_loop
):
if
(
not
config
[
'
linewise
'
]):
line_loop
=
False
else
:
f_lines
=
[
fortran_file
.
readline
()]
c_lines
=
[
c_file
.
readline
()]
num_read_lines
+=
1
# Start here the comparison loop
if
(
len
(
f_lines
)
==
len
(
c_lines
)):
for
li
in
range
(
len
(
f_lines
)):
line_result
=
compare_lines
(
f_lines
[
li
],
c_lines
[
li
],
config
,
li
+
1
,
num_len
,
l_file
)
mismatch_count
[
'
errors
'
]
+=
line_result
[
0
]
mismatch_count
[
'
warnings
'
]
+=
line_result
[
1
]
mismatch_count
[
'
noisy
'
]
+=
line_result
[
2
]
if
(
mismatch_count
[
'
errors
'
]
>
0
and
not
config
[
'
check_all
'
]):
print
(
"
INFO: mismatch found at line %d
"
%
(
li
+
1
))
break
else
:
mismatch_count
[
'
errors
'
]
=
len
(
c_lines
)
print
(
"
ERROR: {0:s} and {1:s} have different numbers of lines!
"
.
format
(
config
[
'
fortran_file_name
'
],
config
[
'
c_file_name
'
]
))
if
(
config
[
'
log_html
'
]):
print
(
"
Different file sizes. No log produced.
"
)
config
[
'
log_html
'
]
=
False
if
(
num_read_lines
>=
line_count
):
line_loop
=
False
#End line loop
if
l_file
is
not
None
:
l_file
.
write
(
"
</body>
\n
"
)
l_file
.
write
(
"
</html>
\n
"
)
l_file
.
close
()
return
mismatch_count
## \brief Perform the comparison of two file lines.
...
...
@@ -381,6 +429,7 @@ def parse_arguments():
'
fortran_file_name
'
:
''
,
'
c_file_name
'
:
''
,
'
full_log
'
:
False
,
'
linewise
'
:
False
,
'
log_html
'
:
False
,
'
html_output
'
:
'
pycompare.html
'
,
'
warning_threshold
'
:
0.005
,
...
...
@@ -403,6 +452,8 @@ def parse_arguments():
config
[
'
warning_threshold
'
]
=
float
(
split_arg
[
1
])
elif
(
arg
.
startswith
(
"
--help
"
)):
config
[
'
help_mode
'
]
=
True
elif
(
arg
.
startswith
(
"
--linewise
"
)):
config
[
'
linewise
'
]
=
True
elif
(
arg
.
startswith
(
"
--quick
"
)):
config
[
'
check_all
'
]
=
False
else
:
...
...
@@ -424,8 +475,9 @@ def print_help():
print
(
"
--full Print all lines to log file (default prints only mismatches).
"
)
print
(
"
--help Print this help and exit.
"
)
print
(
"
--html[=OPT_OUTPUT_NAME] Enable logging to HTML file (default logs to
\"
pycompare.html
\"
).
"
)
print
(
"
--linewise Load only one line at a time. Useful to compare big files (false by default).
"
)
print
(
"
--quick Stop on first mismatch (default is to perform a full check).
"
)
print
(
"
--warn Set a fractional threshold for numeric warning (default
=
0.005).
"
)
print
(
"
--warn Set a fractional threshold for numeric warning (default
=
0.005).
"
)
print
(
"
"
)
## \brief Add summary information to the HTML log file
...
...
@@ -440,20 +492,25 @@ def print_help():
# \param noisy: `int` The number of noisy values detected by the comparison.
def
reformat_log
(
config
,
errors
,
warnings
,
noisy
):
log_file
=
open
(
config
[
'
html_output
'
],
'
r
'
)
log_lines
=
log_file
.
readlines
(
)
log_file
.
close
()
log_
fil
e
=
open
(
config
[
'
html_output
'
],
'
w
'
)
for
i
in
range
(
7
):
log
_file
.
write
(
log_line
s
[
i
]
+
"
\n
"
)
new_file
=
open
(
"
PYCOMPARE_TEMPORARY_LOG.html
"
,
'
w
'
)
for
hi
in
range
(
7
):
log_
lin
e
=
log_file
.
readline
(
)
new
_file
.
write
(
log_line
)
str_errors
=
"
error
"
if
errors
==
1
else
"
errors
"
str_warnings
=
"
warning
"
if
warnings
==
1
else
"
warnings
"
str_noisy
=
"
noisy value
"
if
noisy
==
1
else
"
noisy values
"
summary
=
"
<div>Comparison yielded %d %s
"
%
(
errors
,
str_errors
)
summary
=
summary
+
"
, %d %s
"
%
(
warnings
,
str_warnings
)
summary
=
summary
+
"
and %d %s.</div>
\n
"
%
(
noisy
,
str_noisy
)
log_file
.
write
(
summary
)
for
i
in
range
(
7
,
len
(
log_lines
)):
log_file
.
write
(
log_lines
[
i
]
+
"
\n
"
)
new_file
.
write
(
summary
)
log_line
=
log_file
.
readline
()
while
(
log_line
!=
''
):
new_file
.
write
(
log_line
)
log_line
=
log_file
.
readline
()
log_file
.
close
()
new_file
.
close
()
os
.
remove
(
config
[
'
html_output
'
])
os
.
rename
(
"
PYCOMPARE_TEMPORARY_LOG.html
"
,
config
[
'
html_output
'
])
# ### PROGRAM EXECUTION ###
## \cond
...
...
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