You can use Template.TemplateMonad.Extractable
to write plugins in Gallina.
You can use this project as a template for doing this.
Beware: Things are a little bit convoluted/brittle due to the extraction processes. Pull requests are welcome.
- Write your plugin inside the
gen-src
directory (using the_RocqProject
in that directory). The plugin should use theTemplate.TemplateMonad.Extractable
monad to interact with Rocq. - Modify the
gen-src/Extract.v
file to extract the module that you want to call from your plugin. - Run
make sources
which will build the Rocq sources to your plugin and extract them to OCaml. - In the
src
directory, write the entry point to your plugin. Seesrc/g_plugin_demo.ml4
for some examples. Make sure that you do not use any names that conflict with names ofml
files inside oftemplate-rocq
. - In the
src
directory, create anmlpack
file which includes all the files that you need. This file must start with the template located intemplate-rocq/gen-src/meta_coq_plugin_template.mlpack
to ensure that it uses the appropriate dependencies. - Include any Rocq files that your plugin requires in the top-level
theories
directory. - Build the plugin from the root directory and you should be good to go.
As mentioned above, things are a bit brittle.
Essentially, what the Makefile
does is first build the contents of gen-src
to build the OCaml for the plugin.
The recursive extraction command will generate all of the files into the src
directory, including the files that template-rocq
provides.
The top-level Makefile
then copies the contents of the template-rocq/gen-src
directory over the src
directory before building it to ensure that everything is consistent.