Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / cedet / semantic / doc.el
blob2f9a570eb319cb1e9d689acb067e3b6f691bd5c8
1 ;;; semantic/doc.el --- Routines for documentation strings
3 ;; Copyright (C) 1999-2003, 2005, 2008-2014 Free Software Foundation,
4 ;; Inc.
6 ;; Author: Eric M. Ludlam <zappo@gnu.org>
7 ;; Keywords: syntax
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/>.
24 ;;; Commentary:
26 ;; It is good practice to write documentation for your functions and
27 ;; variables. These core routines deal with these documentation
28 ;; comments or strings. They can exist either as a tag property
29 ;; (:documentation) or as a comment just before the symbol, or after
30 ;; the symbol on the same line.
32 (require 'semantic/tag)
34 ;;; Code:
36 ;;;###autoload
37 (define-overloadable-function semantic-documentation-for-tag (&optional tag nosnarf)
38 "Find documentation from TAG and return it as a clean string.
39 TAG might have DOCUMENTATION set in it already. If not, there may be
40 some documentation in a comment preceding TAG's definition which we
41 can look for. When appropriate, this can be overridden by a language specific
42 enhancement.
43 Optional argument NOSNARF means to only return the lexical analyzer token for it.
44 If nosnarf if 'lex, then only return the lex token."
45 (if (not tag) (setq tag (semantic-current-tag)))
46 (save-excursion
47 (when (semantic-tag-with-position-p tag)
48 (set-buffer (semantic-tag-buffer tag)))
49 (:override
50 ;; No override. Try something simple to find documentation nearby
51 (save-excursion
52 (semantic-go-to-tag tag)
53 (let ((doctmp (semantic-tag-docstring tag (current-buffer))))
54 (or
55 ;; Is there doc in the tag???
56 doctmp
57 ;; Check just before the definition.
58 (when (semantic-tag-with-position-p tag)
59 (semantic-documentation-comment-preceeding-tag tag nosnarf))
60 ;; Let's look for comments either after the definition, but before code:
61 ;; Not sure yet. Fill in something clever later....
62 nil))))))
64 ;; FIXME this is not how you spell "preceding".
65 (defun semantic-documentation-comment-preceeding-tag (&optional tag nosnarf)
66 "Find a comment preceding TAG.
67 If TAG is nil. use the tag under point.
68 Searches the space between TAG and the preceding tag for a comment,
69 and converts the comment into clean documentation.
70 Optional argument NOSNARF with a value of 'lex means to return
71 just the lexical token and not the string."
72 (if (not tag) (setq tag (semantic-current-tag)))
73 (save-excursion
74 ;; Find this tag.
75 (semantic-go-to-tag tag)
76 (let* ((starttag (semantic-find-tag-by-overlay-prev
77 (semantic-tag-start tag)))
78 (start (if starttag
79 (semantic-tag-end starttag)
80 (point-min))))
81 (when (and comment-start-skip
82 (re-search-backward comment-start-skip start t))
83 ;; We found a comment that doesn't belong to the body
84 ;; of a function.
85 (semantic-doc-snarf-comment-for-tag nosnarf)))
88 (defun semantic-doc-snarf-comment-for-tag (nosnarf)
89 "Snarf up the comment at POINT for `semantic-documentation-for-tag'.
90 Attempt to strip out comment syntactic sugar.
91 Argument NOSNARF means don't modify the found text.
92 If NOSNARF is 'lex, then return the lex token."
93 (let* ((semantic-ignore-comments nil)
94 (semantic-lex-analyzer #'semantic-comment-lexer))
95 (if (memq nosnarf '(lex flex)) ;; keep `flex' for compatibility
96 (car (semantic-lex (point) (1+ (point))))
97 (let ((ct (semantic-lex-token-text
98 (car (semantic-lex (point) (1+ (point)))))))
99 (if nosnarf
101 ;; ok, try to clean the text up.
102 ;; Comment start thingy
103 (while (string-match (concat "^\\s-*" comment-start-skip) ct)
104 (setq ct (concat (substring ct 0 (match-beginning 0))
105 (substring ct (match-end 0)))))
106 ;; Arbitrary punctuation at the beginning of each line.
107 (while (string-match "^\\s-*\\s.+\\s-*" ct)
108 (setq ct (concat (substring ct 0 (match-beginning 0))
109 (substring ct (match-end 0)))))
110 ;; End of a block comment.
111 (if (and (boundp 'block-comment-end)
112 block-comment-end
113 (string-match block-comment-end ct))
114 (setq ct (concat (substring ct 0 (match-beginning 0))
115 (substring ct (match-end 0)))))
116 ;; In case it's a real string, STRIPIT.
117 (while (string-match "\\s-*\\s\"+\\s-*" ct)
118 (setq ct (concat (substring ct 0 (match-beginning 0))
119 (substring ct (match-end 0)))))
120 ;; Remove comment delimiter at the end of the string.
121 (when (string-match (concat (regexp-quote comment-end) "$") ct)
122 (setq ct (substring ct 0 (match-beginning 0)))))
123 ;; Now return the text.
124 ct))))
126 (provide 'semantic/doc)
128 ;; Local variables:
129 ;; generated-autoload-file: "loaddefs.el"
130 ;; generated-autoload-load-name: "semantic/doc"
131 ;; End:
133 ;;; semantic/doc.el ends here