]> code.delx.au - gnu-emacs/blob - lisp/progmodes/project.el
; Add NEWS entry for project.el
[gnu-emacs] / lisp / progmodes / project.el
1 ;;; project.el --- Operations on the current project -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2015-2016 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11
12 ;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20 ;;; Commentary:
21
22 ;; This file contains generic infrastructure for dealing with
23 ;; projects, some utility functions, and commands using that
24 ;; infrastructure.
25 ;;
26 ;; The goal is to make it easier for Lisp programs to operate on the
27 ;; current project, without having to know which package handles
28 ;; detection of that project type, parsing its config files, etc.
29 ;;
30 ;; NOTE: The project API is still experimental and can change in major,
31 ;; backward-incompatible ways. Everyone is encouraged to try it, and
32 ;; report to us any problems or use cases we hadn't anticipated, by
33 ;; sending an email to emacs-devel, or `M-x report-emacs-bug'.
34 ;;
35 ;; Infrastructure:
36 ;;
37 ;; Function `project-current', to determine the current project
38 ;; instance, and 3 (at the moment) generic functions that act on it.
39 ;; This list is to be extended in future versions.
40 ;;
41 ;; Utils:
42 ;;
43 ;; `project-combine-directories' and `project-subtract-directories',
44 ;; mainly for use in the abovementioned generics' implementations.
45 ;;
46 ;; Commands:
47 ;;
48 ;; `project-find-regexp' and `project-or-external-find-regexp' use the
49 ;; current API, and thus will work in any project that has an adapter.
50
51 ;;; TODO:
52
53 ;; * Reliably cache the list of files in the project, probably using
54 ;; filenotify.el (if supported) to invalidate. And avoiding caching
55 ;; if it's not available (manual cache invalidation is not nice).
56 ;;
57 ;; * Allow the backend to override the file-listing logic? Maybe also
58 ;; to delegate file name completion to an external tool.
59 ;;
60 ;; * Build tool related functionality. Start with a `project-build'
61 ;; command, which should provide completions on tasks to run, and
62 ;; maybe allow entering some additional arguments. This might
63 ;; be handled better with a separate API, though. Then we won't
64 ;; force every project backend to be aware of the build tool(s) the
65 ;; project is using.
66 ;;
67 ;; * Command to (re)build the tag files in all project roots. To that
68 ;; end, we might need to add a way to provide file whitelist
69 ;; wildcards for each root to limit etags to certain files (in
70 ;; addition to the blacklist provided by ignores), and/or allow
71 ;; specifying additional tag regexps.
72 ;;
73 ;; * UI for the user to be able to pick the current project for the
74 ;; whole Emacs session, independent of the current directory. Or,
75 ;; in the more advanced case, open a set of projects, and have some
76 ;; project-related commands to use them all. E.g., have a command
77 ;; to search for a regexp across all open projects. Provide a
78 ;; history of projects that were opened in the past (storing it as a
79 ;; list of directories should suffice).
80 ;;
81 ;; * Support for project-local variables: a UI to edit them, and a
82 ;; utility function to retrieve a value. Probably useless without
83 ;; support in various built-in commands. In the API, we might get
84 ;; away with only adding a `project-configuration-directory' method,
85 ;; defaulting to the project root the current file/buffer is in.
86 ;; And prompting otherwise. How to best mix that with backends that
87 ;; want to set/provide certain variables themselves, is up for
88 ;; discussion.
89
90 ;;; Code:
91
92 (require 'cl-generic)
93
94 (defvar project-find-functions (list #'project-try-vc)
95 "Special hook to find the project containing a given directory.
96 Each functions on this hook is called in turn with one
97 argument (the directory) and should return either nil to mean
98 that it is not applicable, or a project instance.")
99
100 ;;;###autoload
101 (defun project-current (&optional maybe-prompt dir)
102 "Return the project instance in DIR or `default-directory'.
103 When no project found in DIR, and MAYBE-PROMPT is non-nil, ask
104 the user for a different directory to look in."
105 (unless dir (setq dir default-directory))
106 (let ((pr (project--find-in-directory dir)))
107 (cond
108 (pr)
109 (maybe-prompt
110 (setq dir (read-directory-name "Choose the project directory: " dir nil t)
111 pr (project--find-in-directory dir))
112 (unless pr
113 (user-error "No project found in `%s'" dir))))
114 pr))
115
116 (defun project--find-in-directory (dir)
117 (run-hook-with-args-until-success 'project-find-functions dir))
118
119 (cl-defgeneric project-roots (project)
120 "Return the list of directory roots of the current project.
121
122 Most often it's just one directory which contains the project
123 build file and everything else in the project. But in more
124 advanced configurations, a project can span multiple directories.
125
126 The directory names should be absolute.")
127
128 ;; FIXME: Add MODE argument, like in `ede-source-paths'?
129 (cl-defgeneric project-external-roots (_project)
130 "Return the list of external roots for PROJECT.
131
132 It's the list of directories outside of the project that are
133 still related to it. If the project deals with source code then,
134 depending on the languages used, this list should include the
135 headers search path, load path, class path, and so on.
136
137 The rule of thumb for whether to include a directory here, and
138 not in `project-roots', is whether its contents are meant to be
139 edited together with the rest of the project."
140 nil)
141
142 (cl-defgeneric project-ignores (_project _dir)
143 "Return the list of glob patterns to ignore inside DIR.
144 Patterns can match both regular files and directories.
145 To root an entry, start it with `./'. To match directories only,
146 end it with `/'. DIR must be one of `project-roots' or
147 `project-external-roots'."
148 (require 'grep)
149 (defvar grep-find-ignored-files)
150 (nconc
151 (mapcar
152 (lambda (dir)
153 (concat dir "/"))
154 vc-directory-exclusion-list)
155 grep-find-ignored-files))
156
157 (defgroup project-vc nil
158 "Project implementation using the VC package."
159 :group 'tools)
160
161 (defcustom project-vc-ignores nil
162 "List ot patterns to include in `project-ignores'."
163 :type '(repeat string)
164 :safe 'listp)
165
166 ;; FIXME: Using the current approach, major modes are supposed to set
167 ;; this variable to a buffer-local value. So we don't have access to
168 ;; the "external roots" of language A from buffers of language B, which
169 ;; seems desirable in multi-language projects, at least for some
170 ;; potential uses, like "jump to a file in project or external dirs".
171 ;;
172 ;; We could add a second argument to this function: a file extension,
173 ;; or a language name. Some projects will know the set of languages
174 ;; used in them; for others, like VC-based projects, we'll need
175 ;; auto-detection. I see two options:
176 ;;
177 ;; - That could be implemented as a separate second hook, with a
178 ;; list of functions that return file extensions.
179 ;;
180 ;; - This variable will be turned into a hook with "append" semantics,
181 ;; and each function in it will perform auto-detection when passed
182 ;; nil instead of an actual file extension. Then this hook will, in
183 ;; general, be modified globally, and not from major mode functions.
184 ;;
185 ;; The second option seems simpler, but the first one has the
186 ;; advantage that the user could override the list of languages used
187 ;; in a project via a directory-local variable, thus skipping
188 ;; languages they're not working on personally (in a big project), or
189 ;; working around problems in language detection (the detection logic
190 ;; might be imperfect for the project in question, or it might work
191 ;; too slowly for the user's taste).
192 (defvar project-vc-external-roots-function (lambda () tags-table-list)
193 "Function that returns a list of external roots.
194
195 It should return a list of directory roots that contain source
196 files related to the current buffer.
197
198 The directory names should be absolute. Used in the VC project
199 backend implementation of `project-external-roots'.")
200
201 (defun project-try-vc (dir)
202 (let* ((backend (ignore-errors (vc-responsible-backend dir)))
203 (root (and backend (ignore-errors
204 (vc-call-backend backend 'root dir)))))
205 (and root (cons 'vc root))))
206
207 (cl-defmethod project-roots ((project (head vc)))
208 (list (cdr project)))
209
210 (cl-defmethod project-external-roots ((project (head vc)))
211 (project-subtract-directories
212 (project-combine-directories
213 (mapcar
214 #'file-name-as-directory
215 (funcall project-vc-external-roots-function)))
216 (project-roots project)))
217
218 (cl-defmethod project-ignores ((project (head vc)) dir)
219 (let* ((root (cdr project))
220 backend)
221 (append
222 (when (file-equal-p dir root)
223 (setq backend (vc-responsible-backend root))
224 (mapcar
225 (lambda (entry)
226 (if (string-match "\\`/" entry)
227 (replace-match "./" t t entry)
228 entry))
229 (vc-call-backend backend 'ignore-completion-table root)))
230 (project--value-in-dir 'project-vc-ignores root)
231 (cl-call-next-method))))
232
233 (defun project-combine-directories (&rest lists-of-dirs)
234 "Return a sorted and culled list of directory names.
235 Appends the elements of LISTS-OF-DIRS together, removes
236 non-existing directories, as well as directories a parent of
237 whose is already in the list."
238 (let* ((dirs (sort
239 (mapcar
240 (lambda (dir)
241 (file-name-as-directory (expand-file-name dir)))
242 (apply #'append lists-of-dirs))
243 #'string<))
244 (ref dirs))
245 ;; Delete subdirectories from the list.
246 (while (cdr ref)
247 (if (string-prefix-p (car ref) (cadr ref))
248 (setcdr ref (cddr ref))
249 (setq ref (cdr ref))))
250 (cl-delete-if-not #'file-exists-p dirs)))
251
252 (defun project-subtract-directories (files dirs)
253 "Return a list of elements from FILES that are outside of DIRS.
254 DIRS must contain directory names."
255 ;; Sidestep the issue of expanded/abbreviated file names here.
256 (cl-set-difference files dirs :test #'file-in-directory-p))
257
258 (defun project--value-in-dir (var dir)
259 (with-temp-buffer
260 (setq default-directory dir)
261 (hack-dir-local-variables-non-file-buffer)
262 (symbol-value var)))
263
264 (declare-function grep-read-files "grep")
265 (declare-function xref-collect-matches "xref")
266 (declare-function xref--show-xrefs "xref")
267 (declare-function xref-backend-identifier-at-point "xref")
268 (declare-function xref--find-ignores-arguments "xref")
269
270 ;;;###autoload
271 (defun project-find-regexp (regexp)
272 "Find all matches for REGEXP in the current project's roots.
273 With \\[universal-argument] prefix, you can specify the directory
274 to search in, and the file name pattern to search for."
275 (interactive (list (project--read-regexp)))
276 (let* ((pr (project-current t))
277 (dirs (if current-prefix-arg
278 (list (read-directory-name "Base directory: "
279 nil default-directory t))
280 (project-roots pr))))
281 (project--find-regexp-in dirs regexp pr)))
282
283 ;;;###autoload
284 (defun project-or-external-find-regexp (regexp)
285 "Find all matches for REGEXP in the project roots or external roots.
286 With \\[universal-argument] prefix, you can specify the file name
287 pattern to search for."
288 (interactive (list (project--read-regexp)))
289 (let* ((pr (project-current t))
290 (dirs (append
291 (project-roots pr)
292 (project-external-roots pr))))
293 (project--find-regexp-in dirs regexp pr)))
294
295 (defun project--read-regexp ()
296 (read-regexp "Find regexp"
297 (xref-backend-identifier-at-point (xref-find-backend))))
298
299 (defun project--find-regexp-in (dirs regexp project)
300 (require 'grep)
301 (let* ((files (if current-prefix-arg
302 (grep-read-files regexp)
303 "*"))
304 (xrefs (cl-mapcan
305 (lambda (dir)
306 (xref-collect-matches regexp files dir
307 (project-ignores project dir)))
308 dirs)))
309 (unless xrefs
310 (user-error "No matches for: %s" regexp))
311 (xref--show-xrefs xrefs nil)))
312
313 (defun project-find-file ()
314 (interactive)
315 (let* ((pr (project-current t))
316 (dirs (project-roots pr)))
317 (project--find-file-in dirs pr)))
318
319 (defun project-or-external-find-file ()
320 (interactive)
321 (let* ((pr (project-current t))
322 (dirs (append
323 (project-roots pr)
324 (project-external-roots pr))))
325 (project--find-file-in dirs pr)))
326
327 ;; FIXME: Uniquely abbreviate the roots?
328 (defun project--find-file-in (dirs project)
329 (let* ((all-files
330 (cl-mapcan
331 (lambda (dir)
332 (let ((command
333 (format "%s %s %s -type f -print0"
334 find-program
335 dir
336 (xref--find-ignores-arguments
337 (project-ignores project dir)
338 (expand-file-name dir)))))
339 (split-string (shell-command-to-string command) "\0" t)))
340 dirs))
341 (table (lambda (string pred action)
342 (cond
343 ((eq action 'metadata)
344 '(metadata . ((category . project-file))))
345 (t
346 (complete-with-action action all-files string pred))))))
347 (find-file
348 (completing-read "Find file: " table nil t))))
349
350 (provide 'project)
351 ;;; project.el ends here