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
3a05a5fe
Commit
3a05a5fe
authored
6 months ago
by
Thibault Martin
Committed by
Andre Maroneze
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
[doc] Update documentation for dkeys/wkeys
parent
e84698bf
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
doc/developer/advance.tex
+19
-18
19 additions, 18 deletions
doc/developer/advance.tex
src/kernel_services/plugin_entry_points/log.mli
+7
-1
7 additions, 1 deletion
src/kernel_services/plugin_entry_points/log.mli
with
26 additions
and
19 deletions
doc/developer/advance.tex
+
19
−
18
View file @
3a05a5fe
...
@@ -1337,13 +1337,14 @@ debugging level is used.
...
@@ -1337,13 +1337,14 @@ debugging level is used.
output can be associated to a debugging key with the optional argument
output can be associated to a debugging key with the optional argument
\lstinline
{
~dkey
}
which takes an argument of abstract type
\lstinline
{
~dkey
}
which takes an argument of abstract type
\lstinline
|category|.
\lstinline
|category|.
Each category must be registered through the
Each category must be registered through the
\lstinline
|register
_
category|
\lstinline
|register
_
category| function. You can define subcategories
function which takes an optionnal parameter
\lstinline
|help| to provide a
by putting colons in the registered name. For instance
\lstinline
|a:b:c| defines
short description for this category. You can define subcategories by putting
a subcategory
\lstinline
|c| of
\lstinline
|a:b|, itself a subcategory of
colons in the registered name. For instance
\lstinline
|a:b:c| defines a
\lstinline
|a|. User can then choose to
subcategory
\lstinline
|c| of
\lstinline
|a:b|, itself a subcategory of
output debugging messages belonging to a given category (and its subcategories)
\lstinline
|a|. User can then choose to output debugging messages belonging to a
with the
\lstinline
{
-plugin-msg-key <category>
}
option.
given category (and its subcategories) with the
\lstinline
{
-plugin-msg-key <category>
}
option.
In order to decide whether a message should be output, both level and category
In order to decide whether a message should be output, both level and category
options are examined:
options are examined:
...
@@ -1364,18 +1365,18 @@ options are examined:
...
@@ -1364,18 +1365,18 @@ options are examined:
what they want to see on the output.
what they want to see on the output.
\end{itemize}
\end{itemize}
\paragraph
{
Warning Category Option
}
Warning output can also
\paragraph
{
Warning Category Option
}
Warning output can also be associated with a
be associated with a category, via the
\lstinline
|~wkey| optional argument
category, via the
\lstinline
|~wkey| optional argument that takes a value of
that takes a value of abstract type
abstract type
\sscodeidxdef
{
Log
}{
Messages
}{
warn
\_
category
}
\sscodeidxdef
{
Log
}{
Messages
}{
warn
\_
category
}
\lstinline
|warn
_
category|. Warning categories are distinct from plain
\lstinline
|warn
_
category|. Warning categories
categories, and must be registered with the
are distinct from plain categories, and must be registered with the
\sscodeidxdef
{
Log
}{
Messages
}{
register
\_
warn
\_
category
}
\sscodeidxdef
{
Log
}{
Messages
}{
register
\_
warn
\_
category
}
\lstinline
|register
_
warn
_
category| function. As explained in the user
\lstinline
|register
_
warn
_
category| function which takes an optionnal parameter
manual~
\cite
{
userman
}
, each category can be associated with a status that
\lstinline
|help| to provide a short description for this warning category. As
controls what will happen when a warning is triggered, from completely ignoring
explained in the user manual~
\cite
{
userman
}
, each category can be associated
it to aborting execution. The default is to emit the warning, but this can
with a status that controls what will happen when a warning is triggered, from
be changed by using the
completely ignoring it to aborting execution. The default is to emit the
warning, but this can be changed by using the
\sscodeidxdef
{
Log
}{
Messages
}{
set
\_
warn
\_
status
}
\sscodeidxdef
{
Log
}{
Messages
}{
set
\_
warn
\_
status
}
\lstinline
|set
_
warn
_
status| function.
\lstinline
|set
_
warn
_
status| function.
...
...
This diff is collapsed.
Click to expand it.
src/kernel_services/plugin_entry_points/log.mli
+
7
−
1
View file @
3a05a5fe
...
@@ -283,6 +283,7 @@ module type Messages = sig
...
@@ -283,6 +283,7 @@ module type Messages = sig
Note: to enable a category's messages by default, add it
Note: to enable a category's messages by default, add it
(e.g. via [add_debug_keys]) after registration.
(e.g. via [add_debug_keys]) after registration.
@since Fluorine-20130401
@since Fluorine-20130401
@before Frama-C+dev [?help] option was not present
*)
*)
val
pp_category
:
Format
.
formatter
->
category
->
unit
val
pp_category
:
Format
.
formatter
->
category
->
unit
...
@@ -291,6 +292,9 @@ module type Messages = sig
...
@@ -291,6 +292,9 @@ module type Messages = sig
*)
*)
val
pp_all_categories
:
unit
->
unit
val
pp_all_categories
:
unit
->
unit
(** pretty-prints all categories.
@since Frama-C+dev
*)
val
dkey_name
:
category
->
string
val
dkey_name
:
category
->
string
(** returns the category name as a string.
(** returns the category name as a string.
...
@@ -338,7 +342,9 @@ module type Messages = sig
...
@@ -338,7 +342,9 @@ module type Messages = sig
*)
*)
val
register_warn_category
:
?
help
:
string
->
string
->
warn_category
val
register_warn_category
:
?
help
:
string
->
string
->
warn_category
(** @see <https://frama-c.com/download/frama-c-plugin-development-guide.pdf> *)
(** @see <https://frama-c.com/download/frama-c-plugin-development-guide.pdf>
@before Frama-C+dev [?help] option was not present
*)
val
is_warn_category
:
string
->
bool
val
is_warn_category
:
string
->
bool
...
...
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