aboutsummaryrefslogtreecommitdiff
path: root/modules/config-utilities.el
blob: b3eec5d3d22df515d1206a2044b10a3861c3a4a2 (plain)
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
;;; config-utilities  --- Config Hacking Utilities -*- lexical-binding: t; coding: utf-8; -*-
;; author Craig Jennings <c@cjennings.net>

;;; Commentary:
;;
;; Layer: 1 (Foundation).
;; Category: C/O.
;; Load shape: eager.
;; Eager reason: the C-c d debug keymap is kept available during config work.
;; Top-level side effects: defines `cj/debug-config-keymap', binds it to C-c d.
;; Runtime requires: cl-lib, cl-generic, eieio, find-lisp, profiler.
;; Direct test load: yes (defines a keymap and helpers; batch-safe).
;;
;; Development and debugging utilities for Emacs configuration maintenance.
;;
;;; Code:

(require 'cl-lib)
(require 'cl-generic)
(require 'eieio)
(require 'find-lisp)
(require 'profiler)

;;; -------------------------------- Debug Keymap -------------------------------

(defvar-keymap cj/debug-config-keymap
  :doc "config debugging utilities keymap.")
(keymap-global-set "C-c d" cj/debug-config-keymap)

(with-eval-after-load 'which-key
  (which-key-add-key-based-replacements
    "C-c d" "config debugging utils"
    "C-c d p" "profiler menu"
    "C-c d p s" "start profiler"
    "C-c d p h" "stop profiler"
    "C-c d p r" "profiler report"
    "C-c d t" "toggle debug-on-error"
    "C-c d b" "benchmark method"
    "C-c d c" "compilation menu"
    "C-c d c h" "compile home"
    "C-c d c d" "delete compiled"
    "C-c d c ." "compile buffer"
    "C-c d i" "info menu"
    "C-c d i b" "info build"
    "C-c d i p" "info packages"
    "C-c d i f" "info features"
    "C-c d r" "reload init"))

;;; --------------------------------- Profiling ---------------------------------

(keymap-set cj/debug-config-keymap "p s" #'profiler-start)
(keymap-set cj/debug-config-keymap "p h" #'profiler-stop)
(keymap-set cj/debug-config-keymap "p r" #'profiler-report)

;;; --------------------------- Toggle Debug On Error ---------------------------

(keymap-set cj/debug-config-keymap "t" #'toggle-debug-on-error)

;;; ----------------------------- Package Workarounds --------------------------

;; EmacSQL 4.3.1 registers finalizers that call `emacsql-close'.  The sqlite
;; backends set their handle slot to nil after an explicit close, so a later
;; finalizer can otherwise call `sqlite-close' with nil and log:
;;   finalizer failed: (wrong-type-argument sqlitep nil)
(with-eval-after-load 'emacsql-sqlite-builtin
  (cl-defmethod emacsql-close :around
    ((connection emacsql-sqlite-builtin-connection))
    (when (oref connection handle)
      (cl-call-next-method))))

(with-eval-after-load 'emacsql-sqlite-module
  (cl-defmethod emacsql-close :around
    ((connection emacsql-sqlite-module-connection))
    (when (oref connection handle)
      (cl-call-next-method))))

;;; -------------------------------- Benchmarking -------------------------------

(defmacro with-timer (title &rest forms)
  "Run the given FORMS, counting the elapsed time.
A message including the given TITLE and the corresponding elapsed
time is displayed."
  (declare (indent 1))
  (let ((nowvar (make-symbol "now"))
        (body   `(progn ,@forms)))
    `(let ((,nowvar (current-time)))
       (message "%s..." ,title)
       (prog1 ,body
         (let ((elapsed
                (float-time (time-subtract (current-time) ,nowvar))))
           (message "%s... done (%.3fs)" ,title elapsed))))))

(defun cj/--benchmark-method (title method-symbol)
  "Time the execution of METHOD-SYMBOL with display TITLE.
Returns the value returned by METHOD-SYMBOL.
Signals `user-error' if METHOD-SYMBOL is nil or not fboundp."
  (unless (and method-symbol (fboundp method-symbol))
    (user-error "Invalid method: %s" method-symbol))
  (with-timer title
    (funcall method-symbol)))

(defun cj/benchmark-this-method ()
  "Prompt for a title and method name, then time the execution of the method."
  (interactive)
  (let* ((title (read-string "Enter the title for the timing: "))
         (method-name (completing-read "Enter the method name to time: " obarray
                                       #'fboundp t))
         (method-symbol (intern-soft method-name)))
    (condition-case err
        (cj/--benchmark-method title method-symbol)
      (user-error (message "%s" (error-message-string err))))))
(keymap-set cj/debug-config-keymap "b" #'cj/benchmark-this-method)

;;; ----------------------------- Config Compilation ----------------------------

(defun cj/--recompile-emacs-home (dir &optional native-p)
  "Delete all .elc/.eln files under DIR, then recompile.
NATIVE-P chooses native compilation when non-nil, byte otherwise.
Also removes the eln (native) or elc (byte) cache directory.
Returns the compilation method used: \\='native or \\='byte."
  (let ((elt-dir (expand-file-name (if native-p "eln" "elc") dir)))
    (message "Deleting all compiled files in %s" dir)
    (dolist (file (directory-files-recursively dir "\\(\\.elc\\|\\.eln\\)$"))
      (delete-file file))
    (when (file-directory-p elt-dir)
      (delete-directory elt-dir t t))
    (cond
     (native-p
      (message "Natively compiling all emacs-lisp files in %s" dir)
      (setq comp-async-report-warnings-errors nil)
      (native-compile-async dir 'recursively)
      'native)
     (t
      (message "Byte-compiling all emacs-lisp files in %s" dir)
      (byte-recompile-directory dir 0)
      'byte))))

(defun cj/recompile-emacs-home ()
  "Delete all compiled files in the Emacs home before recompiling.
Recompile natively when supported, otherwise fall back to byte compilation."
  (interactive)
  (let* ((native (boundp 'native-compile-async))
         (mode-word (if native "native" "byte")))
    (if (yes-or-no-p
         (format "Please confirm recursive %s recompilation of %s: "
                 mode-word user-emacs-directory))
        (cj/--recompile-emacs-home user-emacs-directory native)
      (message "Cancelled recompilation of %s" user-emacs-directory))))

(keymap-set cj/debug-config-keymap "c h" 'cj/recompile-emacs-home)

(defun cj/--delete-compiled-files-in-dir (dir)
  "Delete every .elc and .eln file under DIR recursively.
Returns the count of files deleted."
  (require 'find-lisp)
  (let ((count 0))
    (mapc (lambda (path)
            (when (or (string-suffix-p ".elc" path)
                      (string-suffix-p ".eln" path))
              (delete-file path)
              (setq count (1+ count))))
          (find-lisp-find-files dir ""))
    count))

(defun cj/delete-emacs-home-compiled-files ()
  "Delete all compiled files recursively in `user-emacs-directory'."
  (interactive)
  (message "Deleting compiled files under %s. This may take a while."
           user-emacs-directory)
  (let ((count (cj/--delete-compiled-files-in-dir user-emacs-directory)))
    (message "Done. %d compiled file(s) removed under %s"
             count user-emacs-directory)))
(keymap-set cj/debug-config-keymap "c d" 'cj/delete-emacs-home-compiled-files)

(defun cj/compile-this-elisp-buffer ()
  "Compile the current .el: prefer native (.eln), else .elc. Message if neither."
  (interactive)
  (unless (and buffer-file-name (string-match-p "\\.el\\'" buffer-file-name))
    (user-error "Not visiting a .el file"))
  (save-buffer)
  (let ((file buffer-file-name))
    (cond
     ;; Native compilation (async preferred)
     ((fboundp 'native-compile-async)
      (native-compile-async file)
      (message "Queued native compilation for %s" file))
     ;; Native compilation (sync, if async not available)
     ((fboundp 'native-compile)
      (condition-case err
          (progn
            (native-compile file)
            (message "Native-compiled %s" file))
        (error (message "Native compile failed: %s" (error-message-string err)))))
     ;; Byte-compile fallback
     ((fboundp 'byte-compile-file)
      (let ((out (byte-compile-file file)))
        (if out
            (message "Byte-compiled -> %s" out)
          (message "Byte-compilation failed for %s" file))))
     ;; Neither facility available
     (t
      (message "No compilation available (no native-compile, no byte-compile)")))))
(keymap-set cj/debug-config-keymap "c ." 'cj/compile-this-elisp-buffer)

;; --------------------------- Information Reporting ---------------------------

(defun cj/emacs-build--format-build-time (tval)
  "Return a human-readable build time from TVAL."
  (cond
   ((null tval) "unknown")
   ((stringp tval) tval)
   ((and (consp tval) (integerp (car tval)))
    (format-time-string "%Y-%m-%d %H:%M:%S %Z" tval))
   ((numberp tval)
    (format-time-string "%Y-%m-%d %H:%M:%S %Z" (seconds-to-time tval)))
   (t (format "%s" tval))))

(defun cj/emacs-build--summary-string ()
  "Return a concise multi-line string describing this Emacs build."
  (let ((build-time (and (boundp 'emacs-build-time) emacs-build-time))
        (build-system (and (boundp 'emacs-build-system) emacs-build-system))
        (branch (and (boundp 'emacs-repository-branch) emacs-repository-branch))
        (commit (and (boundp 'emacs-repository-version) emacs-repository-version))
        (features (and (boundp 'system-configuration-features) system-configuration-features))
        (options (and (boundp 'system-configuration-options) system-configuration-options)))
    (concat
     (format "Version: %s\n" emacs-version)
     (format "System: %s\n" system-configuration)
     (format "Location: %s\n"  (executable-find "emacs"))
     (format "Build date: %s\n" (cj/emacs-build--format-build-time build-time))
     (when build-system
       (format "Build system: %s\n" build-system))
     (when branch
       (format "Git branch: %s\n" (or branch "n/a")))
     (when commit
       (format "Git commit: %s\n" (or commit "n/a")))
     "\nCapabilities:\n"
     (format "- Native compilation: %s\n"
             (if (and (fboundp 'native-comp-available-p)
                      (native-comp-available-p))
                 "yes" "no"))
     (format "- Dynamic modules: %s\n"
             (if (and (boundp 'module-file-suffix)
                      module-file-suffix)
                 "yes" "no"))
     (format "- GnuTLS: %s\n"
             (if (and (fboundp 'gnutls-available-p)
                      (gnutls-available-p))
                 "yes" "no"))
     (format "- libxml2: %s\n"
             (if (fboundp 'libxml-parse-html-region)
                 "yes" "no"))
     (format "- ImageMagick: %s\n"
             (if (and (fboundp 'image-type-available-p)
                      (image-type-available-p 'imagemagick))
                 "yes" "no" ))
     (format "- SQLite: %s\n"
             (if (and (fboundp 'sqlite-available-p)
                      (sqlite-available-p))
                 "yes" "no"))
     (when features
       (format "\nConfigured features:\n%s\n" features))
     (when options
       (format "\nConfiguration arguments:\n%s\n" options)))))

(defun cj/info-emacs-build ()
  "Display a buffer with the Emacs build summary."
  (interactive)
  (let ((buf (get-buffer-create "*Emacs-Build-Summary*")))
    (with-current-buffer buf
      (setq buffer-read-only nil)
      (erase-buffer)
      (insert (cj/emacs-build--summary-string))
      (goto-char (point-min))
      (help-mode)
      (setq-local truncate-lines nil))
    (pop-to-buffer buf)))

(keymap-set cj/debug-config-keymap "i b" 'cj/info-emacs-build)

(defvar cj--loaded-file-paths nil
  "All file paths that are loaded.")
(defvar cj--loaded-packages-buffer "*loaded-packages*"
  "Buffer name for data about loaded packages.")
(defvar cj--loaded-features-buffer "*loaded-features*"
  "Buffer name for data about loaded features.")

(defun cj/info-loaded-packages()
  "List all currently loaded packages."
  (interactive)
  (with-current-buffer (get-buffer-create cj--loaded-packages-buffer)
    (erase-buffer)
    (pop-to-buffer (current-buffer))

    (insert "* Live Packages Exploration\n\n")

    ;; Extract data from builtin variable `load-history'.
    (setq cj--loaded-file-paths
          (seq-filter #'stringp
                      (mapcar #'car load-history)))
    (setq cj--loaded-file-paths (cl-sort cj--loaded-file-paths 'string-lessp))
    (insert (format "%s total packages currently loaded\n"
                    (length cj--loaded-file-paths)))
    (cl-loop for file in cj--loaded-file-paths
             do (insert "\n" file))

    (goto-char (point-min))))
(keymap-set cj/debug-config-keymap "i p" 'cj/info-loaded-packages)

(defun cj/info-loaded-features()
  "List all currently loaded features."
  (interactive)
  (with-current-buffer (get-buffer-create cj--loaded-features-buffer)
    (erase-buffer)
    (pop-to-buffer (current-buffer))

    (insert (format "\n** %d features currently loaded\n"
                    (length features)))

    (let ((features-vec (apply 'vector features)))
      (setq features-vec (cl-sort features-vec 'string-lessp))
      (cl-loop for x across features-vec
               do (insert (format "  - %-25s: %s\n" x
                                  (locate-library (symbol-name x))))))
    (goto-char (point-min))))
(keymap-set cj/debug-config-keymap "i f" 'cj/info-loaded-features)

;; ------------------------------ Reload Init File -----------------------------

(defun cj/reload-init-file ()
  "Reload the init file.  Useful when modifying Emacs config."
  (interactive)
  (load-file user-init-file))
(keymap-set cj/debug-config-keymap "r" 'cj/reload-init-file)

;; ------------------------ Validate Org Agenda Entries ------------------------

(defun cj/--validate-timestamps-in-buffer (file)
  "Scan the current buffer for invalid org timestamps.
Walks every headline.  Checks DEADLINE / SCHEDULED / TIMESTAMP
properties plus inline timestamps in headline contents.  An inline
match whose raw text equals a property timestamp on the same headline
is not reported a second time.

Returns a list of (FILE POS HEADLINE-TEXT PROP TIMESTAMP-STRING) tuples
in document order.  FILE is the value passed in; the function does not
look it up itself."
  (require 'org)
  (require 'org-element)
  (let ((invalid '())
        (props '("DEADLINE" "SCHEDULED" "TIMESTAMP"))
        (parse-tree (org-element-parse-buffer 'headline)))
    (org-element-map parse-tree 'headline
      (lambda (hl)
        (let ((headline-text (org-element-property :raw-value hl))
              (begin-pos (org-element-property :begin hl))
              (property-timestamps '()))
          (dolist (prop props)
            (let ((timestamp (org-element-property
                              (intern (concat ":" (downcase prop))) hl)))
              (when timestamp
                (let ((time-str (org-element-property :raw-value timestamp)))
                  (push time-str property-timestamps)
                  (unless (ignore-errors (org-time-string-to-absolute time-str))
                    (push (list file begin-pos headline-text prop time-str)
                          invalid))))))
          (let ((contents-begin (org-element-property :contents-begin hl))
                (contents-end (org-element-property :contents-end hl)))
            (when (and contents-begin contents-end)
              (save-excursion
                (goto-char contents-begin)
                (while (re-search-forward org-ts-regexp contents-end t)
                  (let ((ts-string (match-string 0)))
                    (unless (or (member ts-string property-timestamps)
                                (ignore-errors
                                  (org-time-string-to-absolute ts-string)))
                      (push (list file begin-pos headline-text
                                  "inline timestamp" ts-string)
                            invalid))))))))))
    (nreverse invalid)))

(defun cj/--format-validation-report-section (file invalid-entries)
  "Return the per-FILE string section for the timestamp validation report.
INVALID-ENTRIES is a list of (FILE POS HEADLINE PROP TS) tuples as
returned by `cj/--validate-timestamps-in-buffer'.  An empty list
produces a section with the \"No invalid timestamps found.\" line."
  (concat
   (format "* %s\n" file)
   (if invalid-entries
       (mapconcat
        (lambda (entry)
          (cl-destructuring-bind (f pos head prop ts) entry
            (format
             "- [[file:%s::%d][%s]]\n  - Property/Type: %s\n  - Invalid timestamp: \"%s\"\n"
             f pos head prop ts)))
        invalid-entries
        "")
     "No invalid timestamps found.\n")
   "\n"))

(defun cj/validate-org-agenda-timestamps ()
  "Scan all files in `org-agenda-files' for invalid timestamps.
Checks DEADLINE, SCHEDULED, TIMESTAMP properties and inline timestamps in
headline contents. Generates an Org-mode report buffer with links to problematic
entries, property/type, and raw timestamp string."
  (interactive)
  (require 'org)
  (require 'org-element)
  (let ((report-buffer (get-buffer-create "*Org Invalid Timestamps Report*")))
    (with-current-buffer report-buffer
      (erase-buffer)
      (org-mode)
      (insert "#+TITLE: Org Invalid Timestamps Report\n\n")
      (insert "* Overview\nScan of org-agenda-files for invalid timestamps.\n\n"))
    (dolist (file org-agenda-files)
      (with-current-buffer (find-file-noselect file)
        (let ((invalid (cj/--validate-timestamps-in-buffer file)))
          (with-current-buffer report-buffer
            (insert (cj/--format-validation-report-section file invalid))))))
    (pop-to-buffer report-buffer)))

;; --------------------------- Org-Alert-Check Timers --------------------------

(defun cj/org-alert-list-timers ()
  "List all active timers running `org-alert-check' with next run time."
  (interactive)
  (let ((timers (cl-remove-if-not
                 (lambda (timer)
                   (eq (timer--function timer) #'org-alert-check))
                 timer-list)))
    (if timers
        (let ((lines
               (mapcar
                (lambda (timer)
                  (let* ((next-run (timer--time timer))
                         (next-run-str (format-time-string "%Y-%m-%d %H:%M:%S" next-run)))
                    (format "Timer next runs at: %s" next-run-str)))
                timers)))
          (message "org-alert-check timers:\n%s" (string-join lines "\n")))
      (message "No org-alert-check timers found."))))


(provide 'config-utilities)
;;; config-utilities.el ends here