1 ;;; snmp-mode.el --- SNMP & SNMPv2 MIB major mode
3 ;; Copyright (C) 1995, 1998, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Paul D. Smith <psmith@BayNetworks.com>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; This package provides a major mode for editing SNMP MIBs. It
29 ;; provides all the modern Emacs 19 bells and whistles: default
30 ;; fontification via font-lock, imenu search functions, etc.
32 ;; SNMP mode also uses tempo, a textual boilerplate insertion package
33 ;; distributed with Emacs, to add in boilerplate SNMP MIB structures.
34 ;; See tempo.el for more details about tempo.
36 ;; If you want to change or add new tempo templates, use the tempo tag
37 ;; list `snmp-tempo-tags' (or `snmpv2-tempo-tags'): this list is
38 ;; automatically installed when snmp-mode (or snmpv2-mode) is entered.
40 ;; The SNMPv2 mode in this version has been enhanced thanks to popular
43 ;; I'm very interested in new tempo macros for both v1 and v2, and any
44 ;; other suggestions for enhancements (different syntax table items, new
50 ;; Mostly, use it as you would any other mode. There's a very
51 ;; simplistic auto-indent feature; hopefully it'll help more than get in
52 ;; your way. For the most part it tries to indent to the same level as
53 ;; the previous line. It will try to recognize some very simple tokens
54 ;; on the previous line that tell it to use extra indent or outdent.
58 ;; To use the Tempo templates, type the Tempo tag (or a unique prefix)
59 ;; and use C-c C-i (C-c TAB) to complete it; if you don't have
60 ;; tempo-interactive set to nil it will ask you to fill in values.
61 ;; Fields with predefined values (SYNTAX, STATUS, etc.) will do
62 ;; completing-reads on a list of valid values; use the normal SPC or TAB
65 ;; Currently the following templates are available:
67 ;; objectType -- Defines an OBJECT-TYPE macro.
69 ;; tableType -- Defines both a Table and Entry OBJECT-TYPE, and a
70 ;; SEQUENCE for the ASN.1 Entry definition.
72 ;; Once the template is done, you can use C-cC-f and C-cC-b to move back
73 ;; and forth between the Tempo sequence points to fill in the rest of
79 ;; If you want font-lock in your MIB buffers, add this:
81 ;; (add-hook 'snmp-common-mode-hook 'turn-on-font-lock)
83 ;; Enabling global-font-lock-mode is also sufficient.
90 (require 'imenu
) ; Need this stuff when compiling for imenu macros, etc.
93 ;;;----------------------------------------------------------------------------
97 ;;;----------------------------------------------------------------------------
100 "Mode for editing SNMP MIB files."
104 (defcustom snmp-special-indent t
105 "If non-nil, use a simple heuristic to try to guess the right indentation.
106 If nil, then no special indentation is attempted."
110 (defcustom snmp-indent-level
4
111 "Indentation level for SNMP MIBs."
115 (defcustom snmp-tab-always-indent nil
116 "Non-nil means TAB should always reindent the current line.
117 A value of nil means reindent if point is within the initial line indentation;
118 otherwise insert a TAB."
122 (defcustom snmp-completion-ignore-case t
123 "Non-nil means that case differences are ignored during completion.
124 A value of nil means that case is significant.
125 This is used during Tempo template completion."
129 (defcustom snmp-common-mode-hook nil
130 "Hook(s) evaluated when a buffer enters either SNMP or SNMPv2 mode."
134 (defcustom snmp-mode-hook nil
135 "Hook(s) evaluated when a buffer enters SNMP mode."
139 (defcustom snmpv2-mode-hook nil
140 "Hook(s) evaluated when a buffer enters SNMPv2 mode."
144 (defvar snmp-tempo-tags nil
145 "*Tempo tags for SNMP mode.")
147 (defvar snmpv2-tempo-tags nil
148 "*Tempo tags for SNMPv2 mode.")
151 ;; Enable fontification for SNMP MIBs
154 ;; These are pretty basic fontifications. Note we assume these macros
155 ;; are first on a line (except whitespace), to speed up fontification.
157 (defvar snmp-font-lock-keywords-1
159 ;; OBJECT-TYPE, TRAP-TYPE, and OBJECT-IDENTIFIER macros
160 '("^[ \t]*\\([a-z][-a-zA-Z0-9]+\\)[ \t]+\\(\\(MODULE-\\(COMPLIANCE\\|IDENTITY\\)\\|OBJECT-\\(COMPLIANCE\\|GROUP\\|IDENTITY\\|TYPE\\)\\|TRAP-\\(GROUP\\|TYPE\\)\\)\\|\\(OBJECT\\)[ \t]+\\(IDENTIFIER\\)[ \t]*::=\\)"
161 (1 font-lock-variable-name-face
) (3 font-lock-keyword-face nil t
)
162 (7 font-lock-keyword-face nil t
) (8 font-lock-keyword-face nil t
))
164 ;; DEFINITIONS clause
165 '("^[ \t]*\\([A-Z][-a-zA-Z0-9]+\\)[ \t]+\\(DEFINITIONS\\)[ \t]*::="
166 (1 font-lock-function-name-face
) (2 font-lock-keyword-face
))
168 "Basic SNMP MIB mode expression highlighting.")
170 (defvar snmp-font-lock-keywords-2
172 '(("ACCESS\\|BEGIN\\|DE\\(FVAL\\|SCRIPTION\\)\\|END\\|FROM\\|I\\(MPORTS\\|NDEX\\)\\|S\\(TATUS\\|YNTAX\\)"
173 (0 font-lock-keyword-face
)))
174 snmp-font-lock-keywords-1
)
175 "Medium SNMP MIB mode expression highlighting.")
177 (defvar snmp-font-lock-keywords-3
179 '(("\\([^\n]+\\)[ \t]+::=[ \t]+\\(SEQUENCE\\)[ \t]+{"
180 (1 font-lock-reference-face
) (2 font-lock-keyword-face
))
181 ("::=[ \t]*{[ \t]*\\([a-z0-9].*[ \t]+\\)?\\([0-9]+\\)[ \t]*}"
182 (1 font-lock-reference-face nil t
) (2 font-lock-variable-name-face
)))
183 snmp-font-lock-keywords-2
)
184 "Gaudy SNMP MIB mode expression highlighting.")
186 (defvar snmp-font-lock-keywords snmp-font-lock-keywords-1
187 "Default SNMP MIB mode expression highlighting.")
190 ;; These lists are used for the completion capabilities in the tempo
194 (defvar snmp-mode-syntax-list nil
195 "Predefined types for SYNTAX clauses.")
197 (defvar snmp-rfc1155-types
198 '("INTEGER" "OCTET STRING" "OBJECT IDENTIFIER" "NULL" "IpAddress"
199 "NetworkAddress" "Counter" "Gauge" "TimeTicks" "Opaque")
200 "Types from RFC 1155 v1 SMI.")
202 (defvar snmp-rfc1213-types
204 "Types from RFC 1213 MIB-II.")
206 (defvar snmp-rfc1902-types
207 '("INTEGER" "OCTET STRING" "OBJECT IDENTIFIER" "Integer32"
208 "IpAddress" "Counter32" "Gauge32" "Unsigned32" "TimeTicks"
209 "Opaque" "Counter64")
210 "Types from RFC 1902 v2 SMI.")
212 (defvar snmp-rfc1903-types
213 '("DisplayString" "PhysAddress" "MacAddress" "TruthValue"
214 "TestAndIncr" "AutonomousType" "InstancePointer"
215 "VariablePointer" "RowPointer" "RowStatus" "TimeStamp"
216 "TimeInterval" "DateAndTime" "StorageType" "TDomain"
218 "Types from RFC 1903 Textual Conventions.")
221 (defvar snmp-mode-access-list nil
222 "Predefined values for ACCESS clauses.")
224 (defvar snmp-rfc1155-access
225 '("read-only" "read-write" "write-only" "not-accessible")
226 "ACCESS values from RFC 1155 v1 SMI.")
228 (defvar snmp-rfc1902-access
229 '("read-only" "read-write" "read-create" "not-accessible"
230 "accessible-for-notify")
231 "ACCESS values from RFC 1155 v1 SMI.")
234 (defvar snmp-mode-status-list nil
235 "Predefined values for STATUS clauses.")
237 (defvar snmp-rfc1212-status
238 '("mandatory" "obsolete" "deprecated")
239 "STATUS values from RFC 1212 v1 SMI.")
241 (defvar snmp-rfc1902-status
242 '("current" "obsolete" "deprecated")
243 "STATUS values from RFC 1902 v2 SMI.")
246 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
247 ;;;----------------------------------------------------------------------------
249 ;; Nothing to customize below here.
251 ;;;----------------------------------------------------------------------------
252 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
255 ;; Create abbrev table for SNMP MIB mode
257 (defvar snmp-mode-abbrev-table nil
258 "Abbrev table in use in SNMP mode.")
259 (define-abbrev-table 'snmp-mode-abbrev-table
())
262 ;; Create abbrev table for SNMPv2 mode
264 (defvar snmpv2-mode-abbrev-table nil
265 "Abbrev table in use in SNMPv2 mode.")
266 (define-abbrev-table 'snmpv2-mode-abbrev-table
())
271 (defvar snmp-mode-map
272 (let ((map (make-sparse-keymap)))
273 (define-key map
"\177" 'backward-delete-char-untabify
)
274 (define-key map
"\C-c\C-i" 'tempo-complete-tag
)
275 (define-key map
"\C-c\C-f" 'tempo-forward-mark
)
276 (define-key map
"\C-c\C-b" 'tempo-backward-mark
)
278 "Keymap used in SNMP mode.")
281 ;; Set up our syntax table
283 (defvar snmp-mode-syntax-table
284 (let ((st (make-syntax-table)))
285 (modify-syntax-entry ?
\\ "\\" st
)
286 (modify-syntax-entry ?-
"_ 1234" st
)
287 (modify-syntax-entry ?
\n ">" st
)
288 (modify-syntax-entry ?\^m
">" st
)
289 (modify-syntax-entry ?_
"." st
)
290 (modify-syntax-entry ?
: "." st
)
291 (modify-syntax-entry ?
= "." st
)
293 "Syntax table used for buffers in SNMP mode.")
295 ;; Set up the stuff that's common between snmp-mode and snmpv2-mode
297 (defun snmp-common-mode (name mode abbrev font-keywords imenu-index tempo-tags
)
298 (kill-all-local-variables)
300 ;; Become the current major mode
301 (setq mode-name name
)
302 (setq major-mode mode
)
304 ;; Activate keymap, syntax table, and abbrev table
305 (use-local-map snmp-mode-map
)
306 (set-syntax-table snmp-mode-syntax-table
)
307 (setq local-abbrev-table abbrev
)
309 ;; Set up paragraphs (?)
310 (make-local-variable 'paragraph-start
)
311 (setq paragraph-start
(concat "$\\|" page-delimiter
))
312 (make-local-variable 'paragraph-separate
)
313 (setq paragraph-separate paragraph-start
)
314 (make-local-variable 'paragraph-ignore-fill-prefix
)
315 (setq paragraph-ignore-fill-prefix t
)
318 (make-local-variable 'comment-start
)
319 (setq comment-start
"-- ")
320 (make-local-variable 'comment-start-skip
)
321 (setq comment-start-skip
"--+[ \t]*")
322 (make-local-variable 'comment-column
)
323 (setq comment-column
40)
324 (make-local-variable 'parse-sexp-ignore-comments
)
325 (setq parse-sexp-ignore-comments t
)
327 ;; Set up indentation
328 (if snmp-special-indent
329 (set (make-local-variable 'indent-line-function
) 'snmp-indent-line
))
330 (set (make-local-variable 'tab-always-indent
) snmp-tab-always-indent
)
333 (make-local-variable 'font-lock-defaults
)
334 (setq font-lock-defaults
(cons font-keywords
'(nil nil
((?- .
"w 1234")))))
337 (make-local-variable 'imenu-create-index-function
)
338 (setq imenu-create-index-function imenu-index
)
341 (tempo-use-tag-list tempo-tags
)
342 (make-local-variable 'tempo-match-finder
)
343 (setq tempo-match-finder
"\\b\\(.+\\)\\=")
344 (make-local-variable 'tempo-interactive
)
345 (setq tempo-interactive t
)
347 ;; Miscellaneous customization
348 (make-local-variable 'require-final-newline
)
349 (setq require-final-newline mode-require-final-newline
))
352 ;; SNMPv1 MIB Editing Mode.
356 "Major mode for editing SNMP MIBs.
357 Expression and list commands understand all C brackets.
358 Tab indents for C code.
359 Comments start with -- and end with newline or another --.
360 Delete converts tabs to spaces as it moves back.
362 Turning on snmp-mode runs the hooks in `snmp-common-mode-hook', then
366 (snmp-common-mode "SNMP" 'snmp-mode
367 snmp-mode-abbrev-table
368 '(snmp-font-lock-keywords
369 snmp-font-lock-keywords-1
370 snmp-font-lock-keywords-2
371 snmp-font-lock-keywords-3
)
372 'snmp-mode-imenu-create-index
376 (make-local-variable 'snmp-mode-syntax-list
)
377 (setq snmp-mode-syntax-list
(append snmp-rfc1155-types
379 snmp-mode-syntax-list
))
380 (make-local-variable 'snmp-mode-access-list
)
381 (setq snmp-mode-access-list snmp-rfc1155-access
)
382 (make-local-variable 'snmp-mode-status-list
)
383 (setq snmp-mode-status-list snmp-rfc1212-status
)
386 (run-mode-hooks 'snmp-common-mode-hook
'snmp-mode-hook
))
390 (defun snmpv2-mode ()
391 "Major mode for editing SNMPv2 MIBs.
392 Expression and list commands understand all C brackets.
393 Tab indents for C code.
394 Comments start with -- and end with newline or another --.
395 Delete converts tabs to spaces as it moves back.
397 Turning on snmp-mode runs the hooks in `snmp-common-mode-hook',
398 then `snmpv2-mode-hook'."
401 (snmp-common-mode "SNMPv2" 'snmpv2-mode
402 snmpv2-mode-abbrev-table
403 '(snmp-font-lock-keywords
404 snmp-font-lock-keywords-1
405 snmp-font-lock-keywords-2
406 snmp-font-lock-keywords-3
)
407 'snmp-mode-imenu-create-index
411 (make-local-variable 'snmp-mode-syntax-list
)
412 (setq snmp-mode-syntax-list
(append snmp-rfc1902-types
414 snmp-mode-syntax-list
))
415 (make-local-variable 'snmp-mode-access-list
)
416 (setq snmp-mode-access-list snmp-rfc1902-access
)
417 (make-local-variable 'snmp-mode-status-list
)
418 (setq snmp-mode-status-list snmp-rfc1902-status
)
421 (run-mode-hooks 'snmp-common-mode-hook
'snmpv2-mode-hook
))
424 ;;;----------------------------------------------------------------------------
428 ;;;----------------------------------------------------------------------------
430 (defvar snmp-macro-open
431 "[a-zA-Z][-a-zA-Z0-9]*[ \t]*\\(OBJECT\\|TRAP\\)-\\(TYPE\\|GROUP\\)\
432 \\|DESCRIPTION\\|IMPORTS\\|MODULE\\(-IDENTITY\\|-COMPLIANCE\\)\
433 \\|.*::=[ \t]*\\(BEGIN\\|TEXTUAL-CONVENTION\\)[ \t]*$")
435 (defvar snmp-macro-close
436 "::=[ \t]*{\\|\\(END\\|.*[;\"]\\)[ \t]*$")
438 (defun snmp-calculate-indent ()
439 "Calculate the current line indentation in SNMP MIB code.
441 We use a very simple scheme: if the previous non-empty line was a \"macro
442 open\" string, add `snmp-indent-level' to it. If it was a \"macro close\"
443 string, subtract `snmp-indent-level'. Otherwise, use the same indentation
444 as the previous non-empty line. Note comments are considered empty
445 lines for the purposes of this function."
446 (let ((empty (concat "\\([ \t]*\\)\\(" comment-start-skip
"\\|$\\)"))
447 (case-fold-search nil
)) ; keywords must be in uppercase
449 (while (and (>= (forward-line -
1) 0)
451 (skip-chars-forward " \t")
453 ;; Are we looking at a macro open string? If so, add more.
454 (cond ((looking-at snmp-macro-open
)
456 ;; macro close string? If so, remove some.
457 ((looking-at snmp-macro-close
)
458 (- snmp-indent-level
))
459 ;; Neither; just stay here.
462 (defun snmp-indent-line ()
463 "Indent current line as SNMP MIB code."
464 (let ((indent (snmp-calculate-indent))
465 (pos (- (point-max) (point)))
469 (skip-chars-forward " \t")
470 (setq shift-amt
(- indent
(current-column)))
471 (if (zerop shift-amt
)
473 (delete-region beg
(point))
475 ;; If initial point was within line's indentation,
476 ;; position after the indentation. Else stay at same point in text.
477 (if (> (- (point-max) pos
) (point))
478 (goto-char (- (point-max) pos
)))))
481 ;;;----------------------------------------------------------------------------
485 ;;;----------------------------------------------------------------------------
487 (defvar snmp-clause-regexp
488 "^[ \t]*\\([a-zA-Z][-a-zA-Z0-9]*\\)[ \t\n]*\
489 \\(TRAP-TYPE\\|::=\\|OBJECT\\(-TYPE[ \t\n]+SYNTAX\\|[ \t\n]+IDENTIFIER[ \t\n]*::=\\)\\)")
491 (defun snmp-mode-imenu-create-index ()
492 (let ((index-alist '())
493 (index-oid-alist '())
495 (index-table-alist '())
496 (index-trap-alist '())
497 (case-fold-search nil
) ; keywords must be uppercase
499 (goto-char (point-min))
500 (imenu-progress-message prev-pos
0)
501 ;; Search for a useful MIB item (that's not in a comment)
503 (while (re-search-forward snmp-clause-regexp nil t
)
504 (imenu-progress-message prev-pos
)
507 token
(cons (match-string 1)
508 (set-marker (make-marker) (match-beginning 1))))
509 (goto-char (match-beginning 2))
510 (cond ((looking-at "OBJECT-TYPE[ \t\n]+SYNTAX")
511 (push token index-alist
))
512 ((looking-at "OBJECT[ \t\n]+IDENTIFIER[ \t\n]*::=")
513 (push token index-oid-alist
))
514 ((looking-at "::=[ \t\n]*SEQUENCE[ \t\n]*{")
515 (push token index-table-alist
))
516 ((looking-at "TRAP-TYPE")
517 (push token index-trap-alist
))
519 (push token index-tc-alist
)))
522 (imenu-progress-message prev-pos
100)
523 (setq index-alist
(nreverse index-alist
))
525 (push (cons "Textual Conventions" (nreverse index-tc-alist
))
527 (and index-trap-alist
528 (push (cons "Traps" (nreverse index-trap-alist
))
530 (and index-table-alist
531 (push (cons "Tables" (nreverse index-table-alist
))
534 (push (cons "Object IDs" (nreverse index-oid-alist
))
539 ;;;----------------------------------------------------------------------------
543 ;;;----------------------------------------------------------------------------
547 ;; Perform a completing-read with info given
549 (defun snmp-completing-read (prompt table
&optional pred require init hist
)
550 "Read from the minibuffer, with completion.
551 Like `completing-read', but the variable `snmp-completion-ignore-case'
552 controls whether case is significant."
553 (let ((completion-ignore-case snmp-completion-ignore-case
))
554 (completing-read prompt table pred require init hist
)))
556 ;; OBJECT-TYPE macro template
558 (tempo-define-template "snmp-object-type"
559 '(> (P "Object Label: ") " OBJECT-TYPE" n
>
561 (if tempo-interactive
562 (snmp-completing-read "Syntax: " snmp-mode-syntax-list nil nil
)
565 (if tempo-interactive
566 (snmp-completing-read "Access: " snmp-mode-access-list nil t
)
569 (if tempo-interactive
570 (snmp-completing-read "Status: " snmp-mode-status-list nil t
)
572 "DESCRIPTION" n
> "\"" p
"\"" n
>
573 (P "Default Value: " defval t
)
574 (if (string= "" (tempo-lookup-named 'defval
))
576 '(l "DEFVAL { " (s defval
) " }" n
>))
577 "::= { " (p "OID: ") " }" n
)
579 "Insert an OBJECT-TYPE macro."
582 ;; Table macro template
584 (tempo-define-template "snmp-table-type"
585 ;; First the table OBJECT-TYPE
586 '(> (P "Table Name: " table
)
587 (P "Entry Name: " entry t
)
588 (let* ((entry (tempo-lookup-named 'entry
))
589 (seq (copy-sequence entry
)))
590 (aset entry
0 (downcase (aref entry
0)))
591 (aset seq
0 (upcase (aref seq
0)))
592 (tempo-save-named 'obj-entry entry
)
593 (tempo-save-named 'seq-entry seq
)
596 "SYNTAX SEQUENCE OF "
598 "ACCESS not-accessible" n
>
599 "STATUS mandatory" n
>
600 "DESCRIPTION" n
> "\"" p
"\"" n
>
601 "::= { " (p "OID: ") " }" n n
>
602 ;; Next the row OBJECT-TYPE
603 (s obj-entry
) " OBJECT-TYPE" n
>
604 "SYNTAX " (s seq-entry
) n
>
605 "ACCESS not-accessible" n
>
606 "STATUS mandatory" n
>
607 "DESCRIPTION" n
> "\"" p
"\"" n
>
608 "INDEX { " (p "Index List: ") " }" n
>
609 "::= {" (s table
) " 1 }" n n
>
610 ;; Finally the SEQUENCE type
611 (s seq-entry
) " ::= SEQUENCE {" n
> p n
> "}" n
)
613 "Insert an SNMP table."
617 ;; v2 SMI OBJECT-TYPE macro template
619 (tempo-define-template "snmpv2-object-type"
620 '(> (P "Object Label: ") " OBJECT-TYPE" n
>
622 (if tempo-interactive
623 (snmp-completing-read "Syntax: " snmp-mode-syntax-list nil nil
)
626 (if tempo-interactive
627 (snmp-completing-read "Max Access: " snmp-mode-access-list nil t
)
630 (if tempo-interactive
631 (snmp-completing-read "Status: " snmp-mode-status-list nil t
)
633 "DESCRIPTION" n
> "\"" p
"\"" n
>
634 (P "Default Value: " defval t
)
635 (if (string= "" (tempo-lookup-named 'defval
))
637 '(l "DEFVAL { " (s defval
) " }" n
>))
638 "::= { " (p "OID: ") " }" n
)
640 "Insert an v2 SMI OBJECT-TYPE macro."
643 ;; v2 SMI Table macro template
645 (tempo-define-template "snmpv2-table-type"
646 ;; First the table OBJECT-TYPE
647 '(> (P "Table Name: " table
)
648 (P "Entry Name: " entry t
)
649 (let* ((entry (tempo-lookup-named 'entry
))
650 (seq (copy-sequence entry
)))
651 (aset entry
0 (downcase (aref entry
0)))
652 (aset seq
0 (upcase (aref seq
0)))
653 (tempo-save-named 'obj-entry entry
)
654 (tempo-save-named 'seq-entry seq
)
657 "SYNTAX SEQUENCE OF "
659 "MAX-ACCESS not-accessible" n
>
661 "DESCRIPTION" n
> "\"" p
"\"" n
>
662 "::= { " (p "OID: ") " }" n n
>
663 ;; Next the row OBJECT-TYPE
664 (s obj-entry
) " OBJECT-TYPE" n
>
665 "SYNTAX " (s seq-entry
) n
>
666 "MAX-ACCESS not-accessible" n
>
668 "DESCRIPTION" n
> "\"" p
"\"" n
>
669 "INDEX { " (p "Index List: ") " }" n
>
670 "::= { " (s table
) " 1 }" n n
>
671 ;; Finally the SEQUENCE type
672 (s seq-entry
) " ::= SEQUENCE {" n
> p n
> "}" n
)
674 "Insert an v2 SMI SNMP table."
677 ;; v2 SMI TEXTUAL-CONVENTION macro template
679 (tempo-define-template "snmpv2-textual-convention"
680 '(> (P "Texual Convention Type: ") " ::= TEXTUAL-CONVENTION" n
>
682 (if tempo-interactive
683 (snmp-completing-read "Status: " snmp-mode-status-list nil t
)
685 "DESCRIPTION" n
> "\"" p
"\"" n
>
687 (if tempo-interactive
688 (snmp-completing-read "Syntax: " snmp-mode-syntax-list nil nil
)
691 "Insert an v2 SMI TEXTUAL-CONVENTION macro."
697 ;; arch-tag: eb6cc0f9-1e47-4023-8625-bc9aae6c3527
698 ;;; snmp-mode.el ends here