]> code.delx.au - gnu-emacs-elpa/blob - company-semantic.el
Merge pull request #457 from cpitclaudel/wip-simplify-electric
[gnu-emacs-elpa] / company-semantic.el
1 ;;; company-semantic.el --- company-mode completion backend using Semantic
2
3 ;; Copyright (C) 2009-2011, 2013 Free Software Foundation, Inc.
4
5 ;; Author: Nikolaj Schumacher
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22
23 ;;; Commentary:
24 ;;
25
26 ;;; Code:
27
28 (require 'company)
29 (require 'cl-lib)
30
31 (defvar semantic-idle-summary-function)
32 (declare-function semantic-documentation-for-tag "semantic/doc" )
33 (declare-function semantic-analyze-current-context "semantic/analyze")
34 (declare-function semantic-analyze-possible-completions "semantic/complete")
35 (declare-function semantic-analyze-find-tags-by-prefix "semantic/analyze/fcn")
36 (declare-function semantic-tag-class "semantic/tag")
37 (declare-function semantic-tag-name "semantic/tag")
38 (declare-function semantic-tag-start "semantic/tag")
39 (declare-function semantic-tag-buffer "semantic/tag")
40 (declare-function semantic-active-p "semantic")
41 (declare-function semantic-format-tag-prototype "semantic/format")
42
43 (defgroup company-semantic nil
44 "Completion backend using Semantic."
45 :group 'company)
46
47 (defcustom company-semantic-metadata-function 'company-semantic-summary-and-doc
48 "The function turning a semantic tag into doc information."
49 :type 'function)
50
51 (defvar company-semantic-modes '(c-mode c++-mode jde-mode java-mode))
52
53 (defvar-local company-semantic--current-tags nil
54 "Tags for the current context.")
55
56 (defun company-semantic-documentation-for-tag (tag)
57 (when (semantic-tag-buffer tag)
58 ;; When TAG's buffer is unknown, the function below raises an error.
59 (semantic-documentation-for-tag tag)))
60
61 (defun company-semantic-doc-or-summary (tag)
62 (or (company-semantic-documentation-for-tag tag)
63 (and (require 'semantic-idle nil t)
64 (require 'semantic/idle nil t)
65 (funcall semantic-idle-summary-function tag nil t))))
66
67 (defun company-semantic-summary-and-doc (tag)
68 (let ((doc (company-semantic-documentation-for-tag tag))
69 (summary (funcall semantic-idle-summary-function tag nil t)))
70 (and (stringp doc)
71 (string-match "\n*\\(.*\\)$" doc)
72 (setq doc (match-string 1 doc)))
73 (concat summary
74 (when doc
75 (if (< (+ (length doc) (length summary) 4) (window-width))
76 " -- "
77 "\n"))
78 doc)))
79
80 (defun company-semantic-doc-buffer (tag)
81 (let ((doc (company-semantic-documentation-for-tag tag)))
82 (when doc
83 (company-doc-buffer
84 (concat (funcall semantic-idle-summary-function tag nil t)
85 "\n"
86 doc)))))
87
88 (defsubst company-semantic-completions (prefix)
89 (ignore-errors
90 (let ((completion-ignore-case nil)
91 (context (semantic-analyze-current-context)))
92 (setq company-semantic--current-tags
93 (semantic-analyze-possible-completions context))
94 (all-completions prefix company-semantic--current-tags))))
95
96 (defun company-semantic-completions-raw (prefix)
97 (setq company-semantic--current-tags nil)
98 (dolist (tag (semantic-analyze-find-tags-by-prefix prefix))
99 (unless (eq (semantic-tag-class tag) 'include)
100 (push tag company-semantic--current-tags)))
101 (delete "" (mapcar 'semantic-tag-name company-semantic--current-tags)))
102
103 (defun company-semantic-annotation (argument tags)
104 (let* ((tag (assoc argument tags))
105 (kind (when tag (elt tag 1))))
106 (cl-case kind
107 (function (let* ((prototype (semantic-format-tag-prototype tag nil nil))
108 (par-pos (string-match "(" prototype)))
109 (when par-pos (substring prototype par-pos)))))))
110
111 (defun company-semantic--pre-prefix-length (prefix-length)
112 "Sum up the length of all chained symbols before POS.
113 Symbols are chained by \".\" or \"->\"."
114 (save-excursion
115 (let ((pos (point)))
116 (goto-char (- (point) prefix-length))
117 (while (looking-back "->\\|\\." (- (point) 2))
118 (goto-char (match-beginning 0))
119 (skip-syntax-backward "w_"))
120 (- pos (point)))))
121
122 (defun company-semantic--grab ()
123 "Grab the semantic prefix, but return everything before -> or . as length."
124 (let ((symbol (company-grab-symbol)))
125 (when symbol
126 (cons symbol (company-semantic--pre-prefix-length (length symbol))))))
127
128 ;;;###autoload
129 (defun company-semantic (command &optional arg &rest ignored)
130 "`company-mode' completion backend using CEDET Semantic."
131 (interactive (list 'interactive))
132 (cl-case command
133 (interactive (company-begin-backend 'company-semantic))
134 (prefix (and (featurep 'semantic)
135 (semantic-active-p)
136 (memq major-mode company-semantic-modes)
137 (not (company-in-string-or-comment))
138 (or (company-semantic--grab) 'stop)))
139 (candidates (if (and (equal arg "")
140 (not (looking-back "->\\|\\." (- (point) 2))))
141 (company-semantic-completions-raw arg)
142 (company-semantic-completions arg)))
143 (meta (funcall company-semantic-metadata-function
144 (assoc arg company-semantic--current-tags)))
145 (annotation (company-semantic-annotation arg
146 company-semantic--current-tags))
147 (doc-buffer (company-semantic-doc-buffer
148 (assoc arg company-semantic--current-tags)))
149 ;; Because "" is an empty context and doesn't return local variables.
150 (no-cache (equal arg ""))
151 (location (let ((tag (assoc arg company-semantic--current-tags)))
152 (when (buffer-live-p (semantic-tag-buffer tag))
153 (cons (semantic-tag-buffer tag)
154 (semantic-tag-start tag)))))))
155
156 (provide 'company-semantic)
157 ;;; company-semantic.el ends here