LISP ONLY: maintain the emacs lisp plugin generator
[vpp.git] / extras / emacs / plugin-h-skel.el
1 ;;; plugin-h-skel.el - vpp engine plug-in "main.c" skeleton
2 ;;;
3 ;;; Copyright (c) 2016 Cisco and/or its affiliates.
4 ;;; Licensed under the Apache License, Version 2.0 (the "License");
5 ;;; you may not use this file except in compliance with the License.
6 ;;; You may obtain a copy of the License at:
7 ;;;
8 ;;;     http://www.apache.org/licenses/LICENSE-2.0
9 ;;;
10 ;;; Unless required by applicable law or agreed to in writing, software
11 ;;; distributed under the License is distributed on an "AS IS" BASIS,
12 ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ;;; See the License for the specific language governing permissions and
14 ;;; limitations under the License.
15
16 (require 'skeleton)
17
18 (define-skeleton skel-plugin-h
19 "Insert a plug-in 'main.c' skeleton "
20 nil
21 '(if (not (boundp 'plugin-name))
22      (setq plugin-name (read-string "Plugin name: ")))
23 '(setq PLUGIN-NAME (upcase plugin-name))
24 '(setq capital-oh-en "ON")
25 "
26 /*
27  * " plugin-name ".h - skeleton vpp engine plug-in header file 
28  *
29  * Copyright (c) <current-year> <your-organization>
30  * Licensed under the Apache License, Version 2.0 (the \"License\");
31  * you may not use this file except in compliance with the License.
32  * You may obtain a copy of the License at:
33  *
34  *     http://www.apache.org/licenses/LICENSE-2.0
35  *
36  * Unless required by applicable law or agreed to in writing, software
37  * distributed under the License is distributed on an \"AS IS\" BASIS,
38  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39  * See the License for the specific language governing permissions and
40  * limitations under the License.
41  */
42 #ifndef __included_" plugin-name "_h__
43 #define __included_" plugin-name "_h__
44
45 #include <vnet/vnet.h>
46 #include <vnet/ip/ip.h>
47 #include <vnet/ethernet/ethernet.h>
48
49 #include <vppinfra/hash.h>
50 #include <vppinfra/error.h>
51
52 typedef struct {
53     /* API message ID base */
54     u16 msg_id_base;
55
56     /* on/off switch for the periodic function */
57     u8 periodic_timer_enabled;
58
59     /* convenience */
60     vlib_main_t * vlib_main;
61     vnet_main_t * vnet_main;
62     ethernet_main_t * ethernet_main;
63 } " plugin-name "_main_t;
64
65 extern " plugin-name "_main_t " plugin-name "_main;
66
67 extern vlib_node_registration_t " plugin-name "_node;
68 extern vlib_node_registration_t " plugin-name "_periodic_node;
69
70 /* Periodic function events */
71 #define " PLUGIN-NAME "_EVENT1 1
72 #define " PLUGIN-NAME "_EVENT2 2
73 #define " PLUGIN-NAME "_EVENT_PERIODIC_ENABLE_DISABLE 3
74
75 #endif /* __included_" plugin-name "_h__ */
76
77 /*
78  * fd.io coding-style-patch-verification: " capital-oh-en "
79  *
80  * Local Variables:
81  * eval: (c-set-style \"gnu\")
82  * End:
83  */
84
85 ")