emacs: update the vat plugin generator 68/20568/2
authorDave Barach <dave@barachs.net>
Tue, 9 Jul 2019 18:22:21 +0000 (14:22 -0400)
committerFlorin Coras <florin.coras@gmail.com>
Wed, 10 Jul 2019 18:00:59 +0000 (18:00 +0000)
Use the VAT_PLUGIN_REGISTER macro.

Type: refactor

Change-Id: I5ab9f311028c07a37a40cc1328d9724f852783ee
Signed-off-by: Dave Barach <dave@barachs.net>
MAINTAINERS
extras/emacs/plugin-test-skel.el

index 4bcd82e..d9109ed 100644 (file)
@@ -385,6 +385,11 @@ I: vpp
 M:     Dave Barach <dave@barachs.net>
 F:     src/vpp/
 
+Emacs templates
+I:     emacs
+M:     Dave Barach <dave@barachs.net>
+F:     extras/emacs/
+
 Graphical Event Viewer
 I:     g2
 M:     Dave Barach <dave@barachs.net>
index 6357a3d..42962ac 100644 (file)
@@ -185,24 +185,8 @@ static void " plugin-name "_api_hookup (vat_main_t *vam)
 #undef _
 }
 
-clib_error_t * vat_plugin_register (vat_main_t *vam)
-{
-  " plugin-name "_test_main_t * " main-p " = &" plugin-name "_test_main;
-  u8 * name;
-
-  " main-p "->vat_main = vam;
-
-  /* Ask the vpp engine for the first assigned message-id */
-  name = format (0, \"" plugin-name "_%08x%c\", api_version, 0);
-  " main-p "->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name);
+VAT_PLUGIN_REGISTER(" plugin-name");
 
-  if (" main-p "->msg_id_base != (u16) ~0)
-    " plugin-name "_api_hookup (vam);
-
-  vec_free(name);
-
-  return 0;
-}
 /*
  * fd.io coding-style-patch-verification: " capital-oh-en "
  *