1
0
Fork 0
emacs-persist-state/persist-state.el

126 lines
4.1 KiB
EmacsLisp
Raw Normal View History

;;; persist-state.el --- Persist variables regularly -*- lexical-binding: t; -*-
;; Copyright (C) 2023 Bram Schoenmakers
;; Author: Bram Schoenmakers <me@bramschoenmokers.nl>
;; Maintainer: Bram Schoenmakers <me@bramschoenmokers.nl>
;; Created: 05 May 2023
;; Package-Version: 0.1
;; Keywords: convenience
;; URL: https://apps.bram85.nl/git/bram/emacs-persist-state
;; This file is not part of GNU Emacs.
;;; Commentary:
;;; Code:
(defgroup persist-state nil
"Persist the Emacs state at regular intervals."
:group 'convenience)
(defcustom persist-state-saving-functions nil
2023-05-12 16:21:23 +00:00
"A list of functions that should be executed as part of saving state."
:type '(repeat function)
:group 'persist-state)
(defvar persist-state--save-state-timer nil
"This variable holds the timer object to trigger regular saves.")
(defcustom persist-state-save-interval
(* 15 60)
2023-05-12 16:21:23 +00:00
"Interval (in seconds) to persist state."
:type '(integer)
:group 'persist-state)
(defcustom persist-state-wait-idle
5
"When it's time to save, wait for this amount of idle time (in seconds)."
:type '(integer)
:group 'persist-state)
2023-05-12 18:05:04 +00:00
(defvar persist-state-supported-packages-alist
`((bookmark . (:function (lambda () (when bookmark-save-flag
(bookmark-save)))))
(desktop . (:function (lambda () (when desktop-save-mode
(desktop-save desktop-path)))))
(em-hist . (:function eshell-save-some-history
:label "Eshell history"))
(prescient . (:function (lambda () (when prescient-persist-mode
(prescient--save)))
:label "Prescient.el"
:url "https://github.com/radian-software/prescient.el"))
(recentf . (:function recentf-save-list))
(savehist . (:function (lambda () (when savehist-mode
savehist-autosave)))))
"A list of packages supported by persist-state.
Each package is a cons cell with the package name and a plist with:
- :function (mandatory): function to call to save state;
- :label (optional): a readable package name (for the README);
- :url (optional): URL to the package.")
(defun persist-state--regularly-run-on-idle (interval idle-seconds f &rest args)
"Run function F with ARGS every INTERVAL seconds, plus IDLE-SECONDS."
(run-with-timer interval interval
(lambda ()
(run-with-idle-timer idle-seconds nil
(lambda ()
(apply f args))))))
(defun persist-state--save-state ()
"Save state but only when the user was active recently."
(when (< (float-time (current-idle-time)) persist-state-save-interval)
2023-05-13 19:49:09 +00:00
(mapc #'funcall persist-state-saving-functions)))
(defun persist-state--enable-packages ()
"Enables all supported packages.
If a package has no argumunts (no `:args' attribute, the function
is added as-is, otherwise it's wrapped in a lambda performing an
`apply' call.)"
(mapc (lambda (package)
(with-eval-after-load (car package)
(let ((attrs (cdr package)))
(add-to-list 'persist-state-saving-functions
(plist-get attrs :function)))))
2023-05-12 18:05:04 +00:00
persist-state-supported-packages-alist))
2023-05-14 17:30:47 +00:00
(defun persist-state--enable ()
"Start saving the Emacs state at the configured interval."
(interactive)
(persist-state--enable-packages)
(setq persist-state--save-state-timer
(persist-state--regularly-run-on-idle persist-state-save-interval
2023-05-12 16:21:23 +00:00
persist-state-wait-idle
#'persist-state--save-state)))
2023-05-14 17:30:47 +00:00
(defun persist-state--disable ()
"Stop saving the Emacs state."
2023-05-14 20:49:32 +00:00
(interactive)
(when (timerp persist-state--save-state-timer)
(cancel-timer persist-state--save-state-timer)))
2023-05-14 17:30:47 +00:00
;;;###autoload
(define-minor-mode persist-state-mode
"Create minor mode to enable/disable saving state."
:global t
:lighter " Persist"
(cond
(persist-state-mode
(persist-state--enable))
(t
(persist-state--disable))))
(provide 'persist-state)
;;; persist-state.el ends here