Skip to content
Snippets Groups Projects
Commit 3a05a5fe authored by Thibault Martin's avatar Thibault Martin Committed by Andre Maroneze
Browse files

[doc] Update documentation for dkeys/wkeys

parent e84698bf
No related branches found
No related tags found
No related merge requests found
...@@ -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.
......
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment