1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
;;; srecode/map.el --- Manage a template file map -*- lexical-binding: t; -*-
;; Copyright (C) 2008-2025 Free Software Foundation, Inc.
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Read template files, and build a map of where they can be found.
;; Save the map to disk, and refer to it when bootstrapping a new
;; Emacs session with srecode.
(require 'semantic)
(require 'eieio-base)
(require 'srecode)
;;; Code:
;; The defcustom is given at the end of the file.
(defvar srecode-map-load-path)
(defun srecode-map-base-template-dir ()
"Find the base template directory for SRecode."
(expand-file-name "srecode" data-directory))
;;; Current MAP
;;
(defvar srecode-current-map nil
"The current map for global SRecode templates.")
(defcustom srecode-map-save-file
(locate-user-emacs-file "srecode-map.el" ".srecode/srecode-map")
"The save location for SRecode's map file.
If the save file is nil, then the MAP is not saved between sessions."
:group 'srecode
:type '(choice (const :tag "Don't save" nil)
file))
(defclass srecode-map (eieio-persistent)
((fileheaderline :initform ";; SRECODE TEMPLATE MAP")
(files :initarg :files
:initform nil
:type list
:documentation
"An alist of files and the major-mode that they cover.")
(apps :initarg :apps
:initform nil
:type list
:documentation
"An alist of applications.
Each app keys to an alist of files and modes (as above.)")
)
"A map of srecode templates.")
(cl-defmethod srecode-map-entry-for-file ((map srecode-map) file)
"Return the entry in MAP for FILE."
(assoc file (oref map files)))
(cl-defmethod srecode-map-entries-for-mode ((map srecode-map) mode)
"Return the entries in MAP for major MODE."
(let ((ans nil))
(dolist (f (oref map files))
(when (provided-mode-derived-p mode (cdr f))
(setq ans (cons f ans))))
ans))
(cl-defmethod srecode-map-entry-for-app ((map srecode-map) app)
"Return the entry in MAP for APP."
(assoc app (oref map apps))
)
(cl-defmethod srecode-map-entries-for-app-and-mode ((map srecode-map) app mode)
"Return the entries in MAP for major MODE."
(let ((ans nil)
(appentry (srecode-map-entry-for-app map app)))
(dolist (f (cdr appentry))
(when (eq (cdr f) mode)
(setq ans (cons f ans))))
ans))
(cl-defmethod srecode-map-entry-for-file-anywhere ((map srecode-map) file)
"Search in all entry points in MAP for FILE.
Return a list ( APP . FILE-ASSOC ) where APP is nil
in the global map."
(or
;; Look in the global entry
(let ((globalentry (srecode-map-entry-for-file map file)))
(when globalentry
(cons nil globalentry)))
;; Look in each app.
(let ((match nil))
(dolist (app (oref map apps))
(let ((appmatch (assoc file (cdr app))))
(when appmatch
(setq match (cons app appmatch)))))
match)
;; Other?
))
(cl-defmethod srecode-map-delete-file-entry ((map srecode-map) file)
"Update MAP to exclude FILE from the file list."
(let ((entry (srecode-map-entry-for-file map file)))
(when entry
(object-remove-from-list map 'files entry))))
(cl-defmethod srecode-map-update-file-entry ((map srecode-map) file mode)
"Update a MAP entry for FILE to be used with MODE.
Return non-nil if the MAP was changed."
(let ((entry (srecode-map-entry-for-file map file))
(dirty t))
(cond
;; It is already a match.. do nothing.
((and entry (eq (cdr entry) mode))
(setq dirty nil))
;; We have a non-matching entry. Change the cdr.
(entry
(setcdr entry mode))
;; No entry, just add it to the list.
(t
(object-add-to-list map 'files (cons file mode))
))
dirty))
(cl-defmethod srecode-map-delete-file-entry-from-app ((map srecode-map) file app)
"Delete from MAP the FILE entry within the APP."
(let* ((appe (srecode-map-entry-for-app map app))
(fentry (assoc file (cdr appe))))
(setcdr appe (delete fentry (cdr appe))))
)
(cl-defmethod srecode-map-update-app-file-entry ((map srecode-map) file mode app)
"Update the MAP entry for FILE to be used with MODE within APP.
Return non-nil if the map was changed."
(let* ((appentry (srecode-map-entry-for-app map app))
(appfileentry (assoc file (cdr appentry)))
(dirty t)
)
(cond
;; Option 1 - We have this file in this application already
;; with the correct mode.
((and appfileentry (eq (cdr appfileentry) mode))
(setq dirty nil)
)
;; Option 2 - We have a non-matching entry. Change Cdr.
(appfileentry
(setcdr appfileentry mode))
(t
;; For option 3 & 4 - remove the entry from any other lists
;; we can find.
(let ((any (srecode-map-entry-for-file-anywhere map file)))
(when any
(if (null (car any))
;; Global map entry
(srecode-map-delete-file-entry map file)
;; Some app
(let ((appentry (srecode-map-entry-for-app map app)))
(setcdr appentry (delete (cdr any) (cdr appentry))))
)))
;; Now do option 3 and 4
(cond
;; Option 3 - No entry for app. Add to the list.
(appentry
(setcdr appentry (cons (cons file mode) (cdr appentry)))
)
;; Option 4 - No app entry. Add app to list with this file.
(t
(object-add-to-list map 'apps (list app (cons file mode)))
)))
)
dirty))
;;; MAP Updating
;;
;;;###autoload
(defun srecode-get-maps (&optional reset)
"Get a list of maps relevant to the current buffer.
Optional argument RESET forces a reset of the current map."
(interactive "P")
;; Always update the map, but only do a full reset if
;; the user asks for one.
(srecode-map-update-map (not reset))
(if (called-interactively-p 'any)
;; Dump this map.
(with-output-to-temp-buffer "*SRECODE MAP*"
(princ " -- SRecode Global map --\n")
(srecode-maps-dump-file-list (oref srecode-current-map files))
(princ "\n -- Application Maps --\n")
(dolist (ap (oref srecode-current-map apps))
(let ((app (car ap))
(files (cdr ap)))
(princ app)
(princ " :\n")
(srecode-maps-dump-file-list files))
(princ "\n"))
(princ "\nUse:\n\n M-x customize-variable RET srecode-map-load-path RET")
(princ "\n To change the path where SRecode loads templates from.")
)
;; Eventually, I want to return many maps to search through.
(list srecode-current-map)))
(declare-function data-debug-new-buffer "data-debug")
(declare-function data-debug-insert-stuff-list "data-debug")
(defun srecode-adebug-maps ()
"Run ADEBUG on the output of `srecode-get-maps'."
(interactive)
(require 'data-debug)
(let ((start (current-time))
(p (srecode-get-maps t)) ;; Time the reset.
)
(message "Updating the map took %.2f seconds."
(semantic-elapsed-time start nil))
(data-debug-new-buffer "*SRECODE ADEBUG*")
(data-debug-insert-stuff-list p "*")))
(defun srecode-maps-dump-file-list (flist)
"Dump a file list FLIST to `standard-output'."
(princ "Mode\t\t\tFilename\n")
(princ "------\t\t\t------------------\n")
(dolist (fe flist)
(prin1 (cdr fe))
(princ "\t")
(when (> (* 2 8) (length (symbol-name (cdr fe))))
(princ "\t"))
(when (> 8 (length (symbol-name (cdr fe))))
(princ "\t"))
(princ (car fe))
(princ "\n")
))
(defun srecode-map-file-still-valid-p (filename _map)
"Return t if FILENAME should be in MAP still."
(let ((valid nil))
(and (file-exists-p filename)
(progn
(dolist (p srecode-map-load-path)
(when (and (< (length p) (length filename))
(string= p (substring filename 0 (length p))))
(setq valid t))
)
valid))
))
(defun srecode-map-update-map (&optional fast)
"Update the current map from `srecode-map-load-path'.
Scans all the files on the path, and makes sure we have entries
for them.
If option FAST is non-nil, then only parse a file for the mode-string
if that file is NEW, otherwise assume the mode has not changed."
(interactive)
;; When no map file, we are configured to not use a save file.
(if (not srecode-map-save-file)
;; 0) Create a MAP when in no save file mode.
(when (not srecode-current-map)
(setq srecode-current-map (srecode-map))
(message "SRecode map created in non-save mode.")
)
;; 1) Do we even have a MAP or save file?
(when (and (not srecode-current-map)
(not (file-exists-p srecode-map-save-file)))
(when (not (file-exists-p (file-name-directory srecode-map-save-file)))
;; Only bother with this interactively, not during a build
;; or test.
(when (not noninteractive)
;; No map, make the dir?
(if (y-or-n-p (format "Create dir %s? "
(file-name-directory srecode-map-save-file)))
(make-directory (file-name-directory srecode-map-save-file))
;; No make, change save file
(customize-variable 'srecode-map-save-file)
(error "Change your SRecode map file"))))
;; Have a dir. Make the object.
(setq srecode-current-map
(srecode-map :file srecode-map-save-file)))
;; 2) Do we not have a current map? If so load.
(when (not srecode-current-map)
(condition-case nil
(setq srecode-current-map
(eieio-persistent-read srecode-map-save-file 'srecode-map))
(error
;; There was an error loading the old map. Create a new one.
(setq srecode-current-map
(srecode-map :file srecode-map-save-file))))
)
)
;;
;; We better have a MAP object now.
;;
(let ((dirty nil))
;; 3) - Purge dead files from the file list.
(dolist (entry (copy-sequence (oref srecode-current-map files)))
(when (not (srecode-map-file-still-valid-p
(car entry) srecode-current-map))
(srecode-map-delete-file-entry srecode-current-map (car entry))
(setq dirty t)
))
(dolist (app (copy-sequence (oref srecode-current-map apps)))
(dolist (entry (copy-sequence (cdr app)))
(when (not (srecode-map-file-still-valid-p
(car entry) srecode-current-map))
(srecode-map-delete-file-entry-from-app
srecode-current-map (car entry) (car app))
(setq dirty t)
)))
;; 4) - Find new files and add them to the map.
(dolist (dir srecode-map-load-path)
(when (file-exists-p dir)
(dolist (f (directory-files dir t "\\.srt\\'"))
(when (and (not (backup-file-name-p f))
(not (auto-save-file-name-p f))
(file-readable-p f))
(let ((fdirty (srecode-map-validate-file-for-mode f fast)))
(setq dirty (or dirty fdirty))))
)))
;; Only do the save if we are dirty, or if we are in an interactive
;; Emacs.
(when (and dirty (not noninteractive)
(slot-boundp srecode-current-map :file))
(eieio-persistent-save srecode-current-map))
))
(defun srecode-map-validate-file-for-mode (file fast)
"Read and validate FILE via the parser. Return the mode.
Argument FAST implies that the file should not be reparsed if there
is already an entry for it.
Return non-nil if the map changed."
(unless (and fast
(srecode-map-entry-for-file-anywhere srecode-current-map file))
(let ((buff-orig (get-file-buffer file))
(dirty nil))
(save-excursion
(if buff-orig
(set-buffer buff-orig)
(set-buffer (get-buffer-create " *srecode-map-tmp*"))
(insert-file-contents file nil nil nil t)
;; Force it to be ready to parse.
(srecode-template-mode)
(let ((semantic-init-hook nil))
(semantic-new-buffer-fcn))
)
;; Force semantic to be enabled in this buffer.
(unless (semantic-active-p)
(semantic-new-buffer-fcn))
(semantic-fetch-tags)
(let* ((mode-tag
(semantic-find-first-tag-by-name "mode" (current-buffer)))
(val nil)
(app-tag
(semantic-find-first-tag-by-name "application" (current-buffer)))
(app nil))
(if mode-tag
(setq val (car (semantic-tag-variable-default mode-tag)))
(error "There should be a mode declaration in %s" file))
(when app-tag
(setq app (car (semantic-tag-variable-default app-tag))))
(setq dirty
(if app
(srecode-map-update-app-file-entry srecode-current-map
file
(read val)
(read app))
(srecode-map-update-file-entry srecode-current-map
file
(read val))))
)
)
dirty)))
;;; THE PATH
;;
;; We need to do this last since the setter needs the above code.
(defun srecode-map-load-path-set (sym val)
"Set SYM to the new VAL, then update the srecode map."
(set-default sym val)
(srecode-map-update-map t))
(defcustom srecode-map-load-path
(list (srecode-map-base-template-dir)
(expand-file-name "~/.srecode/")
)
"Global load path for SRecode template files."
:group 'srecode
:type '(repeat file)
:set #'srecode-map-load-path-set)
(provide 'srecode/map)
;; Local variables:
;; generated-autoload-file: "loaddefs.el"
;; generated-autoload-load-name: "srecode/map"
;; End:
;;; srecode/map.el ends here
|