This repository has been archived by the owner on Oct 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
paradox-core.el
155 lines (129 loc) · 5.49 KB
/
paradox-core.el
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
;;; paradox-core.el --- common functions -*- lexical-binding:t -*-
;; Copyright (C) 2014-2015 Artur Malabarba <[email protected]>
;; Author: Artur Malabarba <[email protected]>
;; Prefix: paradox
;; Separator: -
;;; License:
;;
;; This file is NOT part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 2
;; of the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;;; Code:
(require 'subr-x)
;;; Configurations
(defface paradox-comment-face
'((((background light)) :foreground "Grey30")
(((background dark)) :foreground "Grey60"))
"Face used on faded out stuff."
:group 'paradox-menu
:group 'paradox-commit-list)
(defface paradox-highlight-face
'((t :weight bold :inherit font-lock-variable-name-face))
"Face used on highlighted stuff."
:group 'paradox-menu
:group 'paradox-commit-list)
;;; Internal variables
(defvar paradox--star-count (make-hash-table))
(defvar paradox--download-count (make-hash-table))
(defvar paradox--package-repo-list (make-hash-table))
(defvar paradox--wiki-packages (make-hash-table))
(defconst paradox--data-url
"https://raw.githubusercontent.com/Malabarba/paradox/data/"
"Address of Paradox's data directory.")
(defconst paradox--star-count-url (concat paradox--data-url "data-hashtables")
"Address of the raw star-count file.")
(make-obsolete-variable 'paradox--star-count-url 'paradox--data-url "2.1")
(defconst paradox--package-count
'(("total" . 0) ("built-in" . 0)
("obsolete" . 0) ("deleted" . 0)
("available" . 0) ("new" . 0)
("held" . 0) ("disabled" . 0)
("dependency" . 0) ("avail-obso" . 0)
("incompat" . 0) ("external" . 0)
("installed" . 0) ("unsigned" . 0)))
(defmacro paradox--cas (string)
"Same as (cdr (assoc-string ,STRING paradox--package-count))."
`(cdr (assoc-string ,string paradox--package-count)))
(defun paradox--truncate-string-to-width-filter (args)
"Filter the args of `truncate-string-to-width' to use \"…\".
All arguments STR, END-COLUMN, START-COLUMN, PADDING, and
ELLIPSIS are passed to `truncate-string-to-width'."
(when (and (eq major-mode 'paradox-menu-mode)
(eq t (nth 4 args)))
(setf (nth 4 args) (if (char-displayable-p ?…) "…" "$")))
args)
;;; Overriding definitions
(defvar paradox--backups nil)
(defun paradox--core-enable ()
"Enable core features."
(ignore-errors (setcdr (assq 'menu-bar package-menu-mode-map) nil))
(advice-add #'truncate-string-to-width :filter-args
#'paradox--truncate-string-to-width-filter
'((name . :paradox-override)))
(add-to-list 'paradox--backups 'truncate-string-to-width))
(defun paradox-disable ()
"Disable paradox, and go back to regular package-menu."
(interactive)
(when paradox--backups
(message "Restoring %s" (mapconcat #'symbol-name paradox--backups ", "))
(dolist (it paradox--backups)
(advice-remove it :paradox-override))
(setq paradox--backups nil)))
(defun paradox--override-definition (sym newdef)
"Temporarily override SYM's function definition with NEWDEF.
Record that in `paradox--backups', but do nothing if
`paradox--backups' reports that it is already overriden."
(unless (memq sym paradox--backups)
(message "Overriding %s with %s" sym newdef)
(advice-add sym :override newdef '((name . :paradox-override)))
(add-to-list 'paradox--backups sym)))
;;; Pre 25.1 support
(defun paradox--update-downloads-in-progress (&optional name)
(if (and name (fboundp 'package--update-downloads-in-progress))
(package--update-downloads-in-progress name)
(when (bound-and-true-p package--downloads-in-progress)
(setq package--downloads-in-progress
(remove name package--downloads-in-progress)))))
(define-obsolete-function-alias
'paradox--pdate-downloads-in-progress
'paradox--update-downloads-in-progress
"2.1")
;;; Spinner
(defvar paradox--spinner nil)
(eval-and-compile (require 'spinner))
(defcustom paradox-spinner-type 'horizontal-moving
"Holds the type of spinner to be used in the mode-line.
Takes a value accepted by `spinner-start'."
:type `(choice (choice :tag "Choose a spinner by name"
,@(mapcar (lambda (c) (list 'const (car c)))
spinner-types))
(const :tag "A random spinner" random)
(repeat :tag "A list of symbols from `spinner-types' to randomly choose from"
(choice :tag "Choose a spinner by name"
,@(mapcar (lambda (c) (list 'const (car c)))
spinner-types)))
(vector :tag "A user defined vector"
(repeat :inline t string)))
:package-version '(paradox . "2.1")
:group 'paradox-execute)
(defun paradox--start-spinner ()
(when (spinner-p paradox--spinner)
(spinner-stop paradox--spinner))
(setq paradox--spinner
(make-spinner paradox-spinner-type t 10))
(spinner-start paradox--spinner))
(defun paradox--stop-spinner ()
(when (spinner-p paradox--spinner)
(spinner-stop paradox--spinner))
(setq paradox--spinner nil))
(provide 'paradox-core)
;;; paradox-core.el ends here.