caf5822f40
Controls wether the portable dumper is activated or not
97 lines
3.3 KiB
EmacsLisp
97 lines
3.3 KiB
EmacsLisp
;;; core-dumper.el --- Spacemacs Core File
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(defvar spacemacs-dump-mode 'not-dumped
|
|
"Spacemacs dump mode, can be `not-dumped', `dumped' or `dumping'.")
|
|
|
|
(defvar spacemacs-dump-process nil
|
|
"The process object to dump Emacs.")
|
|
|
|
(defconst spacemacs-dump-directory
|
|
(concat spacemacs-cache-directory "dumps/"))
|
|
|
|
(defconst spacemacs-dump-buffer-name "*spacemacs-dumper*")
|
|
|
|
(defun spacemacs/defer ()
|
|
"Return non-nil if dump is not supported."
|
|
(eq 'not-dumped spacemacs-dump-mode))
|
|
|
|
(defmacro spacemacs|require (&rest args)
|
|
"Require feature if dumping."
|
|
(spacemacs|when-dumping-strict `(require ,@args)))
|
|
|
|
(defun spacemacs-is-dumping-p ()
|
|
"Return non-nil if Spacemacs is dumping."
|
|
(eq 'dumping spacemacs-dump-mode))
|
|
|
|
(defun spacemacs-run-from-dump-p ()
|
|
"Return non-nil if Spacemacs is running from a dump."
|
|
(eq 'dumped spacemacs-dump-mode))
|
|
|
|
(defmacro spacemacs|when-dumping (&rest body)
|
|
"Execute body if dumping.
|
|
This function considers that we are always dumping if dumping is not supported.
|
|
You should always use this function."
|
|
(declare (indent defun))
|
|
`(when (not (eq 'dumped spacemacs-dump-mode))
|
|
,@body))
|
|
|
|
(defmacro spacemacs|when-dumping-strict (&rest body)
|
|
"Execute body if we are really dumping.
|
|
You should not used this function, it is reserved for some specific process."
|
|
(declare (indent defun))
|
|
`(when (eq 'dumping spacemacs-dump-mode)
|
|
,@body))
|
|
|
|
(defmacro spacemacs|unless-dumping (&rest body)
|
|
"Execute body if not dumping"
|
|
(declare (indent defun))
|
|
`(unless (eq 'dumping spacemacs-dump-mode)
|
|
,@body))
|
|
|
|
(defun spacemacs/emacs-with-pdumper-set-p ()
|
|
"Return non-nil if a portable dumper capable emacs executable is set."
|
|
(and dotspacemacs-enable-emacs-pdumper
|
|
(file-exists-p dotspacemacs-emacs-pdumper-executable-file)))
|
|
|
|
(defun spacemacs/dump-emacs ()
|
|
"Dump emacs in a subprocess."
|
|
(when spacemacs-dump-process
|
|
(message "Cancel running dumping process to start a new one.")
|
|
(delete-process spacemacs-dump-process)
|
|
(with-current-buffer spacemacs-dump-buffer-name
|
|
(erase-buffer)))
|
|
(make-directory spacemacs-dump-directory t)
|
|
(setq spacemacs-dump-process
|
|
(make-process
|
|
:name "spacemacs-dumper"
|
|
:buffer spacemacs-dump-buffer-name
|
|
:command
|
|
(list dotspacemacs-emacs-pdumper-executable-file
|
|
"--batch"
|
|
"-l" "~/.emacs.d/dump-init.el"
|
|
"-eval" (concat "(dump-emacs-portable \""
|
|
(concat spacemacs-dump-directory
|
|
dotspacemacs-emacs-dumper-dump-file)
|
|
"\")")))))
|
|
|
|
;; ;; Brute-force load all .el files in ELPA packages
|
|
;; (dolist (d (directory-files package-user-dir t nil 'nosort))
|
|
;; (unless (or (string-equal ".." (substring d -2))
|
|
;; (string-equal "." (substring d -1))
|
|
;; (not (file-directory-p d)))
|
|
;; (message "%s" d)
|
|
;; (dolist (f (directory-files d t "\\.el$" 'nosort))
|
|
;; (unless (string-match-p ".*pkg\\.el$" f)
|
|
;; (message "%s" f)
|
|
;; (ignore-errors (load f t))))))
|
|
|
|
(provide 'core-dumper)
|