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
8fc5b6f3
Commit
8fc5b6f3
authored
2 years ago
by
Patrick Baudin
Browse files
Options
Downloads
Patches
Plain Diff
[Lint] can parse a JSON config file
parent
5f05ab31
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/lint/dune
+2
-1
2 additions, 1 deletion
tools/lint/dune
tools/lint/lint.ml
+31
-5
31 additions, 5 deletions
tools/lint/lint.ml
with
33 additions
and
6 deletions
tools/lint/dune
+
2
−
1
View file @
8fc5b6f3
...
...
@@ -24,5 +24,6 @@
(public_name frama-c-lint)
(name lint)
(modules lint UTF8)
(libraries unix ocp-indent.lexer ocp-indent.lib ocp-indent.dynlink)
(preprocess (pps ppx_deriving_yojson))
(libraries unix yojson ocp-indent.lexer ocp-indent.lib ocp-indent.dynlink)
)
This diff is collapsed.
Click to expand it.
tools/lint/lint.ml
+
31
−
5
View file @
8fc5b6f3
...
...
@@ -28,6 +28,7 @@ type tool_cmds =
check_cmd
:
string
;
(* leaves it empty if there is no check command *)
update_cmd
:
string
(* leaves it empty if there is no updating command *)
}
[
@@
deriving
yojson
]
(**************************************************************************)
(** The only part to modify for adding a new external formatters *)
...
...
@@ -113,13 +114,28 @@ let updates_tbl external_tools =
List
.
iter
(
fun
formatter
->
let
tool
=
Tool
{
is_available
=
None
;
tool_cmds
=
formatter
}
in
List
.
iter
(
fun
extension
->
Hashtbl
.
add
default_tbl
extension
tool
)
Hashtbl
.
replace
default_tbl
extension
tool
)
formatter
.
extensions
;
Hashtbl
.
add
external_tbl
formatter
.
name
tool
)
external_tools
let
()
=
updates_tbl
external_formatters
type
tools
=
tool_cmds
list
[
@@
deriving
yojson
]
let
parse_config
config_file
=
if
config_file
<>
""
then
let
config_tools
=
try
tools_of_yojson
(
Yojson
.
Safe
.
from_file
config_file
)
with
Yojson
.
Json_error
txt
->
Error
txt
in
match
config_tools
with
|
Result
.
Ok
external_tools
->
updates_tbl
external_tools
|
Result
.
Error
txt
->
warn
"Parse error:%s:%s"
config_file
txt
(************************)
let
ml_indent_formatter
=
Ocp_indent
...
...
@@ -405,11 +421,15 @@ let check ~verbose ~update file params =
let
exec_name
=
Sys
.
argv
.
(
0
)
let
update
=
ref
false
let
verbose
=
ref
false
let
config_file
=
ref
""
let
extract_config
=
ref
false
let
argspec
=
[
"-u"
,
Arg
.
Set
update
,
" Update ill-formed files (does not handle UTF8 update)"
;
"-v"
,
Arg
.
Set
verbose
,
" Verbose mode"
;
"-s"
,
Arg
.
Set
strict
,
" Considers warnings as errors for the exit value"
;
"-c"
,
Arg
.
String
(
fun
s
->
config_file
:=
s
)
,
"<config-file> Reads the JSON configuration file (allows to overload the default configuration)"
;
"-e"
,
Arg
.
Set
extract_config
,
" Print default JSON configuration"
;
]
let
sort
argspec
=
List
.
sort
(
fun
(
name1
,
_
,
_
)
(
name2
,
_
,
_
)
->
String
.
compare
name1
name2
)
...
...
@@ -423,7 +443,13 @@ let () =
(
Arg
.
align
(
sort
argspec
))
(
fun
s
->
warn
"Unknown argument: %s@."
s
)
(
"Usage: git ls-files -z | git check-attr --stdin -z -a | "
^
exec_name
^
" [options]"
);
updates_tbl
external_formatters
;
collect
@@
lines_from_in
stdin
;
Hashtbl
.
iter
(
check
~
verbose
:!
verbose
~
update
:!
update
)
table
;
if
not
!
res
then
exit
1
if
!
extract_config
then
Format
.
printf
"Default JSON configuration:@.%a@."
(
Yojson
.
Safe
.
pretty_print
~
std
:
false
)
(
tools_to_yojson
external_formatters
)
else
begin
updates_tbl
external_formatters
;
parse_config
!
config_file
;
collect
@@
lines_from_in
stdin
;
Hashtbl
.
iter
(
check
~
verbose
:!
verbose
~
update
:!
update
)
table
;
if
not
!
res
then
exit
1
end
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