]> rtime.felk.cvut.cz Git - sojka/company-mode.git/blob - company-semantic.el
Combined some ignored error message regular expressions.
[sojka/company-mode.git] / company-semantic.el
1 ;;; company-semantic.el --- a company-mode back-end using CEDET Semantic
2 ;;
3 ;; Copyright (C) 2009 Nikolaj Schumacher
4 ;;
5 ;; This file is part of company 0.2.1.
6 ;;
7 ;; This program is free software; you can redistribute it and/or
8 ;; modify it under the terms of the GNU General Public License
9 ;; as published by the Free Software Foundation; either version 2
10 ;; of the License, or (at your option) any later version.
11 ;;
12 ;; This program is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 (require 'company)
21 (require 'semantic-ia)
22 (eval-when-compile (require 'cl))
23
24 (defcustom company-semantic-metadata-function 'company-semantic-summary-and-doc
25   "*"
26   :group 'company
27   :type 'function)
28
29 (defvar company-semantic-context-regexp
30   "\\(->\\|\\.\\|\\_<\\)\\(\\(\\s_\\|\\sw\\)+\\_>\\=\\)")
31
32 (defun company-semantic-doc-or-summary (tag)
33   (or (semantic-documentation-for-tag tag)
34       (funcall semantic-idle-summary-function tag nil t)))
35
36 (defun company-semantic-summary-and-doc (tag)
37   (let ((doc (semantic-documentation-for-tag tag))
38         (summary (funcall semantic-idle-summary-function tag nil t)))
39     (and (stringp doc)
40          (string-match "\n*\\(.*\\)$" doc)
41          (setq doc (match-string 1 doc)))
42     (concat (funcall semantic-idle-summary-function tag nil t)
43             (when doc
44                   (if (< (+ (length doc) (length summary) 4) (window-width))
45                       " -- "
46                     "\n"))
47             doc)))
48
49 (defun company-semantic-doc-buffer (tag)
50   (let ((doc (semantic-documentation-for-tag tag)))
51     (when doc
52       (with-current-buffer (company-doc-buffer)
53         (insert (funcall semantic-idle-summary-function tag nil t)
54                 "\n"
55                 doc)
56         (current-buffer)))))
57
58 (defsubst company-semantic-completions (prefix)
59   (ignore-errors
60     (let ((completion-ignore-case nil)
61           (context (semantic-analyze-current-context)))
62       (all-completions prefix (semantic-ia-get-completions context (point))))))
63
64 (defun company-semantic (command &optional arg &rest ignored)
65   "A `company-mode' completion back-end using CEDET Semantic."
66   (case command
67     ('prefix (and (memq major-mode '(c-mode c++-mode jde-mode java-mode))
68                   (not (company-in-string-or-comment))
69                   (or (company-grab company-semantic-context-regexp 2) "")))
70     ('candidates (or (company-semantic-completions arg)
71                      (mapcar 'semantic-tag-name
72                              (semantic-analyze-find-tags-by-prefix arg))))
73     ('meta (funcall company-semantic-metadata-function
74                     (semantic-analyze-find-tag arg)))
75     ('doc-buffer (company-semantic-doc-buffer (semantic-analyze-find-tag arg)))
76     ;; because "" is an empty context and doesn't return local variables
77     ('no-cache (equal arg ""))
78     ('location (let ((tag (semantic-analyze-find-tag arg)))
79                  (when (buffer-live-p (semantic-tag-buffer tag))
80                    (cons (semantic-tag-buffer tag)
81                          (semantic-tag-start tag)))))))
82
83 (provide 'company-semantic)
84 ;;; company-semantic.el ends here