1 ;;; filesets.el --- handle group of files
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
6 ;; Author: Thomas Link <sanobast-emacs@yahoo.de>
8 ;; Keywords: filesets convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 (defvar filesets-version
"1.8.4")
28 (defvar filesets-homepage
29 "http://members.a1.net/t.link/CompEmacsFilesets.html")
33 ;; Define filesets, which can be opened or saved with the power of one or
34 ;; two mouse clicks only. A fileset is either a list of files, a file
35 ;; pattern, a base directory and a search pattern (for files), or an
36 ;; inclusion group (i.e. a base file including other files).
39 ;; 1. Put (require 'filesets) and (filesets-init) in your .emacs file.
40 ;; 2. Type ;; M-x filesets-edit or choose "Edit Filesets" from the menu.
41 ;; 3. Save your customizations.
43 ;; Caveat: Fileset names have to be unique.
45 ;; Filesets.el adds a nifty filesets menu to your menubar. If you change
46 ;; your filesets on the fly, don't forget to select "Save Filesets" from
49 ;; Pressing on the first item in the submenu will open all files at once.
50 ;; Define your own function, e.g. browse-url, for opening a fileset's
51 ;; files. Or define external viewers for opening files with other
52 ;; programs. See `filesets-external-viewers'.
54 ;; BTW, if you close a fileset, files, which have been changed, will
55 ;; be silently saved. Change this behavior by setting
56 ;; `filesets-save-buffer-fn'.
58 ;;; Supported modes for inclusion groups (`filesets-ingroup-patterns'):
60 ;; - Emacs-Wiki (simple names only)
70 ;;- better handling of different customization scenarios
72 ;; Data gathering should be better separated from building the menu
73 ;; so that one could (1) use filesets without installing the menu
74 ;; and (2) create new "frontends" to speedbar and others.
76 ;; The functionality to call external viewers should be isolated in
77 ;; an extra package and possibly integrated with the MIME
82 ;; Helpful suggestions (but no significant code) were contributed by
84 ;;- Christoph Conrad (at gmx de)
85 ;;- Christian Ohler (at Informatik Uni-Oldenburg DE)
86 ;;- Richard Stallman aka RMS (at gnu org)
87 ;;- Per Abrahamsen aka abraham (at dina kvl dk)
98 (defvar filesets-menu-cache nil
99 "The whole filesets menu.")
100 (defvar filesets-cache-version nil
101 "Filesets' cached version number.")
102 (defvar filesets-cache-hostname nil
103 "Filesets' cached system name.")
105 (defvar filesets-ingroup-cache nil
106 "A plist containing files and their ingroup data.")
107 (defvar filesets-ingroup-files nil
108 "List of files already processed when searching for included files.")
110 (defvar filesets-has-changed-flag t
111 "Non-nil means some fileset definition has changed.")
112 (defvar filesets-submenus nil
113 "An association list with filesets menu data.")
114 (defvar filesets-updated-buffers nil
115 "A list of buffers with updated menu bars.")
116 (defvar filesets-menu-use-cached-flag nil
117 "Use cached data. See `filesets-menu-ensure-use-cached' for details.")
118 (defvar filesets-update-cache-file-flag nil
119 "Non-nil means the cache needs updating.")
120 (defvar filesets-ignore-next-set-default nil
121 "List of custom variables for which the next `set-default' will be ignored.")
123 (defvar filesets-output-buffer-flag nil
124 "Non-nil means the current buffer is an output buffer created by filesets.
125 Is buffer local variable.")
127 (defvar filesets-verbosity
1
128 "An integer defining the level of verbosity.
129 0 means no messages at all.")
131 (defvar filesets-menu-ensure-use-cached
132 (and (featurep 'xemacs
)
133 (if (fboundp 'emacs-version
>=)
134 (not (emacs-version>= 21 5))))
135 "Make sure (X)Emacs uses filesets' cache.
137 Well, if you use XEmacs (prior to 21.5?) custom.el is loaded after
138 init.el. This means that settings saved in the cache file (see
139 `filesets-menu-cache-file') will be overwritten by custom.el. In order
140 to ensure the use of the cache file, set this variable to t -- which is
141 the default for XEmacs prior to 21.5. If you want to change this value
142 put \"(setq filesets-menu-ensure-use-cached VALUE)\" into your startup
143 file -- before loading filesets.el.
145 So, when should you think about setting this value to t? If filesets.el
146 is loaded before user customizations. Thus, if (require 'filesets)
147 precedes the `custom-set-variables' command or, for XEmacs, if init.el
148 is loaded before custom.el, set this variable to t.")
152 (defun filesets-filter-list (lst cond-fn
)
153 "Remove all elements not conforming to COND-FN from list LST.
154 COND-FN takes one argument: the current element."
155 ; (remove* 'dummy lst :test (lambda (dummy elt)
156 ; (not (funcall cond-fn elt)))))
159 (when (funcall cond-fn elt
)
160 (setq rv
(append rv
(list elt
)))))))
162 (defun filesets-ormap (fsom-pred lst
)
163 "Return the tail of LST for the head of which FSOM-PRED is non-nil."
166 (while (and (not (null fsom-lst
))
168 (if (funcall fsom-pred
(car fsom-lst
))
169 (setq fsom-rv fsom-lst
)
170 (setq fsom-lst
(cdr fsom-lst
))))
173 (defun filesets-some (fss-pred fss-lst
)
174 "Return non-nil if FSS-PRED is non-nil for any element of FSS-LST.
175 Like `some', return the first value of FSS-PRED that is non-nil."
177 (dolist (fss-this fss-lst nil
)
178 (let ((fss-rv (funcall fss-pred fss-this
)))
180 (throw 'exit fss-rv
))))))
181 ;(fset 'filesets-some 'some) ;; or use the cl function
183 (defun filesets-member (fsm-item fsm-lst
&rest fsm-keys
)
184 "Find the first occurrence of FSM-ITEM in FSM-LST.
185 It is supposed to work like cl's `member*'. At the moment only the :test
187 (let ((fsm-test (or (plist-get fsm-keys
':test
)
189 (filesets-ormap (lambda (fsm-this)
190 (funcall fsm-test fsm-item fsm-this
))
192 ;(fset 'filesets-member 'member*) ;; or use the cl function
194 (defun filesets-sublist (lst beg
&optional end
)
195 "Get the sublist of LST from BEG to END - 1."
201 (setq rv
(append rv
(list (nth i lst
))))
205 (defun filesets-select-command (cmd-list)
206 "Select one command from CMD-LIST -- a string with space separated names."
207 (let ((this (shell-command-to-string
208 (format "which --skip-alias %s 2> /dev/null | head -n 1"
212 (file-name-nondirectory (substring this
0 (- (length this
) 1))))))
214 (defun filesets-which-command (cmd)
215 "Call \"which CMD\"."
216 (shell-command-to-string (format "which %s" cmd
)))
218 (defun filesets-which-command-p (cmd)
219 "Call \"which CMD\" and return non-nil if the command was found."
220 (when (string-match (format "\\(/[^/]+\\)?/%s" cmd
)
221 (filesets-which-command cmd
))
224 (defun filesets-message (level &rest args
)
225 "Show a message only if LEVEL is greater or equal then `filesets-verbosity'."
226 (when (<= level
(abs filesets-verbosity
))
227 (apply 'message args
)))
231 (defun filesets-save-config ()
232 "Save filesets' customizations."
234 (customize-save-customized))
236 (defun filesets-reset-fileset (&optional fileset no-cache
)
237 "Reset the cached values for one or all filesets."
239 (setq filesets-submenus
(lax-plist-put filesets-submenus fileset nil
))
240 (setq filesets-submenus nil
))
241 (setq filesets-has-changed-flag t
)
242 (setq filesets-update-cache-file-flag
(or filesets-update-cache-file-flag
245 (defun filesets-set-config (fileset var val
)
246 "Set-default wrapper function."
247 (filesets-reset-fileset fileset
)
248 (set-default var val
))
249 ; (customize-set-variable var val))
250 ; (filesets-build-menu))
252 ;; It seems this is a workaround for the XEmacs issue described in the
253 ;; doc-string of filesets-menu-ensure-use-cached. Under Emacs this is
254 ;; essentially just `set-default'.
255 (defun filesets-set-default (sym val
&optional init-flag
)
256 "Set-default wrapper function used in conjunction with `defcustom'.
257 If SYM is in the list `filesets-ignore-next-set-default', delete
258 it from that list, and return nil. Otherwise, set the value of
259 SYM to VAL and return t. If INIT-FLAG is non-nil, set with
260 `custom-initialize-set', otherwise with `set-default'."
261 (let ((ignore-flag (member sym filesets-ignore-next-set-default
)))
263 (setq filesets-ignore-next-set-default
264 (delete sym filesets-ignore-next-set-default
))
266 (custom-initialize-set sym val
)
267 (set-default sym val
)))
270 (defun filesets-set-default! (sym val
)
271 "Call `filestes-set-default' and reset cached data (i.e. rebuild menu)."
272 (when (filesets-set-default sym val
)
273 (filesets-reset-fileset)))
275 (defun filesets-set-default+ (sym val
)
276 "Call `filestes-set-default' and reset filesets' standard menu."
277 (when (filesets-set-default sym val
)
278 (setq filesets-has-changed-flag t
)))
279 ; (filesets-reset-fileset nil t)))
281 (defvar filesets-data
)
283 (defun filesets-data-set-default (sym val
)
284 "Set the default for `filesets-data'."
285 (if filesets-menu-use-cached-flag
286 (setq filesets-menu-use-cached-flag nil
)
287 (when (default-boundp 'filesets-data
)
288 (let ((modified-filesets
289 (filesets-filter-list val
293 (let ((elt (assoc name filesets-data
)))
295 (not (equal data
(cdr elt
))))))))))
296 (dolist (x modified-filesets
)
297 (filesets-reset-fileset (car x
))))))
298 (filesets-set-default sym val
))
301 (defgroup filesets nil
302 "The fileset swapper."
307 (defcustom filesets-menu-name
"Filesets"
308 "Filesets' menu name."
309 :set
(function filesets-set-default
)
313 (defcustom filesets-menu-path
'("File") ; cf recentf-menu-path
314 "The menu under which the filesets menu should be inserted.
315 See `add-submenu' for documentation."
316 :set
(function filesets-set-default
)
317 :type
'(choice (const :tag
"Top Level" nil
)
318 (sexp :tag
"Menu Path"))
319 :version
"23.1" ; was nil
322 (defcustom filesets-menu-before
"Open File..." ; cf recentf-menu-before
323 "The name of a menu before which this menu should be added.
324 See `add-submenu' for documentation."
325 :set
(function filesets-set-default
)
326 :type
'(choice (string :tag
"Name")
327 (const :tag
"Last" nil
))
328 :version
"23.1" ; was "File"
331 (defcustom filesets-menu-in-menu nil
332 "Use that instead of `current-menubar' as the menu to change.
333 See `add-submenu' for documentation."
334 :set
(function filesets-set-default
)
338 (defcustom filesets-menu-shortcuts-flag t
339 "Non-nil means to prepend menus with hopefully unique shortcuts."
340 :set
(function filesets-set-default
!)
344 (defcustom filesets-menu-shortcuts-marker
"%_"
345 "String for marking menu shortcuts."
346 :set
(function filesets-set-default
!)
350 ;;(defcustom filesets-menu-cnvfp-flag nil
351 ;; "Non-nil means show \"Convert :pattern to :files\" entry for :pattern menus."
352 ;; :set (function filesets-set-default!)
356 (defcustom filesets-menu-cache-file
357 (locate-user-emacs-file "filesets-cache.el")
358 "File to be used for saving the filesets menu between sessions.
359 Set this to \"\", to disable caching of menus.
360 Don't forget to check out `filesets-menu-ensure-use-cached'."
361 :set
(function filesets-set-default
)
364 (put 'filesets-menu-cache-file
'risky-local-variable t
)
366 (defcustom filesets-menu-cache-contents
367 '(filesets-be-docile-flag
370 filesets-ingroup-cache
)
371 "Stuff we want to save in `filesets-menu-cache-file'.
373 Possible uses: don't save configuration data in the main startup files
374 but in filesets's own cache. In this case add `filesets-data' to this
377 There is a second reason for putting `filesets-data' on this list. If
378 you frequently add and remove buffers on the fly to :files filesets, you
379 don't need to save your customizations if `filesets-data' is being
380 mirrored in the cache file. In this case the version in the cache file
381 is the current one, and the version in your startup file will be
382 silently updated later on.
384 If you want caching to work properly, at least `filesets-submenus',
385 `filesets-menu-cache', and `filesets-ingroup-cache' should be in this
388 Don't forget to check out `filesets-menu-ensure-use-cached'."
389 :set
(function filesets-set-default
)
391 (choice :tag
"Variable"
392 (const :tag
"filesets-submenus"
393 :value filesets-submenus
)
394 (const :tag
"filesets-menu-cache"
395 :value filesets-menu-cache
)
396 (const :tag
"filesets-ingroup-cache"
397 :value filesets-ingroup-cache
)
398 (const :tag
"filesets-data"
399 :value filesets-data
)
400 (const :tag
"filesets-external-viewers"
401 :value filesets-external-viewers
)
402 (const :tag
"filesets-ingroup-patterns"
403 :value filesets-ingroup-patterns
)
404 (const :tag
"filesets-be-docile-flag"
405 :value filesets-be-docile-flag
)
406 (sexp :tag
"Other" :value nil
)))
409 (defcustom filesets-cache-fill-content-hooks nil
410 "Hooks to run when writing the contents of filesets' cache file.
412 The hook is called with the cache file as current buffer and the cursor
413 at the last position. I.e. each hook has to make sure that the cursor is
414 at the last position.
416 Possible uses: If you don't want to save `filesets-data' in your normal
417 configuration file, you can add a something like this
420 \(insert (format \"(setq-default filesets-data '%S)\"
426 Don't forget to check out `filesets-menu-ensure-use-cached'."
427 :set
(function filesets-set-default
)
431 (defcustom filesets-cache-hostname-flag nil
432 "Non-nil means cache the hostname.
433 If the current name differs from the cached one,
434 rebuild the menu and create a new cache file."
435 :set
(function filesets-set-default
)
439 (defcustom filesets-cache-save-often-flag nil
440 "Non-nil means save buffer on every change of the filesets menu.
441 If this variable is set to nil and if Emacs crashes, the cache and
442 filesets-data could get out of sync. Set this to t if this happens from
443 time to time or if the fileset cache causes troubles."
444 :set
(function filesets-set-default
)
448 (defcustom filesets-max-submenu-length
25
449 "Maximum length of submenus.
450 Set this value to 0 to turn menu splitting off. BTW, parts of submenus
451 will not be rewrapped if their length exceeds this value."
452 :set
(function filesets-set-default
)
456 (defcustom filesets-max-entry-length
50
457 "Truncate names of splitted submenus to this length."
458 :set
(function filesets-set-default
)
462 (defcustom filesets-browse-dir-function
'dired
463 "A function or command used for browsing directories.
464 When using an external command, \"%s\" will be replaced with the
467 Note: You have to manually rebuild the menu if you change this value."
468 :set
(function filesets-set-default
)
469 :type
'(choice :tag
"Function:"
475 (string :tag
"Arguments"))
476 (function :tag
"Function"
480 (defcustom filesets-open-file-function
'filesets-find-or-display-file
481 "The function used for opening files.
483 `filesets-find-or-display-file' ... Filesets' default function for
484 visiting files. This function checks if an external viewer is defined
485 for a specific file type. Either this viewer, if defined, or
486 `find-file' will be used to visit a file.
488 `filesets-find-file' ... An alternative function that always uses
489 `find-file'. If `filesets-be-docile-flag' is true, a file, which isn't
490 readable, will not be opened.
492 Caveat: Changes will take effect only after rebuilding the menu."
493 :set
(function filesets-set-default
)
494 :type
'(choice :tag
"Function:"
495 (const :tag
"filesets-find-or-display-file"
496 :value filesets-find-or-display-file
)
497 (const :tag
"filesets-find-file"
498 :value filesets-find-file
)
499 (function :tag
"Function"
503 (defcustom filesets-save-buffer-function
'save-buffer
504 "The function used to save a buffer.
505 Caveat: Changes will take effect after rebuilding the menu."
506 :set
(function filesets-set-default
)
507 :type
'(choice :tag
"Function:"
508 (const :tag
"save-buffer"
510 (function :tag
"Function"
514 (defcustom filesets-find-file-delay
515 (if (and (featurep 'xemacs
) gutter-buffers-tab-visible-p
)
518 "Delay before calling `find-file'.
519 This is for calls via `filesets-find-or-display-file'
520 or `filesets-find-file'.
522 Set this to 0, if you don't use XEmacs' buffer tabs."
523 :set
(function filesets-set-default
)
527 (defcustom filesets-be-docile-flag nil
528 "Non-nil means don't complain if a file or a directory doesn't exist.
529 This is useful if you want to use the same startup files in different
530 computer environments."
531 :set
(function filesets-set-default
)
535 (defcustom filesets-sort-menu-flag t
536 "Non-nil means sort the filesets menu alphabetically."
537 :set
(function filesets-set-default
)
541 (defcustom filesets-sort-case-sensitive-flag t
542 "Non-nil means sorting of the filesets menu is case sensitive."
543 :set
(function filesets-set-default
)
547 (defcustom filesets-tree-max-level
3
548 "Maximum scan depth for directory trees.
549 A :tree fileset is defined by a base directory the contents of which
550 will be recursively added to the menu. `filesets-tree-max-level' tells up
551 to which level the directory structure should be scanned/listed,
552 i.e. how deep the menu should be. Try something like
554 \(\"HOME -- only one level\"
555 \(:tree \"~\" \"^[^.].*[^~]$\")
557 \(:filter-dirs-flag t))
558 \(\"HOME -- up to 3 levels\"
559 \(:tree \"~\" \"^[^.].*[^~]$\")
561 \(:filter-dirs-flag t))
563 and it should become clear what this option is about. In any case,
564 including directory trees to the menu can take a lot of memory."
565 :set
(function filesets-set-default
)
569 (defcustom filesets-commands
572 (filesets-cmd-isearch-getargs))
574 multi-isearch-files-regexp
575 (filesets-cmd-isearch-getargs))
578 (filesets-cmd-query-replace-getargs))
579 ("Query Replace (regexp)"
581 (filesets-cmd-query-replace-regexp-getargs))
582 ("Grep <<selection>>"
584 ("-n " filesets-get-quoted-selection
" " "<<file-name>>"))
586 filesets-cmd-shell-command
587 (filesets-cmd-shell-command-getargs)))
588 "Commands to run on filesets.
589 An association list of names, functions, and an argument list (or a
590 function that returns one) to be run on a filesets' files.
592 The argument <file-name> or <<file-name>> (quoted) will be replaced with
594 :set
(function filesets-set-default
+)
595 :type
'(repeat :tag
"Commands"
596 (list :tag
"Definition" :value
("")
598 (choice :tag
"Command"
599 (string :tag
"String")
600 (function :tag
"Function"))
601 (repeat :tag
"Argument List"
602 (choice :tag
"Arguments"
605 (string :tag
"File Name"
606 :value
"<file-name>")
607 (string :tag
"Quoted File Name"
608 :value
"<<file-name>>")
609 (function :tag
"Function"
612 (put 'filesets-commands
'risky-local-variable t
)
614 (defcustom filesets-external-viewers
616 ;; ((ps-cmd (or (and (boundp 'my-ps-viewer) my-ps-viewer)
617 ;; (filesets-select-command "ggv gv")))
618 ;; (pdf-cmd (or (and (boundp 'my-ps-viewer) my-pdf-viewer)
619 ;; (filesets-select-command "xpdf acroread")))
620 ;; (dvi-cmd (or (and (boundp 'my-ps-viewer) my-dvi-viewer)
621 ;; (filesets-select-command "xdvi tkdvi")))
622 ;; (doc-cmd (or (and (boundp 'my-ps-viewer) my-doc-viewer)
623 ;; (filesets-select-command "antiword")))
624 ;; (pic-cmd (or (and (boundp 'my-ps-viewer) my-pic-viewer)
625 ;; (filesets-select-command "gqview ee display"))))
631 `(("^.+\\..?html?$" browse-url
632 ((:ignore-on-open-all t
)))
633 ("^.+\\.pdf$" ,pdf-cmd
634 ((:ignore-on-open-all t
)
635 (:ignore-on-read-text t
)
636 (:constraint-flag
,pdf-cmd
)))
637 ("^.+\\.e?ps\\(.gz\\)?$" ,ps-cmd
638 ((:ignore-on-open-all t
)
639 (:ignore-on-read-text t
)
640 (:constraint-flag
,ps-cmd
)))
641 ("^.+\\.dvi$" ,dvi-cmd
642 ((:ignore-on-open-all t
)
643 (:ignore-on-read-text t
)
644 (:constraint-flag
,dvi-cmd
)))
645 ("^.+\\.doc$" ,doc-cmd
647 (:ignore-on-read-text t
)
648 (:constraint-flag
,doc-cmd
)))
649 ("^.+\\.\\(tiff\\|xpm\\|gif\\|pgn\\)$" ,pic-cmd
650 ((:ignore-on-open-all t
)
651 (:ignore-on-read-text t
)
652 (:constraint-flag
,pic-cmd
)))))
653 "Association list of file patterns and external viewers for use with
654 `filesets-find-or-display-file'.
656 Has the form ((FILE-PATTERN VIEWER PROPERTIES) ...), VIEWER being either a
657 function or a command name as string.
659 Properties is an association list determining filesets' behavior in
660 several conditions. Choose one from this list:
662 :ignore-on-open-all ... Don't open files of this type automatically --
663 i.e. on open-all-files-events or when running commands
665 :capture-output ... capture an external viewer output
667 :constraintp FUNCTION ... use this viewer only if FUNCTION returns non-nil
669 :constraint-flag SEXP ... use this viewer only if SEXP evaluates to non-nil
671 :open-hook HOOK ... run hooks after spawning the viewer -- mainly useful
672 in conjunction with :capture-output
674 :args (FORMAT-STRING or SYMBOL or FUNCTION) ... a list of arguments
675 \(defaults to (list \"%S\")) when using shell commands
677 Avoid modifying this variable and achieve minor speed-ups by setting the
678 variables my-ps-viewer, my-pdf-viewer, my-dvi-viewer, my-pic-viewer.
680 In order to view pdf or rtf files in an Emacs buffer, you could use these:
683 \(\"^.+\\\\.pdf\\\\'\" \"pdftotext\"
684 \((:capture-output t)
685 \(:args (\"%S - | fmt -w \" window-width))
686 \(:ignore-on-read-text t)
687 \(:constraintp (lambda ()
688 \(and \(filesets-which-command-p \"pdftotext\")
689 \(filesets-which-command-p \"fmt\"))))))
690 \(\"^.+\\\\.rtf\\\\'\" \"rtf2htm\"
691 \((:capture-output t)
692 \(:args (\"%S 2> /dev/null | w3m -dump -T text/html\"))
693 \(:ignore-on-read-text t)
694 \(:constraintp (lambda ()
695 \(and (filesets-which-command-p \"rtf2htm\")
696 \(filesets-which-command-p \"w3m\"))))))"
697 :set
(function filesets-set-default
)
698 :type
'(repeat :tag
"Viewer"
699 (list :tag
"Definition"
700 :value
("^.+\\.suffix$" "")
701 (regexp :tag
"Pattern")
702 (choice :tag
"Viewer"
703 (symbol :tag
"Function" :value nil
)
704 (string :tag
"Program" :value
""))
705 (repeat :tag
"Properties"
707 (list :tag
":constraintp"
708 :value
(:constraintp
)
711 (function :tag
"Function"))
712 (list :tag
":constraint-flag"
713 :value
(:constraint-flag
)
715 :value
:constraint-flag
)
716 (sexp :tag
"Symbol"))
717 (list :tag
":ignore-on-open-all"
718 :value
(:ignore-on-open-all t
)
720 :value
:ignore-on-open-all
)
721 (boolean :tag
"Boolean"))
722 (list :tag
":ignore-on-read-text"
723 :value
(:ignore-on-read-text t
)
725 :value
:ignore-on-read-text
)
726 (boolean :tag
"Boolean"))
732 (choice :tag
"Arguments"
733 (string :tag
"String"
735 (symbol :tag
"Symbol"
737 (function :tag
"Function"
739 (list :tag
":open-hook"
744 ; (list :tag ":close-hook"
745 ; :value (:close-hook)
747 ; :value :close-hook)
748 ; (hook :tag "Hook"))
749 (list :tag
":capture-output"
750 :value
(:capture-output t
)
752 :value
:capture-output
)
753 (boolean :tag
"Boolean"))))))
755 (put 'filesets-external-viewers
'risky-local-variable t
)
757 (defcustom filesets-ingroup-patterns
760 (:pattern
"\\\\usepackage\\W*\\(\\[[^\]]*\\]\\W*\\)?{\\W*\\(.+\\)\\W*}")
763 (:get-file-name
(lambda (master file
)
764 (filesets-which-file master
766 (filesets-convert-path-list
767 (or (getenv "MY_TEXINPUTS")
768 (getenv "TEXINPUTS")))))))
770 (:pattern
"\\\\include\\W*{\\W*\\(.+\\)\\W*}")
771 (:get-file-name
(lambda (master file
)
772 (filesets-which-file master
774 (filesets-convert-path-list
775 (or (getenv "MY_TEXINPUTS")
776 (getenv "TEXINPUTS"))))))
779 (:pattern
"\\\\input\\W*{\\W*\\(.+\\)\\W*}")
780 (:stubp
(lambda (a b
) (not (filesets-files-in-same-directory-p a b
))))
781 (:get-file-name
(lambda (master file
)
782 (filesets-which-file master
784 (filesets-convert-path-list
785 (or (getenv "MY_TEXINPUTS")
786 (getenv "TEXINPUTS"))))))
788 ((:name
"Bibliography")
789 (:pattern
"\\\\bibliography\\W*{\\W*\\(.+\\)\\W*}")
790 (:get-file-name
(lambda (master file
)
791 (filesets-which-file master
793 (filesets-convert-path-list
794 (or (getenv "MY_BIBINPUTS")
795 (getenv "BIBINPUTS")))))))))
798 (:pattern
"(require\\W+'\\(.+\\))")
799 (:stubp
(lambda (a b
) (not (filesets-files-in-same-directory-p a b
))))
800 (:get-file-name
(lambda (master file
)
801 (filesets-which-file master
805 (:pattern
"(load\\(-library\\)?\\W+\"\\(.+\\)\")")
807 (:get-file-name
(lambda (master file
)
808 (filesets-which-file master file load-path
))))))
809 ("^\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)$" t
810 (((:pattern
"\\<\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)\\>")
812 (:stubp
(lambda (a b
) (not (filesets-files-in-same-directory-p a b
))))
814 (:get-file-name
(lambda (master file
)
818 (if (boundp 'emacs-wiki-directories
)
819 emacs-wiki-directories
822 "Inclusion group definitions.
824 Define how to find included file according to a file's mode (being
825 defined by a file pattern).
827 A valid entry has the form (FILE-PATTERN REMOVE-DUPLICATES-FLAG
828 CMD-DEF1 ...), CMD-DEF1 being a plist containing the fields :pattern
829 \(mandatory), :name, :get-file-name, :match-number, :scan-depth,
830 :preprocess, :case-sensitive.
832 File Pattern ... A regexp matching the file's name for which the
833 following rules should be applied.
835 Remove Duplicates ... If t, only the first occurrence of an included
836 file is retained. (See below for a full explanation.)
838 :name STRING ... This pattern's name.
840 :pattern REGEXP ... A regexp matching the command. This regexp has to
841 include a group that holds the name of the included file.
843 :get-file-name FUNCTION (default: `filesets-which-file') ... A function
844 that takes two arguments (the path of the master file and the name
845 of the included file) and returns a valid path or nil -- if the
846 subfile can't be found.
848 :match-number INTEGER (default: 1) ... The number of the match/group
849 in the pattern holding the subfile's name. 0 refers the whole
850 match, 1 to the first group.
852 :stubp FUNCTION ... If (FUNCTION MASTER INCLUDED-FILE) returns non-nil,
853 INCLUDED-FILE is a stub -- see below.
855 :stub-flag ... Files of this type are stubs -- see below.
857 :scan-depth INTEGER (default: 0) ... Whether included files should be
858 rescanned. Set this to 0 to disable re-scanning of included file.
860 :preprocess FUNCTION ... A function modifying a buffer holding the
861 master file so that pattern matching becomes easier. This is usually
862 used to narrow a buffer to the relevant region. This function could also
863 be destructive and simply delete non-relevant text.
865 :case-sensitive BOOLEAN (default: nil) ... Whether a pattern is
866 case-sensitive or not.
871 First, a stub is a file that shows up in the menu but will not be
872 included in an ingroup's file listing -- i.e. filesets will never
873 operate on this file automatically. Secondly, in opposition to normal
874 files stubs are not scanned for new inclusion groups. This is useful if
875 you want to have quick access to library headers.
877 In the menu, an asterisk is appended to the stub's name.
882 E.g. File A and file B refer to file X; X refers to A. If
883 you choose not to remove duplicates the tree would look like:
888 As you can see, there is some chance that you run in circles.
889 Nevertheless, up to some degree this could still be what you want.
891 With duplicates removed, it would be:
895 :set
(function filesets-set-default
)
899 :tag
"Definition" :value
("^.+\\.suffix$" t
)
900 (regexp :tag
"File Pattern" :value
"^.+\\.suffix$")
901 (boolean :tag
"Remove Duplicates" :value t
)
902 (repeat :tag
"Commands"
903 (repeat :tag
"Command"
908 (const :format
"" :value
:name
)
909 (string :tag
"String"))
910 (list :tag
":pattern"
911 :value
(:pattern
"\\<CMD\\W*\\(.+\\)\\>")
912 (const :format
"" :value
:pattern
)
913 (regexp :tag
"RegExp"))
914 (list :tag
":get-file-name"
915 :value
(:get-file-name
)
916 (const :format
"" :value
:get-file-name
)
917 (function :tag
"Function"))
918 (list :tag
":match-number"
919 :value
(:match-number
1)
920 (const :format
"" :value
:match-number
)
921 (integer :tag
"Integer"))
922 (list :tag
":stub-flag"
923 :value
(:stub-flag t
)
924 (const :format
"" :value
:stub-flag
)
925 (boolean :tag
"Boolean"))
928 (const :format
"" :value
:stubp
)
929 (function :tag
"Function"))
930 (list :tag
":scan-depth"
931 :value
(:scan-depth
0)
932 (const :format
"" :value
:scan-depth
)
933 (integer :tag
"Integer"))
934 (list :tag
":case-sensitive"
935 :value
(:case-sensitive
)
936 (const :format
"" :value
:case-sensitive
)
937 (boolean :tag
"Boolean"))
938 (list :tag
":preprocess"
940 (const :format
"" :value
:preprocess
)
941 (function :tag
"Function")))))))
943 (put 'filesets-ingroup-patterns
'risky-local-variable t
)
945 (defcustom filesets-data nil
946 "Fileset definitions.
948 A fileset is either a list of files, a file pattern, a base directory
949 and a search pattern (for files), or a base file. Changes to this
950 variable will take effect after rebuilding the menu.
952 Caveat: Fileset names have to be unique.
956 \(:ingroup \"~/Etc/My-Wiki/WikiContents\"))
958 \(:pattern \"~/public_html/\" \"^.+\\\\.html$\")
959 \(:open filesets-find-file))
960 \(\"User Configuration\"
961 \(:files \"~/.xinitrc\"
963 \"~/.bash_profile\"))
965 \(:tree \"~\" \"^[^.].*[^~]$\")
966 \(:filter-dirs-flag t)))
968 `filesets-data' is a list of (NAME-AS-STRING . DEFINITION), DEFINITION
969 being an association list with the fields:
971 :files FILE-1 .. FILE-N ... a list of files belonging to a fileset
973 :ingroup FILE-NAME ... an inclusion group's base file.
975 :tree ROOT-DIR PATTERN ... a base directory and a file pattern
977 :pattern DIR PATTERN ... a base directory and a regexp matching
978 files in that directory. Usually,
979 PATTERN has the form '^REGEXP$'. Unlike
980 :tree, this form does not descend
981 recursively into subdirectories.
983 :filter-dirs-flag BOOLEAN ... is only used in conjunction with :tree.
985 :tree-max-level INTEGER ... recurse into directories this many levels
986 \(see `filesets-tree-max-level' for a full explanation)
988 :dormant-flag BOOLEAN ... non-nil means don't show this item in the
989 menu; dormant filesets can still be manipulated via commands available
990 from the minibuffer -- e.g. `filesets-open', `filesets-close', or
993 :dormant-p FUNCTION ... a function returning :dormant-flag
995 :open FUNCTION ... the function used to open file belonging to this
996 fileset. The function takes a file name as argument
998 :save FUNCTION ... the function used to save file belonging to this
999 fileset; it takes no arguments, but works on the current buffer.
1001 Either :files, :pattern, :tree, or :ingroup must be supplied. :files
1002 overrules :tree, :tree overrules :pattern, :pattern overrules :ingroup,
1003 i.e. these tags are mutually exclusive. The fields :open and :save are
1006 In conjunction with the :tree tag, :save is void. :open refers to the
1007 function used for opening files in a directory, not for opening the
1008 directory. For browsing directories, `filesets-browse-dir-function' is used.
1010 Before using :ingroup, make sure that the file type is already
1011 defined in `filesets-ingroup-patterns'."
1013 :set
(function filesets-data-set-default
)
1015 (cons :tag
"Fileset"
1016 (string :tag
"Name" :value
"")
1019 :tag
"Type" :value nil
1020 (list :tag
"Pattern"
1021 :value
(:pattern
"~/" "^.+\\.suffix$")
1022 (const :format
"" :value
:pattern
)
1023 (directory :tag
"Dir")
1024 (regexp :tag
"Pattern"))
1027 (const :format
"" :value
:files
)
1028 (repeat :tag
"Files" file
))
1029 (list :tag
"Single File"
1031 (const :format
"" :value
:file
)
1033 (list :tag
"Inclusion group"
1034 :value
(:ingroup
"~/")
1035 (const :format
"" :value
:ingroup
)
1036 (file :tag
"File" :value
"~/"))
1037 (list :tag
"Directory Tree"
1038 :value
(:tree
"~/" "^.+\\.suffix$")
1039 (const :format
"" :value
:tree
)
1040 (directory :tag
"Dir")
1041 (regexp :tag
"Pattern"))
1042 (list :tag
"Filter directories"
1043 :value
(:filter-dirs-flag
)
1044 (const :format
"" :value
:filter-dirs-flag
)
1045 (boolean :tag
"Boolean" :value nil
))
1046 (list :tag
"Scanning depth"
1047 :value
(:tree-max-level
3)
1048 (const :format
"" :value
:tree-max-level
)
1049 (integer :tag
"Integer"))
1050 (list :tag
"Verbosity"
1051 :value
(:verbosity
1)
1052 (const :format
"" :value
:verbosity
)
1053 (integer :tag
"Integer"))
1054 (list :tag
"Conceal fileset (Flag)"
1055 :value
(:dormant-flag
)
1056 (const :format
"" :value
:dormant-flag
)
1057 (boolean :tag
"Boolean"))
1058 (list :tag
"Conceal fileset (Function)"
1060 (const :format
"" :value
:dormant-p
)
1061 (function :tag
"Function"))
1062 (list :tag
"Save function"
1064 (const :format
"" :value
:save
)
1065 (function :tag
"Function"))
1066 (list :tag
"Open function"
1068 (const :format
"" :value
:open
)
1069 (function :tag
"Function")))))))
1070 (put 'filesets-data
'risky-local-variable t
)
1073 (defcustom filesets-query-user-limit
15
1074 "Query the user before opening a fileset with that many files."
1075 :set
(function filesets-set-default
)
1079 ;;; Emacs compatibility
1081 (if (featurep 'xemacs
)
1082 (fset 'filesets-error
'error
)
1086 (defun filesets-error (class &rest args
)
1088 (error "%s" (mapconcat 'identity args
" ")))
1092 (defun filesets-filter-dir-names (lst &optional negative
)
1093 "Remove non-directory names from a list of strings.
1094 If NEGATIVE is non-nil, remove all directory names."
1095 (filesets-filter-list lst
1097 (and (not (string-match "^\\.+/$" x
))
1099 (not (string-match "[:/\\]$" x
))
1100 (string-match "[:/\\]$" x
))))))
1102 (defun filesets-conditional-sort (lst &optional access-fn
)
1103 "Return a sorted copy of LST, LST being a list of strings.
1104 If `filesets-sort-menu-flag' is nil, return LST itself.
1106 ACCESS-FN ... function to get the string value of LST's elements."
1107 (if filesets-sort-menu-flag
1108 (let* ((fni (or access-fn
1109 (function identity
)))
1110 (fn (if filesets-sort-case-sensitive-flag
1112 (string< (funcall fni a
)
1115 (string< (upcase (funcall fni a
))
1116 (upcase (funcall fni b
)))))))
1117 (sort (copy-sequence lst
) fn
))
1120 (defun filesets-directory-files (dir &optional
1121 pattern what full-flag match-dirs-flag
)
1122 "Get WHAT (:files or :dirs) in DIR.
1123 If PATTERN is provided return only those entries matching this
1125 If MATCH-DIRS-FLAG is non-nil, also match directory entries.
1126 Return full path if FULL-FLAG is non-nil."
1127 (filesets-message 2 "Filesets: scanning %S" dir
)
1129 ((file-exists-p dir
)
1132 (dolist (this (file-name-all-completions "" dir
))
1134 ((string-match "^\\.+/$" this
)
1136 ((string-match "[:/\\]$" this
)
1137 (when (or (not match-dirs-flag
)
1139 (string-match pattern this
))
1140 (filesets-message 5 "Filesets: matched dir %S with pattern %S"
1142 (setq dirs
(cons this dirs
))))
1144 (when (or (not pattern
)
1145 (string-match pattern this
))
1146 (filesets-message 5 "Filesets: matched file %S with pattern %S"
1148 (setq files
(cons (if full-flag
1149 (concat (file-name-as-directory dir
) this
)
1153 ((equal what
':dirs
)
1154 (filesets-conditional-sort dirs
))
1155 ((equal what
':files
)
1156 (filesets-conditional-sort files
))
1158 (append (filesets-conditional-sort files
)
1159 (filesets-conditional-sort dirs
))))))
1160 (filesets-be-docile-flag
1161 (filesets-message 1 "Filesets: %S doesn't exist" dir
)
1164 (filesets-error 'error
"Filesets: " dir
" does not exist"))))
1166 (defun filesets-quote (txt)
1167 "Return TXT in quotes."
1168 (concat "\"" txt
"\""))
1170 (defun filesets-get-selection ()
1171 "Get the text between mark and point -- i.e. the selection or region."
1175 (buffer-substring (min m p
) (max m p
))
1176 (filesets-error 'error
"No selection."))))
1178 (defun filesets-get-quoted-selection ()
1179 "Return the currently selected text in quotes."
1180 (filesets-quote (filesets-get-selection)))
1182 (defun filesets-get-shortcut (n)
1183 "Create menu shortcuts based on number N."
1184 (let ((n (mod (- n
1) 51)))
1186 ((not filesets-menu-shortcuts-flag
)
1189 (concat (number-to-string n
) " "))
1191 (format "%c " (+ 87 n
)))
1193 (format "%c " (+ -
3 n
))))))
1195 (defun filesets-files-equalp (a b
)
1196 "Compare two filenames A and B after expansion."
1197 (equal (expand-file-name a
) (expand-file-name b
)))
1199 (defun filesets-files-in-same-directory-p (a b
)
1200 "Compare two filenames A and B after expansion."
1201 (let ((ad (file-name-directory (expand-file-name a
)))
1202 (bd (file-name-directory (expand-file-name b
))))
1205 (defun filesets-convert-path-list (string)
1206 "Return a path-list given as STRING as list."
1208 (mapcar (lambda (x) (file-name-as-directory x
))
1209 (split-string string path-separator
))
1212 (defun filesets-which-file (master filename
&optional path-list
)
1213 "Search for a FILENAME relative to a MASTER file in PATH-LIST."
1214 (let ((f (concat (file-name-directory master
)
1216 (if (file-exists-p f
)
1220 (let ((dir (file-name-as-directory dir
))
1221 (files (if (file-exists-p dir
)
1222 (filesets-directory-files dir nil
':files
)
1224 (filesets-some (lambda (file)
1225 (if (equal filename
(file-name-nondirectory file
))
1232 (defun filesets-eviewer-get-props (entry)
1233 "Get ENTRY's (representing an external viewer) properties."
1236 (defun filesets-eviewer-constraint-p (entry)
1237 (let* ((props (filesets-eviewer-get-props entry
))
1238 (constraint (assoc ':constraintp props
))
1239 (constraint-flag (assoc ':constraint-flag props
)))
1242 (funcall (cadr constraint
)))
1244 (eval (cadr constraint-flag
)))
1248 (defun filesets-get-external-viewer (file)
1249 "Find an external viewer for FILE."
1250 (let ((filename (file-name-nondirectory file
)))
1253 (when (and (string-match (nth 0 entry
) filename
)
1254 (filesets-eviewer-constraint-p entry
))
1256 filesets-external-viewers
)))
1258 (defun filesets-get-external-viewer-by-name (name)
1259 "Get the external viewer definition called NAME."
1263 (when (and (string-equal (nth 1 entry
) name
)
1264 (filesets-eviewer-constraint-p entry
))
1266 filesets-external-viewers
)))
1268 (defun filesets-filetype-property (filename event
&optional entry
)
1269 "Return non-nil if a file of a specific type has special flags/tags.
1271 Events (corresponding tag):
1273 on-open-all (:ignore-on-open-all) ... Exclude files of this when opening
1276 on-grep (:ignore-on-read-text) ... Exclude files of this when running
1277 the \"Grep <<selection>>\" command
1279 on-capture-output (:capture-output) ... Capture output of an external viewer
1285 on-close-all ... Not used"
1286 (let ((def (filesets-eviewer-get-props
1288 (filesets-get-external-viewer filename
)))))
1289 (filesets-alist-get def
1291 ((on-open-all) ':ignore-on-open-all
)
1292 ((on-grep) ':ignore-on-read-text
)
1294 ((on-close-all) nil
))
1297 (defun filesets-filetype-get-prop (property filename
&optional entry
)
1298 "Return PROPERTY for filename -- use ENTRY if provided."
1299 (let ((def (filesets-eviewer-get-props
1301 (filesets-get-external-viewer filename
)))))
1303 (filesets-alist-get def property nil t
))))
1305 (defun filesets-reset-filename-on-change ()
1306 "Reset a buffer's filename if the buffer is being modified."
1307 (when filesets-output-buffer-flag
1308 (set-visited-file-name nil t
)))
1310 (defun filesets-spawn-external-viewer (file &optional ev-entry
)
1311 "Start an external viewer for FILE.
1312 Use the viewer defined in EV-ENTRY (a valid element of
1313 `filesets-external-viewers') if provided."
1314 (let* ((file (expand-file-name file
))
1316 (filesets-get-external-viewer file
))))
1318 (let* ((vwr (cadr entry
))
1319 (co-flag (filesets-filetype-get-prop ':capture-output file entry
))
1320 (oh (filesets-filetype-get-prop ':open-hook file entry
))
1321 (args (let ((fmt (filesets-filetype-get-prop ':args file entry
)))
1324 (dolist (this fmt rv
)
1329 ((and (symbolp this
)
1331 (format "%S" (funcall this
)))
1333 (format "%S" this
)))))))
1334 (format "%S" file
))))
1337 ((and (functionp vwr
) co-flag
)
1343 (shell-command-to-string (format "%s %s" vwr args
)))
1345 (shell-command (format "%s %s&" vwr args
))
1349 (switch-to-buffer (format "Filesets: %s %s" vwr file
))
1351 (make-local-variable 'filesets-output-buffer-flag
)
1352 (setq filesets-output-buffer-flag t
)
1353 (set-visited-file-name file t
)
1356 (set-buffer-modified-p nil
)
1357 (setq buffer-read-only t
)
1358 (goto-char (point-min)))
1361 (filesets-error 'error
1362 "Filesets: general error when spawning external viewer"))))
1364 (defun filesets-find-file (file)
1365 "Call `find-file' after a possible delay (see `filesets-find-file-delay').
1366 If `filesets-be-docile-flag' is true, a file, which isn't readable, will
1368 ; (sleep-for filesets-find-file-delay)
1369 (when (or (file-readable-p file
)
1370 (not filesets-be-docile-flag
))
1371 (sit-for filesets-find-file-delay
)
1374 (defun filesets-find-or-display-file (&optional file viewer
)
1375 "Visit FILE using an external VIEWER or open it in an Emacs buffer."
1377 (let* ((file (or file
1378 (read-file-name "Find file: " nil nil viewer
)))
1379 (external-viewer-def (or
1380 (filesets-get-external-viewer-by-name viewer
)
1381 (filesets-get-external-viewer file
))))
1382 (filesets-message 3 "Filesets: view %S using %s" file external-viewer-def
)
1383 (if external-viewer-def
1384 (filesets-spawn-external-viewer file external-viewer-def
)
1385 (filesets-find-file file
))))
1387 (defun filesets-find-file-using ()
1388 "Select a viewer and call `filesets-find-or-display-file'."
1390 (let* ((lst (mapcar (lambda (this)
1391 (let ((a (cadr this
)))
1392 (list (format "%s" a
) a
)))
1393 filesets-external-viewers
))
1394 (viewer (completing-read "Using viewer: " lst nil t
)))
1396 (filesets-find-or-display-file nil
(cadr (assoc viewer lst
))))))
1398 (defun filesets-browser-name ()
1399 "Get the directory browser's name as defined in `filesets-browse-dir-function'."
1401 ((listp filesets-browse-dir-function
)
1402 (car filesets-browse-dir-function
))
1404 filesets-browse-dir-function
)))
1406 (defun filesets-browse-dir (dir)
1407 "Browse DIR using `filesets-browse-dir-function'."
1408 (if (functionp filesets-browse-dir-function
)
1409 (funcall filesets-browse-dir-function dir
)
1410 (let ((name (car filesets-browse-dir-function
))
1411 (args (format (cadr filesets-browse-dir-function
) (expand-file-name dir
))))
1413 (start-process (concat "Filesets:" name
)
1414 "*Filesets external directory browser*"
1417 (defun filesets-get-fileset-name (something)
1418 "Get SOMETHING's name (Don't ask)."
1425 (defun filesets-data-get-name (entry)
1426 "Access to `filesets-data'. Get the ENTRY's name."
1429 (defun filesets-data-get-data (entry)
1430 "Access to `filesets-data'. Get the ENTRY's data section."
1433 (defun filesets-alist-get (alist key
&optional default carp
)
1434 "Get KEY's value in the association list ALIST.
1435 Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil."
1436 (let ((elt (assoc key alist
)))
1445 (defun filesets-data-get (entry key
&optional default carp
)
1446 "Extract the value for KEY in the data part of fileset ENTRY.
1447 Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil."
1448 (filesets-alist-get (filesets-data-get-data entry
) key default carp
))
1450 (defun filesets-data-set (entry key value
)
1451 "Set the VALUE for KEY in the data part of fileset ENTRY."
1452 (let* ((alist (filesets-data-get-data entry
))
1453 (elt (assoc key alist
)))
1456 (setcdr entry
(cons (cons key value
) alist
)))))
1458 (defun filesets-entry-mode (entry)
1459 "Return fileset ENTRY's mode: :files, :file, :tree, :pattern, or :ingroup.
1460 See `filesets-data'."
1461 (let ((data (filesets-data-get-data entry
)))
1466 '(:files
:tree
:pattern
:ingroup
:file
))))
1468 (defun filesets-entry-get-open-fn (fileset-name &optional fileset-entry
)
1469 "Get the open-function for FILESET-NAME.
1470 Use FILESET-ENTRY for finding the open function, if provided."
1471 (filesets-data-get (or fileset-entry
1472 (filesets-get-fileset-from-name fileset-name
))
1473 ':open filesets-open-file-function t
))
1475 (defun filesets-entry-get-save-fn (fileset-name &optional fileset-entry
)
1476 "Get the save-function for FILESET-NAME.
1477 Use FILESET-ENTRY for finding the save function, if provided."
1478 (filesets-data-get (or fileset-entry
1479 (filesets-get-fileset-from-name fileset-name
))
1480 ':save filesets-save-buffer-function t
))
1482 (defun filesets-entry-get-files (entry)
1483 "Get the file list for fileset ENTRY."
1484 (filesets-data-get entry
':files
))
1486 (defun filesets-entry-set-files (entry data
&optional anyways
)
1487 "Set the file list for fileset ENTRY."
1488 (let ((files (filesets-entry-get-files entry
)))
1489 (if (or anyways files
)
1490 (filesets-data-set entry
':files data
))))
1492 (defun filesets-entry-get-verbosity (entry)
1493 "Get verbosity level for fileset ENTRY."
1494 (filesets-data-get entry
':verbosity
1 t
))
1496 (defun filesets-entry-get-file (entry)
1497 "Get the single file for fileset ENTRY."
1498 (filesets-data-get entry
':file nil t
))
1500 (defun filesets-entry-get-pattern (entry)
1501 "Get the base directory + file pattern for fileset ENTRY."
1502 ; (filesets-data-get entry ':pattern nil t))
1503 (filesets-data-get entry
':pattern
))
1505 (defun filesets-entry-get-pattern--pattern (list)
1506 "Get the file pattern for LIST."
1507 (if (= (length list
) 1) ;; for compatibility with filesets < v1.5.5
1508 (file-name-nondirectory (car list
))
1511 (defun filesets-entry-get-pattern--dir (list)
1512 "Get a file pattern's base directory for LIST."
1513 (if (= (length list
) 1) ;; for compatibility with filesets < v1.5.5
1514 (file-name-directory (car list
))
1517 (defun filesets-entry-get-tree (entry)
1518 "Get the tree pattern for fileset ENTRY."
1519 (filesets-data-get entry
':tree
))
1521 (defun filesets-entry-get-dormant-flag (entry)
1522 "Get dormant flag for fileset ENTRY."
1523 (let ((fn (filesets-data-get entry
':dormant-p nil t
)))
1526 (filesets-data-get entry
':dormant-flag nil t
))))
1528 (defun filesets-entry-get-filter-dirs-flag (entry)
1529 "Get filter-dirs-flag for fileset ENTRY."
1530 (filesets-data-get entry
':filter-dirs-flag nil t
))
1532 (defun filesets-entry-get-tree-max-level (entry)
1533 "Get maximal tree scanning depth for fileset ENTRY."
1534 (filesets-data-get entry
':tree-max-level nil t
))
1536 (defun filesets-entry-get-master (entry)
1537 "Get the base file for fileset ENTRY."
1538 (filesets-data-get entry
':ingroup nil t
))
1540 (defun filesets-file-open (open-function file-name
&optional fileset-name
)
1541 "Open FILE-NAME using OPEN-FUNCTION.
1542 If OPEN-FUNCTION is nil, its value will be deduced from FILESET-NAME."
1543 (let ((open-function (or open-function
1544 (filesets-entry-get-open-fn fileset-name
))))
1545 (if (file-readable-p file-name
)
1546 (funcall open-function file-name
)
1547 (message "Filesets: Couldn't open `%s'" file-name
))))
1549 (defun filesets-file-close (save-function buffer
)
1551 First, save the buffer's contents using SAVE-FUNCTION. Then, kill buffer
1552 if `buffer-modified-p' returns nil.
1554 SAVE-FUNCTION takes no argument, but works on the current buffer."
1555 (with-current-buffer buffer
1556 (if (buffer-modified-p)
1557 (funcall save-function
))
1558 (if (not (buffer-modified-p))
1559 (kill-buffer buffer
))))
1561 (defun filesets-get-fileset-from-name (name &optional mode
)
1562 "Get fileset definition for NAME."
1567 (assoc name filesets-data
))))
1571 (defun filesets-cmd-get-def (cmd-name)
1572 "Get `filesets-commands' entry for CMD-NAME."
1573 (assoc cmd-name filesets-commands
))
1575 (defun filesets-cmd-get-args (cmd-name)
1576 (let ((args (let ((def (filesets-cmd-get-def cmd-name
)))
1579 (dolist (this args rv
)
1581 ((and (symbolp this
) (fboundp this
))
1582 (let ((x (funcall this
)))
1583 (setq rv
(append rv
(if (listp x
) x
(list x
))))))
1585 (setq rv
(append rv
(list this
))))))))
1587 (defun filesets-cmd-get-fn (cmd-name)
1588 (let ((def (filesets-cmd-get-def cmd-name
)))
1591 (defun filesets-cmd-show-result (cmd output
)
1592 "Show OUTPUT of CMD (a shell command)."
1593 (pop-to-buffer "*Filesets: Shell Command Output*")
1602 (defun filesets-run-cmd--repl-fn (arg &optional format-fn
)
1603 "Helper function for `filesets-run-cmd'. Apply FORMAT-FN to arg.
1604 Replace <file-name> or <<file-name>> with filename."
1605 (funcall format-fn
(cond
1606 ((equal arg
"<file-name>")
1608 ((equal arg
"<<file-name>>")
1609 (shell-quote-argument (buffer-file-name)))
1613 (defun filesets-run-cmd (&optional cmd-name fileset mode
)
1614 "Run CMD-NAME (see `filesets-commands') on FILESET."
1616 (let* ((cmd-name (or cmd-name
1617 (completing-read "Select command: " filesets-commands
1620 (completing-read "Select fileset: " filesets-data nil t
))))
1621 (when (and cmd-name name
)
1622 (let* ((event (if (equal cmd-name
"Grep <<selection>>")
1625 (files (if (and fileset
1626 (or (equal mode
':ingroup
)
1627 (equal mode
':tree
)))
1628 (filesets-get-filelist fileset mode event
)
1629 (filesets-get-filelist
1630 (filesets-get-fileset-from-name name
)
1633 (let ((fn (filesets-cmd-get-fn cmd-name
))
1634 (args (filesets-cmd-get-args cmd-name
)))
1635 (if (memq fn
'(multi-isearch-files multi-isearch-files-regexp
))
1637 (dolist (this files nil
)
1640 (let ((buffer (filesets-find-file this
)))
1642 (goto-char (point-min))
1648 (dolist (this args txt
)
1651 (filesets-run-cmd--repl-fn
1654 (if (equal txt
"") "" " ")
1655 (format "%s" this
))))))))
1656 (cmd (concat fn
" " args
)))
1657 (filesets-cmd-show-result
1658 cmd
(shell-command-to-string cmd
))))
1662 (dolist (this args argl
)
1665 (filesets-run-cmd--repl-fn
1668 (apply fn args
)))))))))))))))))
1670 (defun filesets-get-cmd-menu ()
1671 "Create filesets command menu."
1673 .
,(mapcar (lambda (this)
1674 (let ((name (car this
)))
1675 `[,name
(filesets-run-cmd ,name
)]))
1676 filesets-commands
)))
1680 (defun filesets-cmd-query-replace-getargs ()
1681 "Get arguments for `query-replace' and `query-replace-regexp'."
1682 (let ((common (query-replace-read-args "Filesets query replace" nil t
)))
1683 (list (nth 0 common
) (nth 1 common
) t nil
(nth 2 common
) nil
1684 multi-query-replace-map
)))
1686 (defun filesets-cmd-query-replace-regexp-getargs ()
1687 "Get arguments for `query-replace' and `query-replace-regexp'."
1688 (let ((common (query-replace-read-args "Filesets query replace" t t
)))
1689 (list (nth 0 common
) (nth 1 common
) t t
(nth 2 common
) nil
1690 multi-query-replace-map
)))
1692 (defun filesets-cmd-isearch-getargs ()
1693 "Get arguments for `multi-isearch-files' and `multi-isearch-files-regexp'."
1694 (and (boundp 'files
) (list files
)))
1696 (defun filesets-cmd-shell-command-getargs ()
1697 "Get arguments for `filesets-cmd-shell-command'."
1698 (let* ((arg (read-string "Shell command (%s = file): "
1700 'shell-command-history
)))
1703 (defun filesets-cmd-shell-command (txt)
1704 "Wrapper function for `shell-command'."
1705 (let ((ok (if (buffer-modified-p)
1706 (let ((ok (y-or-n-p "Save buffer? ")))
1712 (let ((cmd (format txt
(shell-quote-argument (buffer-file-name)))))
1713 (message "Filesets: %s" cmd
)
1714 (filesets-cmd-show-result cmd
1715 (shell-command-to-string cmd
))))))
1719 (defun filesets-get-filelist (entry &optional mode event
)
1720 "Get all files for fileset ENTRY.
1721 Assume MODE (see `filesets-entry-mode'), if provided."
1722 (let* ((mode (or mode
1723 (filesets-entry-mode entry
)))
1726 (filesets-entry-get-files entry
))
1728 (list (filesets-entry-get-file entry
)))
1730 (let ((entry (expand-file-name
1733 (filesets-entry-get-master entry
)))))
1734 (cons entry
(filesets-ingroup-cache-get entry
))))
1736 (let ((dir (nth 0 entry
))
1737 (patt (nth 1 entry
)))
1738 (filesets-directory-files dir patt
':files t
)))
1740 (let ((dirpatt (filesets-entry-get-pattern entry
)))
1742 (let ((dir (filesets-entry-get-pattern--dir dirpatt
))
1743 (patt (filesets-entry-get-pattern--pattern dirpatt
)))
1744 ;;(filesets-message 3 "Filesets: scanning %s" dirpatt)
1745 (filesets-directory-files dir patt
':files t
))
1746 ;; (message "Filesets: malformed entry: %s" entry)))))))
1747 (filesets-error 'error
"Filesets: malformed entry: "
1749 (filesets-filter-list fl
1751 (not (filesets-filetype-property file event
))))))
1753 (defun filesets-open (&optional mode name lookup-name
)
1754 "Open the fileset called NAME.
1755 Use LOOKUP-NAME for searching additional data if provided."
1757 (let* ((name (or name
1758 (completing-read "Open fileset: " filesets-data nil t
)))
1759 (fileset (filesets-get-fileset-from-name name mode
))
1760 (lookup-fs (if lookup-name
1761 (filesets-get-fileset-from-name lookup-name
)
1763 (mode (or mode
(filesets-entry-mode lookup-fs
))))
1765 (let* ((files (filesets-get-filelist fileset mode
'on-open-all
))
1767 (open-function (filesets-entry-get-open-fn nil lookup-fs
)))
1768 (if (or (<= n filesets-query-user-limit
)
1769 (y-or-n-p (format "Filesets: Open all %d files in %s? "
1771 (dolist (this files nil
)
1772 (filesets-file-open open-function this
))
1773 (message "Filesets: cancelled")))
1774 (filesets-error 'error
"Filesets: Unknown fileset: " name
))))
1776 (defun filesets-close (&optional mode name lookup-name
)
1777 "Close all buffers belonging to the fileset called NAME.
1778 Use LOOKUP-NAME for deducing the save-function, if provided."
1780 (let* ((name (or name
1781 (completing-read "Close fileset: " filesets-data nil t
)))
1782 (fileset (filesets-get-fileset-from-name name mode
))
1783 (lookup-fs (if lookup-name
1784 (filesets-get-fileset-from-name lookup-name
)
1786 (mode (or mode
(filesets-entry-mode lookup-fs
))))
1788 (let ((files (filesets-get-filelist fileset mode
'on-close-all
))
1789 (save-function (filesets-entry-get-save-fn nil lookup-fs
)))
1790 (dolist (file-name files nil
)
1791 (let* ((buffer (get-file-buffer file-name
)))
1793 (filesets-file-close save-function buffer
)))))
1794 ; (message "Filesets: Unknown fileset: `%s'" name))))
1795 (filesets-error 'error
"Filesets: Unknown fileset: " name
))))
1797 (defun filesets-add-buffer (&optional name buffer
)
1798 "Add BUFFER (or current buffer) to the fileset called NAME.
1799 User will be queried, if no fileset name is provided."
1801 (let* ((buffer (or buffer
1805 (format "Add '%s' to fileset: " buffer
)
1806 filesets-data nil
)))
1807 (entry (or (assoc name filesets-data
)
1809 (format "Fileset %s does not exist. Create it? "
1812 (add-to-list 'filesets-data
(list name
'(:files
)))
1814 "Fileset %s created. Call `M-x filesets-save-config' to save."
1816 (car filesets-data
))))))
1818 (let* ((files (filesets-entry-get-files entry
))
1819 (this (buffer-file-name buffer
))
1820 (inlist (filesets-member this files
1821 :test
'filesets-files-equalp
)))
1824 (message "Filesets: '%s' is already in '%s'" this name
))
1825 ((and (equal (filesets-entry-mode entry
) ':files
)
1827 (filesets-entry-set-files entry
(cons this files
) t
)
1828 (filesets-set-config name
'filesets-data filesets-data
))
1830 (message "Filesets: Can't add '%s' to fileset '%s'" this name
)))))))
1832 (defun filesets-remove-buffer (&optional name buffer
)
1833 "Remove BUFFER (or current buffer) to fileset NAME.
1834 User will be queried, if no fileset name is provided."
1836 (let* ((buffer (or buffer
1840 (format "Remove '%s' from fileset: " buffer
)
1841 filesets-data nil t
)))
1842 (entry (assoc name filesets-data
)))
1844 (let* ((files (filesets-entry-get-files entry
))
1845 (this (buffer-file-name buffer
))
1846 (inlist (filesets-member this files
1847 :test
'filesets-files-equalp
)))
1848 ;;(message "%s %s %s" files this inlist)
1849 (if (and files this inlist
)
1850 (let ((new (list (cons ':files
(delete (car inlist
) files
)))))
1852 (filesets-set-config name
'filesets-data filesets-data
))
1853 (message "Filesets: Can't remove '%s' from fileset '%s'"
1857 (defun filesets-convert-patterns (name)
1858 "Change fileset NAME's mode from :pattern to :files."
1860 (let ((entry (assoc name filesets-data
)))
1862 (let ((pattern (filesets-entry-get-pattern entry
))
1863 (patfiles (filesets-get-filelist entry
':pattern
)))
1866 (filesets-entry-set-files entry patfiles t
)
1867 (filesets-set-config name
'filesets-data filesets-data
)))))))
1869 (defun filesets-edit ()
1870 "Customize `filesets-data'."
1872 (customize-variable 'filesets-data
))
1874 (defun filesets-customize ()
1875 "Customize the filesets group."
1877 (customize-group 'filesets
))
1879 (defun filesets-info ()
1880 "Display filesets's version information."
1882 (if (y-or-n-p (format "Filesets v%s: visit homepage? " filesets-version
))
1883 (filesets-goto-homepage)))
1885 (defun filesets-goto-homepage ()
1886 "Show filesets's homepage."
1888 (browse-url filesets-homepage
))
1890 (defun filesets-remake-shortcut (count submenu
)
1891 "Remake a submenu's shortcut when wrapping long menus."
1892 (let* ((name (concat (filesets-get-shortcut count
)
1893 (substring (elt submenu
0) 2))))
1895 (cons name
(cdr submenu
))
1896 (apply 'vector
(list name
(cdr (append submenu nil
)))))))
1897 ; (vconcat `[,name] (subseq submenu 1)))))
1899 (defun filesets-wrap-submenu (submenu-body)
1900 "Split long submenus."
1901 (let ((bl (length submenu-body
)))
1902 (if (or (= filesets-max-submenu-length
0)
1903 (<= bl filesets-max-submenu-length
))
1906 (factor (ceiling (/ (float bl
)
1907 filesets-max-submenu-length
))))
1908 (do ((data submenu-body
(cdr data
))
1910 (count 0 (+ count factor
)))
1913 ; (let ((sl (subseq submenu-body count
1914 (let ((sl (filesets-sublist submenu-body count
1915 (let ((x (+ count factor
)))
1923 (if (= (length sl
) 1)
1924 (if filesets-menu-shortcuts-flag
1925 (list (filesets-remake-shortcut n
(car sl
)))
1928 (filesets-get-shortcut n
)
1930 (do ((x sl
(cdr x
)))
1932 (let ((y (concat (elt (car x
) 0)
1939 (if filesets-menu-shortcuts-flag
1943 filesets-max-entry-length
)
1945 (substring rv
0 filesets-max-entry-length
)
1951 (defun filesets-get-menu-epilog (something &optional
1952 mode lookup-name rebuild-flag
)
1953 "Get submenu epilog for SOMETHING (usually a fileset).
1954 If mode is :tree or :ingroup, SOMETHING is some weird construct and
1955 LOOKUP-NAME is used as lookup name for retrieving fileset specific settings."
1959 ["Close all files" (filesets-close ',mode
',something
',lookup-name
)]
1960 ["Run Command" (filesets-run-cmd nil
',something
',mode
)]
1961 [,(format "Browse with `%s'" (filesets-browser-name))
1962 (filesets-browse-dir ',(car something
))]
1963 ,@(when rebuild-flag
1964 `(["Rebuild this submenu"
1965 (filesets-rebuild-this-submenu ',lookup-name
)]))))
1968 ["Close all files" (filesets-close ',mode
',something
',lookup-name
)]
1969 ["Run Command" (filesets-run-cmd nil
',something
',mode
)]
1970 ,@(when rebuild-flag
1971 `(["Rebuild this submenu"
1972 (filesets-rebuild-this-submenu ',lookup-name
)]))))
1975 ["Close all files" (filesets-close ',mode
',something
)]
1976 ["Run Command" (filesets-run-cmd nil
',something
',mode
)]
1977 [,(format "Browse with `%s'" (filesets-browser-name))
1978 ,(list 'filesets-browse-dir
1979 (filesets-entry-get-pattern--dir
1980 (filesets-entry-get-pattern
1981 (filesets-get-fileset-from-name something
':pattern
))))]
1982 ; [,(concat (if filesets-menu-shortcuts-flag
1983 ; (concat "Con" filesets-menu-shortcuts-marker "vert")
1985 ; " :pattern to :files")
1986 ; ,(list (function filesets-convert-patterns) something)]
1987 ,@(when rebuild-flag
1988 `(["Rebuild this submenu"
1989 (filesets-rebuild-this-submenu ',lookup-name
)]))))
1992 [,(concat "Close all files") (filesets-close ',mode
',something
)]
1993 ["Run Command" (filesets-run-cmd nil
',something
',mode
)]
1994 ["Add current buffer"
1995 (filesets-add-buffer ',something
(current-buffer))]
1996 ["Remove current buffer"
1997 (filesets-remove-buffer ',something
(current-buffer))]
1998 ,@(when rebuild-flag
1999 `(["Rebuild this submenu"
2000 (filesets-rebuild-this-submenu ',lookup-name
)]))))
2002 (filesets-error 'error
"Filesets: malformed definition of " something
))))
2004 (defun filesets-ingroup-get-data (master pos
&optional fun
)
2005 "Access to `filesets-ingroup-patterns'. Extract data section."
2006 (let ((masterfile (file-name-nondirectory master
))
2007 (fn (or fun
(lambda (a b
)
2010 (string-match a b
))))))
2011 (filesets-some (lambda (x)
2012 (if (funcall fn
(car x
) masterfile
)
2015 filesets-ingroup-patterns
)))
2017 (defun filesets-ingroup-get-pattern (master)
2018 "Access to `filesets-ingroup-patterns'. Extract patterns."
2019 (filesets-ingroup-get-data master
2))
2021 (defun filesets-ingroup-get-remdupl-p (master)
2022 "Access to `filesets-ingroup-patterns'. Extract remove-duplicates-flag."
2023 (filesets-ingroup-get-data master
1))
2025 (defun filesets-ingroup-collect-finder (patt case-sensitivep
)
2026 "Helper function for `filesets-ingroup-collect'. Find pattern PATT."
2027 (let ((cfs case-fold-search
)
2029 (setq case-fold-search
(not case-sensitivep
))
2030 (re-search-forward patt nil t
))))
2031 (setq case-fold-search cfs
)
2034 (defun filesets-ingroup-cache-get (master)
2035 "Access to `filesets-ingroup-cache'."
2036 (lax-plist-get filesets-ingroup-cache master
))
2038 (defun filesets-ingroup-cache-put (master file
)
2039 "Access to `filesets-ingroup-cache'."
2040 (let* ((emaster (expand-file-name master
))
2042 (cons file
(filesets-ingroup-cache-get emaster
))
2044 (setq filesets-ingroup-cache
2045 (lax-plist-put filesets-ingroup-cache emaster this
))))
2047 (defun filesets-ingroup-collect-files (fs &optional remdupl-flag master depth
)
2048 "Helper function for `filesets-ingroup-collect'. Collect file names."
2049 (let* ((master (or master
2050 (filesets-entry-get-master fs
)))
2051 (remdupl-flag (or remdupl-flag
2052 (filesets-ingroup-get-remdupl-p master
))))
2053 (filesets-ingroup-cache-put master nil
)
2054 (filesets-message 2 "Filesets: parsing %S" master
)
2055 (let ((cmdpatts (filesets-ingroup-get-pattern master
))
2059 (dolist (this-def cmdpatts rv
)
2060 (let* ((this-patt (filesets-alist-get this-def
':pattern nil t
))
2061 (this-name (filesets-alist-get this-def
':name
"" t
))
2062 (this-pp (filesets-alist-get this-def
':preprocess nil t
))
2063 (this-mn (filesets-alist-get this-def
':match-number
1 t
))
2065 (filesets-alist-get this-def
':scan-depth
0 t
)))
2066 (this-csp (filesets-alist-get this-def
':case-sensitive nil t
))
2067 (this-fn (filesets-alist-get
2068 this-def
':get-file-name
'filesets-which-file t
))
2069 (this-stubp (filesets-alist-get this-def
':stubp nil t
))
2070 (this-stub-flag (filesets-alist-get this-def
':stub-flag nil t
))
2075 (filesets-error 'error
"Filesets: malformed :ingroup definition "
2081 (insert-file-contents master
)
2082 (goto-char (point-min))
2085 (while (filesets-ingroup-collect-finder this-patt this-csp
)
2086 (let* ((txt (match-string this-mn
))
2087 (f (funcall this-fn master txt
)))
2089 (not (member f flist
))
2090 (or (not remdupl-flag
)
2091 (not (filesets-member
2092 f filesets-ingroup-files
2093 :test
'filesets-files-equalp
))))
2095 (and (not this-stub-flag
)
2097 (not (funcall this-stubp master f
))
2099 (setq count
(+ count
1))
2100 (setq flist
(cons f flist
))
2101 (setq filesets-ingroup-files
2102 (cons f filesets-ingroup-files
))
2104 (filesets-ingroup-cache-put master f
))
2105 (setq lst
(append lst
(list f
))))))))
2109 (mapcar (lambda (this)
2110 `((,this
,this-name
)
2111 ,@(filesets-ingroup-collect-files
2112 fs remdupl-flag this
2115 (filesets-message 2 "Filesets: no patterns defined for %S" master
)))))
2117 (defun filesets-ingroup-collect-build-menu (fs flist
&optional other-count
)
2118 "Helper function for `filesets-ingroup-collect'. Build the menu.
2119 FS is a fileset's name. FLIST is a list returned by
2120 `filesets-ingroup-collect-files'."
2126 (dolist (this flist rv
)
2127 (setq count
(+ count
1))
2128 (let* ((def (if (listp this
) (car this
) (list this
"")))
2129 (files (if (listp this
) (cdr this
) nil
))
2130 (master (nth 0 def
))
2132 (nm (concat (filesets-get-shortcut (if (or (not other-count
) files
)
2134 (if (or (null name
) (equal name
""))
2136 (format "%s: " name
))
2137 (file-name-nondirectory master
))))
2142 [,(concat "Inclusion Group: "
2143 (file-name-nondirectory master
))
2144 (filesets-open ':ingroup
',master
',fsn
)]
2146 [,master
(filesets-file-open nil
',master
',fsn
)]
2151 (setq count
(+ count
1))
2152 (let ((ff (filesets-ingroup-collect-build-menu
2153 fs
(list this
) count
)))
2154 (if (= (length ff
) 1)
2158 ,@(filesets-get-menu-epilog master
':ingroup fsn
)))
2159 `([,nm
(filesets-file-open nil
',master
',fsn
)])))))))))
2161 (defun filesets-ingroup-collect (fs remdupl-flag master
)
2162 "Collect names of included files and build submenu."
2163 (filesets-ingroup-cache-put master nil
)
2164 (filesets-message 2 "Filesets: parsing %S" master
)
2165 (filesets-ingroup-collect-build-menu
2167 (filesets-ingroup-collect-files fs remdupl-flag master
)))
2169 (defun filesets-build-ingroup-submenu (lookup-name master
)
2170 "Build a :ingroup submenu for file MASTER."
2171 (if (file-readable-p master
)
2172 (let ((remdupl-flag (filesets-ingroup-get-remdupl-p master
)))
2173 (setq filesets-ingroup-files
(list master
))
2174 (filesets-ingroup-collect lookup-name remdupl-flag master
))
2175 (if filesets-be-docile-flag
2177 (message "Filesets: can't parse %s" master
)
2179 (filesets-error 'error
"Filesets: can't parse " master
))))
2181 (defun filesets-build-dir-submenu-now (level depth entry lookup-name dir patt fd
2182 &optional rebuild-flag
)
2183 "Helper function for `filesets-build-dir-submenu'."
2184 ;;(filesets-message 3 "Filesets: scanning %s" dir)
2187 (let* ((dir (file-name-as-directory dir
))
2188 (header `([,(concat "Tree: "
2192 (file-name-as-directory
2193 (file-name-nondirectory
2194 (directory-file-name dir
))))))
2195 ,(list (function filesets-open
)
2197 `(quote (,dir
,patt
))
2200 (dirlist (filesets-directory-files dir patt nil nil fd
))
2201 (subdirs (filesets-filter-dir-names dirlist
))
2205 (setq count
(+ count
1))
2206 (let* ((x (file-name-as-directory x
))
2208 (dd (filesets-build-dir-submenu-now
2209 (+ level
1) depth entry
2210 lookup-name xx patt fd
))
2211 (nm (concat (filesets-get-shortcut count
)
2215 `[,nm
,(list 'filesets-browse-dir xx
)])))
2217 (files (filesets-filter-dir-names dirlist t
))
2218 (filesmenu (mapcar (lambda (x)
2219 (setq count
(+ count
1))
2220 `[,(concat (filesets-get-shortcut count
)
2222 (filesets-file-open nil
2223 (quote ,(concat dir x
))
2224 (quote ,lookup-name
))])
2227 (filesets-wrap-submenu
2231 (filesets-get-menu-epilog `(,dir
,patt
) ':tree
2232 lookup-name rebuild-flag
)))
2235 (defun filesets-build-dir-submenu (entry lookup-name dir patt
)
2236 "Build a :tree submenu named LOOKUP-NAME with base directory DIR including
2237 all files matching PATT for filesets ENTRY."
2238 (let ((fd (filesets-entry-get-filter-dirs-flag entry
))
2239 (depth (or (filesets-entry-get-tree-max-level entry
)
2240 filesets-tree-max-level
)))
2241 (filesets-build-dir-submenu-now 0 depth entry lookup-name dir patt fd t
)))
2243 (defun filesets-build-submenu (count lookup-name entry
)
2244 "Build submenu for the fileset ENTRY named LOOKUP-NAME.
2245 Construct a shortcut from COUNT."
2246 (let ((lookup-name (or lookup-name
2247 (filesets-data-get-name entry
))))
2248 (message "Filesets: %s" lookup-name
)
2249 (let ((mode (filesets-entry-mode entry
))
2250 (filesets-verbosity (filesets-entry-get-verbosity entry
))
2251 (this-lookup-name (concat (filesets-get-shortcut count
)
2255 (let* ((file (filesets-entry-get-file entry
)))
2257 (filesets-file-open nil
',file
',lookup-name
)]))
2262 (let* ((files (filesets-get-filelist entry mode
'on-ls
))
2263 (dirpatt (filesets-entry-get-pattern entry
))
2264 (pattname (apply 'concat
(cons "Pattern: " dirpatt
)))
2266 ;;(filesets-message 3 "Filesets: scanning %S" pattname)
2268 ,(list (function filesets-open
) mode lookup-name
)]
2270 ,@(filesets-wrap-submenu
2273 (setq count
(+ count
1))
2274 `[,(concat (filesets-get-shortcut count
)
2275 (file-name-nondirectory x
))
2276 (filesets-file-open nil
',x
',lookup-name
)])
2278 ,@(filesets-get-menu-epilog lookup-name mode
2281 (let* ((master (filesets-entry-get-master entry
)))
2282 ;;(filesets-message 3 "Filesets: parsing %S" master)
2283 `([,(concat "Inclusion Group: "
2284 (file-name-nondirectory master
))
2285 (filesets-open ',mode
',master
',lookup-name
)]
2287 [,master
(filesets-file-open nil
',master
',lookup-name
)]
2289 ,@(filesets-wrap-submenu
2290 (filesets-build-ingroup-submenu lookup-name master
))
2291 ,@(filesets-get-menu-epilog master mode lookup-name t
))))
2293 (let* ((dirpatt (filesets-entry-get-tree entry
))
2295 (patt (cadr dirpatt
)))
2296 (filesets-build-dir-submenu entry lookup-name dir patt
)))
2298 (let ((files (filesets-get-filelist entry mode
'on-open-all
))
2300 `([,(concat "Files: " lookup-name
)
2301 (filesets-open ',mode
',lookup-name
)]
2303 ,@(filesets-wrap-submenu
2306 (setq count
(+ count
1))
2307 `[,(concat (filesets-get-shortcut count
)
2308 (file-name-nondirectory x
))
2309 (filesets-file-open nil
',x
',lookup-name
)])
2310 (filesets-conditional-sort
2312 (function file-name-nondirectory
))))
2313 ,@(filesets-get-menu-epilog lookup-name mode
2314 lookup-name t
)))))))))))
2316 (defun filesets-remove-from-ubl (&optional buffer
)
2317 "BUFFER or current buffer require update of the filesets menu."
2320 (if (member b filesets-updated-buffers
)
2321 (setq filesets-updated-buffers
2322 (delete b filesets-updated-buffers
)))))
2324 (defun filesets-build-menu-now (from-scratch-flag)
2325 "Update the filesets menu.
2326 Build all new if FROM-SCRATCH-FLAG is non-nil. (To really build from the
2327 bottom up, set `filesets-submenus' to nil, first.)"
2328 (when (or from-scratch-flag
2329 filesets-has-changed-flag
2330 (not filesets-menu-cache
))
2331 (setq filesets-menu-cache nil
)
2332 (setq filesets-has-changed-flag nil
)
2333 (setq filesets-updated-buffers nil
)
2334 (setq filesets-update-cache-file-flag t
)
2335 (do ((data (filesets-conditional-sort filesets-data
(function car
))
2337 (count 1 (+ count
1)))
2339 (let* ((this (car data
))
2340 (name (filesets-data-get-name this
))
2341 (cached (lax-plist-get filesets-submenus name
))
2343 (filesets-build-submenu count name this
))))
2345 (setq filesets-submenus
2346 (lax-plist-put filesets-submenus name submenu
)))
2347 (unless (filesets-entry-get-dormant-flag this
)
2348 (setq filesets-menu-cache
2349 (append filesets-menu-cache
(list submenu
))))))
2350 (when filesets-cache-save-often-flag
2351 (filesets-menu-cache-file-save-maybe)))
2352 (let ((cb (current-buffer)))
2353 (when (not (member cb filesets-updated-buffers
))
2356 `(,filesets-menu-name
2358 ["Edit Filesets" filesets-edit
]
2359 ["Save Filesets" filesets-save-config
]
2360 ["Save Menu Cache" filesets-menu-cache-file-save
]
2361 ["Rebuild Menu" filesets-build-menu
]
2362 ["Customize" filesets-customize
]
2363 ["About" filesets-info
])
2364 ,(filesets-get-cmd-menu)
2366 ,@filesets-menu-cache
)
2367 filesets-menu-before
2368 filesets-menu-in-menu
)
2369 (setq filesets-updated-buffers
2370 (cons cb filesets-updated-buffers
))
2371 ;; This wipes out other messages in the echo area.
2373 ;;(message "Filesets updated: %s" cb)
2376 (defun filesets-build-menu-maybe ()
2377 "Update the filesets menu."
2379 (filesets-build-menu-now nil
))
2381 (defun filesets-build-menu ()
2382 "Force rebuild of the filesets menu."
2384 ;(setq filesets-submenus nil)
2385 (filesets-reset-fileset)
2386 (filesets-build-menu-now t
)
2387 (filesets-menu-cache-file-save-maybe))
2389 (defun filesets-rebuild-this-submenu (fileset)
2390 "Force rebuild of FILESET submenu."
2391 (filesets-reset-fileset fileset
)
2392 (filesets-build-menu-now t
))
2394 (defun filesets-menu-cache-file-save-maybe (&optional simply-do-it
)
2395 "Write filesets' cache file.
2396 If SIMPLY-DO-IT is non-nil, the cache file will be written no matter if
2397 fileset thinks this is necessary or not."
2398 (when (and (not (equal filesets-menu-cache-file
""))
2400 filesets-update-cache-file-flag
))
2401 (when (file-exists-p filesets-menu-cache-file
)
2402 (delete-file filesets-menu-cache-file
))
2403 ;;(message "Filesets: saving menu cache")
2405 (dolist (this filesets-menu-cache-contents
)
2406 (if (get this
'custom-type
)
2408 (insert (format "(setq-default %s '%S)" this
(eval this
)))
2409 (when filesets-menu-ensure-use-cached
2411 (insert (format "(setq %s (cons '%s %s))"
2412 'filesets-ignore-next-set-default
2414 'filesets-ignore-next-set-default
))))
2415 (insert (format "(setq %s '%S)" this
(eval this
))))
2417 (insert (format "(setq filesets-cache-version %S)" filesets-version
))
2419 (when filesets-cache-hostname-flag
2420 (insert (format "(setq filesets-cache-hostname %S)" (system-name)))
2422 (run-hooks 'filesets-cache-fill-content-hooks
)
2423 (write-file filesets-menu-cache-file
))
2424 (setq filesets-has-changed-flag nil
)
2425 (setq filesets-update-cache-file-flag nil
)))
2427 (defun filesets-menu-cache-file-save ()
2428 "Save filesets' menu cache file."
2430 (filesets-menu-cache-file-save-maybe t
))
2432 (defun filesets-update-cleanup ()
2433 "Rebuild the menu and save the cache file after updating user data."
2435 (message "Filesets v%s: updating menu & cache from version %s"
2436 filesets-version
(or filesets-cache-version
"???"))
2437 (filesets-build-menu)
2438 (filesets-menu-cache-file-save-maybe)
2439 (filesets-menu-cache-file-load))
2441 (defun filesets-update-pre010505 ()
2443 "Filesets: manual editing of user data required!
2445 Filesets has detected that you were using an older version before,
2446 which requires some manual updating. Type 'y' for editing the startup
2449 The layout of `filesets-data' has changed. Please delete your cache file
2450 and edit your startup file as shown below:
2452 1. `filesets-data': Edit all :pattern filesets in your startup file and
2453 transform all entries as shown in this example:
2455 \(\"Test\" (:pattern \"~/dir/^pattern$\"))
2456 --> \(\"Test\" (:pattern \"~/dir/\" \"^pattern$\"))
2458 2. `filesets-data': Change all occurrences of \":document\" to \":ingroup\":
2460 \(\(\"Test\" \(:document \"~/dir/file\"))
2461 --> \(\(\"Test\" \(:ingroup \"~/dir/file\"))
2463 3. `filesets-subdocument-patterns': If you already modified the variable
2464 previously called `filesets-subdocument-patterns', change its name to
2465 `filesets-ingroup-patterns'.
2467 4. `filesets-menu-cache-contents': If you already modified this
2468 variable, change the entry `filesets-subdocument--cache' to
2469 `filesets-ingroup-cache'.
2471 5. Type M-x filesets-update-cleanup and restart Emacs.
2473 We apologize for the inconvenience."))
2474 (let* ((cf (or custom-file user-init-file
)))
2475 (switch-to-buffer-other-frame "*Filesets update*")
2477 (when (y-or-n-p (format "Edit startup (%s) file now? " cf
))
2478 (find-file-other-window cf
))
2479 (filesets-error 'error msg
))))
2481 (defun filesets-update (cached-version)
2482 "Do some cleanup after updating filesets.el."
2484 ((or (not cached-version
)
2485 (string< cached-version
"1.5.5")
2486 (boundp 'filesets-subdocument-patterns
))
2487 (filesets-update-pre010505)))
2488 (filesets-update-cleanup))
2490 (defun filesets-menu-cache-file-load ()
2491 "Load filesets' menu cache file."
2493 ((and (not (equal filesets-menu-cache-file
""))
2494 (file-readable-p filesets-menu-cache-file
))
2495 (load-file filesets-menu-cache-file
)
2496 (if (and (equal filesets-cache-version filesets-version
)
2497 (if filesets-cache-hostname-flag
2498 (equal filesets-cache-hostname
(system-name))
2501 (setq filesets-update-cache-file-flag nil
)
2503 (filesets-update filesets-cache-version
)))
2505 (setq filesets-update-cache-file-flag t
)
2508 (defun filesets-exit ()
2509 (filesets-menu-cache-file-save-maybe))
2512 (defun filesets-init ()
2513 "Filesets initialization.
2514 Set up hooks, load the cache file -- if existing -- and build the menu."
2515 (add-hook (if (featurep 'xemacs
) 'activate-menubar-hook
'menu-bar-update-hook
)
2516 (function filesets-build-menu-maybe
))
2517 (add-hook 'kill-buffer-hook
(function filesets-remove-from-ubl
))
2518 (add-hook 'first-change-hook
(function filesets-reset-filename-on-change
))
2519 (add-hook 'kill-emacs-hook
(function filesets-exit
))
2520 (if (filesets-menu-cache-file-load)
2522 (filesets-build-menu-maybe)
2523 ;;Well, normally when we use XEmacs <= 21.4, custom.el is loaded
2524 ;;after init.el. This more or less ignores the next
2525 ;;`filesets-data-set-default'
2526 (if filesets-menu-ensure-use-cached
2527 (setq filesets-menu-use-cached-flag t
)))
2528 (filesets-build-menu)))
2534 ;; sentence-end-double-space:t
2537 ;; arch-tag: 2c03f85f-c3df-4cec-b0a3-b46fd5592d70
2538 ;;; filesets.el ends here