]> code.delx.au - gnu-emacs-elpa/blob - company-cmake.el
More cleanup
[gnu-emacs-elpa] / company-cmake.el
1 ;;; company-cmake.el --- company-mode completion back-end for CMake
2
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
4
5 ;; Author: Chen Bin <chenbin DOT sh AT gmail>
6 ;; Version: 0.2
7
8 ;; This program is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22 ;;
23 ;; company-cmake offers completions for module names, variable names and
24 ;; commands used by CMake. And their descriptions.
25
26 ;;; Code:
27
28 (require 'company)
29 (require 'cl-lib)
30
31 (defgroup company-cmake nil
32 "Completion back-end for CMake."
33 :group 'company)
34
35 (defcustom company-cmake-executable
36 (executable-find "cmake")
37 "Location of cmake executable."
38 :type 'file)
39
40 (defvar company-cmake-executable-arguments
41 '("--help-command-list"
42 "--help-module-list"
43 "--help-variable-list")
44 "The arguments we pass to cmake, separately.
45 They affect which types of symbols we get completion candidates for.")
46
47 (defvar company-cmake--completion-pattern
48 "^\\(%s[a-zA-Z0-9_<>]%s\\)$"
49 "Regexp to match the candidates.")
50
51 (defvar company-cmake-modes '(cmake-mode)
52 "Major modes in which cmake may complete.")
53
54 (defvar company-cmake--candidates-cache nil
55 "Cache for the raw candidates.")
56
57 (defvar company-cmake--meta-command-cache nil
58 "Cache for command arguments to retrieve descriptions for the candidates.")
59
60 (defun company-cmake--replace-tags (rlt)
61 (setq rlt (replace-regexp-in-string
62 "\\(.*\\)<LANG>\\(.*\\)"
63 (mapconcat 'identity '("\\1CXX\\2" "\\1C\\2" "\\1G77\\2") "\n")
64 rlt))
65 (setq rlt (replace-regexp-in-string
66 "\\(.*\\)<CONFIG>\\(.*\\)"
67 (mapconcat 'identity '("\\1DEBUG\\2" "\\1RELEASE\\2"
68 "\\1RELWITHDEBINFO\\2" "\\1MINSIZEREL\\2")
69 "\n")
70 rlt))
71 rlt)
72
73 (defun company-cmake--fill-candidates-cache (arg)
74 "Fill candidates cache if needed."
75 (let (rlt)
76 (unless company-cmake--candidates-cache
77 (setq company-cmake--candidates-cache (make-hash-table :test 'equal)))
78
79 ;; If hash is empty, fill it.
80 (unless (gethash arg company-cmake--candidates-cache)
81 (with-temp-buffer
82 (let ((res 0))
83 (setq res (call-process company-cmake-executable nil t nil arg))
84 (unless (eq 0 res)
85 (message "cmake executable exited with error=%d" res)))
86 (setq rlt (buffer-string)))
87 (setq rlt (company-cmake--replace-tags rlt))
88 (puthash arg rlt company-cmake--candidates-cache))
89 ))
90
91 (defun company-cmake--find-match (pattern line cmd)
92 (let (match)
93 ;; General Flags
94 (if (string-match pattern line)
95 (if (setq match (match-string 1 line))
96 (puthash match cmd company-cmake--meta-command-cache)))
97 match))
98
99 (defun company-cmake--parse (prefix content cmd)
100 (let ((start 0)
101 (pattern (format company-cmake--completion-pattern
102 (regexp-quote prefix)
103 (if (zerop (length prefix)) "+" "*")))
104 (lines (split-string content "\n"))
105 match
106 rlt)
107 (dolist (line lines)
108 (if (setq match (company-cmake--find-match pattern line cmd))
109 (push match rlt)))
110 rlt))
111
112 (defun company-cmake--candidates (prefix)
113 (let (results
114 cmd-opts
115 str)
116
117 (unless company-cmake--meta-command-cache
118 (setq company-cmake--meta-command-cache (make-hash-table :test 'equal)))
119
120 (dolist (arg company-cmake-executable-arguments)
121 (company-cmake--fill-candidates-cache arg)
122 (setq cmd-opts (replace-regexp-in-string "-list$" "" arg) )
123
124 (setq str (gethash arg company-cmake--candidates-cache))
125 (when str
126 (setq results (nconc results
127 (company-cmake--parse prefix str cmd-opts)))))
128 results))
129
130 (defun company-cmake--unexpand-candidate (candidate)
131 (cond
132 ((string-match "^CMAKE_\\(C\\|CXX\\|G77\\)\\(_.*\\)$" candidate)
133 (setq candidate (concat "CMAKE_<LANG>_" (match-string 2 candidate))))
134
135 ;; C flags
136 ((string-match "^\\(.*_\\)IS_GNU\\(C\\|CXX\\|G77\\)$" candidate)
137 (setq candidate (concat (match-string 1 candidate) "IS_GNU<LANG>")))
138
139 ;; C flags
140 ((string-match "^\\(.*_\\)OVERRIDE_\\(C\\|CXX\\|G77\\)$" candidate)
141 (setq candidate (concat (match-string 1 candidate) "OVERRIDE_<LANG>")))
142
143 ((string-match "^\\(.*\\)\\(_DEBUG\\|_RELEASE\\|_RELWITHDEBINFO\\|_MINSIZEREL\\)\\(.*\\)$" candidate)
144 (setq candidate (concat (match-string 1 candidate)
145 "_<CONFIG>"
146 (match-string 3 candidate)))))
147 candidate)
148
149 (defun company-cmake--meta (candidate)
150 (let ((cmd-opts (gethash candidate company-cmake--meta-command-cache))
151 result)
152 (setq candidate (company-cmake--unexpand-candidate candidate))
153
154 ;; Don't cache the documentation of every candidate (command)
155 ;; Cache in this case will cost too much memory.
156 (with-temp-buffer
157 (call-process company-cmake-executable nil t nil cmd-opts candidate)
158 ;; Go to the third line, trim it and return the result.
159 ;; Tested with cmake 2.8.9.
160 (goto-char (point-min))
161 (forward-line 2)
162 (setq result (buffer-substring-no-properties (line-beginning-position)
163 (line-end-position)))
164 (setq result (replace-regexp-in-string "^[ \t\n\r]+" "" result))
165 result)))
166
167 (defun company-cmake--doc-buffer (candidate)
168 (let ((cmd-opts (gethash candidate company-cmake--meta-command-cache)))
169
170 (setq candidate (company-cmake--unexpand-candidate candidate))
171 (with-temp-buffer
172 (call-process company-cmake-executable nil t nil cmd-opts candidate)
173 ;; Go to the third line, trim it and return the doc buffer.
174 ;; Tested with cmake 2.8.9.
175 (goto-char (point-min))
176 (forward-line 2)
177 (company-doc-buffer
178 (buffer-substring-no-properties (line-beginning-position)
179 (point-max))))))
180
181 (defun company-cmake (command &optional arg &rest ignored)
182 "`company-mode' completion back-end for CMake.
183 CMake is a cross-platform, open-source make system."
184 (interactive (list 'interactive))
185 (cl-case command
186 (interactive (company-begin-backend 'company-cmake))
187 (init (when (memq major-mode company-cmake-modes)
188 (unless company-cmake-executable
189 (error "Company found no cmake executable"))))
190 (prefix (and (memq major-mode company-cmake-modes)
191 (not (company-in-string-or-comment))
192 (company-grab-symbol)))
193 (candidates (company-cmake--candidates arg))
194 (meta (company-cmake--meta arg))
195 (doc-buffer (company-cmake--doc-buffer arg))
196 ))
197
198 (provide 'company-cmake)
199 ;;; company-cmake.el ends here