Changed comments
[elinstall.git] / elinstall.el
blobae9fb31cd4e31776480186c89222540971a26728
1 ;;;_ elinstall.el --- Automatically and flexibly install elisp files
3 ;;;_. Headers
4 ;;;_ , License
5 ;; Copyright (C) 2010 Tom Breton (Tehom)
7 ;; Author: Tom Breton (Tehom) <tehom@panix.com>
8 ;; Keywords: maint, tools, internal
10 ;; This file is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; This file is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24 ;;;_ , Version
25 ;;Version: 1.0
27 ;;;_ , Commentary:
29 ;; Entry points:
30 ;; elinstall Use this for overall loading
32 ;; elinstall-arrange-preload - Use this for non-autogenerated
33 ;; files that need to be linked in.
35 ;; elinstall-update-directory-autoloads
36 ;; elinstall-update-file-autoloads
38 ;;;_ , Requires
40 (require 'autoload)
41 (require 'pp)
42 (require 'cus-edit) ;;Because we save "installedness" manually
43 (require 'byte-compile nil t) ;;
46 ;;;_. Body
47 ;;;_ , Customizations
48 ;;;_ . Group
49 (defgroup elinstall
50 '()
51 "Customizations for elinstall"
52 :group 'development)
53 ;;;_ . elinstall-default-priority
54 (defcustom elinstall-default-priority
56 "Default priority for site-start"
57 :group 'elinstall
58 :type 'integer)
59 ;;;_ . elinstall-default-preload-target
60 (defcustom elinstall-default-preload-target
61 "~/.emacs.d/site-start.d/"
62 "Default preload-target for registering autoloads"
63 :group 'elinstall
64 :type
65 '(choice
66 (const "~/.emacs.d/site-start.d/")
67 (const "/etc/emacs/site-start.d/")
68 (directory "" )
69 (const nil)
70 (const 'dot-emacs)))
71 ;;;_ . elinstall-restrain-install
72 (defcustom elinstall-restrain-install '()
73 "Restrain elinstall for specific packages"
74 :group 'elinstall
75 :type
76 '(repeat
77 (list
78 (choice :format "%[%t%]: %v"
79 (string :tag "Package name")
80 (const :tag "All packages" t))
81 (repeat :tag "Actions to restrain:"
82 (group
83 (choice
84 (const install)
85 (const autoloads)
86 (const byte-compile)
87 (const preloads)
88 (const load-path)
89 (const info-path)
90 (const :tag "Use as default" t))
91 (choice
92 (const
93 :tag "Do this unless it's up to date"
94 update)
95 (const
96 :tag "Use the package spec for this"
98 (const
99 :tag "Don't do this at all"
100 nil)
101 (const
102 :tag "Always ask."
103 ask)
104 (const
105 :tag "Ask only when it's up-to-date."
106 ask-for-old)
107 (const
108 :tag "Do everything even if it's up to date."
109 always)))))))
112 ;;;_ . elinstall-already-installed
113 (with-no-warnings
114 (defcustom elinstall-already-installed
116 "(AUTOMATIC) Things that have already been installed.
117 This exists for recording what has been installed.
119 Though it's saved as customizable, user interaction is not
120 contemplated." ))
121 ;;Tell the byte-compiler it's a variable.
122 (defvar elinstall-already-installed)
123 ;;;_ , Types
124 ;;;_ . elinstall-stages
125 (defstruct (elinstall-stages
126 (:constructor elinstall-make-stages)
127 (:conc-name elinstall-stages->)
128 (:copier nil))
129 "The elinstall stages"
130 build-deffiles
131 run-tests
132 byte-compile
133 arrange-preloads)
134 ;;;_ , Data
135 ;;;_ . Regular expressions
136 ;;;_ , elinstall-elisp-regexp
137 (defconst elinstall-elisp-regexp
138 (let ((tmp nil))
139 (dolist
140 (suf (get-load-suffixes))
141 (unless (string-match "\\.elc" suf) (push suf tmp)))
142 (concat "^[^=.].*" (regexp-opt tmp t) "\\'"))
143 "Regular expression that matches elisp files" )
144 ;;;_ , Utilities
145 ;;;_ . elinstall-file-mod-time
146 (defsubst elinstall-file-mod-time (file)
147 "Return the modification time of FILE"
148 (nth 5 (file-attributes file)))
150 ;;;_ . elinstall-directory-true-name
151 (defun elinstall-directory-true-name ()
152 "Get the true name of the directory the calling code lives in.
153 CAUTION: This is sensitive to where it's called. That's the point of it."
154 (file-name-directory
155 (if load-file-name
156 (file-truename load-file-name)
157 (file-truename buffer-file-name))))
158 ;;;_ . Checking installedness
159 ;;;_ , elinstall-get-installation-record
160 (defun elinstall-get-installation-record (project-name)
161 "Return the installation record for PROJECT-NAME."
163 (assoc project-name elinstall-already-installed))
165 ;;;_ , elinstall-already-installed
166 (defun elinstall-already-installed (project-name)
167 "Return non-nil if PROJECT-NAME has been installed."
168 (elinstall-get-installation-record project-name))
170 ;;;_ , elinstall-record-installed
171 (defun elinstall-record-installed (project-name &optional version)
172 "Record that PROJECT-NAME has been installed."
173 (let
174 ((new-item
175 (list
176 project-name
177 (or version "0")
178 (current-time)
179 'installed))
180 (old-item
181 (elinstall-get-installation-record project-name))
182 (print-length nil)
183 (print-level nil))
184 (when old-item
185 (setq elinstall-already-installed
186 (delete old-item elinstall-already-installed)))
187 (push new-item elinstall-already-installed)
188 (customize-save-variable
189 'elinstall-already-installed
190 elinstall-already-installed
191 "Set by elinstall-record-installed")))
192 ;;;_ . Finding deffiles
193 ;;;_ , elinstall-expand-deffile-name
194 (defun elinstall-expand-deffile-name (deffile)
195 "Expand DEFFILE autoload.el's way."
197 (expand-file-name (or deffile "loaddefs.el")
198 (expand-file-name "lisp"
199 source-directory)))
200 ;;;_ . Checking restraint specs
201 ;;;_ , elinstall-call-with-restraints
202 (defun elinstall-call-with-restraints (restraints package func &rest args)
203 "Call FUNC with ARGS, in scope of RESTRAINTS.
204 RESTRAINTS is a list of package restraints. User restraints for the
205 given package will also be applied in scope.
207 PACKAGE can be `t' or a string naming a package."
209 (let*
210 ((elinstall:*pkg-restraints* restraints)
211 (elinstall:*user-restraints*
212 (let
213 ((cell
215 (assoc package elinstall-restrain-install)
216 (assoc t elinstall-restrain-install))))
217 (if cell
218 (second cell)
219 '()))))
220 (declare (special
221 elinstall:*pkg-restraints*
222 elinstall:*user-restraints*))
223 (apply func args)))
224 ;;;_ , elinstall-proceed-p
225 (defun elinstall-proceed-p
226 (topic message-params &optional already-p)
227 "Return non-nil if actions on TOPIC should proceed.
228 Call this transitively only thru `elinstall-call-with-restraints'.
229 TOPIC is a symbol indicating the topic, such as `byte-compile'.
230 MESSAGE-PARAMS is a cons of:
231 * A list of format strings:
232 * To ask whether to do this action
233 * To ask whether to redo this action, for `ask-for-old'
234 * To report that this action was skipped because already done.
235 * The arguments to the formatter.
236 ALREADY-P is an extended boolean whether the task has been done
237 before, if caller can tell."
239 (check-type topic symbol)
240 (declare (special
241 elinstall:*pkg-restraints*
242 elinstall:*user-restraints*))
243 (unless (and
244 (boundp 'elinstall:*pkg-restraints*)
245 (boundp 'elinstall:*user-restraints*))
246 (error "elinstall-proceed-p called out of scope"))
248 (destructuring-bind
249 ((ask-prompt &optional redo-prompt noredo-msg) &rest message-args)
250 message-params
251 (let*
252 ( ;;Get the applicable cell. We look in several places.
253 (cell
255 (assq topic elinstall:*user-restraints*)
256 (assq t elinstall:*user-restraints*)))
257 (cell
258 ;;`t' means use the pkg-restraints value instead.
259 (if
260 (or (not cell) (eq (second cell) t))
262 (assq topic elinstall:*pkg-restraints*)
263 (assq t elinstall:*pkg-restraints*))
264 cell))
265 (treatment
266 ;;Default is to just update.
267 (if cell (second cell) 'update)))
268 (case treatment
269 ((nil)
270 nil)
271 ((t always)
273 (update
274 (if already-p
275 (progn
276 (apply #'message noredo-msg message-args)
277 nil)
279 (ask-for-old
280 (if already-p
281 (y-or-n-p (apply #'format redo-prompt message-args))
283 (ask
284 (y-or-n-p
285 (apply #'format ask-prompt message-args)))))))
287 ;;;_ , Work
288 ;;;_ . Doing actions
290 ;;;_ , Doing autoload actions (adapted from autoload.el)
291 ;;;_ . Utilities about the action list
292 ;;;_ , elinstall-remove-autogen-action
293 (defun elinstall-remove-autogen-action (file actions)
294 "Return ACTIONS minus any add-file-autoloads on FILE removed."
296 (delq nil
297 (mapcar
298 #'(lambda (act)
299 (case (car act)
300 (add-file-autoloads
301 (if (equal file (third act))
303 act))
304 (t act)))
305 actions)))
306 ;;;_ , elinstall-get-autogen-action
307 (defun elinstall-get-autogen-action (file actions)
309 (let
310 ((the-act))
311 (dolist (act actions)
312 (case (car act)
313 (add-file-autoloads
314 (when (equal file (third act))
315 (setq the-act act)))))
316 the-act))
317 ;;;_ . About printing to autoload file
318 ;;;_ , elinstall-insert-section-header
319 (defun elinstall-insert-section-header (outbuf form)
320 "Insert the section-header line,
321 which lists the file name and which functions are in it, etc."
322 (insert generate-autoload-section-header)
323 (prin1 form outbuf)
324 (terpri outbuf)
325 ;; Break that line at spaces, to avoid very long lines.
326 ;; Make each sub-line into a comment.
327 (with-current-buffer outbuf
328 (save-excursion
329 (forward-line -1)
330 (while (not (eolp))
331 (move-to-column 64)
332 (skip-chars-forward "^ \n")
333 (or (eolp)
334 (insert "\n" generate-autoload-section-continuation))))))
336 ;;;_ , elinstall-insert-autoload-section
337 (defun elinstall-insert-autoload-section (text form &optional comment-string)
338 "Insert TEXT into current buffer as an autoload section"
340 (let* (
341 (print-length nil)
342 (print-level nil)
343 ;; This does something in Lucid Emacs.
344 (print-readably t)
345 (float-output-format nil))
347 (elinstall-insert-section-header (current-buffer) form)
348 (when comment-string
349 (insert ";;; " comment-string "\n"))
350 (insert text)
351 (insert generate-autoload-section-trailer)))
353 ;;;_ . Making autoloads
354 ;;;_ , elinstall-make-autoload-action
355 (defun elinstall-make-autoload-action (buf def-file load-path-element full-path)
356 "Return the autoloads for current buffer as a string"
358 ;;We put all the text into a temp buffer, then get that buffer's
359 ;;string.
360 (let
361 ((outbuf
362 (generate-new-buffer " *temp*"))
363 (autoloads-done '())
364 (short-name
365 (file-name-nondirectory full-path))
367 (print-length nil)
368 (print-level nil)
369 ;; Apparently this does something in Lucid Emacs.
370 (print-readably t)
371 (float-output-format nil)
373 ;;load-name relative to a member of load-path.
374 (relative-name
375 (file-name-sans-extension
376 (file-relative-name
377 full-path
378 load-path-element))))
380 (with-current-buffer buf
381 (unwind-protect
382 (save-excursion
383 (save-restriction
384 (widen)
385 (goto-char (point-min))
386 (message "Finding autoloads for %s..." short-name)
387 (while (not (eobp))
388 (skip-chars-forward " \t\n\f")
389 (cond
390 ((looking-at (regexp-quote generate-autoload-cookie))
391 (search-forward generate-autoload-cookie)
392 (skip-chars-forward " \t")
393 (if (eolp)
394 ;; Read the next form and make an autoload.
395 (let* ((form (prog1 (read (current-buffer))
396 (or (bolp) (forward-line 1))))
397 (autoload
398 (make-autoload form relative-name)))
399 (if autoload
400 (push (nth 1 form) autoloads-done)
401 (setq autoload form))
402 (let ((autoload-print-form-outbuf outbuf))
403 (autoload-print-form autoload)))
405 ;; Copy the rest of the line to the output.
406 (princ (buffer-substring
407 (progn
408 ;; Back up over whitespace,
409 ;; to preserve it.
410 (skip-chars-backward " \f\t")
411 (if (= (char-after (1+ (point))) ? )
412 ;; Eat one space.
413 (forward-char 1))
414 (point))
415 (progn (forward-line 1) (point)))
416 outbuf)))
417 ((looking-at ";")
418 ;; Don't read the comment.
419 (forward-line 1))
421 (forward-sexp 1)
422 (forward-line 1))))
423 (message "Finding autoloads for %s...done" short-name))
425 ;;Return this action. The temp buffer's contents is
426 ;;our final string.
427 `(add-file-autoloads
428 ,def-file
429 ,relative-name
430 ,full-path
431 ,(with-current-buffer outbuf (buffer-string))
432 ,autoloads-done))
434 ;;This in unwind-protected
435 (when (buffer-live-p outbuf) (kill-buffer outbuf))))))
438 ;;;_ , elinstall-generate-file-autoloads
440 (defun elinstall-generate-file-autoloads
441 (relative-name full-name text autoloads-done)
442 "Insert at point a loaddefs autoload section for FILE.
443 Autoloads are generated for defuns and defmacros in FILE
444 marked by `generate-autoload-cookie' (which see).
445 If FILE is being visited in a buffer, the contents of the buffer
446 are used.
447 Return non-nil in the case where no autoloads were added at point.
449 FULL-NAME is the absolute name of the file.
450 RELATIVE-NAME is its name respective to some component of load-path."
451 (if (not (equal text ""))
452 ;; Insert the section-header line which lists the file name and
453 ;; which functions are in it, etc.
454 (elinstall-insert-autoload-section
455 text
456 (list 'autoloads
457 autoloads-done
458 relative-name
459 (autoload-trim-file-name full-name)
460 (elinstall-file-mod-time full-name))
461 (concat
462 "Generated autoloads from "
463 (autoload-trim-file-name full-name)))
466 ;;;_ , elinstall-deffile-insert-autoloads
467 (defun elinstall-deffile-insert-autoloads (file args)
468 "Update the autoloads for FILE in current buffer.
469 Return FILE if there was no autoload cookie in it, else nil.
471 Current buffer must be a loaddef-style file.
473 LOAD-NAME is the absolute name of the file.
474 RELATIVE-NAME is its name respective to some component of load-path."
475 (let (
476 (found nil)
477 (no-autoloads nil))
479 (save-excursion
480 (save-restriction
481 (widen)
482 (goto-char (point-min))
483 ;; Look for the section for FILE
484 (while (and (not found)
485 (search-forward generate-autoload-section-header nil t))
486 (let ((form (autoload-read-section-header)))
487 (cond
488 ((equal (nth 2 form) file)
489 ;; We found the section for this file.
490 (let ((begin (match-beginning 0)))
491 (progn
492 (search-forward generate-autoload-section-trailer)
493 (delete-region begin (point))
494 (setq found t))))
495 ((string< file (nth 2 form))
496 ;; We've come to a section alphabetically later than
497 ;; FILE. We assume the file is in order and so
498 ;; there must be no section for FILE. We will
499 ;; insert one before the section here.
500 (goto-char (match-beginning 0))
501 (setq found 'new)))))
502 (unless found
503 (progn
504 (setq found 'new)
505 ;; No later sections in the file. Put before the last page.
506 (goto-char (point-max))
507 (search-backward "\f" nil t)))
508 (setq no-autoloads
509 (apply #'elinstall-generate-file-autoloads
510 file args))))
512 (if no-autoloads file nil)))
513 ;;;_ . Arranging to add to info-path and load-path
514 ;;;_ , elinstall-generate-add-to-path
515 (defun elinstall-generate-add-to-path (path-element type)
516 "Insert code at point to add PATH-ELEMENT to a path.
517 If TYPE is:
518 * `add-to-load-path', add to load-path
519 * `add-to-info-path', add to Info-additional-directory-list
521 Current buffer must be a loaddef-style file."
522 (let ( (path-symbol
523 (case type
524 (add-to-load-path 'load-path)
525 (add-to-info-path 'Info-additional-directory-list)
526 (t (error "Type not recognized"))))
527 (description
528 (case type
529 (add-to-load-path "load-path")
530 (add-to-info-path "info-path")))
531 (autoloads-done '())
532 (print-length nil)
533 (print-level nil)
534 ;; This does something in Lucid Emacs.
535 (print-readably t)
536 (float-output-format nil))
538 (message "Generating %s additions..." description)
540 (elinstall-insert-autoload-section
541 (pp-to-string
542 `(add-to-list ',path-symbol
543 (expand-file-name
544 ,(file-relative-name path-element)
545 (if load-file-name
546 (file-name-directory
547 (file-truename load-file-name))))))
548 (list type (list path-element) nil nil nil)
549 nil)
550 (message "Generating %s additions...done" description)))
553 ;;;_ , elinstall-deffile-insert-add-to-path
554 (defun elinstall-deffile-insert-add-to-path (path-element type)
555 "Insert code in current buffer to add PATH-ELEMENT to a path.
556 If TYPE is:
557 * `add-to-load-path', add to load-path
558 * `add-to-info-path', add to Info-default-directory-list
560 Current buffer must be a loaddef-style file."
561 (let (
562 (found nil)
563 (no-autoloads nil))
565 (save-excursion
566 (save-restriction
567 (widen)
568 (goto-char (point-min))
569 ;; Look for the section for PATH-ELEMENT
570 (while (and (not found)
571 (search-forward generate-autoload-section-header nil t))
572 (let ((form (autoload-read-section-header)))
573 (cond
574 ((and
575 (equal (nth 0 form) type)
576 (member path-element (nth 1 form)))
578 ;; We found the section for this add.
579 (let ((begin (match-beginning 0)))
580 (progn
581 (search-forward generate-autoload-section-trailer)
582 (delete-region begin (point))
583 (setq found t)))))))
585 (unless found
586 (progn
587 (setq found 'new)
588 ;; No later sections in the file. Put before the last page.
589 (goto-char (point-max))
590 (search-backward "\f" nil t)))
592 (elinstall-generate-add-to-path path-element type)))
594 ;;This never belongs in the no-autoloads section.
595 nil))
596 ;;;_ . elinstall-deffile-insert
598 (defun elinstall-deffile-insert (action)
599 "Insert autoloads etc into current file according to ACTION.
600 The format of ACTION is described in the design docs.
602 Return filename if this action belongs in the no-autoload section."
604 (when action
605 (case (car action)
606 (add-file-autoloads
607 (elinstall-deffile-insert-autoloads
608 (third action)
609 (nthcdr 3 action)))
611 (add-to-load-path
612 (elinstall-deffile-insert-add-to-path
613 (third action)
614 'add-to-load-path)
615 nil)
617 (add-to-info-path
618 (elinstall-deffile-insert-add-to-path
619 (third action)
620 'add-to-info-path)
621 nil)
623 ((preload-file run-tests byte-compile)
624 (error "This case should not come here.")))))
626 ;;;_ . elinstall-prepare-deffile
627 (defun elinstall-prepare-deffile (deffile)
628 "Try to ensure that DEFFILE is available for receiving autoloads"
630 (autoload-ensure-default-file deffile)
631 (with-current-buffer (find-file-noselect deffile)
634 ;; We must read/write the file without any code conversion,
635 ;; but still decode EOLs.
636 (let ((coding-system-for-read 'raw-text))
638 ;; This is to make generated-autoload-file have Unix EOLs, so
639 ;; that it is portable to all platforms.
640 (setq buffer-file-coding-system 'raw-text-unix))
641 (or (> (buffer-size) 0)
642 (error "Autoloads file %s does not exist" buffer-file-name))
643 (or (file-writable-p buffer-file-name)
644 (error "Autoloads file %s is not writable"
645 buffer-file-name))))
647 ;;;_ . elinstall-update-deffile
649 ;;Adapted from autoload.el `update-directory-autoloads'.
651 (defun elinstall-update-deffile (target actions &optional
652 use-load-path force)
654 Update file TARGET with current autoloads as specified by ACTIONS.
655 Also remove any old definitions pointing to libraries that can no
656 longer be found.
658 ACTIONS must be a list of actions (See the format doc). Each one's
659 filename must be relative to some element of load-path.
661 USE-LOAD-PATH is a list to use as load-path. It should include
662 any new load-path that we are arranging to create. If it's not given,
663 load-path itself is used.
665 If FORCE is `t', do it regardless of timestamps etc. (Not implemented)
666 Other non-nil cases of FORCE are reserved for future development.
668 This uses `update-file-autoloads' (which see) to do its work.
669 In an interactive call, you must give one argument, the name
670 of a single directory."
671 (let
673 (use-load-path (or use-load-path load-path))
674 (this-time (current-time))
675 ;;files with no autoload cookies.
676 (no-autoloads nil))
678 (elinstall-prepare-deffile target)
679 (with-current-buffer
680 (find-file-noselect target)
681 (save-excursion
682 (setq actions
683 (elinstall-remove-autogen-action
684 (autoload-trim-file-name target)
685 actions))
687 (goto-char (point-min))
688 (while (search-forward generate-autoload-section-header nil t)
689 (let* ((form (autoload-read-section-header))
690 (file (nth 3 form)))
691 (cond ((and (consp file) (stringp (car file)))
692 ;; This is a list of files that have no
693 ;; autoload cookies.
694 ;; There shouldn't be more than one such entry.
695 ;; Remove the obsolete section.
696 (autoload-remove-section (match-beginning 0))
697 (let ((last-time (nth 4 form)))
698 (dolist (file file)
699 (let ((file-time (elinstall-file-mod-time file)))
700 (when (and file-time
701 (not (time-less-p last-time file-time)))
702 ;; file unchanged
703 (push file no-autoloads)
704 (setq actions
705 (elinstall-remove-autogen-action
706 file actions)))))))
707 ((not (stringp file)))
709 (let
710 ((file-path
711 (locate-library file nil use-load-path)))
712 (cond
713 ;;File doesn't exist, so remove its
714 ;;section.
715 ((not file-path)
716 (autoload-remove-section
717 (match-beginning 0)))
719 ;; File hasn't changed, so do nothing.
720 ((equal
721 (nth 4 form)
722 (elinstall-file-mod-time file-path))
723 nil)
725 (elinstall-deffile-insert
726 (elinstall-get-autogen-action
727 file actions))))
729 (setq actions
730 (elinstall-remove-autogen-action
731 file actions))))))))
733 ;; Remaining actions have no existing autoload sections yet.
734 (setq no-autoloads
735 (append no-autoloads
736 (delq nil (mapcar #'elinstall-deffile-insert actions))))
737 (when no-autoloads
738 ;; Sort them for better readability.
739 (setq no-autoloads (sort no-autoloads 'string<))
740 ;; Add the `no-autoloads' section.
741 (goto-char (point-max))
742 (search-backward "\f" nil t)
743 (elinstall-insert-autoload-section
745 (list 'autoloads nil nil no-autoloads this-time)))
746 (save-buffer))))
748 ;;;_ . elinstall-stage-update-deffiles
749 (defun elinstall-stage-update-deffiles (segment-list force use-load-path)
750 "Update any deffiles mentioned in SEGMENT-LIST.
751 FORCE and USE-LOAD-PATH have the same meaning as in
752 `elinstall-update-deffile'.
754 (mapcar
755 #'(lambda (segment)
756 (let*
757 ((deffile (car segment)))
758 (if (stringp deffile)
759 (elinstall-update-deffile deffile (cdr segment) force
760 use-load-path))))
761 segment-list))
763 ;;;_ , Doing actions to arrange preloads
764 ;;;_ . elinstall-symlink-on-emacs-start
765 (defun elinstall-symlink-on-emacs-start
766 (filename target-basename target-dir &optional priority force)
767 "Symlink to TARGET-BASENAME.el in TARGET-DIR
769 If PRIORITY is given, it will be used as the priority prefix,
770 otherwise elinstall-default-priority will be.
771 PRIORITY must be an integer or nil.
772 If FORCE is `t', do it regardless of timestamps etc.
773 Other non-nil cases of FORCE are reserved for future development."
774 (let*
776 (priority (or priority elinstall-default-priority))
777 (target-name-nodir
778 (format
779 "%d%s.el"
780 priority
781 target-basename))
782 (target
783 (expand-file-name target-name-nodir target-dir)))
786 (cond
787 ;;Path should already exist.
788 ((not
789 (file-exists-p target-dir))
790 (message "The target directory doesn't exist."))
791 ;;Target shouldn't already exist, but if force is given, let
792 ;;user override.
793 ;;$$IMPROVE ME If it is a symlink pointing to the same place,
794 ;;do nothing even on force.
795 ((and
796 (file-exists-p target)
798 (not force)
799 (not
800 (yes-or-no-p
801 (format "Really overwrite %s? " target))))
802 (message "File %s already exists" target)))
805 (make-symbolic-link
806 filename
807 target
808 nil)))))
810 ;;;_ . elinstall-add-to-dot-emacs
811 (defun elinstall-add-to-dot-emacs (dot-emacs-name filename force &rest r)
812 "Add code to load FILENAME to .emacs.
813 FILENAME should not have an extension"
815 ;;Visit .emacs
816 (with-current-buffer (find-file-noselect dot-emacs-name)
817 (save-excursion
818 ;;add at end of file
819 (goto-char (point-max))
820 (insert "\n;;Added by elinstall")
821 (insert "\n;;Consider using my-site-start to manage .emacs\n")
822 (pp `(load ,filename) (current-buffer))
823 (save-buffer))))
826 ;;;_ . elinstall-arrange-preload
827 ;;;###autoload
828 (defun elinstall-arrange-preload (force filename basename &optional priority)
829 "Arrange for FILENAME to be loaded on emacs start.
830 FORCE has its usual meaning.
831 BASENAME and PRIORITY are used as arguments to
832 `elinstall-symlink-on-emacs-start'.
835 (let
836 ((preload-target elinstall-default-preload-target))
838 ;;Dispatch the possibilities.
839 (cond
840 ((eq preload-target 'dot-emacs)
841 (elinstall-add-to-dot-emacs "~/.emacs" filename force))
842 ((stringp preload-target)
843 (elinstall-symlink-on-emacs-start
844 filename basename preload-target priority force))
845 ((null preload-target)
846 (message "Not arranging for preloads"))
848 (message "I don't recognize that")))))
849 ;;;_ . elinstall-stage-arrange-preloads
850 (defun elinstall-stage-arrange-preloads (actions deffiles-used force)
851 "Arrange any preloads mentioned in ACTIONS."
853 (mapcar
854 #'(lambda (act)
855 (case (car act)
856 (preload-file
857 (let*
858 ( (filename
859 (caddr act))
860 (proceed-p
861 (case (second act)
862 ((t) t)
863 ((nil) nil)
864 (if-used
865 (member filename deffiles-used)))))
867 (when proceed-p
868 (apply
869 #'elinstall-arrange-preload
870 force
871 (cddr act)))))
873 (error
874 "elinstall-stage-arrange-preloads: Action not
875 recognized."))) )
876 actions))
879 ;;;_ , Run tests
880 ;;;_ . elinstall-stage-run-tests
881 (defun elinstall-stage-run-tests (actions)
882 "Run any tests mentioned in ACTIONS."
884 (mapcar
885 #'(lambda (act)
886 (case (car act)
887 (run-tests
888 ;;$$WRITE ME - not a high priority right now.
889 nil)
891 (error
892 "elinstall-stage-run-tests: Action not
893 recognized."))) )
894 actions))
897 ;;;_ , Byte compile
898 ;;;_ . elinstall-stage-byte-compile
899 (defun elinstall-stage-byte-compile (actions)
900 "Do any byte-compilation mentioned in ACTIONS."
902 (mapcar
903 #'(lambda (act)
904 (case (car act)
905 ;;$$IMPROVE ME Understand flags to control second
906 ;;argument (whether to load file after
907 ;;compilation)
908 (byte-compile
909 (byte-compile-file (second act)))
911 (error
912 "elinstall-stage-byte-compile: Action not
913 recognized."))) )
914 actions))
915 ;;;_ . Segregating actions
916 ;;;_ , elinstall-remove-empty-segs
917 (defun elinstall-remove-empty-segs (segment-list)
918 "Return SEGMENT-LIST minus any segments that have no actions.
919 Intended only for the deffile stage data."
920 (delq nil
921 (mapcar
922 #'(lambda (segment)
923 (if (cdr segment)
924 segment
925 nil))
926 segment-list)))
928 ;;;_ , elinstall-segregate-actions
929 (defun elinstall-segregate-actions (actions)
930 "Return actions segregated by deffile.
932 Returns a list whose elements are each a cons of:
933 * deffile filename or nil
934 * A list of actions to be done for that deffile."
936 (let
938 (build-deffiles '())
939 (run-tests '())
940 (byte-compile '())
941 (arrange-preloads '()))
943 (dolist (act actions)
944 (when act
945 (case (car act)
946 ((add-file-autoloads
947 add-to-info-path
948 add-to-load-path)
949 (let*
950 ((deffile-name (second act))
951 (cell-already
952 (assoc deffile-name build-deffiles)))
953 (if cell-already
954 ;;There are already actions on this deffile.
955 ;;Splice this action in.
956 (setcdr cell-already
957 (cons act (cdr cell-already)))
958 ;;There are no actions on this deffile. Add a
959 ;;place for them and include this action.
960 (push (list deffile-name act) build-deffiles))))
961 (preload-file
962 (push act arrange-preloads))
963 (run-tests
964 (push act run-tests))
965 (byte-compile
966 (push act byte-compile)))))
968 (elinstall-make-stages
969 :build-deffiles
970 (elinstall-remove-empty-segs build-deffiles)
971 :run-tests
972 run-tests
973 :byte-compile
974 byte-compile
975 :arrange-preloads
976 arrange-preloads)))
977 ;;;_ . Finding actions
978 ;;;_ , Utility
979 ;;;_ . elinstall-dir-has-info
981 ;;$$IMPROVE ME - Can this test be made more precise?
982 (defun elinstall-dir-has-info (dir)
983 "Return non-nil if DIR has info files in it.
984 DIR should be an absolute path."
986 (string-match "/info/" dir)
987 (directory-files dir nil "\\.info\\(-[0-9]+\\)?\\(\\.gz\\)?$")))
988 ;;;_ . elinstall-directory-files
989 (defun elinstall-directory-files (dirname)
990 "Return a list of files in directory DIRNAME, minus certain files.
991 The following files are omitted:
992 * Dot files
993 * Files that match an entry in `block-in-subtree'.
994 Filenames are relative."
995 (declare (special
996 def-file block-in-dir block-in-subtree))
997 (let*
999 ;;Relative filenames of this directory's files.
1000 (all-files
1001 ;; Don't include dot files. If user really wants to
1002 ;;explore one he can use (dir ".NAME") or (file ".NAME")
1003 (directory-files dirname nil "[^\\.]"))
1004 ;;We know our def-file isn't really source so remove it.
1005 ;;We'd have removed it anyways after seeing file local vars.
1006 (all-files
1007 (remove def-file all-files))
1009 (all-files
1010 (delq nil
1011 (mapcar
1012 #'(lambda (filename)
1014 (and
1015 block-in-subtree
1016 (some
1017 #'(lambda (blocked)
1018 (string-match blocked filename))
1019 block-in-subtree))
1021 filename))
1022 all-files))))
1023 all-files))
1026 ;;;_ , Workers
1027 ;;;_ . List of special variables used in this section
1028 ;;load-path-element - The relevant element of load-path
1029 ;;def-file - The file the autoload definitions etc will go into.
1030 ;;add-to-load-path-p - Controls whether to add to load-path.
1031 ;;recurse-dirs-p - Whether to recurse into subdirectories.
1033 ;;block-in-dir - (NOT IMPLEMENTED) List of filenames to reject. They
1034 ;;may include wildcards. They apply wrt the original directory.
1036 ;;block-in-subtree - (NOT IMPLEMENTED) List of filenames to reject.
1037 ;;They may include wildcards. They apply wrt any directory in the
1038 ;;tree. Specifically, in the spec tree, which may differ from the
1039 ;;file subtree.
1040 ;;byte-compile - whether to byte-compile at all, t by default.
1041 ;;autoloads - boolean whether to make autoloads, t by default.
1042 ;;preloads - boolean whether to set up preloads, t by default.
1043 (defconst elinstall-find-actions-control-vars
1044 '(add-to-load-path-p recurse-dirs-p byte-compile
1045 autoloads preloads)
1046 "Control special variables that the find-actions tree recognizes" )
1047 ;;;_ . elinstall-actions-for-source-file
1048 (defun elinstall-actions-for-source-file (filename dir)
1049 "Return a list of actions to do for FILENAME in DIR.
1050 Special variables are as noted in \"List of special variables\"."
1051 (declare (special
1052 load-path-element def-file byte-compile))
1053 (let
1054 ((full-path
1055 (expand-file-name filename dir)))
1056 (when
1057 (and
1058 (file-readable-p full-path)
1059 (not (auto-save-file-name-p full-path)))
1060 ;;$$IMPROVE ME Use more of the control variables.
1061 (let*
1063 (visited (get-file-buffer full-path))
1064 (buf
1065 (or
1066 visited
1067 ;;Visit the file cheaply.
1068 ;;hack-local-variables can give errors.
1069 (ignore-errors (autoload-find-file full-path))))
1070 (def-file
1072 (ignore-errors
1073 (with-current-buffer buf
1074 (if (local-variable-p 'generated-autoload-file)
1075 (elinstall-expand-deffile-name
1076 generated-autoload-file)
1077 nil)))
1078 def-file))
1079 ;;Figure out whether to run some actions, by file local vars.
1080 (autoloads-p
1081 (ignore-errors
1082 (with-current-buffer buf
1083 (not no-update-autoloads))))
1084 (do-compile-p
1085 (and
1086 byte-compile
1087 (featurep 'byte-compile)
1088 (string-match emacs-lisp-file-regexp filename)
1089 (ignore-errors
1090 (with-current-buffer buf
1091 (not no-byte-compile)))
1092 (elinstall-proceed-p 'byte-compile
1093 (list
1094 '( "Compile %s? "
1095 "Recompile %s? "
1096 "Already compiled %s.")
1097 filename)
1098 (let
1099 ((dest (byte-compile-dest-file full-path)))
1100 (and
1101 (file-exists-p dest)
1102 (file-newer-than-file-p full-path dest)))))))
1104 (prog1
1105 (list
1106 (if do-compile-p
1107 `(byte-compile ,full-path)
1108 nil)
1109 (if autoloads-p
1110 (elinstall-make-autoload-action
1111 buf def-file load-path-element full-path)
1112 nil))
1113 (unless visited (kill-buffer-if-not-modified buf)))))))
1114 ;;;_ . elinstall-actions-for-dir
1115 (defun elinstall-actions-for-dir (dirname &optional recurse-dirs-p)
1116 "Make actions for DIR.
1117 Recurse just if RECURSE-DIRS-P"
1118 (declare (special
1119 load-path-element def-file add-to-load-path-p))
1120 ;;This does not treat symlinks specially. $$IMPROVE ME it could
1121 ;;treat/not treat them conditional on control variables.
1122 (let*
1124 (files (elinstall-directory-files dirname))
1126 ;;Relative filenames of elisp source
1127 (elisp-source-files
1128 (delq nil
1129 (mapcar
1130 #'(lambda (filename)
1132 (string-match elinstall-elisp-regexp filename)
1133 filename
1134 nil))
1135 files)))
1137 ;;Absolute filenames of subdirectories.
1138 (sub-dirs
1139 (if recurse-dirs-p
1140 (delq nil
1141 (mapcar
1142 #'(lambda (filename)
1143 (let
1144 ((fn (expand-file-name filename dirname)))
1146 (file-directory-p fn)
1148 nil)))
1149 files))
1150 '()))
1152 (load-path-here-p
1153 (and
1154 elisp-source-files ;;If list is not empty.
1155 add-to-load-path-p))
1156 (load-path-element
1157 (if load-path-here-p
1158 dirname
1159 load-path-element)))
1161 (append
1162 ;;Sometimes arrange to add this directory to load-path.
1163 (if load-path-here-p
1164 `((add-to-load-path
1165 ,def-file
1166 ,load-path-element))
1167 '())
1169 ;;$$IMPROVE ME - be controlled by a control variable.
1170 ;;Sometimes add this directory to info path.
1172 (elinstall-dir-has-info dirname)
1173 `((add-to-info-path
1174 ,def-file
1175 "."))
1176 '())
1178 (apply #'nconc
1179 (mapcar
1180 #'(lambda (filename)
1181 (elinstall-actions-for-source-file
1182 filename
1183 dirname))
1184 elisp-source-files))
1186 (if recurse-dirs-p
1187 (apply #'nconc
1188 (mapcar
1189 #'(lambda (filename)
1190 (elinstall-find-actions-by-spec-x
1192 (expand-file-name
1193 filename
1194 dirname)))
1195 sub-dirs))
1196 '()))))
1198 ;;;_ . elinstall-find-actions-by-spec-x
1200 (defun elinstall-find-actions-by-spec-x (spec dir)
1201 "Return a list of actions to do, controlled by SPEC."
1202 (declare (special
1203 load-path-element def-file add-to-load-path-p
1204 recurse-dirs-p block-in-dir block-in-subtree))
1206 (if (consp spec)
1207 (case (car spec)
1208 (all
1209 ;;(all . SPEC*)
1210 (apply #'nconc
1211 (mapcar
1212 #'(lambda (sub-spec)
1213 (elinstall-find-actions-by-spec-x
1214 sub-spec
1215 dir))
1216 (cdr spec))))
1217 (block-in-subtree
1218 ;;(block-in-subtree (* FN) SPEC)
1219 (let
1220 ((block-in-subtree (second spec)))
1221 (elinstall-find-actions-by-spec-x
1222 (third spec)
1223 dir)))
1225 ;;Rather than trying to bind all control variables each time
1226 ;;thru, we use `set' and `unwind-protect'.
1227 (control
1228 ;;control TYPE DISPOSITION SPEC
1229 (let
1230 ((key (second spec))
1231 old-value)
1232 (if (memq key elinstall-find-actions-control-vars)
1233 (unwind-protect
1234 (progn
1235 (setq old-value (symbol-value key))
1236 (set key (third spec))
1237 (elinstall-find-actions-by-spec-x
1238 (fourth spec)
1239 dir))
1240 (set key old-value))
1241 (error "Unrecognized control variable %s" key))))
1244 (def-file
1245 ;;(def-file FN ARGS SPEC)
1246 (let
1247 ((def-file
1248 (expand-file-name
1249 (second spec)
1250 dir))
1251 (for-preload (third spec)))
1252 (assert (listp for-preload))
1253 (append
1254 (list
1256 (and for-preload (car for-preload))
1257 `(preload-file
1258 ,(car for-preload)
1259 ,def-file
1260 ,@(cdr for-preload))
1261 '()))
1263 (elinstall-find-actions-by-spec-x
1264 (fourth spec) dir))))
1266 (dir
1267 ;;(dir FN)
1268 (elinstall-actions-for-dir
1269 (expand-file-name
1270 (second spec)
1271 dir)
1272 nil))
1274 (file
1275 ;;(file FN)
1276 (elinstall-actions-for-source-file
1277 (second spec) dir))
1280 ;;(in FN SPEC)
1281 (let
1282 ((new-dir
1283 (expand-file-name
1284 (second spec)
1285 dir)))
1287 (elinstall-find-actions-by-spec-x
1288 (third spec)
1289 new-dir)))
1291 (load-path
1292 ;;(load-path SPEC)
1293 (append
1294 `((add-to-load-path ,def-file ,dir))
1295 (let
1296 ((load-path-element dir)
1297 (add-to-load-path-p nil))
1298 (elinstall-find-actions-by-spec-x
1299 (second spec)
1300 dir))))
1302 (matching
1303 ;;(matching PATTERN SPEC)
1304 (apply #'nconc
1305 (mapcar
1306 #'(lambda (dir)
1307 ;;$$PUNT Assume that `block-in-subtree' and
1308 ;;`block-in-dir' aren't matched.
1309 (elinstall-find-actions-by-spec-x
1310 (third spec)
1311 dir))
1312 (directory-files
1313 dir t (second spec)))))
1314 (preload
1315 ;;(preload FN SYM &rest ARGS)
1316 (let
1317 ((key (third spec)))
1319 (and (symbolp key) (symbol-value key))
1320 `((preload-file
1322 ,(expand-file-name (second spec) dir)
1323 ,@(nthcdr 3 spec)))
1324 '()))))
1326 ;;Single symbols
1327 (case spec
1328 (dir
1329 (elinstall-actions-for-dir dir nil))
1330 ((t)
1331 (elinstall-actions-for-dir dir t)))))
1333 ;;;_ . elinstall-find-actions-by-spec
1334 (defun elinstall-find-actions-by-spec
1335 (spec load-path-element dir def-file redo-old)
1336 "Find the list of actions to do according to SPEC."
1338 (let
1340 (def-file-time (elinstall-file-mod-time def-file))
1341 (add-to-load-path-p t)
1342 (recurse-dirs-p t)
1343 (byte-compile t)
1344 (autoloads t)
1345 (preloads t)
1346 (block-in-dir '())
1347 (block-in-subtree '(".git" "RCS" "CVS" "SVN" "^tests\.el")))
1349 (declare (special
1350 load-path-element def-file add-to-load-path-p
1351 recurse-dirs-p byte-compile
1352 block-in-dir block-in-subtree))
1354 (elinstall-find-actions-by-spec-x spec dir)))
1356 ;;;_ . high-level work
1357 ;;;_ , elinstall-get-relevant-load-path
1358 (defun elinstall-get-relevant-load-path (actions)
1360 (delq nil
1361 (mapcar
1362 #'(lambda (act)
1363 (case (car act)
1364 (add-to-load-path
1365 (second act))
1366 (t nil)))
1367 actions)))
1368 ;;;_ , elinstall-get-deffile-list
1369 (defun elinstall-get-deffile-list (stages)
1370 "Get a list of deffile names"
1372 (mapcar
1373 #'car
1374 (elinstall-stages->build-deffiles stages)))
1375 ;;;_ , elinstall-x
1376 (defun elinstall-x (dir spec &optional force)
1377 "High-level worker function to install elisp files."
1378 (let*
1380 ;;This is just the default deffile, spec can override it.
1381 (def-file
1382 (elinstall-expand-deffile-name nil))
1383 (actions
1384 (elinstall-find-actions-by-spec
1385 spec
1388 def-file
1389 (eq force 'redo-old)))
1390 (stages (elinstall-segregate-actions actions))
1391 (use-load-path
1392 (elinstall-get-relevant-load-path
1393 actions)))
1395 (elinstall-stage-update-deffiles
1396 (elinstall-stages->build-deffiles stages)
1397 force
1398 use-load-path)
1399 (elinstall-stage-arrange-preloads
1400 (elinstall-stages->arrange-preloads stages)
1401 (elinstall-get-deffile-list stages)
1402 force)
1403 (elinstall-stage-byte-compile
1404 (elinstall-stages->byte-compile stages))
1406 ;;;_ , elinstall-package
1407 (defun elinstall-package (project-name path spec version-string)
1408 "Install elisp files. See doc for `elinstall'."
1409 (when
1410 (elinstall-proceed-p 'install
1411 (list
1412 '("Install %s? "
1413 "Re-install %s? "
1414 "Already installed %s.")
1415 project-name)
1416 (elinstall-already-installed project-name))
1417 (elinstall-x
1418 path
1419 `(def-file "loaddefs.el" (if-used ,project-name) ,spec)
1420 force)
1421 (elinstall-record-installed project-name version-string)))
1423 ;;;_ , Entry points
1424 ;;;_ . elinstall
1425 ;;;###autoload
1426 (defun elinstall (project-name path spec &optional force version-string)
1427 "Install elisp files.
1428 They need not be a formal package.
1430 Parameters:
1432 PROJECT-NAME - the name of the project
1434 PATH - Path to the project.
1435 Suggestion: Use (elinstall-directory-true-name) to get the real
1436 current directoery name even from loaded files.
1438 SPEC - a spec for the autoloads etc to make. It can be as simple
1439 as `t'.
1441 If FORCE is `t', install a package even if it has already been
1442 installed. If it's a list or `nil', it's treated as a list of
1443 installation restraints. User customizations override this
1444 argument.
1446 VERSION-STRING, if given, must be a string of the version for this package."
1448 (elinstall-call-with-restraints
1449 (if (eq force t)
1450 '((install always))
1451 force)
1452 project-name
1453 #'elinstall-package
1454 project-name path spec version-string))
1456 ;;;_ . elinstall-update-directory-autoloads
1458 ;;;###autoload
1459 (defun elinstall-update-directory-autoloads (dir)
1460 "Update autoloads for directory DIR"
1462 (interactive "DUpdate autoloads for all elisp files from directory: ")
1463 (elinstall-call-with-restraints
1464 '((autoloads t)
1465 (t nil))
1467 #'elinstall-x
1469 '(dir ".")))
1471 ;;;_ . elinstall-update-directory
1472 ;;;###autoload
1473 (defun elinstall-update-directory (dir)
1474 "Update autoloads for directory DIR"
1476 (interactive "DInstall all elisp files from directory: ")
1477 (elinstall-call-with-restraints
1480 #'elinstall-x
1482 '(dir ".")))
1484 ;;;_ . elinstall-update-file-autoloads
1485 ;;;###autoload
1486 (defun elinstall-update-file-autoloads (file)
1487 "Update autoloads for elisp file FILE"
1489 (interactive "fUpdate autoloads for elisp file: ")
1490 (elinstall-call-with-restraints
1493 #'elinstall-x
1494 (file-name-directory file)
1495 `(file ,(file-name-nondirectory file))))
1497 ;;;_ . elinstall-update-file
1498 ;;;###autoload
1499 (defun elinstall-update-file (file)
1500 "Install elisp file FILE"
1502 (interactive "fInstall elisp file: ")
1503 (elinstall-call-with-restraints
1504 '((autoloads t)
1505 (t nil))
1507 #'elinstall-x
1508 (file-name-directory file)
1509 `(file ,(file-name-nondirectory file))))
1511 ;;;_. Footers
1512 ;;;_ , Provides
1514 (provide 'elinstall)
1516 ;;;_ * Local emacs vars.
1517 ;;;_ + Local variables:
1518 ;;;_ + mode: allout
1519 ;;;_ + End:
1521 ;;;_ , End
1522 ;;; elinstall.el ends here