spacemacs/core/contribsys.el

189 lines
8.5 KiB
EmacsLisp
Raw Normal View History

2014-09-03 06:25:27 +00:00
;; Spacemacs Contribution System
(require 'package)
(setq package-archives '(("ELPA" . "http://tromey.com/elpa/")
("gnu" . "http://elpa.gnu.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
(package-initialize)
(setq warning-minimum-level :error)
2014-09-03 06:25:27 +00:00
;; Emacs 24.3 and above ships with python.el but in some Emacs 24.3.1 packages
;; for Ubuntu, python.el seems to be missing.
;; This hack adds marmalade repository for this case only.
(unless (or (package-installed-p 'python) (version< emacs-version "24.3"))
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/")))
2014-09-10 02:02:38 +00:00
(load (concat spacemacs-core-directory "ht.el"))
2014-09-03 06:25:27 +00:00
(defvar spacemacs-config-layers '()
"Alist of configuration layers with the form (symbol . plist) where
SYMBOL is the name of the layer and PLIST is a property list with the following
keys:
:contrib if t then the layer is a contribution layer.
:dir the absolute path to the base directory of the layer.
:ext-dir the absolute path to the directory containing the extensions.
")
(defvar spacemacs-all-packages #s(hash-table size 200 data ())
"Hash table of all declared packages in all layers where the key is a package
symbol and the value is the layer symbol where to initialize the package. ")
(defvar spacemacs-all-pre-extensions #s(hash-table size 64 data ())
"Hash table of all declared pre-extensions in all layers where the key is a
extension symbol and the value is the layer symbol where to load and
initialize the extension. ")
(defvar spacemacs-all-post-extensions #s(hash-table size 64 data ())
"Hash table of all declared post-extensions in all layers where the key is a
extension symbol and the value is the layer symbol where to load and
initialize the extension. ")
(defun contribsys/declare-layer (sym &optional contrib)
2014-09-03 06:25:27 +00:00
"Declare a layer with SYM name (symbol). If CONTRIB is non nil then the layer
is a contribution layer."
(let* ((sym-name (symbol-name sym))
2014-09-10 02:02:38 +00:00
(base-dir (if contrib spacemacs-contrib-config-directory
user-emacs-directory))
2014-09-03 06:25:27 +00:00
(dir (format "%s%s/" base-dir sym-name))
(ext-dir (format "%sextensions/" dir)))
(push (cons sym (list :contrib contrib :dir dir :ext-dir ext-dir))
spacemacs-config-layers)))
2014-09-03 06:25:27 +00:00
(defun contribsys/load-layers ()
2014-09-03 06:25:27 +00:00
"Load all declared layers."
(contribsys/load-layer-files '("funcs.el" "config.el"))
(contribsys/read-packages-and-extensions)
(contribsys/initialize-extensions spacemacs-all-pre-extensions)
(contribsys/install-packages)
(spacemacs/append-to-buffer spacemacs-loading-text)
(contribsys/initialize-packages)
(contribsys/initialize-extensions spacemacs-all-post-extensions)
2014-09-06 08:54:07 +00:00
(contribsys/load-layer-files '("keybindings.el")))
2014-09-03 06:25:27 +00:00
(defun contribsys/load-layer-files (files)
2014-09-03 06:25:27 +00:00
"Load the files of list FILES from all declared layers."
(dolist (layer (reverse spacemacs-config-layers))
(let* ((sym (car layer))
(dir (plist-get (cdr layer) :dir)))
(dolist (file files)
(let ((file (concat dir file)))
(if (file-exists-p file)
(load file)))))))
2014-09-03 06:25:27 +00:00
(defun contribsys/read-packages-and-extensions ()
2014-09-03 06:25:27 +00:00
"Load all packages and extensions declared in all layers and fill the
corresponding hash tables:
spacemacs-all-packages
spacemacs-all-pre-extensions
spacemacs-all-post-extensions
By using a hash table we ensure that *only one layer* is responsible for the
initialization of a package or extensions (as well as the loading in case of
extension), the winner layer is the last layer to declare the package or
extension.
"
(dolist (layer (reverse spacemacs-config-layers))
(let* ((sym (car layer))
(dir (plist-get (cdr layer) :dir))
(pkg-file (concat dir "packages.el"))
(ext-file (concat dir "extensions.el")))
(progn
;; packages
(unless (not (file-exists-p pkg-file))
(load pkg-file)
(dolist (pkg (eval (intern (format "%s-packages" (symbol-name sym)))))
(unless (member pkg dotspacemacs-excluded-packages)
2014-10-18 19:58:02 +00:00
(puthash pkg sym spacemacs-all-packages))))
2014-09-03 06:25:27 +00:00
;; extensions
(unless (not (file-exists-p ext-file))
(load ext-file)
(dolist (pkg (eval (intern (format "%s-pre-extensions"
(symbol-name sym)))))
(unless (member pkg dotspacemacs-excluded-packages)
(puthash pkg sym spacemacs-all-pre-extensions)))
(dolist (pkg (eval (intern (format "%s-post-extensions"
(symbol-name sym)))))
(unless (member pkg dotspacemacs-excluded-packages)
(puthash pkg sym spacemacs-all-post-extensions)))))))
;; number of chuncks for the loading screen
(let ((total (+ (ht-size spacemacs-all-packages)
(ht-size spacemacs-all-pre-extensions)
(ht-size spacemacs-all-post-extensions))))
(setq spacemacs-loading-dots-chunk-threshold
(/ total spacemacs-loading-dots-chunk-count))))
2014-09-03 06:25:27 +00:00
(defun contribsys/install-packages ()
2014-09-03 06:25:27 +00:00
"Install the packages all the packages if there are not currently installed."
(interactive)
(let* ((pkg-list (ht-keys spacemacs-all-packages))
(sorted-pkg-list (mapcar 'intern
(sort (mapcar 'symbol-name pkg-list)
'string<)))
(not-installed (remove-if 'package-installed-p sorted-pkg-list))
(not-installed-count (length not-installed)))
2014-09-03 06:25:27 +00:00
;; installation
(if not-installed
(progn
(spacemacs/append-to-buffer
2014-09-07 05:18:02 +00:00
(format "Found %s new package(s) to install...\n"
not-installed-count))
(spacemacs/append-to-buffer
2014-09-24 01:20:49 +00:00
"--> fetching new package repository indexes...\n")
2014-09-07 05:18:02 +00:00
(redisplay)
(package-refresh-contents)
(setq installed-count 0)
(dolist (pkg not-installed)
2014-10-03 04:52:39 +00:00
(setq installed-count (1+ installed-count))
(when (not (package-installed-p pkg))
(spacemacs/replace-last-line-of-buffer
(format "--> installing %s:%s... [%s/%s]"
(ht-get spacemacs-all-packages pkg)
pkg
installed-count
not-installed-count) t)
(package-install pkg))
2014-09-07 05:18:02 +00:00
(redisplay))
(spacemacs/append-to-buffer "\n")))))
2014-09-03 06:25:27 +00:00
(defun contribsys/initialize-packages ()
2014-09-03 06:25:27 +00:00
"Initialize all the declared packages."
(ht-each 'contribsys/initialize-package spacemacs-all-packages))
2014-09-03 06:25:27 +00:00
(defun contribsys/initialize-package (pkg lsym)
2014-09-03 06:25:27 +00:00
"Initialize the package PKG from the configuration layer LSYM."
(let* ((layer (assq lsym spacemacs-config-layers))
(init-func (intern (format "%s/init-%s" (symbol-name lsym) pkg))))
(spacemacs/loading-animation)
(if (and (package-installed-p pkg) (fboundp init-func))
(progn (message "(Spacemacs) Initializing %s:%s..."
(symbol-name lsym) pkg)
(funcall init-func)))))
2014-09-03 06:25:27 +00:00
(defun contribsys/initialize-extensions (ext-list)
"Initialize all the declared extensions in EXT-LIST hash table."
(ht-each 'contribsys/initialize-extension ext-list))
2014-09-03 06:25:27 +00:00
(defun contribsys/initialize-extension (ext lsym)
2014-09-03 06:25:27 +00:00
"Initialize the extension EXT from the configuration layer LSYM."
(let* ((layer (assq lsym spacemacs-config-layers))
(ext-dir (plist-get (cdr layer) :ext-dir))
(init-func (intern (format "%s/init-%s" (symbol-name lsym) ext))))
(add-to-list 'load-path (format "%s%s/" ext-dir ext))
(spacemacs/loading-animation)
(message "(Spacemacs) Initializing %s:%s..." (symbol-name lsym) ext)
(if (fboundp init-func) (funcall init-func))))
(defun contribsys/initialized-packages-count ()
"Return the number of initialized packages and extensions."
(+ (ht-size spacemacs-all-packages)
(ht-size spacemacs-all-pre-extensions)
(ht-size spacemacs-all-post-extensions)))
(defun contribsys/declare-configuration-layers ()
"Declare the configuration layer in order of appearance in list
dotspacemacs-configuration-layers defined in ~/.spacemacs."
(if (boundp 'dotspacemacs-configuration-layers)
(dolist (layer dotspacemacs-configuration-layers)
(contribsys/declare-layer layer t))))
(defun contribsys/get-layer-property (symlayer prop)
"Return the value of the PROPerty for the given SYMLAYER symbol."
(let* ((layer (assq symlayer spacemacs-config-layers)))
(plist-get (cdr layer) prop)))