2018-09-27 23:05:04 -04:00
|
|
|
;;; core/autoload/cli.el -*- lexical-binding: t; -*-
|
|
|
|
|
2019-07-21 15:39:45 +02:00
|
|
|
;; Externs
|
|
|
|
(defvar evil-collection-mode-list)
|
|
|
|
|
2019-04-26 22:11:37 -04:00
|
|
|
;;;###autoload
|
2019-07-21 15:39:45 +02:00
|
|
|
(defun doom--cli-run (command &rest _args)
|
2019-05-12 01:43:06 -04:00
|
|
|
(when (featurep 'general)
|
|
|
|
(general-auto-unbind-keys))
|
|
|
|
(let* ((evil-collection-mode-list nil)
|
|
|
|
(default-directory doom-emacs-dir)
|
2019-03-09 03:53:38 -05:00
|
|
|
(buf (get-buffer-create " *bin/doom*"))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom-format-backend 'ansi)
|
2019-03-09 03:53:38 -05:00
|
|
|
(ignore-window-parameters t)
|
2019-03-09 04:28:25 -05:00
|
|
|
(noninteractive t)
|
2019-03-09 03:53:38 -05:00
|
|
|
(standard-output
|
|
|
|
(lambda (char)
|
|
|
|
(with-current-buffer buf
|
|
|
|
(insert char)
|
|
|
|
(when (memq char '(?\n ?\r))
|
|
|
|
(ansi-color-apply-on-region (line-beginning-position -1) (line-end-position))
|
|
|
|
(redisplay))))))
|
2019-03-09 04:28:25 -05:00
|
|
|
(doom-initialize t)
|
|
|
|
(setq doom-modules (doom-modules))
|
|
|
|
(doom-initialize-modules t)
|
|
|
|
(doom-initialize-packages t)
|
|
|
|
(with-current-buffer (switch-to-buffer buf)
|
|
|
|
(erase-buffer)
|
|
|
|
(require 'package)
|
|
|
|
(redisplay)
|
|
|
|
(doom-dispatch command nil)
|
|
|
|
(print! (green "\nDone!"))))
|
2019-05-12 01:43:06 -04:00
|
|
|
(when (featurep 'general)
|
|
|
|
(general-auto-unbind-keys 'undo))
|
2019-03-09 04:28:25 -05:00
|
|
|
(message (format! (green "Done!"))))
|
2018-09-27 23:05:04 -04:00
|
|
|
|
|
|
|
|
2019-03-09 03:53:38 -05:00
|
|
|
;;;###autoload
|
|
|
|
(defun doom//autoloads (&optional yes)
|
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "autoloads")))
|
2019-03-09 03:53:38 -05:00
|
|
|
|
2018-09-27 23:05:04 -04:00
|
|
|
;;;###autoload
|
2019-05-02 16:20:40 -04:00
|
|
|
(defun doom//update (&optional yes)
|
2018-09-27 23:05:04 -04:00
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "update")))
|
2018-09-27 23:05:04 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom//upgrade (&optional yes)
|
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "upgrade"))
|
2019-03-22 14:13:35 -04:00
|
|
|
(when (y-or-n-p "You must restart Emacs for the upgrade to take effect. Restart?")
|
|
|
|
(doom/restart-and-restore)))
|
2018-09-27 23:05:04 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom//install (&optional yes)
|
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "install")))
|
2018-09-27 23:05:04 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom//autoremove (&optional yes)
|
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "autoremove")))
|
2018-09-27 23:05:04 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom//refresh (&optional yes)
|
|
|
|
"TODO"
|
|
|
|
(interactive "P")
|
2019-04-26 22:11:37 -04:00
|
|
|
(let ((doom-auto-accept yes))
|
2019-07-21 15:39:45 +02:00
|
|
|
(doom--cli-run "refresh")))
|
2019-10-17 14:36:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
;;; Library
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom-call-process (command &rest args)
|
|
|
|
"Execute COMMAND with ARGS synchronously.
|
|
|
|
|
|
|
|
Returns (STATUS . OUTPUT) when it is done, where STATUS is the returned error
|
|
|
|
code of the process and OUTPUT is its stdout output."
|
|
|
|
(with-temp-buffer
|
|
|
|
(cons (or (apply #'call-process command nil t nil args)
|
|
|
|
-1)
|
|
|
|
(string-trim (buffer-string)))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun doom-exec-process (command &rest args)
|
|
|
|
"Execute COMMAND with ARGS synchronously.
|
|
|
|
|
|
|
|
Unlike `doom-call-process', this pipes output to `standard-output' on the fly to
|
|
|
|
simulate 'exec' in the shell, so batch scripts could run external programs
|
|
|
|
synchronously without sacrificing their output.
|
|
|
|
|
|
|
|
Warning: freezes indefinitely on any stdin prompt."
|
|
|
|
;; FIXME Is there any way to handle prompts?
|
|
|
|
(with-temp-buffer
|
|
|
|
(cons (let ((process
|
|
|
|
(make-process :name "doom-sh"
|
|
|
|
:buffer (current-buffer)
|
|
|
|
:command (cons command args)
|
|
|
|
:connection-type 'pipe))
|
|
|
|
done-p)
|
|
|
|
(set-process-filter
|
2019-10-19 02:34:57 -04:00
|
|
|
process (lambda (process output)
|
|
|
|
(princ output (current-buffer))
|
|
|
|
(princ output)))
|
2019-10-17 14:36:57 -04:00
|
|
|
(set-process-sentinel
|
|
|
|
process (lambda (process _event)
|
|
|
|
(when (memq (process-status process) '(exit stop))
|
|
|
|
(setq done-p t))))
|
|
|
|
(while (not done-p)
|
|
|
|
(sit-for 0.1))
|
|
|
|
(process-exit-status process))
|
|
|
|
(string-trim (buffer-string)))))
|