Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
pub
frama-c
Commits
5909bf8b
Commit
5909bf8b
authored
2 years ago
by
Virgile Prevosto
Browse files
Options
Downloads
Patches
Plain Diff
[devguide] use good old regex to analyze LaTeX's index
the lexer and parser are broken beyond repair
parent
02409860
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/developer/check_api/check_and_compare.ml
+35
-22
35 additions, 22 deletions
doc/developer/check_api/check_and_compare.ml
with
35 additions
and
22 deletions
doc/developer/check_api/check_and_compare.ml
+
35
−
22
View file @
5909bf8b
...
...
@@ -11,19 +11,34 @@
(* *)
(**************************************************************************)
let
rep
lace_space_by_dot
s
=
Str
.
global_replace
(
Str
.
regexp
"
"
)
"
.
"
s
let
rep
air_word
s
=
Str
.
global_replace
(
Str
.
regexp
_string
"
\\
"
)
""
s
let
repair_word
s
=
let
rec
repair_word_aux
st
=
try
let
d1
=
String
.
index
st
'
$
'
in
try
let
d2
=
String
.
index_from
st
d1
'
$
'
in
(
Str
.
string_before
st
d1
)
^
(
repair_word_aux
(
Str
.
string_after
st
(
d2
+
1
)))
with
Not_found
->
st
with
Not_found
->
st
let
index_entry
=
Str
.
regexp
{
|^
\\
indexentry
{
\
(
.*
\
)}{[
0
-
9
]
*
}
|
}
let
index_subentry
=
Str
.
regexp
{
|^.*@
\
texttt
*
{
\
([
A
-
Za
-
z0
-
9_
]
+
\
)}
$|
}
let
all_caps
=
Str
.
regexp
"^[A-Z0-9_]+$"
let
inspect_subentry
l
=
let
check_one_entry
e
=
let
e
=
repair_word
e
in
if
Str
.
string_match
index_subentry
e
0
then
begin
let
word
=
Str
.
matched_group
1
e
in
if
Str
.
string_match
all_caps
word
0
then
raise
Exit
else
word
end
else
raise
Exit
in
Str
.
global_replace
(
Str
.
regexp
"
\\
"
)
""
(
repair_word_aux
s
)
try
let
l
=
List
.
map
check_one_entry
l
in
(
String
.
concat
"."
l
)
^
"
\n
"
with
Exit
->
""
let
inspect_entry
line
=
if
Str
.
string_match
index_entry
line
0
then
begin
let
content
=
Str
.
matched_group
1
line
in
match
Str
.
split
(
Str
.
regexp_string
"|"
)
content
with
|
[
entry
;
_
]
->
inspect_subentry
(
Str
.
split
(
Str
.
regexp_string
"!"
)
entry
)
|
_
->
""
end
else
""
let
external_names
=
[
"Landmarks"
;
"Makefile"
]
...
...
@@ -88,14 +103,14 @@ let run_oracle t1 t2 =
then
h
^
"
\n
"
^
(
string_of_info_list
q
)
else
(
string_of_info_list
q
)
in
let
wo_tbl
t
k
d
=
let
wo_tbl
t
k
_
d
=
try
let
element_info
=
Hashtbl
.
find
t
k
in
to_fill
:=
!
to_fill
^
"
\n
"
^
k
^
"/"
^
(
string_of_list
element_info
)
with
Not_found
->
()
in
let
w_tbl
t
k
d
=
let
w_tbl
t
k
_
d
=
let
tbl
:
(
string
,
string
list
)
Hashtbl
.
t
=
Hashtbl
.
create
197
in
fill_tbl
tbl
"run.oracle"
;
...
...
@@ -165,15 +180,13 @@ let () =
let
chan_out
=
open_out
(
"index_file"
)
in
try
let
chan_in
=
open_in
(
"main.idx"
)
in
let
lexbuf
=
Lexing
.
from_channel
chan_in
in
let
temp
=
repair_word
(
Check_index_grammar
.
main
Check_index_lexer
.
token
lexbuf
)
in
let
lexbuf_2
=
Lexing
.
from_string
temp
in
let
result
=
Check_index_grammar
.
main
Check_index_lexer
.
token_2
lexbuf_2
in
output_string
chan_out
(
replace_space_by_dot
result
);
try
while
true
do
let
line
=
input_line
chan_in
in
let
res
=
inspect_entry
line
in
output_string
chan_out
res
;
done
with
End_of_file
->
()
;
close_out
chan_out
;
close_in
chan_in
;
fill_tbl
code_hstbl
"code_file"
;
fill_tbl
index_hstbl
"index_file"
;
...
...
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