emacs: Reorganize package/generation UI code.
Move the code for packages/generations interface from "guix-info.el",
"guix-list.el", "guix-base.el" and "guix.el" to "guix-ui-package.el" and
"guix-ui-generation.el".
* emacs/guix-base.el (guix-package-entry->name-specification)
(guix-package-entries->name-specifications)
(guix-package-id-and-output-by-output-id)
(guix-package-installed-outputs, guix-process-package-actions)
(guix-package-list-type, guix-package-info-type)
(guix-continue-package-operation-p, guix-get-package-strings)
(guix-insert-package-strings): Move to "guix-ui-package.el".
(guix-generation-packages-buffer-name-function, guix-output-name-width)
(guix-generation-packages-update-buffer, guix-generation-packages)
(guix-generation-packages-buffer-name-default)
(guix-generation-packages-buffer-name-long)
(guix-generation-packages-buffer-name, guix-generation-packages-buffer)
(guix-generation-insert-packages, guix-generation-insert-package)
(guix-profile-generation-manifest-file, guix-delete-generations)
(guix-profile-generation-packages-buffer, guix-switch-to-generation):
Move to "guix-ui-generation.el".
* emacs/guix-info.el (guix-package-location, guix-package-name)
(guix-package-source, guix-package-info-source)
(guix-package-info-heading, guix-package-info-license)
(guix-package-info-name, guix-package-info-name-button)
(guix-package-info-version, guix-package-info-location)
(guix-package-info-synopsis, guix-package-info-description)
(guix-package-info-obsolete, guix-package-info-installed-outputs)
(guix-package-info-uninstalled-outputs)
(guix-package-info-insert-heading)
(guix-package-info-define-insert-inputs)
(guix-package-info-obsolete-string)
(guix-package-info-insert-obsolete-text)
(guix-package-info-insert-non-unique-text)
(guix-package-info-insert-outputs, guix-package-info-insert-output)
(guix-package-info-insert-action-button)
(guix-package-info-auto-find-source)
(guix-package-info-auto-download-source)
(guix-package-info-download-buffer, guix-package-info-show-source)
(guix-package-info-download-source, guix-package-info-insert-source)
(guix-package-info-redisplay-after-download)
(guix-output-info-insert-version, guix-output-info-insert-output):
Move to "guix-ui-package.el".
(guix-generation-info-number, guix-generation-info-current)
(guix-generation-not-current, guix-generation-info-insert-number)
(guix-generation-info-insert-current): Move to "guix-ui-generation.el".
* emacs/guix-list.el (guix-package-list-generation-marking-enabled)
(guix-package-list-installed, guix-package-list-obsolete)
(guix-package-list-get-name, guix-package-list-get-installed-outputs)
(guix-package-list-marking-check, guix-package-list-mark-outputs)
(guix-package-list-mark-install, guix-package-list-mark-delete)
(guix-package-list-mark-upgrade, guix-package-list-mark-upgrades)
(guix-list-mark-package-upgrades, guix-list-execute-package-actions)
(guix-package-list-execute, guix-package-list-make-action)
(guix-package-list-edit, guix-output-list-mark-install)
(guix-output-list-mark-delete, guix-output-list-mark-upgrade)
(guix-output-list-mark-upgrades, guix-output-list-make-action)
(guix-output-list-describe, guix-output-list-edit): Move to
"guix-ui-package.el".
(guix-generation-list-get-current, guix-generation-list-switch)
(guix-generation-list-generations-to-compare)
(guix-generation-list-compare, guix-generation-list-show-packages)
(guix-generation-list-show-added-packages)
(guix-generation-list-show-removed-packages)
(guix-generation-list-diff, guix-generation-list-diff-manifests)
(guix-generation-list-ediff, guix-generation-list-ediff-manifests)
(guix-generation-list-diff-packages)
(guix-generation-list-ediff-packages)
(guix-generation-list-mark-delete, guix-generation-list-execute): Move
to "guix-ui-generation.el".
* emacs/guix.el: Remove.
(guix, guix-faces, guix-edit): Move to "guix-base.el".
(guix-list-single-package, guix-search-params, guix-search-history)
(guix-get-show-packages, guix-search-by-name, guix-search-by-regexp)
(guix-installed-packages, guix-obsolete-packages)
(guix-all-available-packages, guix-newest-available-packages): Move
to "guix-ui-package.el".
(guix-get-show-generations, guix-generations, guix-last-generations)
(guix-generations-by-time): Move to "guix-ui-generation.el".
* emacs.am (ELFILES): Remove "guix.el". Add "guix-ui-package.el" and
"guix-ui-generation.el".
* doc/emacs.texi (Emacs Appearance): Adjust accordingly.
2015-12-09 06:44:34 -05:00
|
|
|
|
;;; guix-list.el --- 'List' buffer interface for displaying data -*- lexical-binding: t -*-
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-08-16 00:11:57 -04:00
|
|
|
|
;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com>
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Guix.
|
|
|
|
|
|
|
|
|
|
;; GNU Guix 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 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Guix 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.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
emacs: Reorganize package/generation UI code.
Move the code for packages/generations interface from "guix-info.el",
"guix-list.el", "guix-base.el" and "guix.el" to "guix-ui-package.el" and
"guix-ui-generation.el".
* emacs/guix-base.el (guix-package-entry->name-specification)
(guix-package-entries->name-specifications)
(guix-package-id-and-output-by-output-id)
(guix-package-installed-outputs, guix-process-package-actions)
(guix-package-list-type, guix-package-info-type)
(guix-continue-package-operation-p, guix-get-package-strings)
(guix-insert-package-strings): Move to "guix-ui-package.el".
(guix-generation-packages-buffer-name-function, guix-output-name-width)
(guix-generation-packages-update-buffer, guix-generation-packages)
(guix-generation-packages-buffer-name-default)
(guix-generation-packages-buffer-name-long)
(guix-generation-packages-buffer-name, guix-generation-packages-buffer)
(guix-generation-insert-packages, guix-generation-insert-package)
(guix-profile-generation-manifest-file, guix-delete-generations)
(guix-profile-generation-packages-buffer, guix-switch-to-generation):
Move to "guix-ui-generation.el".
* emacs/guix-info.el (guix-package-location, guix-package-name)
(guix-package-source, guix-package-info-source)
(guix-package-info-heading, guix-package-info-license)
(guix-package-info-name, guix-package-info-name-button)
(guix-package-info-version, guix-package-info-location)
(guix-package-info-synopsis, guix-package-info-description)
(guix-package-info-obsolete, guix-package-info-installed-outputs)
(guix-package-info-uninstalled-outputs)
(guix-package-info-insert-heading)
(guix-package-info-define-insert-inputs)
(guix-package-info-obsolete-string)
(guix-package-info-insert-obsolete-text)
(guix-package-info-insert-non-unique-text)
(guix-package-info-insert-outputs, guix-package-info-insert-output)
(guix-package-info-insert-action-button)
(guix-package-info-auto-find-source)
(guix-package-info-auto-download-source)
(guix-package-info-download-buffer, guix-package-info-show-source)
(guix-package-info-download-source, guix-package-info-insert-source)
(guix-package-info-redisplay-after-download)
(guix-output-info-insert-version, guix-output-info-insert-output):
Move to "guix-ui-package.el".
(guix-generation-info-number, guix-generation-info-current)
(guix-generation-not-current, guix-generation-info-insert-number)
(guix-generation-info-insert-current): Move to "guix-ui-generation.el".
* emacs/guix-list.el (guix-package-list-generation-marking-enabled)
(guix-package-list-installed, guix-package-list-obsolete)
(guix-package-list-get-name, guix-package-list-get-installed-outputs)
(guix-package-list-marking-check, guix-package-list-mark-outputs)
(guix-package-list-mark-install, guix-package-list-mark-delete)
(guix-package-list-mark-upgrade, guix-package-list-mark-upgrades)
(guix-list-mark-package-upgrades, guix-list-execute-package-actions)
(guix-package-list-execute, guix-package-list-make-action)
(guix-package-list-edit, guix-output-list-mark-install)
(guix-output-list-mark-delete, guix-output-list-mark-upgrade)
(guix-output-list-mark-upgrades, guix-output-list-make-action)
(guix-output-list-describe, guix-output-list-edit): Move to
"guix-ui-package.el".
(guix-generation-list-get-current, guix-generation-list-switch)
(guix-generation-list-generations-to-compare)
(guix-generation-list-compare, guix-generation-list-show-packages)
(guix-generation-list-show-added-packages)
(guix-generation-list-show-removed-packages)
(guix-generation-list-diff, guix-generation-list-diff-manifests)
(guix-generation-list-ediff, guix-generation-list-ediff-manifests)
(guix-generation-list-diff-packages)
(guix-generation-list-ediff-packages)
(guix-generation-list-mark-delete, guix-generation-list-execute): Move
to "guix-ui-generation.el".
* emacs/guix.el: Remove.
(guix, guix-faces, guix-edit): Move to "guix-base.el".
(guix-list-single-package, guix-search-params, guix-search-history)
(guix-get-show-packages, guix-search-by-name, guix-search-by-regexp)
(guix-installed-packages, guix-obsolete-packages)
(guix-all-available-packages, guix-newest-available-packages): Move
to "guix-ui-package.el".
(guix-get-show-generations, guix-generations, guix-last-generations)
(guix-generations-by-time): Move to "guix-ui-generation.el".
* emacs.am (ELFILES): Remove "guix.el". Add "guix-ui-package.el" and
"guix-ui-generation.el".
* doc/emacs.texi (Emacs Appearance): Adjust accordingly.
2015-12-09 06:44:34 -05:00
|
|
|
|
;; This file provides 'list' buffer interface for displaying an arbitrary
|
|
|
|
|
;; data.
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'cl-lib)
|
|
|
|
|
(require 'tabulated-list)
|
emacs: Reorganize package/generation UI code.
Move the code for packages/generations interface from "guix-info.el",
"guix-list.el", "guix-base.el" and "guix.el" to "guix-ui-package.el" and
"guix-ui-generation.el".
* emacs/guix-base.el (guix-package-entry->name-specification)
(guix-package-entries->name-specifications)
(guix-package-id-and-output-by-output-id)
(guix-package-installed-outputs, guix-process-package-actions)
(guix-package-list-type, guix-package-info-type)
(guix-continue-package-operation-p, guix-get-package-strings)
(guix-insert-package-strings): Move to "guix-ui-package.el".
(guix-generation-packages-buffer-name-function, guix-output-name-width)
(guix-generation-packages-update-buffer, guix-generation-packages)
(guix-generation-packages-buffer-name-default)
(guix-generation-packages-buffer-name-long)
(guix-generation-packages-buffer-name, guix-generation-packages-buffer)
(guix-generation-insert-packages, guix-generation-insert-package)
(guix-profile-generation-manifest-file, guix-delete-generations)
(guix-profile-generation-packages-buffer, guix-switch-to-generation):
Move to "guix-ui-generation.el".
* emacs/guix-info.el (guix-package-location, guix-package-name)
(guix-package-source, guix-package-info-source)
(guix-package-info-heading, guix-package-info-license)
(guix-package-info-name, guix-package-info-name-button)
(guix-package-info-version, guix-package-info-location)
(guix-package-info-synopsis, guix-package-info-description)
(guix-package-info-obsolete, guix-package-info-installed-outputs)
(guix-package-info-uninstalled-outputs)
(guix-package-info-insert-heading)
(guix-package-info-define-insert-inputs)
(guix-package-info-obsolete-string)
(guix-package-info-insert-obsolete-text)
(guix-package-info-insert-non-unique-text)
(guix-package-info-insert-outputs, guix-package-info-insert-output)
(guix-package-info-insert-action-button)
(guix-package-info-auto-find-source)
(guix-package-info-auto-download-source)
(guix-package-info-download-buffer, guix-package-info-show-source)
(guix-package-info-download-source, guix-package-info-insert-source)
(guix-package-info-redisplay-after-download)
(guix-output-info-insert-version, guix-output-info-insert-output):
Move to "guix-ui-package.el".
(guix-generation-info-number, guix-generation-info-current)
(guix-generation-not-current, guix-generation-info-insert-number)
(guix-generation-info-insert-current): Move to "guix-ui-generation.el".
* emacs/guix-list.el (guix-package-list-generation-marking-enabled)
(guix-package-list-installed, guix-package-list-obsolete)
(guix-package-list-get-name, guix-package-list-get-installed-outputs)
(guix-package-list-marking-check, guix-package-list-mark-outputs)
(guix-package-list-mark-install, guix-package-list-mark-delete)
(guix-package-list-mark-upgrade, guix-package-list-mark-upgrades)
(guix-list-mark-package-upgrades, guix-list-execute-package-actions)
(guix-package-list-execute, guix-package-list-make-action)
(guix-package-list-edit, guix-output-list-mark-install)
(guix-output-list-mark-delete, guix-output-list-mark-upgrade)
(guix-output-list-mark-upgrades, guix-output-list-make-action)
(guix-output-list-describe, guix-output-list-edit): Move to
"guix-ui-package.el".
(guix-generation-list-get-current, guix-generation-list-switch)
(guix-generation-list-generations-to-compare)
(guix-generation-list-compare, guix-generation-list-show-packages)
(guix-generation-list-show-added-packages)
(guix-generation-list-show-removed-packages)
(guix-generation-list-diff, guix-generation-list-diff-manifests)
(guix-generation-list-ediff, guix-generation-list-ediff-manifests)
(guix-generation-list-diff-packages)
(guix-generation-list-ediff-packages)
(guix-generation-list-mark-delete, guix-generation-list-execute): Move
to "guix-ui-generation.el".
* emacs/guix.el: Remove.
(guix, guix-faces, guix-edit): Move to "guix-base.el".
(guix-list-single-package, guix-search-params, guix-search-history)
(guix-get-show-packages, guix-search-by-name, guix-search-by-regexp)
(guix-installed-packages, guix-obsolete-packages)
(guix-all-available-packages, guix-newest-available-packages): Move
to "guix-ui-package.el".
(guix-get-show-generations, guix-generations, guix-last-generations)
(guix-generations-by-time): Move to "guix-ui-generation.el".
* emacs.am (ELFILES): Remove "guix.el". Add "guix-ui-package.el" and
"guix-ui-generation.el".
* doc/emacs.texi (Emacs Appearance): Adjust accordingly.
2015-12-09 06:44:34 -05:00
|
|
|
|
(require 'guix-buffer)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(require 'guix-info)
|
2015-10-22 03:08:42 -04:00
|
|
|
|
(require 'guix-entry)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(require 'guix-utils)
|
|
|
|
|
|
2015-12-18 03:19:12 -05:00
|
|
|
|
(guix-define-buffer-type list)
|
2015-09-14 16:32:53 -04:00
|
|
|
|
|
2016-01-21 02:59:50 -05:00
|
|
|
|
(defface guix-list-file-name
|
|
|
|
|
'((t :inherit guix-info-file-name))
|
|
|
|
|
"Face used for file names."
|
2015-09-14 16:32:53 -04:00
|
|
|
|
:group 'guix-list-faces)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2016-01-21 03:00:59 -05:00
|
|
|
|
(defface guix-list-url
|
|
|
|
|
'((t :inherit guix-info-url))
|
|
|
|
|
"Face used for URLs."
|
|
|
|
|
:group 'guix-list-faces)
|
|
|
|
|
|
2015-11-17 13:46:31 -05:00
|
|
|
|
(defface guix-list-time
|
|
|
|
|
'((t :inherit guix-info-time))
|
|
|
|
|
"Face used for time stamps."
|
|
|
|
|
:group 'guix-list-faces)
|
|
|
|
|
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(defun guix-list-describe (&optional mark-names)
|
|
|
|
|
"Describe entries marked with a general mark.
|
|
|
|
|
'Describe' means display entries in 'info' buffer.
|
|
|
|
|
If no entries are marked, describe the current entry.
|
|
|
|
|
With prefix argument, describe entries marked with any mark."
|
|
|
|
|
(interactive (list (unless current-prefix-arg '(general))))
|
|
|
|
|
(let* ((ids (or (apply #'guix-list-get-marked-id-list mark-names)
|
|
|
|
|
(list (guix-list-current-id))))
|
|
|
|
|
(count (length ids))
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
(entry-type (guix-buffer-current-entry-type)))
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(when (or (<= count (guix-list-describe-warning-count entry-type))
|
|
|
|
|
(y-or-n-p (format "Do you really want to describe %d entries? "
|
|
|
|
|
count)))
|
|
|
|
|
(guix-list-describe-entries entry-type ids))))
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
|
|
|
|
|
;;; Wrappers for 'list' variables
|
|
|
|
|
|
|
|
|
|
(defvar guix-list-data nil
|
|
|
|
|
"Alist with 'list' data.
|
2015-11-20 04:38:31 -05:00
|
|
|
|
This alist is filled by `guix-list-define-interface' macro.")
|
2015-11-19 03:03:48 -05:00
|
|
|
|
|
|
|
|
|
(defun guix-list-value (entry-type symbol)
|
|
|
|
|
"Return SYMBOL's value for ENTRY-TYPE from `guix-list-data'."
|
|
|
|
|
(symbol-value (guix-assq-value guix-list-data entry-type symbol)))
|
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-param-title (entry-type param)
|
|
|
|
|
"Return column title of an ENTRY-TYPE parameter PARAM."
|
2015-11-21 03:35:43 -05:00
|
|
|
|
(guix-buffer-param-title 'list entry-type param))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-format (entry-type)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Return column format for ENTRY-TYPE."
|
2015-11-19 08:56:19 -05:00
|
|
|
|
(guix-list-value entry-type 'format))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-displayed-params (entry-type)
|
|
|
|
|
"Return a list of ENTRY-TYPE parameters that should be displayed."
|
|
|
|
|
(mapcar #'car (guix-list-format entry-type)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(defun guix-list-sort-key (entry-type)
|
|
|
|
|
"Return sort key for ENTRY-TYPE."
|
|
|
|
|
(guix-list-value entry-type 'sort-key))
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(defun guix-list-additional-marks (entry-type)
|
|
|
|
|
"Return alist of additional marks for ENTRY-TYPE."
|
|
|
|
|
(guix-list-value entry-type 'marks))
|
|
|
|
|
|
2015-12-09 13:58:36 -05:00
|
|
|
|
(defun guix-list-single-entry? (entry-type)
|
|
|
|
|
"Return non-nil, if a single entry of ENTRY-TYPE should be listed."
|
|
|
|
|
(guix-list-value entry-type 'list-single))
|
|
|
|
|
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(defun guix-list-describe-warning-count (entry-type)
|
|
|
|
|
"Return the maximum number of ENTRY-TYPE entries to describe."
|
|
|
|
|
(guix-list-value entry-type 'describe-count))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-describe-entries (entry-type ids)
|
|
|
|
|
"Describe ENTRY-TYPE entries with IDS in 'info' buffer"
|
|
|
|
|
(funcall (guix-list-value entry-type 'describe)
|
|
|
|
|
ids))
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
|
|
|
|
|
;;; Tabulated list internals
|
|
|
|
|
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(defun guix-list-sort-numerically (column a b)
|
|
|
|
|
"Compare COLUMN of tabulated entries A and B numerically.
|
2015-11-18 02:39:42 -05:00
|
|
|
|
This function is used for sort predicates for `tabulated-list-format'.
|
2014-08-27 08:44:17 -04:00
|
|
|
|
Return non-nil, if B is bigger than A."
|
|
|
|
|
(cl-flet ((num (entry)
|
|
|
|
|
(string-to-number (aref (cadr entry) column))))
|
|
|
|
|
(> (num b) (num a))))
|
|
|
|
|
|
2015-11-18 02:39:42 -05:00
|
|
|
|
(defmacro guix-list-define-numerical-sorter (column)
|
|
|
|
|
"Define numerical sort predicate for COLUMN.
|
|
|
|
|
See `guix-list-sort-numerically' for details."
|
|
|
|
|
(let ((name (intern (format "guix-list-sort-numerically-%d" column)))
|
|
|
|
|
(doc (format "\
|
|
|
|
|
Predicate to sort tabulated list by column %d numerically.
|
|
|
|
|
See `guix-list-sort-numerically' for details."
|
|
|
|
|
column)))
|
|
|
|
|
`(defun ,name (a b)
|
|
|
|
|
,doc
|
|
|
|
|
(guix-list-sort-numerically ,column a b))))
|
|
|
|
|
|
|
|
|
|
(defmacro guix-list-define-numerical-sorters (n)
|
|
|
|
|
"Define numerical sort predicates for columns from 0 to N.
|
|
|
|
|
See `guix-list-define-numerical-sorter' for details."
|
|
|
|
|
`(progn
|
|
|
|
|
,@(mapcar (lambda (i)
|
|
|
|
|
`(guix-list-define-numerical-sorter ,i))
|
|
|
|
|
(number-sequence 0 n))))
|
|
|
|
|
|
|
|
|
|
(guix-list-define-numerical-sorters 9)
|
|
|
|
|
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(defun guix-list-tabulated-sort-key (entry-type)
|
|
|
|
|
"Return ENTRY-TYPE sort key for `tabulated-list-sort-key'."
|
|
|
|
|
(let ((sort-key (guix-list-sort-key entry-type)))
|
|
|
|
|
(and sort-key
|
|
|
|
|
(cons (guix-list-param-title entry-type (car sort-key))
|
|
|
|
|
(cdr sort-key)))))
|
2015-11-18 03:36:27 -05:00
|
|
|
|
|
|
|
|
|
(defun guix-list-tabulated-vector (entry-type fun)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Call FUN on each column specification for ENTRY-TYPE.
|
|
|
|
|
|
2015-11-18 03:44:52 -05:00
|
|
|
|
FUN is applied to column specification as arguments (see
|
|
|
|
|
`guix-list-format').
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
Return a vector made of values of FUN calls."
|
|
|
|
|
(apply #'vector
|
|
|
|
|
(mapcar (lambda (col-spec)
|
2015-11-18 03:44:52 -05:00
|
|
|
|
(apply fun col-spec))
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(guix-list-format entry-type))))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-tabulated-format (entry-type)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Return ENTRY-TYPE list specification for `tabulated-list-format'."
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(guix-list-tabulated-vector
|
2014-08-27 08:44:17 -04:00
|
|
|
|
entry-type
|
2015-11-18 03:44:52 -05:00
|
|
|
|
(lambda (param _ &rest rest-spec)
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(cons (guix-list-param-title entry-type param)
|
2015-11-18 03:44:52 -05:00
|
|
|
|
rest-spec))))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-tabulated-entries (entries entry-type)
|
|
|
|
|
"Return a list of ENTRY-TYPE values for `tabulated-list-entries'."
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(mapcar (lambda (entry)
|
2015-10-22 03:08:42 -04:00
|
|
|
|
(list (guix-entry-id entry)
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(guix-list-tabulated-entry entry entry-type)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
entries))
|
|
|
|
|
|
2015-11-18 03:36:27 -05:00
|
|
|
|
(defun guix-list-tabulated-entry (entry entry-type)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Return array of values for `tabulated-list-entries'.
|
2015-11-18 03:36:27 -05:00
|
|
|
|
Parameters are taken from ENTRY-TYPE ENTRY."
|
|
|
|
|
(guix-list-tabulated-vector
|
2014-08-27 08:44:17 -04:00
|
|
|
|
entry-type
|
2015-11-18 03:44:52 -05:00
|
|
|
|
(lambda (param fun &rest _)
|
|
|
|
|
(let ((val (guix-entry-value entry param)))
|
2014-10-10 15:29:24 -04:00
|
|
|
|
(if fun
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(funcall fun val entry)
|
|
|
|
|
(guix-get-string val))))))
|
|
|
|
|
|
2015-12-09 15:19:17 -05:00
|
|
|
|
|
|
|
|
|
;;; Displaying entries
|
|
|
|
|
|
|
|
|
|
(defun guix-list-get-display-entries (entry-type &rest args)
|
|
|
|
|
"Search for entries and show them in a 'list' buffer preferably."
|
|
|
|
|
(let ((entries (guix-buffer-get-entries 'list entry-type args)))
|
|
|
|
|
(if (or (null entries) ; = 0
|
|
|
|
|
(cdr entries) ; > 1
|
|
|
|
|
(guix-list-single-entry? entry-type)
|
|
|
|
|
(null (guix-buffer-value 'info entry-type 'show-entries)))
|
|
|
|
|
(guix-buffer-display-entries entries 'list entry-type args 'add)
|
|
|
|
|
(if (equal (guix-buffer-value 'info entry-type 'get-entries)
|
|
|
|
|
(guix-buffer-value 'list entry-type 'get-entries))
|
|
|
|
|
(guix-buffer-display-entries entries 'info entry-type args 'add)
|
|
|
|
|
(guix-buffer-get-display-entries 'info entry-type args 'add)))))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-insert-entries (entries entry-type)
|
|
|
|
|
"Print ENTRY-TYPE ENTRIES in the current buffer."
|
|
|
|
|
(setq tabulated-list-entries
|
|
|
|
|
(guix-list-tabulated-entries entries entry-type))
|
|
|
|
|
(tabulated-list-print))
|
|
|
|
|
|
2014-10-10 15:29:24 -04:00
|
|
|
|
(defun guix-list-get-one-line (val &optional _)
|
|
|
|
|
"Return one-line string from a multi-line string VAL.
|
|
|
|
|
VAL may be nil."
|
|
|
|
|
(if val
|
|
|
|
|
(guix-get-one-line val)
|
|
|
|
|
(guix-get-string nil)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
(defun guix-list-get-time (seconds &optional _)
|
|
|
|
|
"Return formatted time string from SECONDS."
|
2015-11-17 13:46:31 -05:00
|
|
|
|
(guix-get-string (guix-get-time-string seconds)
|
|
|
|
|
'guix-list-time))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2016-01-21 02:59:50 -05:00
|
|
|
|
(defun guix-list-get-file-name (file-name &optional _)
|
|
|
|
|
"Return FILE-NAME button specification for `tabulated-list-entries'."
|
|
|
|
|
(list file-name
|
|
|
|
|
'face 'guix-list-file-name
|
2014-08-27 08:44:17 -04:00
|
|
|
|
'action (lambda (btn) (find-file (button-label btn)))
|
|
|
|
|
'follow-link t
|
|
|
|
|
'help-echo "Find file"))
|
|
|
|
|
|
2016-01-21 03:00:59 -05:00
|
|
|
|
(defun guix-list-get-url (url &optional _)
|
|
|
|
|
"Return URL button specification for `tabulated-list-entries'."
|
|
|
|
|
(list url
|
|
|
|
|
'face 'guix-list-url
|
|
|
|
|
'action (lambda (btn) (browse-url (button-label btn)))
|
|
|
|
|
'follow-link t
|
|
|
|
|
'help-echo "Browse URL"))
|
|
|
|
|
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
|
|
|
|
|
;;; 'List' lines
|
|
|
|
|
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(defun guix-list-current-id ()
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
"Return ID of the entry at point."
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(or (tabulated-list-get-id)
|
|
|
|
|
(user-error "No entry here")))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-current-entry ()
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
"Return entry at point."
|
|
|
|
|
(guix-entry-by-id (guix-list-current-id)
|
|
|
|
|
(guix-buffer-current-entries)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
(defun guix-list-for-each-line (fun &rest args)
|
|
|
|
|
"Call FUN with ARGS for each entry line."
|
|
|
|
|
(or (derived-mode-p 'guix-list-mode)
|
|
|
|
|
(error "The current buffer is not in Guix List mode"))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(apply fun args)
|
|
|
|
|
(forward-line))))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-fold-lines (fun init)
|
|
|
|
|
"Fold over entry lines in the current list buffer.
|
|
|
|
|
Call FUN with RESULT as argument for each line, using INIT as
|
|
|
|
|
the initial value of RESULT. Return the final result."
|
|
|
|
|
(let ((res init))
|
|
|
|
|
(guix-list-for-each-line
|
|
|
|
|
(lambda () (setq res (funcall fun res))))
|
|
|
|
|
res))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Marking and sorting
|
|
|
|
|
|
|
|
|
|
(defvar-local guix-list-marked nil
|
|
|
|
|
"List of the marked entries.
|
|
|
|
|
Each element of the list has a form:
|
|
|
|
|
|
|
|
|
|
(ID MARK-NAME . ARGS)
|
|
|
|
|
|
|
|
|
|
ID is an entry ID.
|
2015-11-19 03:03:48 -05:00
|
|
|
|
MARK-NAME is a symbol from `guix-list-marks'.
|
2014-08-27 08:44:17 -04:00
|
|
|
|
ARGS is a list of additional values.")
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(defvar-local guix-list-marks nil
|
|
|
|
|
"Alist of available mark names and mark characters.")
|
|
|
|
|
|
|
|
|
|
(defvar guix-list-default-marks
|
2014-08-27 08:44:17 -04:00
|
|
|
|
'((empty . ?\s)
|
|
|
|
|
(general . ?*))
|
2015-11-19 03:03:48 -05:00
|
|
|
|
"Alist of default mark names and mark characters.")
|
|
|
|
|
|
|
|
|
|
(defun guix-list-marks (entry-type)
|
|
|
|
|
"Return alist of available marks for ENTRY-TYPE."
|
|
|
|
|
(append guix-list-default-marks
|
|
|
|
|
(guix-list-additional-marks entry-type)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(defun guix-list-get-mark (name)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Return mark character by its NAME."
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(or (guix-assq-value guix-list-marks name)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(error "Mark '%S' not found" name)))
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(defun guix-list-get-mark-string (name)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Return mark string by its NAME."
|
|
|
|
|
(string (guix-list-get-mark name)))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-current-mark ()
|
|
|
|
|
"Return mark character of the current line."
|
|
|
|
|
(char-after (line-beginning-position)))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-get-marked (&rest mark-names)
|
|
|
|
|
"Return list of specs of entries marked with any mark from MARK-NAMES.
|
|
|
|
|
Entry specs are elements from `guix-list-marked' list.
|
|
|
|
|
If MARK-NAMES are not specified, use all marks from
|
2015-11-19 03:03:48 -05:00
|
|
|
|
`guix-list-marks' except the `empty' one."
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(or mark-names
|
|
|
|
|
(setq mark-names
|
|
|
|
|
(delq 'empty
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(mapcar #'car guix-list-marks))))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(cl-remove-if-not (lambda (assoc)
|
|
|
|
|
(memq (cadr assoc) mark-names))
|
|
|
|
|
guix-list-marked))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-get-marked-args (mark-name)
|
|
|
|
|
"Return list of (ID . ARGS) elements from lines marked with MARK-NAME.
|
|
|
|
|
See `guix-list-marked' for the meaning of ARGS."
|
|
|
|
|
(mapcar (lambda (spec)
|
|
|
|
|
(let ((id (car spec))
|
|
|
|
|
(args (cddr spec)))
|
|
|
|
|
(cons id args)))
|
|
|
|
|
(guix-list-get-marked mark-name)))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-get-marked-id-list (&rest mark-names)
|
|
|
|
|
"Return list of IDs of entries marked with any mark from MARK-NAMES.
|
|
|
|
|
See `guix-list-get-marked' for details."
|
|
|
|
|
(mapcar #'car (apply #'guix-list-get-marked mark-names)))
|
|
|
|
|
|
2015-05-27 09:51:25 -04:00
|
|
|
|
(defun guix-list--mark (mark-name &optional advance &rest args)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Put a mark on the current line.
|
|
|
|
|
Also add the current entry to `guix-list-marked' using its ID and ARGS.
|
2015-11-19 03:03:48 -05:00
|
|
|
|
MARK-NAME is a symbol from `guix-list-marks'.
|
2015-05-27 09:51:25 -04:00
|
|
|
|
If ADVANCE is non-nil, move forward by one line after marking."
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(let ((id (guix-list-current-id)))
|
|
|
|
|
(if (eq mark-name 'empty)
|
|
|
|
|
(setq guix-list-marked (assq-delete-all id guix-list-marked))
|
|
|
|
|
(let ((assoc (assq id guix-list-marked))
|
|
|
|
|
(val (cons mark-name args)))
|
|
|
|
|
(if assoc
|
|
|
|
|
(setcdr assoc val)
|
|
|
|
|
(push (cons id val) guix-list-marked)))))
|
|
|
|
|
(tabulated-list-put-tag (guix-list-get-mark-string mark-name)
|
|
|
|
|
advance))
|
|
|
|
|
|
2015-05-27 09:51:25 -04:00
|
|
|
|
(defun guix-list-mark (&optional arg)
|
|
|
|
|
"Mark the current line and move to the next line.
|
|
|
|
|
With ARG, mark all lines."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(if arg
|
|
|
|
|
(guix-list-mark-all)
|
|
|
|
|
(guix-list--mark 'general t)))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-mark-all (&optional mark-name)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
"Mark all lines with MARK-NAME mark.
|
2015-11-19 03:03:48 -05:00
|
|
|
|
MARK-NAME is a symbol from `guix-list-marks'.
|
2014-08-27 08:44:17 -04:00
|
|
|
|
Interactively, put a general mark on all lines."
|
2015-05-27 09:51:25 -04:00
|
|
|
|
(interactive)
|
|
|
|
|
(or mark-name (setq mark-name 'general))
|
|
|
|
|
(guix-list-for-each-line #'guix-list--mark mark-name))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2014-09-06 10:00:45 -04:00
|
|
|
|
(defun guix-list-unmark (&optional arg)
|
|
|
|
|
"Unmark the current line and move to the next line.
|
|
|
|
|
With ARG, unmark all lines."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(if arg
|
|
|
|
|
(guix-list-unmark-all)
|
2015-05-27 09:51:25 -04:00
|
|
|
|
(guix-list--mark 'empty t)))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
(defun guix-list-unmark-backward ()
|
|
|
|
|
"Move up one line and unmark it."
|
|
|
|
|
(interactive)
|
|
|
|
|
(forward-line -1)
|
2015-05-27 09:51:25 -04:00
|
|
|
|
(guix-list--mark 'empty))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
(defun guix-list-unmark-all ()
|
|
|
|
|
"Unmark all lines."
|
|
|
|
|
(interactive)
|
|
|
|
|
(guix-list-mark-all 'empty))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-restore-marks ()
|
2015-11-19 03:03:48 -05:00
|
|
|
|
"Put marks according to `guix-list-marked'."
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(guix-list-for-each-line
|
|
|
|
|
(lambda ()
|
2015-08-16 00:11:57 -04:00
|
|
|
|
(let ((mark-name (car (guix-assq-value guix-list-marked
|
|
|
|
|
(guix-list-current-id)))))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(tabulated-list-put-tag
|
|
|
|
|
(guix-list-get-mark-string (or mark-name 'empty)))))))
|
|
|
|
|
|
|
|
|
|
(defun guix-list-sort (&optional n)
|
|
|
|
|
"Sort guix list entries by the column at point.
|
|
|
|
|
With a numeric prefix argument N, sort the Nth column.
|
|
|
|
|
Same as `tabulated-list-sort', but also restore marks after sorting."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(tabulated-list-sort n)
|
|
|
|
|
(guix-list-restore-marks))
|
|
|
|
|
|
|
|
|
|
|
2015-11-19 08:43:10 -05:00
|
|
|
|
;;; Major mode and interface definer
|
|
|
|
|
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(defvar guix-list-mode-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2015-06-24 03:36:18 -04:00
|
|
|
|
(set-keymap-parent
|
2015-11-21 04:25:19 -05:00
|
|
|
|
map (make-composed-keymap guix-buffer-map
|
2015-06-24 03:36:18 -04:00
|
|
|
|
tabulated-list-mode-map))
|
2014-09-17 09:52:08 -04:00
|
|
|
|
(define-key map (kbd "RET") 'guix-list-describe)
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(define-key map (kbd "i") 'guix-list-describe)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(define-key map (kbd "m") 'guix-list-mark)
|
|
|
|
|
(define-key map (kbd "*") 'guix-list-mark)
|
|
|
|
|
(define-key map (kbd "u") 'guix-list-unmark)
|
|
|
|
|
(define-key map (kbd "DEL") 'guix-list-unmark-backward)
|
|
|
|
|
(define-key map [remap tabulated-list-sort] 'guix-list-sort)
|
|
|
|
|
map)
|
2015-11-19 08:43:10 -05:00
|
|
|
|
"Keymap for `guix-list-mode' buffers.")
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
|
|
|
|
(define-derived-mode guix-list-mode tabulated-list-mode "Guix-List"
|
2015-11-19 08:43:10 -05:00
|
|
|
|
"Parent mode for displaying data in 'list' form.")
|
|
|
|
|
|
|
|
|
|
(defun guix-list-mode-initialize (entry-type)
|
|
|
|
|
"Set up the current 'list' buffer for displaying ENTRY-TYPE entries."
|
|
|
|
|
(setq tabulated-list-padding 2
|
|
|
|
|
tabulated-list-format (guix-list-tabulated-format entry-type)
|
|
|
|
|
tabulated-list-sort-key (guix-list-tabulated-sort-key entry-type))
|
|
|
|
|
(setq-local guix-list-marks (guix-list-marks entry-type))
|
|
|
|
|
(tabulated-list-init-header))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-20 04:38:31 -05:00
|
|
|
|
(defmacro guix-list-define-interface (entry-type &rest args)
|
|
|
|
|
"Define 'list' interface for displaying ENTRY-TYPE entries.
|
2015-11-19 08:56:19 -05:00
|
|
|
|
Remaining arguments (ARGS) should have a form [KEYWORD VALUE] ...
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-19 08:56:19 -05:00
|
|
|
|
Required keywords:
|
|
|
|
|
|
|
|
|
|
- `:format' - default value of the generated
|
|
|
|
|
`guix-ENTRY-TYPE-list-format' variable.
|
|
|
|
|
|
|
|
|
|
Optional keywords:
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-19 08:19:47 -05:00
|
|
|
|
- `:sort-key' - default value of the generated
|
|
|
|
|
`guix-ENTRY-TYPE-list-sort-key' variable.
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-19 07:58:19 -05:00
|
|
|
|
- `:describe-function' - default value of the generated
|
|
|
|
|
`guix-ENTRY-TYPE-describe-function' variable.
|
|
|
|
|
|
2015-12-09 13:58:36 -05:00
|
|
|
|
- `:list-single?' - default value of the generated
|
|
|
|
|
`guix-ENTRY-TYPE-list-single' variable.
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
- `:marks' - default value of the generated
|
|
|
|
|
`guix-ENTRY-TYPE-list-marks' variable.
|
2015-11-20 04:38:31 -05:00
|
|
|
|
|
|
|
|
|
The rest keyword arguments are passed to
|
|
|
|
|
`guix-buffer-define-interface' macro."
|
|
|
|
|
(declare (indent 1))
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(let* ((entry-type-str (symbol-name entry-type))
|
|
|
|
|
(prefix (concat "guix-" entry-type-str "-list"))
|
|
|
|
|
(group (intern prefix))
|
|
|
|
|
(describe-var (intern (concat prefix "-describe-function")))
|
|
|
|
|
(describe-count-var (intern (concat prefix
|
|
|
|
|
"-describe-warning-count")))
|
2015-11-19 08:56:19 -05:00
|
|
|
|
(format-var (intern (concat prefix "-format")))
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(sort-key-var (intern (concat prefix "-sort-key")))
|
2015-12-09 13:58:36 -05:00
|
|
|
|
(list-single-var (intern (concat prefix "-single")))
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(marks-var (intern (concat prefix "-marks"))))
|
2015-11-18 14:28:13 -05:00
|
|
|
|
(guix-keyword-args-let args
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
((show-entries-val :show-entries-function)
|
|
|
|
|
(describe-val :describe-function)
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(describe-count-val :describe-count 10)
|
2015-11-19 08:56:19 -05:00
|
|
|
|
(format-val :format)
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(sort-key-val :sort-key)
|
2015-12-09 13:58:36 -05:00
|
|
|
|
(list-single-val :list-single?)
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(marks-val :marks))
|
2015-11-18 14:28:13 -05:00
|
|
|
|
`(progn
|
2015-11-19 08:56:19 -05:00
|
|
|
|
(defcustom ,format-var ,format-val
|
|
|
|
|
,(format "\
|
|
|
|
|
List of format values of the displayed columns.
|
|
|
|
|
Each element of the list has a form:
|
|
|
|
|
|
|
|
|
|
(PARAM VALUE-FUN WIDTH SORT . PROPS)
|
|
|
|
|
|
|
|
|
|
PARAM is a name of '%s' entry parameter.
|
|
|
|
|
|
|
|
|
|
VALUE-FUN may be either nil or a function returning a value that
|
|
|
|
|
will be inserted. The function is called with 2 arguments: the
|
|
|
|
|
first one is the value of the parameter; the second one is an
|
|
|
|
|
entry (alist of parameter names and values).
|
|
|
|
|
|
|
|
|
|
For the meaning of WIDTH, SORT and PROPS, see
|
|
|
|
|
`tabulated-list-format'."
|
|
|
|
|
entry-type-str)
|
|
|
|
|
:type 'sexp
|
|
|
|
|
:group ',group)
|
|
|
|
|
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(defcustom ,sort-key-var ,sort-key-val
|
|
|
|
|
,(format "\
|
|
|
|
|
Default sort key for 'list' buffer with '%s' entries.
|
|
|
|
|
Should be nil (no sort) or have a form:
|
|
|
|
|
|
|
|
|
|
(PARAM . FLIP)
|
|
|
|
|
|
|
|
|
|
PARAM is the name of '%s' entry parameter. For the meaning of
|
|
|
|
|
FLIP, see `tabulated-list-sort-key'."
|
|
|
|
|
entry-type-str entry-type-str)
|
|
|
|
|
:type '(choice (const :tag "No sort" nil)
|
|
|
|
|
(cons symbol boolean))
|
|
|
|
|
:group ',group)
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(defvar ,marks-var ,marks-val
|
|
|
|
|
,(format "\
|
|
|
|
|
Alist of additional marks for 'list' buffer with '%s' entries.
|
|
|
|
|
Marks from this list are used along with `guix-list-default-marks'."
|
|
|
|
|
entry-type-str))
|
2015-11-18 14:28:13 -05:00
|
|
|
|
|
2015-12-09 13:58:36 -05:00
|
|
|
|
(defcustom ,list-single-var ,list-single-val
|
|
|
|
|
,(format "\
|
|
|
|
|
If non-nil, list '%s' entry even if it is the only matching result.
|
|
|
|
|
If nil, show a single '%s' entry in the 'info' buffer."
|
|
|
|
|
entry-type-str entry-type-str)
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group ',group)
|
|
|
|
|
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(defcustom ,describe-count-var ,describe-count-val
|
|
|
|
|
,(format "\
|
|
|
|
|
The maximum number of '%s' entries to describe without a warning.
|
|
|
|
|
If a user wants to describe more than this number of marked
|
|
|
|
|
entries, he will be prompted for confirmation.
|
|
|
|
|
See also `guix-list-describe'."
|
|
|
|
|
entry-type-str)
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group ',group)
|
|
|
|
|
|
|
|
|
|
(defvar ,describe-var ,describe-val
|
|
|
|
|
,(format "Function used to describe '%s' entries."
|
|
|
|
|
entry-type-str))
|
|
|
|
|
|
2015-11-19 03:03:48 -05:00
|
|
|
|
(guix-alist-put!
|
2015-11-19 07:58:19 -05:00
|
|
|
|
'((describe . ,describe-var)
|
|
|
|
|
(describe-count . ,describe-count-var)
|
2015-11-19 08:56:19 -05:00
|
|
|
|
(format . ,format-var)
|
2015-11-19 08:19:47 -05:00
|
|
|
|
(sort-key . ,sort-key-var)
|
2015-12-09 13:58:36 -05:00
|
|
|
|
(list-single . ,list-single-var)
|
2015-11-19 07:58:19 -05:00
|
|
|
|
(marks . ,marks-var))
|
2015-11-20 04:38:31 -05:00
|
|
|
|
'guix-list-data ',entry-type)
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
emacs: Generalize buffer interface.
Extract the code for defining buffer interface from "guix-base.el",
generalize it and move to "guix-buffer.el".
* emacs.am (ELFILES): Add "emacs/guix-buffer.el".
* emacs/guix-base.el (guix-profile, guix-entries, guix-buffer-type)
(guix-entry-type, guix-search-type, guix-search-vals, guix-set-vars)
(guix-get-symbol, guix-show-entries, guix-get-show-entries)
(guix-set-buffer, guix-history-call, guix-make-history-item)
(guix-get-params-for-receiving): Remove.
(guix-switch-to-buffer): Rename to 'guix-buffer-display' and move to
"guix-buffer.el".
(guix-get-entries): Rename to 'guix-ui-get-entries' and move to
"guix-ui.el".
(guix-buffer-data, guix-buffer-value, guix-buffer-param-title)
(guix-buffer-name, guix-buffer-history-size)
(guix-buffer-revert-confirm?, guix-buffer-map, guix-buffer-revert)
(guix-buffer-after-redisplay-hook, guix-buffer-redisplay)
(guix-buffer-redisplay-goto-button): Move to...
* emacs/guix-buffer.el: ... here. New file.
(guix-buffer-item): New variable.
(guix-buffer-with-item, guix-buffer-with-current-item)
(guix-buffer-define-current-item-accessor)
(guix-buffer-define-current-item-accessors)
(guix-buffer-define-current-args-accessor)
(guix-buffer-define-current-args-accessors): New macros.
(guix-buffer-get-entries, guix-buffer-mode-enable)
(guix-buffer-mode-initialize, guix-buffer-insert-entries)
(guix-buffer-show-entries-default, guix-buffer-show-entries)
(guix-buffer-message, guix-buffer-history-item, guix-buffer-set)
(guix-buffer-display-entries-current)
(guix-buffer-get-display-entries-current)
(guix-buffer-display-entries, guix-buffer-get-display-entries): New
procedures.
* emacs/guix-info.el: Adjust for the procedures renaming.
(guix-info-define-interface): Add ':show-entries-function' keyword.
* emacs/guix-list.el: Likewise.
* emacs/guix-ui.el (guix-ui-define-interface): Generate
'guix-ENTRY-TYPE-BUFFER-TYPE-get-entries' procedure based on
'guix-ui-get-entries'.
* emacs/guix.el (guix-get-show-packages, guix-get-show-generations):
Adjust for the procedures renaming.
2015-12-02 07:24:07 -05:00
|
|
|
|
,(if show-entries-val
|
|
|
|
|
`(guix-buffer-define-interface list ,entry-type
|
|
|
|
|
:show-entries-function ,show-entries-val
|
|
|
|
|
,@%foreign-args)
|
|
|
|
|
|
|
|
|
|
(let ((insert-fun (intern (concat prefix "-insert-entries")))
|
|
|
|
|
(mode-init-fun (intern (concat prefix "-mode-initialize"))))
|
|
|
|
|
`(progn
|
|
|
|
|
(defun ,insert-fun (entries)
|
|
|
|
|
,(format "\
|
|
|
|
|
Print '%s' ENTRIES in the current 'list' buffer."
|
|
|
|
|
entry-type-str)
|
|
|
|
|
(guix-list-insert-entries entries ',entry-type))
|
|
|
|
|
|
|
|
|
|
(defun ,mode-init-fun ()
|
|
|
|
|
,(format "\
|
|
|
|
|
Set up the current 'list' buffer for displaying '%s' entries."
|
|
|
|
|
entry-type-str)
|
|
|
|
|
(guix-list-mode-initialize ',entry-type))
|
|
|
|
|
|
|
|
|
|
(guix-buffer-define-interface list ,entry-type
|
|
|
|
|
:insert-entries-function ',insert-fun
|
|
|
|
|
:mode-init-function ',mode-init-fun
|
|
|
|
|
,@%foreign-args))))))))
|
2014-08-27 08:44:17 -04:00
|
|
|
|
|
2015-11-20 04:38:31 -05:00
|
|
|
|
|
|
|
|
|
(defvar guix-list-font-lock-keywords
|
|
|
|
|
(eval-when-compile
|
|
|
|
|
`((,(rx "(" (group "guix-list-define-interface")
|
|
|
|
|
symbol-end)
|
|
|
|
|
. 1))))
|
|
|
|
|
|
|
|
|
|
(font-lock-add-keywords 'emacs-lisp-mode guix-list-font-lock-keywords)
|
|
|
|
|
|
2014-08-27 08:44:17 -04:00
|
|
|
|
(provide 'guix-list)
|
|
|
|
|
|
|
|
|
|
;;; guix-list.el ends here
|