[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 32f070fa3df: Add song viewer to 'mpc' (Bug#74200)
From: |
Stefan Monnier |
Subject: |
master 32f070fa3df: Add song viewer to 'mpc' (Bug#74200) |
Date: |
Thu, 14 Nov 2024 10:42:18 -0500 (EST) |
branch: master
commit 32f070fa3dfccd29abad6e7566ed9121e3f1da39
Author: john muhl <jm@pub.pink>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Add song viewer to 'mpc' (Bug#74200)
* lisp/mpc.el (mpc-describe-song): New command.
(mpc-mode-map): Bind "d" to 'mpc-describe-song'.
(mpc-mode-menu): Add menu item.
(mpc-secs-to-time): Ensure secs argument is an integer.
(mpc-song-viewer-empty, mpc-song-viewer-tag):
(mpc-song-viewer-value): New face.
(mpc-song-viewer-tags): New option.
---
etc/NEWS | 9 ++++++
lisp/mpc.el | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
2 files changed, 111 insertions(+), 2 deletions(-)
diff --git a/etc/NEWS b/etc/NEWS
index c2dccec9548..86476270782 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -659,11 +659,20 @@ a desktop notification when the song changes, using
customized using the new user options 'mpc-notifications-title' and
'mpc-notifications-body'.
+---
*** New user option 'mpc-crossfade-time'.
When non-nil, MPC will crossfade between songs for the specified number
of seconds. Crossfading can be toggled using the command
'mpc-toggle-crossfade' or from the MPC menu.
+---
+*** New command 'mpc-describe-song'.
+This command displays information about the currently playing song or
+song at point in the MPC-Songs buffer. The list of tags to display can
+be customized using the new user option 'mpc-song-viewer-tags' and the
+appearance of the list with the new faces 'mpc-song-viewer-tag',
+'mpc-song-viewer-value', and 'mpc-song-viewer-empty'.
+
** VC
---
diff --git a/lisp/mpc.el b/lisp/mpc.el
index 0a43b09c11d..a0ecb21e454 100644
--- a/lisp/mpc.el
+++ b/lisp/mpc.el
@@ -63,7 +63,7 @@
;; e.g. filename regexp -> compilation flag
;; - window/buffer management.
;; - menubar, tooltips, ...
-;; - add mpc-describe-song, mpc-describe-album, ...
+;; - add mpc-describe-album, ...
;; - add import/export commands (especially export to an MP3 player).
;; - add a real notion of album (as opposed to just album-name):
;; if all songs with same album-name have same artist -> it's an album
@@ -95,6 +95,8 @@
(require 'notifications)
+(require 'vtable)
+
(defgroup mpc ()
"Client for the Music Player Daemon (mpd)."
:prefix "mpc-"
@@ -978,11 +980,15 @@ If PLAYLIST is t or nil or missing, use the main
playlist."
:version "28.1")
(defun mpc-secs-to-time (secs)
+ "Convert SECS from a string, integer or float value to a time string."
;; We could use `format-seconds', but it doesn't seem worth the trouble
;; because we'd still need to check (>= secs (* 60 100)) since the special
;; %z only allows us to drop the large units for small values but
;; not to drop the small units for large values.
(if (stringp secs) (setq secs (string-to-number secs)))
+ ;; Ensure secs is an integer. The Time tag has been deprecated by MPD
+ ;; and its replacement (the duration tag) includes fractional seconds.
+ (if (floatp secs) (setq secs (round secs)))
(if (>= secs (* 60 100)) ;More than 100 minutes.
(format "%dh%02d" ;"%d:%02d:%02d"
(/ secs 3600) (% (/ secs 60) 60)) ;; (% secs 60)
@@ -1180,7 +1186,8 @@ string POST."
">" #'mpc-next
"<" #'mpc-prev
"g" #'mpc-seek-current
- "o" #'mpc-goto-playing-song)
+ "o" #'mpc-goto-playing-song
+ "d" #'mpc-describe-song)
(easy-menu-define mpc-mode-menu mpc-mode-map
"Menu for MPC mode."
@@ -1189,6 +1196,7 @@ string POST."
["Next Track" mpc-next] ;FIXME: Add ⇥ there?
["Previous Track" mpc-prev] ;FIXME: Add ⇤ there?
["Seek Within Track" mpc-seek-current]
+ ["Song Details" mpc-describe-song]
"--"
["Repeat Playlist" mpc-toggle-repeat :style toggle
:selected (member '(repeat . "1") mpc-status)]
@@ -2862,6 +2870,98 @@ will be used. See `mpc-format' for the definition of
FORMAT-SPEC."
:app-icon icon
:replaces-id mpc--notifications-id))))
+;;; Song Viewer ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(defface mpc-song-viewer-value
+ '((t (:inherit vtable)))
+ "Face for tag values in the MPC song viewer.")
+
+(defface mpc-song-viewer-tag
+ '((t (:inherit (mpc-song-viewer-value bold))))
+ "Face for tag types in the MPC song viewer.")
+
+(defface mpc-song-viewer-empty
+ '((t (:inherit (mpc-song-viewer-value italic shadow))))
+ "Face for empty tag values in the MPC song viewer.")
+
+(defcustom mpc-song-viewer-tags
+ '("Title" "Artist" "Album" "Performer" "Composer"
+ "Date" "Duration" "Disc" "Track" "Genre" "File")
+ "The list of tags to display with `mpc-describe-song'.
+
+The list of supported tags are available by evaluating
+`mpc-cmd-tagtypes'. In addition to the standard MPD tags: Bitrate,
+Duration, File, and Format are also supported."
+ :version "31.1"
+ :type '(repeat string))
+
+(defun mpc-describe-song (file)
+ "Show details of the selected song or FILE in the MPC song viewer.
+
+If there is no song at point then information about the currently
+playing song is displayed."
+ (interactive
+ ;; Handle being called from the context menu. In that case you want
+ ;; to see details for the song you clicked on to invoke the menu not
+ ;; whatever `point' happens to be on at that time.
+ (list (when-let* ((event last-nonmenu-event)
+ ((listp event))
+ (position (nth 1 (event-start event))))
+ (get-text-property position 'mpc-file))))
+ (let ((tags (or (when (and file (stringp file))
+ (mpc-proc-cmd-to-alist (list "search" "file" file)))
+ (when-let* (((string= (buffer-name) "*MPC-Songs*"))
+ (file (get-text-property (point) 'mpc-file)))
+ (mpc-proc-cmd-to-alist (list "search" "file" file)))
+ (when (assoc 'file mpc-status) mpc-status)))
+ (buffer "*MPC Song Viewer*"))
+ (when tags
+ (with-current-buffer (get-buffer-create buffer)
+ (special-mode)
+ (visual-line-mode)
+ (let ((inhibit-read-only t))
+ (erase-buffer)
+ (make-vtable
+ :columns '(( :name "Tag"
+ :align right
+ :min-width 3
+ :displayer
+ (lambda (tag &rest _)
+ (propertize tag 'face 'mpc-song-viewer-tag)))
+ ( :name "Value"
+ :align left
+ :min-width 5
+ :displayer
+ (lambda (value &rest _)
+ (if (and value (not (string-blank-p value)))
+ (propertize value 'face 'mpc-song-viewer-value)
+ (propertize "empty" 'face
'mpc-song-viewer-empty)))))
+ :objects (mapcar
+ (lambda (tag)
+ (pcase tag
+ ("Bitrate"
+ (list tag (let ((bitrate (alist-get 'bitrate tags)))
+ (when bitrate
+ (format "%s kpbs" bitrate)))))
+ ("Duration" (list tag (mpc-secs-to-time
+ (alist-get 'duration tags))))
+ ("File" (list tag (alist-get 'file tags)))
+ ;; Concatenate all the values of tags which may
+ ;; occur multiple times.
+ ((or "Composer" "Genre" "Performer")
+ (list tag (mapconcat
+ (lambda (val) (cdr val))
+ (seq-filter
+ (lambda (val) (eq (car val) (intern
tag)))
+ tags)
+ "; ")))
+ (_ (list tag (alist-get (intern tag) tags)))))
+ mpc-song-viewer-tags))
+ (goto-char (point-min))))
+ (pop-to-buffer buffer '((display-buffer-reuse-window
+ display-buffer-same-window)
+ (reusable-frames . t))))))
+
;;; Toplevel ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom mpc-frame-alist '((name . "MPC") (tool-bar-lines . 1)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 32f070fa3df: Add song viewer to 'mpc' (Bug#74200),
Stefan Monnier <=