1 ;;; mpc.el --- A client for the Music Player Daemon -*- lexical-binding: t -*-
3 ;; Copyright (C) 2006-2015 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Keywords: multimedia
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; This is an Emacs front end to the Music Player Daemon.
27 ;; It mostly provides a browser inspired from Rhythmbox for your music
28 ;; collection and also allows you to play the music you select. The basic
29 ;; interface is somewhat unusual in that it does not focus on the
30 ;; playlist as much as on the browser.
31 ;; I play albums rather than songs and thus don't have much need for
32 ;; playlists, and it shows. Playlist support exists, but is still limited.
36 ;; - when reaching end/start of song while ffwd/rewind, it may get wedged,
37 ;; signal an error, ... or when mpc-next/prev is called while ffwd/rewind.
38 ;; - MPD errors are not reported to the user.
42 ;; - add bindings/buttons/menuentries for the various commands.
44 ;; - visual feedback for drag'n'drop
45 ;; - display/set `repeat' and `random' state (and maybe also `crossfade').
46 ;; - allow multiple *mpc* sessions in the same Emacs to control different mpds.
47 ;; - look for .folder.png (freedesktop) or folder.jpg (XP) as well.
48 ;; - fetch album covers and lyrics from the web?
49 ;; - improve MPC-Status: better volume control, add a way to show/hide the
50 ;; rest, plus add the buttons currently in the toolbar.
51 ;; - improve mpc-songs-mode's header-line column-headings so they can be
53 ;; - allow selecting several entries by drag-mouse.
55 ;; - use the `idle' command
56 ;; - do the time-ticking locally (and sync every once in a while)
57 ;; - look at the end of play time to make sure we notice the end
58 ;; as soon as possible
59 ;; - better volume widget.
60 ;; - add synthesized tags.
61 ;; e.g. pseudo-artist = artist + composer + performer.
62 ;; e.g. pseudo-performer = performer or artist
63 ;; e.g. rewrite artist "Foo bar & baz" to "Foo bar".
64 ;; e.g. filename regexp -> compilation flag
65 ;; - window/buffer management.
66 ;; - menubar, tooltips, ...
67 ;; - add mpc-describe-song, mpc-describe-album, ...
68 ;; - add import/export commands (especially export to an MP3 player).
69 ;; - add a real notion of album (as opposed to just album-name):
70 ;; if all songs with same album-name have same artist -> it's an album
71 ;; else it's either several albums or a compilation album (or both),
72 ;; in which case we could use heuristics or user provided info:
73 ;; - if the user followed the 1-album = 1-dir idea, then we can group songs
74 ;; by their directory to create albums.
75 ;; - if a `compilation' flag is available, and if <=1 of the songs have it
76 ;; set, then we can group songs by their artist to create albums.
77 ;; - if two songs have the same track-nb and disk-nb, they're not in the
78 ;; same album. So from the set of songs with identical album names, we
79 ;; can get a lower bound on the number of albums involved, and then see
80 ;; which of those may be non-compilations, etc...
81 ;; - use a special directory name for compilations.
86 ;; Prefixes used in this code:
87 ;; mpc-proc : management of connection (in/out formatting, ...)
88 ;; mpc-status : auto-updated status info
89 ;; mpc-volume : stuff handling the volume widget
90 ;; mpc-cmd : mpdlib abstraction
95 (eval-when-compile (require 'cl-lib
))
98 "Client for the Music Player Daemon (mpd)."
101 :group
'applications
)
103 (defcustom mpc-browser-tags
'(Genre Artist|Composer|Performer
105 "Tags for which a browser buffer should be created by default."
106 ;; FIXME: provide a list of tags, for completion.
107 :type
'(repeat symbol
))
109 ;;; Misc utils ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
111 (defun mpc-assq-all (key alist
)
114 (if (and (eq (car elem
) key
)
115 (not (member (setq val
(cdr elem
)) res
)))
119 (defun mpc-union (&rest lists
)
120 (let ((res (nreverse (pop lists
))))
122 (let ((seen res
)) ;Don't remove duplicates within each list.
124 (unless (member elem seen
) (push elem res
)))))
127 (defun mpc-intersection (l1 l2
&optional selectfun
)
128 "Return L1 after removing all elements not found in L2.
129 If SELECTFUN is non-nil, elements aren't compared directly, but instead
130 they are passed through SELECTFUN before comparison."
132 (if selectfun
(setq l2
(mapcar selectfun l2
)))
134 (when (member (if selectfun
(funcall selectfun elem
) elem
) l2
)
138 (defun mpc-event-set-point (event)
139 (condition-case nil
(posn-set-point (event-end event
))
140 (error (condition-case nil
(mouse-set-point event
)
143 (defun mpc-compare-strings (str1 str2
&optional ignore-case
)
144 "Compare strings STR1 and STR2.
145 Contrary to `compare-strings', this tries to get numbers sorted
146 numerically rather than lexicographically."
147 (let ((res (compare-strings str1 nil nil str2 nil nil ignore-case
)))
148 (if (not (integerp res
)) res
149 (let ((index (1- (abs res
))))
150 (if (or (>= index
(length str1
)) (>= index
(length str2
)))
152 (let ((digit1 (memq (aref str1 index
)
153 '(?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9)))
154 (digit2 (memq (aref str2 index
)
155 '(?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9))))
158 (let ((num1 (progn (string-match "[0-9]+" str1 index
)
159 (match-string 0 str1
)))
160 (num2 (progn (string-match "[0-9]+" str2 index
)
161 (match-string 0 str2
))))
163 ;; Here we presume that leading zeroes are only used
164 ;; for same-length numbers. So we'll incorrectly
165 ;; consider that "000" comes after "01", but I don't
167 ((< (length num1
) (length num2
)) (- (abs res
)))
168 ((> (length num1
) (length num2
)) (abs res
))
169 ((< (string-to-number num1
) (string-to-number num2
))
172 ;; "1a" comes before "10", but "0" comes before "a".
173 (if (and (not (zerop index
))
174 (memq (aref str1
(1- index
))
175 '(?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9)))
179 ;; "1a" comes before "10", but "0" comes before "a".
180 (if (and (not (zerop index
))
181 (memq (aref str1
(1- index
))
182 '(?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9)))
187 (define-obsolete-function-alias 'mpc-string-prefix-p
'string-prefix-p
"24.3")
189 ;; This can speed up mpc--song-search significantly. The table may grow
190 ;; very large, tho. It's only bounded by the fact that it gets flushed
191 ;; whenever the connection is established; which seems to work OK thanks
192 ;; to the fact that MPD tends to disconnect fairly often, although our
193 ;; constant polling often prevents disconnection.
194 (defvar mpc--find-memoize
(make-hash-table :test
'equal
)) ;; :weakness t
195 (defvar-local mpc-tag nil
)
197 ;;; Support for the actual connection and MPD command execution ;;;;;;;;;;;;
200 (concat (or (getenv "MPD_HOST") "localhost")
201 (if (getenv "MPD_PORT") (concat ":" (getenv "MPD_PORT"))))
202 "Host (and port) where the Music Player Daemon is running. The
203 format is \"HOST\", \"HOST:PORT\", \"PASSWORD@HOST\" or
204 \"PASSWORD@HOST:PORT\" where PASSWORD defaults to no password, PORT
205 defaults to 6600 and HOST defaults to localhost."
208 (defvar mpc-proc nil
)
210 (defconst mpc--proc-end-re
"^\\(?:OK\\(?: MPD .*\\)?\\|ACK \\(.*\\)\\)\n")
212 (define-error 'mpc-proc-error
"MPD error")
214 (defun mpc--debug (format &rest args
)
215 (if (get-buffer "*MPC-debug*")
216 (with-current-buffer "*MPC-debug*"
217 (goto-char (point-max))
218 (insert-before-markers ;So it scrolls.
219 (replace-regexp-in-string "\n" "\n "
220 (apply 'format format args
))
223 (defun mpc--proc-filter (proc string
)
224 (mpc--debug "Receive \"%s\"" string
)
225 (with-current-buffer (process-buffer proc
)
226 (if (process-get proc
'ready
)
227 (if nil
;; (string-match "\\`\\(OK\n\\)+\\'" string)
228 ;; I haven't figured out yet why I get those extraneous OKs,
229 ;; so I'll just ignore them for now.
231 (delete-process proc
)
232 (set-process-buffer proc nil
)
233 (pop-to-buffer (clone-buffer))
234 (error "MPD output while idle!?"))
236 (let ((start (or (marker-position (process-mark proc
)) (point-min))))
239 (move-marker (process-mark proc
) (point))
241 (when (and (< start
(point))
242 (re-search-backward mpc--proc-end-re start t
))
243 (process-put proc
'ready t
)
244 (unless (eq (match-end 0) (point-max))
245 (error "Unexpected trailing text"))
246 (let ((error-text (match-string 1)))
247 (delete-region (point) (point-max))
248 (let ((callback (process-get proc
'callback
)))
249 (process-put proc
'callback nil
)
251 (process-put proc
'mpc-proc-error error-text
))
252 (funcall callback
)))))))))
254 (defun mpc--proc-connect (host)
258 (when (string-match "\\`\\(?:\\(.*\\)@\\)?\\(.*?\\)\\(?::\\(.*\\)\\)?\\'"
260 (let ((v (match-string 1 host
)))
261 (when (and (stringp v
) (not (string= "" v
)))
263 (let ((v (match-string 3 host
)))
264 (setq host
(match-string 2 host
))
265 (when (and (stringp v
) (not (string= "" v
)))
267 (if (string-match "[^[:digit:]]" v
)
271 (mpc--debug "Connecting to %s:%s..." host port
)
272 (with-current-buffer (get-buffer-create (format " *mpc-%s:%s*" host port
))
273 ;; (pop-to-buffer (current-buffer))
275 (while (and (setq proc
(get-buffer-process (current-buffer)))
277 (delete-process proc
)))))
279 (let* ((coding-system-for-read 'utf-8-unix
)
280 (coding-system-for-write 'utf-8-unix
)
281 (proc (condition-case err
282 (open-network-stream "MPC" (current-buffer) host port
)
283 (error (user-error (error-message-string err
))))))
284 (when (processp mpc-proc
)
285 ;; Inherit the properties of the previous connection.
286 (let ((plist (process-plist mpc-proc
)))
287 (while plist
(process-put proc
(pop plist
) (pop plist
)))))
288 (mpc-proc-buffer proc
'mpd-commands
(current-buffer))
289 (process-put proc
'callback
'ignore
)
290 (process-put proc
'ready nil
)
291 (clrhash mpc--find-memoize
)
292 (set-process-filter proc
'mpc--proc-filter
)
293 (set-process-sentinel proc
'ignore
)
294 (set-process-query-on-exit-flag proc nil
)
295 ;; This may be called within a process filter ;-(
296 (with-local-quit (mpc-proc-sync proc
))
299 (mpc-proc-cmd (list "password" pass
) nil
))))))
301 (defun mpc--proc-quote-string (s)
302 (if (numberp s
) (number-to-string s
)
303 (setq s
(replace-regexp-in-string "[\"\\]" "\\\\\\&" s
))
304 (if (string-match " " s
) (concat "\"" s
"\"") s
)))
306 (defconst mpc--proc-alist-to-alists-starters
'(file directory
))
308 (defun mpc--proc-alist-to-alists (alist)
309 (cl-assert (or (null alist
)
310 (memq (caar alist
) mpc--proc-alist-to-alists-starters
)))
311 (let ((starter (caar alist
))
315 (when (eq (car pair
) starter
)
316 (if tmp
(push (nreverse tmp
) alists
))
319 (if tmp
(push (nreverse tmp
) alists
))
322 (defun mpc-proc (&optional restart
)
323 (unless (and mpc-proc
324 (buffer-live-p (process-buffer mpc-proc
))
326 (memq (process-status mpc-proc
) '(closed)))))
327 (mpc--proc-connect mpc-host
))
330 (defun mpc-proc-check (proc)
331 (let ((error-text (process-get proc
'mpc-proc-error
)))
333 (process-put proc
'mpc-proc-error nil
)
334 (signal 'mpc-proc-error error-text
))))
336 (defun mpc-proc-sync (&optional proc
)
337 "Wait for MPC process until it is idle again.
338 Return the buffer in which the process is/was running."
339 (unless proc
(setq proc
(mpc-proc)))
342 (while (and (not (process-get proc
'ready
))
343 (accept-process-output proc
)))
344 (mpc-proc-check proc
)
345 (if (process-get proc
'ready
) (process-buffer proc
)
346 (error "No response from MPD")))
347 (unless (process-get proc
'ready
)
349 (message "Killing hung process")
350 (delete-process proc
))))
352 (defun mpc-proc-cmd (cmd &optional callback
)
353 "Send command CMD to the MPD server.
354 If CALLBACK is nil, wait for the command to finish before returning,
355 otherwise return immediately and call CALLBACK with no argument
356 when the command terminates.
357 CMD can be a string which is passed as-is to MPD or a list of strings
358 which will be concatenated with proper quoting before passing them to MPD."
359 (let ((proc (mpc-proc 'restart
)))
360 (if (and callback
(not (process-get proc
'ready
)))
361 (let ((old (process-get proc
'callback
)))
362 (process-put proc
'callback
365 (mpc-proc-cmd cmd callback
))))
366 ;; Wait for any pending async command to terminate.
368 (process-put proc
'ready nil
)
369 (with-current-buffer (process-buffer proc
)
371 (mpc--debug "Send \"%s\"" cmd
)
373 proc
(concat (if (stringp cmd
) cmd
374 (mapconcat 'mpc--proc-quote-string cmd
" "))
377 ;; (let ((buf (current-buffer)))
378 (process-put proc
'callback
382 ;; (prog1 (current-buffer)
383 ;; (set-buffer buf)))))
385 ;; If `callback' is nil, we're executing synchronously.
386 (process-put proc
'callback
'ignore
)
387 ;; This returns the process's buffer.
388 (mpc-proc-sync proc
)))))
390 ;; This function doesn't exist in Emacs-21.
391 ;; (put 'mpc-proc-cmd-list 'byte-optimizer 'byte-optimize-pure-func)
392 (defun mpc-proc-cmd-list (cmds)
393 (concat "command_list_begin\n"
394 (mapconcat (lambda (cmd)
395 (if (stringp cmd
) cmd
396 (mapconcat 'mpc--proc-quote-string cmd
" ")))
399 "\ncommand_list_end"))
401 (defun mpc-proc-cmd-list-ok ()
402 ;; To implement this, we'll need to tweak the process filter since we'd
403 ;; then sometimes get "trailing" text after "OK\n".
404 (error "Not implemented yet"))
406 (defun mpc-proc-buf-to-alist (&optional buf
)
407 (with-current-buffer (or buf
(current-buffer))
409 (goto-char (point-min))
410 (while (re-search-forward "^\\([^:]+\\): \\(.*\\)\n" nil t
)
411 (push (cons (intern (match-string 1)) (match-string 2)) res
))
414 (defun mpc-proc-buf-to-alists (buf)
415 (mpc--proc-alist-to-alists (mpc-proc-buf-to-alist buf
)))
417 (defun mpc-proc-cmd-to-alist (cmd &optional callback
)
419 (let ((buf (current-buffer)))
420 (mpc-proc-cmd cmd
(lambda ()
421 (funcall callback
(prog1 (mpc-proc-buf-to-alist
423 (set-buffer buf
))))))
425 ;; (mpc-proc-cmd-to-alist cmd (lambda (alist) (setq res alist)))
428 (mpc-proc-buf-to-alist (mpc-proc-cmd cmd
))))
430 (defun mpc-proc-tag-string-to-sym (tag)
431 (intern (capitalize tag
)))
433 (defun mpc-proc-buffer (proc use
&optional buffer
)
434 (let* ((bufs (process-get proc
'buffers
))
435 (buf (cdr (assoc use bufs
))))
437 ((and buffer
(buffer-live-p buf
) (not (eq buffer buf
)))
438 (error "Duplicate MPC buffer for %s" use
))
441 (setcdr (assoc use bufs
) buffer
)
442 (process-put proc
'buffers
(cons (cons use buffer
) bufs
))))
445 ;;; Support for regularly updated current status information ;;;;;;;;;;;;;;;
447 ;; Exported elements:
448 ;; `mpc-status' holds the uptodate data.
449 ;; `mpc-status-callbacks' holds the registered callback functions.
450 ;; `mpc-status-refresh' forces a refresh of the data.
451 ;; `mpc-status-stop' stops the automatic updating.
453 (defvar mpc-status nil
)
454 (defvar mpc-status-callbacks
455 '((state . mpc--status-timers-refresh
)
456 ;; (song . mpc--queue-refresh)
457 ;; (state . mpc--queue-refresh) ;To detect the end of the last song.
458 (state . mpc--faster-toggle-refresh
) ;Only ffwd/rewind while play/pause.
459 (volume . mpc-volume-refresh
)
460 (file . mpc-songpointer-refresh
)
461 ;; The song pointer may need updating even if the file doesn't change,
462 ;; if the same song appears multiple times in a row.
463 (song . mpc-songpointer-refresh
)
464 (updating_db . mpc-updated-db
)
465 (updating_db . mpc--status-timers-refresh
)
466 (t . mpc-current-refresh
))
467 "Alist associating properties to the functions that care about them.
468 Each entry has the form (PROP . FUN) where PROP can be t to mean
469 to call FUN for any change whatsoever.")
471 (defun mpc--status-callback ()
472 (let ((old-status mpc-status
))
474 (setq mpc-status
(mpc-proc-buf-to-alist))
475 (cl-assert mpc-status
)
476 (unless (equal old-status mpc-status
)
477 ;; Run the relevant refresher functions.
478 (dolist (pair mpc-status-callbacks
)
479 (when (or (eq t
(car pair
))
480 (not (equal (cdr (assq (car pair
) old-status
))
481 (cdr (assq (car pair
) mpc-status
)))))
482 (funcall (cdr pair
)))))))
484 (defvar mpc--status-timer nil
)
485 (defun mpc--status-timer-start ()
486 (add-hook 'pre-command-hook
'mpc--status-timer-stop
)
487 (unless mpc--status-timer
488 (setq mpc--status-timer
(run-with-timer 1 1 'mpc--status-timer-run
))))
489 (defun mpc--status-timer-stop ()
490 (when mpc--status-timer
491 (cancel-timer mpc--status-timer
)
492 (setq mpc--status-timer nil
)))
493 (defun mpc--status-timer-run ()
494 (with-demoted-errors "MPC: %S"
495 (when (process-get (mpc-proc) 'ready
)
496 (let* ((buf (mpc-proc-buffer (mpc-proc) 'status
))
497 (win (get-buffer-window buf t
)))
499 (mpc--status-timer-stop)
500 (with-local-quit (mpc-status-refresh)))))))
502 (defvar mpc--status-idle-timer nil
)
503 (defun mpc--status-idle-timer-start ()
504 (when mpc--status-idle-timer
505 ;; Turn it off even if we'll start it again, in case it changes the delay.
506 (cancel-timer mpc--status-idle-timer
))
507 (setq mpc--status-idle-timer
508 (run-with-idle-timer 1 t
'mpc--status-idle-timer-run
))
509 ;; Typically, the idle timer is started from the mpc--status-callback,
510 ;; which is run asynchronously while we're already idle (we typically
511 ;; just started idling), so the timer itself will only be run the next
513 ;; To work around that, we immediately start the repeat timer.
514 (mpc--status-timer-start))
515 (defun mpc--status-idle-timer-stop (&optional really
)
516 (when mpc--status-idle-timer
517 ;; Turn it off even if we'll start it again, in case it changes the delay.
518 (cancel-timer mpc--status-idle-timer
))
519 (setq mpc--status-idle-timer
521 ;; We don't completely stop the timer, so that if some other MPD
522 ;; client starts playback, we may get a chance to notice it.
523 (run-with-idle-timer 10 t
'mpc--status-idle-timer-run
))))
524 (defun mpc--status-idle-timer-run ()
525 (mpc--status-timer-start)
526 (mpc--status-timer-run))
528 (defun mpc--status-timers-refresh ()
529 "Start/stop the timers according to whether a song is playing."
530 (if (or (member (cdr (assq 'state mpc-status
)) '("play"))
531 (cdr (assq 'updating_db mpc-status
)))
532 (mpc--status-idle-timer-start)
533 (mpc--status-idle-timer-stop)
534 (mpc--status-timer-stop)))
536 (defun mpc-status-refresh (&optional callback
)
537 "Refresh `mpc-status'."
539 (mpc-proc-cmd (mpc-proc-cmd-list '("status" "currentsong"))
541 (mpc--status-callback)
542 (if cb
(funcall cb
))))))
544 (defun mpc-status-stop ()
545 "Stop the autorefresh of `mpc-status'.
546 This is normally used only when quitting MPC.
547 Any call to `mpc-status-refresh' may cause it to be restarted."
548 (setq mpc-status nil
)
549 (mpc--status-idle-timer-stop 'really
)
550 (mpc--status-timer-stop))
552 ;;; A thin layer above the raw protocol commands ;;;;;;;;;;;;;;;;;;;;;;;;;;;
554 ;; (defvar mpc-queue nil)
555 ;; (defvar mpc-queue-back nil)
557 ;; (defun mpc--queue-head ()
558 ;; (if (stringp (car mpc-queue)) (car mpc-queue) (cadar mpc-queue)))
559 ;; (defun mpc--queue-pop ()
560 ;; (when mpc-queue ;Can be nil if out of sync.
561 ;; (let ((song (car mpc-queue)))
563 ;; (push (if (and (consp song) (cddr song))
564 ;; ;; The queue's first element is itself a list of
565 ;; ;; songs, where the first element isn't itself a song
566 ;; ;; but a description of the list.
567 ;; (prog1 (cadr song) (setcdr song (cddr song)))
568 ;; (prog1 (if (consp song) (cadr song) song)
569 ;; (setq mpc-queue (cdr mpc-queue))))
571 ;; (cl-assert (stringp (car mpc-queue-back))))))
573 ;; (defun mpc--queue-refresh ()
574 ;; ;; Maintain the queue.
575 ;; (mpc--debug "mpc--queue-refresh")
576 ;; (let ((pos (cdr (or (assq 'Pos mpc-status) (assq 'song mpc-status)))))
579 ;; (mpc-cmd-clear 'ignore))
580 ;; ((or (not (member pos '("0" nil)))
581 ;; ;; There's only one song in the playlist and we've stopped.
582 ;; ;; Maybe it's because of some external client that set the
583 ;; ;; playlist like that and/or manually stopped the playback, but
584 ;; ;; it's more likely that we've simply reached the end of
585 ;; ;; the song. So remove it.
586 ;; (and (equal (assq 'state mpc-status) "stop")
587 ;; (equal (assq 'playlistlength mpc-status) "1")
589 ;; ;; We're not playing the first song in the queue/playlist any
590 ;; ;; more, so update the queue.
591 ;; (dotimes (i (string-to-number pos)) (mpc--queue-pop))
592 ;; (mpc-proc-cmd (mpc-proc-cmd-list
593 ;; (make-list (string-to-number pos) "delete 0"))
595 ;; (if (not (equal (cdr (assq 'file mpc-status))
596 ;; (mpc--queue-head)))
597 ;; (message "MPC's queue is out of sync"))))))
599 (defvar mpc--find-memoize-union-tags nil
)
601 (defun mpc-cmd-flush (tag value
)
602 (puthash (cons tag value
) nil mpc--find-memoize
)
603 (dolist (uniontag mpc--find-memoize-union-tags
)
604 (if (member (symbol-name tag
) (split-string (symbol-name uniontag
) "|"))
605 (puthash (cons uniontag value
) nil mpc--find-memoize
))))
608 (defun mpc-cmd-special-tag-p (tag)
609 (or (memq tag
'(Playlist Search Directory
))
610 (string-match "|" (symbol-name tag
))))
612 (defun mpc-cmd-find (tag value
)
613 "Return a list of all songs whose tag TAG has value VALUE.
614 The songs are returned as alists."
615 (or (gethash (cons tag value
) mpc--find-memoize
)
616 (puthash (cons tag value
)
619 ;; Special case for pseudo-tag playlist.
620 (let ((l (condition-case nil
621 (mpc-proc-buf-to-alists
622 (mpc-proc-cmd (list "listplaylistinfo" value
)))
624 ;; "[50@0] {listplaylistinfo} No such playlist"
628 (prog1 (cons (cons 'Pos
(number-to-string i
)) s
)
632 (mpc-proc-buf-to-alists
633 (mpc-proc-cmd (list "search" "any" value
))))
636 (mpc-proc-buf-to-alist
637 (mpc-proc-cmd (list "listallinfo" value
)))))
638 (mpc--proc-alist-to-alists
639 ;; Strip away the `directory' entries.
640 (delq nil
(mapcar (lambda (pair)
641 (if (eq (car pair
) 'directory
)
644 ((string-match "|" (symbol-name tag
))
645 (add-to-list 'mpc--find-memoize-union-tags tag
)
646 (let ((tag1 (intern (substring (symbol-name tag
)
647 0 (match-beginning 0))))
648 (tag2 (intern (substring (symbol-name tag
)
650 (mpc-union (mpc-cmd-find tag1 value
)
651 (mpc-cmd-find tag2 value
))))
654 (mpc-proc-buf-to-alists
655 (mpc-proc-cmd (list "find" (symbol-name tag
) value
)))
657 ;; If `tag' is not one of the expected tags, MPD burps
658 ;; about not having the relevant table. FIXME: check
659 ;; the kind of error.
660 (error "Unknown tag %s" tag
)
662 (setq value
(cons tag value
))
663 (dolist (song (mpc-proc-buf-to-alists
664 (mpc-proc-cmd "listallinfo")))
665 (if (member value song
) (push song res
)))
669 (defun mpc-cmd-list (tag &optional other-tag value
)
670 ;; FIXME: we could also provide a `mpc-cmd-list' alternative which
671 ;; doesn't take an "other-tag value" constraint but a "song-list" instead.
672 ;; That might be more efficient in some cases.
675 (let ((pls (mpc-assq-all 'playlist
(mpc-proc-cmd-to-alist "lsinfo"))))
677 (dolist (pl (prog1 pls
(setq pls nil
)))
678 (let ((plsongs (mpc-cmd-find 'Playlist pl
)))
679 (if (not (mpc-cmd-special-tag-p other-tag
))
680 (when (member (cons other-tag value
)
681 (apply 'append plsongs
))
683 ;; Problem N°2: we compute the intersection whereas all
684 ;; we care about is whether it's empty. So we could
685 ;; speed this up significantly.
686 ;; We only compare file names, because the full song-entries
687 ;; are slightly different (the ones in plsongs include
688 ;; position and id info specific to the playlist), and it's
689 ;; good enough because this is only used with "search", which
690 ;; doesn't pay attention to playlists and URLs anyway.
691 (let* ((osongs (mpc-cmd-find other-tag value
))
692 (ofiles (mpc-assq-all 'file
(apply 'append osongs
)))
693 (plfiles (mpc-assq-all 'file
(apply 'append plsongs
))))
694 (when (mpc-intersection plfiles ofiles
)
701 (mpc-assq-all 'directory
702 (mpc-proc-buf-to-alist
703 (mpc-proc-cmd "lsinfo")))
704 (mapcar (lambda (dir)
706 (if (get-text-property 0 'display dir
)
708 (get-text-property 0 'display dir
))
711 (mpc-assq-all 'directory
712 (mpc-proc-buf-to-alist
713 (mpc-proc-cmd (list "lsinfo" dir
))))))
714 (dolist (subdir subdirs
)
715 (put-text-property 0 (1+ (length dir
))
719 (process-get (mpc-proc) 'Directory
)))
720 ;; If there's an other-tag, then just extract the dir info from the
721 ;; list of other-tag's songs.
722 (let* ((other-songs (mpc-cmd-find other-tag value
))
723 (files (mpc-assq-all 'file
(apply 'append other-songs
)))
726 (let ((dir (file-name-directory file
)))
727 (if (and dir
(setq dir
(directory-file-name dir
))
728 (not (equal dir
(car dirs
))))
730 ;; Dirs might have duplicates still.
731 (setq dirs
(delete-dups dirs
))
732 (let ((newdirs dirs
))
734 (let ((dir (file-name-directory (pop newdirs
))))
735 (when (and dir
(setq dir
(directory-file-name dir
))
736 (not (member dir dirs
)))
741 ;; The UI should not provide access to such a thing anyway currently.
742 ;; But I could imagine adding in the future a browser for the "search"
743 ;; tag, which would provide things like previous searches. Not sure how
744 ;; useful that would be tho.
745 ((eq tag
'Search
) (error "Not supported"))
747 ((string-match "|" (symbol-name tag
))
748 (let ((tag1 (intern (substring (symbol-name tag
)
749 0 (match-beginning 0))))
750 (tag2 (intern (substring (symbol-name tag
)
752 (mpc-union (mpc-cmd-list tag1 other-tag value
)
753 (mpc-cmd-list tag2 other-tag value
))))
757 (mapcar 'cdr
(mpc-proc-cmd-to-alist (list "list" (symbol-name tag
))))
759 ;; If `tag' is not one of the expected tags, MPD burps about not
760 ;; having the relevant table.
761 ;; FIXME: check the kind of error.
762 (error "MPD does not know this tag %s" tag
)
763 (mpc-assq-all tag
(mpc-proc-cmd-to-alist "listallinfo")))))
766 (if (mpc-cmd-special-tag-p other-tag
)
767 (signal 'mpc-proc-error
"Not implemented")
769 (mpc-proc-cmd-to-alist
770 (list "list" (symbol-name tag
)
771 (symbol-name other-tag
) value
))))
773 ;; DAMN!! the 3-arg form of `list' is new in 0.12 !!
774 ;; FIXME: check the kind of error.
775 (let ((other-songs (mpc-cmd-find other-tag value
)))
777 ;; Don't use `nconc' now that mpc-cmd-find may
778 ;; return a memoized result.
779 (apply 'append other-songs
))))))))
781 (defun mpc-cmd-stop (&optional callback
)
782 (mpc-proc-cmd "stop" callback
))
784 (defun mpc-cmd-clear (&optional callback
)
785 (mpc-proc-cmd "clear" callback
)
786 ;; (setq mpc-queue-back nil mpc-queue nil)
789 (defun mpc-cmd-pause (&optional arg callback
)
790 "Pause or resume playback of the queue of songs."
792 (mpc-proc-cmd (list "pause" arg
)
793 (lambda () (mpc-status-refresh) (if cb
(funcall cb
))))
794 (unless callback
(mpc-proc-sync))))
796 (defun mpc-cmd-status ()
797 (mpc-proc-cmd-to-alist "status"))
799 (defun mpc-cmd-play ()
800 (mpc-proc-cmd "play")
801 (mpc-status-refresh))
803 (defun mpc-cmd-add (files &optional playlist
)
804 "Add the songs FILES to PLAYLIST.
805 If PLAYLIST is t or nil or missing, use the main playlist."
806 (mpc-proc-cmd (mpc-proc-cmd-list
807 (mapcar (lambda (file)
808 (if (stringp playlist
)
809 (list "playlistadd" playlist file
)
812 (if (stringp playlist
)
813 (mpc-cmd-flush 'Playlist playlist
)))
815 (defun mpc-cmd-delete (song-poss &optional playlist
)
816 "Delete the songs at positions SONG-POSS from PLAYLIST.
817 If PLAYLIST is t or nil or missing, use the main playlist."
818 (mpc-proc-cmd (mpc-proc-cmd-list
819 (mapcar (lambda (song-pos)
820 (if (stringp playlist
)
821 (list "playlistdelete" playlist song-pos
)
822 (list "delete" song-pos
)))
823 ;; Sort them from last to first, so the renumbering
824 ;; caused by the earlier deletions don't affect
826 (sort song-poss
'>))))
827 (if (stringp playlist
)
828 (puthash (cons 'Playlist playlist
) nil mpc--find-memoize
)))
831 (defun mpc-cmd-move (song-poss dest-pos
&optional playlist
)
835 (mapcar (lambda (song-pos)
836 (if (>= song-pos dest-pos
)
837 ;; positions past dest-pos have been
839 (setq song-pos
(+ song-pos i
)))
840 (prog1 (if (stringp playlist
)
841 (list "playlistmove" playlist song-pos dest-pos
)
842 (list "move" song-pos dest-pos
))
843 (if (< song-pos dest-pos
)
844 ;; This move has shifted dest-pos by 1.
847 ;; Sort them from last to first, so the renumbering
848 ;; caused by the earlier deletions affect
849 ;; later ones a bit less.
850 (sort song-poss
'>))))
851 (if (stringp playlist
)
852 (puthash (cons 'Playlist playlist
) nil mpc--find-memoize
))))
854 (defun mpc-cmd-update (&optional arg callback
)
856 (mpc-proc-cmd (if arg
(list "update" arg
) "update")
857 (lambda () (mpc-status-refresh) (if cb
(funcall cb
))))
858 (unless callback
(mpc-proc-sync))))
860 (defun mpc-cmd-tagtypes ()
861 (mapcar 'cdr
(mpc-proc-cmd-to-alist "tagtypes")))
863 ;; This was never integrated into MPD.
864 ;; (defun mpc-cmd-download (file)
865 ;; (with-current-buffer (generate-new-buffer " *mpc download*")
866 ;; (set-buffer-multibyte nil)
867 ;; (let* ((proc (mpc-proc))
868 ;; (stdbuf (process-buffer proc))
869 ;; (markpos (marker-position (process-mark proc)))
870 ;; (stdcoding (process-coding-system proc)))
873 ;; (set-process-buffer proc (current-buffer))
874 ;; (set-process-coding-system proc 'binary (cdr stdcoding))
875 ;; (set-marker (process-mark proc) (point))
876 ;; (mpc-proc-cmd (list "download" file)))
877 ;; (set-process-buffer proc stdbuf)
878 ;; (set-marker (process-mark proc) markpos stdbuf)
879 ;; (set-process-coding-system proc (car stdcoding) (cdr stdcoding)))
880 ;; ;; The command has completed, let's decode.
881 ;; (goto-char (point-max))
882 ;; (delete-char -1) ;Delete final newline.
883 ;; (while (re-search-backward "^>" nil t)
885 ;; (current-buffer))))
887 ;;; Misc ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
889 (defcustom mpc-mpd-music-directory nil
890 "Location of MPD's music directory."
891 :type
'(choice (const nil
) directory
))
893 (defcustom mpc-data-directory
894 (locate-user-emacs-file "mpc" ".mpc")
895 "Directory where MPC.el stores auxiliary data."
898 (defun mpc-data-directory ()
899 (unless (file-directory-p mpc-data-directory
)
900 (make-directory mpc-data-directory
))
903 (defun mpc-file-local-copy (file)
904 ;; Try to set mpc-mpd-music-directory.
905 (when (and (null mpc-mpd-music-directory
)
906 (string-match "\\`localhost" mpc-host
))
907 (let ((files '("~/.mpdconf" "/etc/mpd.conf"))
909 (while (and files
(not file
))
910 (if (file-exists-p (car files
)) (setq file
(car files
)))
911 (setq files
(cdr files
)))
913 (ignore-errors (insert-file-contents file
))
914 (goto-char (point-min))
915 (if (re-search-forward "^music_directory[ ]+\"\\([^\"]+\\)\"")
916 (setq mpc-mpd-music-directory
917 (match-string 1))))))
918 ;; Use mpc-mpd-music-directory if applicable, or else try to use the
919 ;; `download' command, although it's never been accepted in `mpd' :-(
920 (if (and mpc-mpd-music-directory
921 (file-exists-p (expand-file-name file mpc-mpd-music-directory
)))
922 (expand-file-name file mpc-mpd-music-directory
)
923 ;; (let ((aux (expand-file-name (replace-regexp-in-string "[/]" "|" file)
924 ;; (mpc-data-directory))))
925 ;; (unless (file-exists-p aux)
926 ;; (condition-case err
928 ;; (with-current-buffer (mpc-cmd-download file)
929 ;; (write-region (point-min) (point-max) aux)
930 ;; (kill-buffer (current-buffer))))
931 ;; (mpc-proc-error (message "Download error: %s" err) (setq aux nil))))
935 ;;; Formatter ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
937 (defun mpc-secs-to-time (secs)
938 ;; We could use `format-seconds', but it doesn't seem worth the trouble
939 ;; because we'd still need to check (>= secs (* 60 100)) since the special
940 ;; %z only allows us to drop the large units for small values but
941 ;; not to drop the small units for large values.
942 (if (stringp secs
) (setq secs
(string-to-number secs
)))
943 (if (>= secs
(* 60 100)) ;More than 100 minutes.
944 (format "%dh%02d" ;"%d:%02d:%02d"
945 (/ secs
3600) (%
(/ secs
60) 60)) ;; (% secs 60)
946 (format "%d:%02d" (/ secs
60) (% secs
60))))
948 (defvar mpc-tempfiles nil
)
949 (defconst mpc-tempfiles-reftable
(make-hash-table :weakness
'key
))
951 (defun mpc-tempfiles-clean ()
953 (maphash (lambda (_k v
) (push v live
)) mpc-tempfiles-reftable
)
954 (dolist (f mpc-tempfiles
)
955 (unless (member f live
) (ignore-errors (delete-file f
))))
956 (setq mpc-tempfiles live
)))
958 (defun mpc-tempfiles-add (key file
)
959 (mpc-tempfiles-clean)
960 (puthash key file mpc-tempfiles-reftable
)
961 (push file mpc-tempfiles
))
963 (defun mpc-format (format-spec info
&optional hscroll
)
964 "Format the INFO according to FORMAT-SPEC, inserting the result at point."
967 (col (if hscroll
(- hscroll
) 0))
968 (insert (lambda (str)
970 ((>= col
0) (insert str
))
971 (t (insert (substring str
(min (length str
) (- col
))))))))
973 (while (string-match "%\\(?:%\\|\\(-\\)?\\([0-9]+\\)?{\\([[:alpha:]][[:alnum:]]*\\)\\(?:-\\([^}]+\\)\\)?}\\)" format-spec pos
)
974 (let ((pre-text (substring format-spec pos
(match-beginning 0))))
975 (funcall insert pre-text
)
976 (setq col
(+ col
(string-width pre-text
))))
977 (setq pos
(match-end 0))
978 (if (null (match-end 3))
981 (setq col
(+ col
1)))
982 (let* ((size (match-string 2 format-spec
))
983 (tag (intern (match-string 3 format-spec
)))
984 (post (match-string 4 format-spec
))
985 (right-align (match-end 1))
987 (if (eq info
'self
) (symbol-name tag
)
989 ((or `Time
`Duration
)
990 (let ((time (cdr (or (assq 'time info
) (assq 'Time info
)))))
991 (setq pred
(list nil
)) ;Just assume it's never eq.
993 (mpc-secs-to-time (if (and (eq tag
'Duration
)
994 (string-match ":" time
))
995 (substring time
(match-end 0))
998 (let* ((dir (file-name-directory (cdr (assq 'file info
))))
999 (cover (concat dir
"cover.jpg"))
1000 (file (with-demoted-errors "MPC: %s"
1001 (mpc-file-local-copy cover
)))
1004 (push `(equal ',dir
(file-name-directory (cdr (assq 'file info
)))) pred
)
1006 ;; Make sure we return something on which we can
1007 ;; place the `mpc-pred' property, as
1008 ;; a negative-cache. We could also use
1010 (progn (setq size nil
) " ")
1011 (if (null size
) (setq image
(create-image file
))
1012 (let ((tempfile (make-temp-file "mpc" nil
".jpg")))
1013 (call-process "convert" nil nil nil
1014 "-scale" size file tempfile
)
1015 (setq image
(create-image tempfile
))
1016 (mpc-tempfiles-add image tempfile
)))
1018 (propertize dir
'display image
))))
1019 (_ (let ((val (cdr (assq tag info
))))
1020 ;; For Streaming URLs, there's no other info
1021 ;; than the URL in `file'. Pretend it's in `Title'.
1022 (when (and (null val
) (eq tag
'Title
))
1023 (setq val
(cdr (assq 'file info
))))
1024 (push `(equal ',val
(cdr (assq ',tag info
))) pred
)
1026 ((not (and (eq tag
'Date
) (stringp val
))) val
)
1027 ;; For "date", only keep the year!
1028 ((string-match "[0-9]\\{4\\}" val
)
1029 (match-string 0 val
))
1032 (setq size
(string-to-number size
))
1033 (propertize " " 'display
1034 (list 'space
:align-to
(+ col size
)))))
1035 (textwidth (if text
(string-width text
) 0))
1036 (postwidth (if post
(string-width post
) 0)))
1040 (> (+ postwidth textwidth
) size
))
1042 (truncate-string-to-width text size nil nil
"…")
1045 (when (memq tag
'(Artist Album Composer
)) ;FIXME: wrong list.
1048 'mouse-face
'highlight
1054 (mpc-constraints-push 'noerror
)
1055 (mpc-constraints-restore
1056 ',(list (list tag text
)))))))))
1059 (propertize " " 'display
1060 (list 'space
:align-to
1062 (if (and size right-align
)
1063 (- size postwidth textwidth
)
1066 (if (null size
) (setq col
(+ col textwidth postwidth
))
1068 (setq col
(+ col size
))))))
1069 (put-text-property start
(point) 'mpc-pred
1070 `(lambda (info) (and ,@(nreverse pred
))))))
1072 ;;; The actual UI code ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1074 (defvar mpc-mode-map
1075 (let ((map (make-keymap)))
1076 (suppress-keymap map
)
1077 ;; (define-key map "\e" 'mpc-stop)
1078 (define-key map
"q" 'mpc-quit
)
1079 (define-key map
"\r" 'mpc-select
)
1080 (define-key map
[(shift return
)] 'mpc-select-toggle
)
1081 (define-key map
[mouse-2
] 'mpc-select
)
1082 (define-key map
[S-mouse-2
] 'mpc-select-extend
)
1083 (define-key map
[C-mouse-2
] 'mpc-select-toggle
)
1084 (define-key map
[drag-mouse-2
] 'mpc-drag-n-drop
)
1085 ;; We use `always' because a binding to t is like a binding to nil.
1086 (define-key map
[follow-link
] :always
)
1087 ;; But follow-link doesn't apply blindly to header-line and
1088 ;; mode-line clicks.
1089 (define-key map
[header-line follow-link
] 'ignore
)
1090 (define-key map
[mode-line follow-link
] 'ignore
)
1091 ;; Doesn't work because the first click changes the buffer, so the second
1092 ;; is applied elsewhere :-(
1093 ;; (define-key map [(double mouse-2)] 'mpc-play-at-point)
1094 (define-key map
"p" 'mpc-pause
)
1097 (easy-menu-define mpc-mode-menu mpc-mode-map
1100 ["Add new browser" mpc-tagbrowser
]
1101 ["Update DB" mpc-update
]
1104 (defvar mpc-tool-bar-map
1105 (let ((map (make-sparse-keymap)))
1106 (tool-bar-local-item "mpc/prev" 'mpc-prev
'prev map
1107 :enable
'(not (equal (cdr (assq 'state mpc-status
)) "stop"))
1108 :label
"Prev" :vert-only t
)
1109 ;; FIXME: how can we bind it to the down-event?
1110 (tool-bar-local-item "mpc/rewind" 'mpc-rewind
'rewind map
1111 :enable
'(not (equal (cdr (assq 'state mpc-status
)) "stop"))
1112 :label
"Rew" :vert-only t
1113 :button
'(:toggle .
(and mpc--faster-toggle-timer
1114 (not mpc--faster-toggle-forward
))))
1115 ;; We could use a single toggle command for pause/play, with 2 different
1116 ;; icons depending on whether or not it's selected, but then it'd have
1117 ;; to be a toggle-button, thus displayed depressed in one of the
1119 (tool-bar-local-item "mpc/pause" 'mpc-pause
'pause map
1120 :label
"Pause" :vert-only t
1121 :visible
'(equal (cdr (assq 'state mpc-status
)) "play")
1123 (tool-bar-local-item "mpc/play" 'mpc-play
'play map
1124 :label
"Play" :vert-only t
1125 :visible
'(not (equal (cdr (assq 'state mpc-status
)) "play"))
1127 ;; FIXME: how can we bind it to the down-event?
1128 (tool-bar-local-item "mpc/ffwd" 'mpc-ffwd
'ffwd map
1129 :enable
'(not (equal (cdr (assq 'state mpc-status
)) "stop"))
1130 :label
"Ffwd" :vert-only t
1131 :button
'(:toggle .
(and mpc--faster-toggle-timer
1132 mpc--faster-toggle-forward
)))
1133 (tool-bar-local-item "mpc/next" 'mpc-next
'next map
1134 :label
"Next" :vert-only t
1135 :enable
'(not (equal (cdr (assq 'state mpc-status
)) "stop")))
1136 (tool-bar-local-item "mpc/stop" 'mpc-stop
'stop map
1137 :label
"Stop" :vert-only t
)
1138 (tool-bar-local-item "mpc/add" 'mpc-playlist-add
'add map
1139 :label
"Add" :vert-only t
1140 :help
"Append to the playlist")
1143 (define-derived-mode mpc-mode fundamental-mode
"MPC"
1144 "Major mode for the features common to all buffers of MPC."
1145 (buffer-disable-undo)
1146 (setq buffer-read-only t
)
1147 (if (boundp 'tool-bar-map
) ; not if --without-x
1148 (setq-local tool-bar-map mpc-tool-bar-map
))
1149 (setq-local truncate-lines t
))
1151 ;;; The mpc-status-mode buffer ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1153 (define-derived-mode mpc-status-mode mpc-mode
"MPC-Status"
1154 "Major mode to display MPC status info."
1155 (setq-local mode-line-format
1156 '("%e" mode-line-frame-identification
1157 mode-line-buffer-identification
))
1158 (setq-local window-area-factor
3)
1159 (setq-local header-line-format
'("MPC " mpc-volume
)))
1161 (defvar mpc-status-buffer-format
1162 '("%-5{Time} / %{Duration} %2{Disc--}%4{Track}" "%{Title}" "%{Album}" "%{Artist}" "%128{Cover}"))
1164 (defun mpc-status-buffer-refresh ()
1165 (let ((buf (mpc-proc-buffer (mpc-proc) 'status
)))
1166 (when (buffer-live-p buf
)
1167 (with-current-buffer buf
1169 (goto-char (point-min))
1170 (when (assq 'file mpc-status
)
1171 (let ((inhibit-read-only t
))
1172 (dolist (spec mpc-status-buffer-format
)
1173 (let ((pred (get-text-property (point) 'mpc-pred
)))
1174 (if (and pred
(funcall pred mpc-status
))
1176 (delete-region (point) (line-beginning-position 2))
1177 (ignore-errors (mpc-format spec mpc-status
))
1179 (unless (eobp) (delete-region (point) (point-max))))))))))
1181 (defun mpc-status-buffer-show ()
1183 (let* ((proc (mpc-proc))
1184 (buf (mpc-proc-buffer proc
'status
))
1185 (songs-buf (mpc-proc-buffer proc
'songs
))
1186 (songs-win (if songs-buf
(get-buffer-window songs-buf
0))))
1187 (unless (buffer-live-p buf
)
1188 (setq buf
(get-buffer-create "*MPC-Status*"))
1189 (with-current-buffer buf
1191 (mpc-proc-buffer proc
'status buf
))
1192 (if (null songs-win
) (pop-to-buffer buf
)
1193 (let ((_win (split-window songs-win
20 t
)))
1194 (set-window-dedicated-p songs-win nil
)
1195 (set-window-buffer songs-win buf
)
1196 (set-window-dedicated-p songs-win
'soft
)))))
1198 ;;; Selection management;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1200 (defvar mpc-separator-ol nil
)
1202 (defvar-local mpc-select nil
)
1204 (defmacro mpc-select-save
(&rest body
)
1205 "Execute BODY and restore the selection afterwards."
1206 (declare (indent 0) (debug t
))
1207 `(let ((selection (mpc-select-get-selection))
1208 (position (cons (buffer-substring-no-properties
1209 (line-beginning-position) (line-end-position))
1212 (mpc-select-restore selection
)
1213 (goto-char (point-min))
1214 (if (re-search-forward
1215 (concat "^" (regexp-quote (car position
)) "$")
1216 (if (overlayp mpc-separator-ol
)
1217 (overlay-end mpc-separator-ol
))
1219 (move-to-column (cdr position
)))
1220 (let ((win (get-buffer-window (current-buffer) 0)))
1221 (if win
(set-window-point win
(point))))))
1223 (defun mpc-select-get-selection ()
1224 (mapcar (lambda (ol)
1225 (buffer-substring-no-properties
1226 (overlay-start ol
) (1- (overlay-end ol
))))
1229 (defun mpc-select-restore (selection)
1230 ;; Restore the selection. I.e. move the overlays back to their
1231 ;; corresponding location. Actually which overlay is used for what
1233 (mapc 'delete-overlay mpc-select
)
1234 (setq mpc-select nil
)
1235 (dolist (elem selection
)
1236 ;; After an update, some elements may have disappeared.
1237 (goto-char (point-min))
1238 (when (re-search-forward
1239 (concat "^" (regexp-quote elem
) "$") nil t
)
1240 (mpc-select-make-overlay)))
1241 (when mpc-tag
(mpc-tagbrowser-all-select))
1242 (beginning-of-line))
1244 (defun mpc-select-make-overlay ()
1245 (cl-assert (not (get-char-property (point) 'mpc-select
)))
1246 (let ((ol (make-overlay
1247 (line-beginning-position) (line-beginning-position 2))))
1248 (overlay-put ol
'mpc-select t
)
1249 (overlay-put ol
'face
'region
)
1250 (overlay-put ol
'evaporate t
)
1251 (push ol mpc-select
)))
1253 (defun mpc-select (&optional event
)
1254 "Select the tag value at point."
1255 (interactive (list last-nonmenu-event
))
1256 (mpc-event-set-point event
)
1257 (if (and (bolp) (eobp)) (forward-line -
1))
1258 (mapc 'delete-overlay mpc-select
)
1259 (setq mpc-select nil
)
1260 (if (mpc-tagbrowser-all-p)
1262 (mpc-select-make-overlay))
1264 (mpc-tagbrowser-all-select)
1265 (mpc-selection-refresh)))
1267 (defun mpc-select-toggle (&optional event
)
1268 "Toggle the selection of the tag value at point."
1269 (interactive (list last-nonmenu-event
))
1270 (mpc-event-set-point event
)
1273 ;; The line is already selected: deselect it.
1274 ((get-char-property (point) 'mpc-select
)
1276 (dolist (ol mpc-select
)
1277 (if (and (<= (overlay-start ol
) (point))
1278 (> (overlay-end ol
) (point)))
1281 (cl-assert (= (1+ (length ols
)) (length mpc-select
)))
1282 (setq mpc-select ols
)))
1283 ;; We're trying to select *ALL* additionally to others.
1284 ((mpc-tagbrowser-all-p) nil
)
1285 ;; Select the current line.
1286 (t (mpc-select-make-overlay))))
1288 (mpc-tagbrowser-all-select)
1289 (mpc-selection-refresh)))
1291 (defun mpc-select-extend (&optional event
)
1292 "Extend the selection up to point."
1293 (interactive (list last-nonmenu-event
))
1294 (mpc-event-set-point event
)
1295 (if (null mpc-select
)
1296 ;; If nothing's selected yet, fallback to selecting the elem at point.
1300 ;; The line is already in a selected area; truncate the area.
1301 ((get-char-property (point) 'mpc-select
)
1304 (mid (line-beginning-position))
1306 (while (and (zerop (forward-line 1))
1307 (get-char-property (point) 'mpc-select
))
1308 (setq end
(1+ (point)))
1311 (while (and (zerop (forward-line -
1))
1312 (get-char-property (point) 'mpc-select
))
1313 (setq start
(point))
1315 (if (and (= after
0) (= before
0))
1316 ;; Shortening an already minimum-size region: do nothing.
1318 (if (> after before
)
1320 (setq start
(1+ mid
)))
1322 (dolist (ol mpc-select
)
1323 (if (and (>= (overlay-start ol
) start
)
1324 (< (overlay-start ol
) end
))
1327 (setq mpc-select
(nreverse ols
))))))
1328 ;; Extending a prior area. Look for the closest selection.
1330 (when (mpc-tagbrowser-all-p)
1335 (start (line-beginning-position)))
1336 (while (and (zerop (forward-line 1))
1337 (not (get-char-property (point) 'mpc-select
)))
1339 (unless (get-char-property (point) 'mpc-select
)
1342 (while (and (zerop (forward-line -
1))
1343 (not (get-char-property (point) 'mpc-select
)))
1345 (unless (get-char-property (point) 'mpc-select
)
1347 (when (and before
(or (null count
) (< before count
)))
1351 (dotimes (_i (1+ (or count
0)))
1352 (mpc-select-make-overlay)
1353 (forward-line dir
))))))
1355 (mpc-tagbrowser-all-select)
1356 (mpc-selection-refresh))))
1358 ;;; Constraint sets ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1360 (defvar mpc--song-search nil
)
1362 (defun mpc-constraints-get-current (&optional avoid-buf
)
1363 "Return currently selected set of constraints.
1364 If AVOID-BUF is non-nil, it specifies a buffer which should be ignored
1365 when constructing the set of constraints."
1366 (let ((constraints (if mpc--song-search
`((Search ,mpc--song-search
))))
1368 (dolist (buf (process-get (mpc-proc) 'buffers
))
1369 (setq buf
(cdr buf
))
1370 (when (and (setq tag
(buffer-local-value 'mpc-tag buf
))
1371 (not (eq buf avoid-buf
))
1373 (with-current-buffer buf
(mpc-select-get-selection))))
1374 (push (cons tag select
) constraints
)))
1377 (defun mpc-constraints-tag-lookup (buffer-tag constraints
)
1379 (dolist (constraint constraints
)
1380 (when (or (eq (car constraint
) buffer-tag
)
1381 (and (string-match "|" (symbol-name buffer-tag
))
1382 (member (symbol-name (car constraint
))
1383 (split-string (symbol-name buffer-tag
) "|"))))
1384 (setq res
(cdr constraint
))))
1387 (defun mpc-constraints-restore (constraints)
1388 (let ((search (assq 'Search constraints
)))
1389 (setq mpc--song-search
(cadr search
))
1390 (when search
(setq constraints
(delq search constraints
))))
1391 (dolist (buf (process-get (mpc-proc) 'buffers
))
1392 (setq buf
(cdr buf
))
1393 (when (buffer-live-p buf
)
1394 (let* ((tag (buffer-local-value 'mpc-tag buf
))
1395 (constraint (mpc-constraints-tag-lookup tag constraints
)))
1397 (with-current-buffer buf
1398 (mpc-select-restore constraint
))))))
1399 (mpc-selection-refresh))
1401 ;; I don't get the ring.el code. I think it doesn't do what I need, but
1402 ;; then I don't understand when what it does would be useful.
1403 (defun mpc-ring-make (size) (cons 0 (cons 0 (make-vector size nil
))))
1404 (defun mpc-ring-push (ring val
)
1405 (aset (cddr ring
) (car ring
) val
)
1406 (setcar (cdr ring
) (max (cadr ring
) (1+ (car ring
))))
1407 (setcar ring
(mod (1+ (car ring
)) (length (cddr ring
)))))
1408 (defun mpc-ring-pop (ring)
1409 (setcar ring
(mod (1- (car ring
)) (cadr ring
)))
1410 (aref (cddr ring
) (car ring
)))
1412 (defvar mpc-constraints-ring
(mpc-ring-make 10))
1414 (defun mpc-constraints-push (&optional noerror
)
1415 "Push the current selection on the ring for later."
1417 (let ((constraints (mpc-constraints-get-current)))
1418 (if (null constraints
)
1419 (unless noerror
(error "No selection to push"))
1420 (mpc-ring-push mpc-constraints-ring constraints
))))
1422 (defun mpc-constraints-pop ()
1423 "Recall the most recently pushed selection."
1425 (let ((constraints (mpc-ring-pop mpc-constraints-ring
)))
1426 (if (null constraints
)
1427 (error "No selection to return to")
1428 (mpc-constraints-restore constraints
))))
1430 ;;; The TagBrowser mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1432 (defconst mpc-tagbrowser-all-name
(propertize "*ALL*" 'face
'italic
))
1433 (defvar-local mpc-tagbrowser-all-ol nil
)
1434 (defvar-local mpc-tag-name nil
)
1435 (defun mpc-tagbrowser-all-p ()
1436 (and (eq (point-min) (line-beginning-position))
1437 (equal mpc-tagbrowser-all-name
1438 (buffer-substring (point-min) (line-end-position)))))
1440 (define-derived-mode mpc-tagbrowser-mode mpc-mode
'("MPC-" mpc-tag-name
)
1441 (setq-local mode-line-process
'("" mpc-tag-name
))
1442 (setq-local mode-line-format nil
)
1443 (setq-local header-line-format
'("" mpc-tag-name
)) ;; "s"
1444 (setq-local buffer-undo-list t
)
1447 (defun mpc-tagbrowser-refresh ()
1450 (goto-char (point-min))
1451 (cl-assert (looking-at (regexp-quote mpc-tagbrowser-all-name
)))
1453 (let ((inhibit-read-only t
))
1454 (delete-region (point) (point-max))
1455 (dolist (val (mpc-cmd-list mpc-tag
)) (insert val
"\n")))
1456 (set-buffer-modified-p nil
))
1459 (defun mpc-updated-db ()
1460 ;; FIXME: This is not asynchronous, but is run from a process filter.
1461 (unless (assq 'updating_db mpc-status
)
1462 (clrhash mpc--find-memoize
)
1463 (dolist (buf (process-get (mpc-proc) 'buffers
))
1464 (setq buf
(cdr buf
))
1465 (when (buffer-local-value 'mpc-tag buf
)
1466 (with-current-buffer buf
(with-local-quit (mpc-tagbrowser-refresh)))))
1467 (with-local-quit (mpc-songs-refresh))))
1469 (defun mpc-tagbrowser-tag-name (tag)
1471 ((string-match "|" (symbol-name tag
))
1472 (let ((tag1 (intern (substring (symbol-name tag
)
1473 0 (match-beginning 0))))
1474 (tag2 (intern (substring (symbol-name tag
)
1476 (concat (mpc-tagbrowser-tag-name tag1
)
1478 (mpc-tagbrowser-tag-name tag2
))))
1479 ((string-match "y\\'" (symbol-name tag
))
1480 (concat (substring (symbol-name tag
) 0 -
1) "ies"))
1481 (t (concat (symbol-name tag
) "s"))))
1483 (defun mpc-tagbrowser-buf (tag)
1484 (let ((buf (mpc-proc-buffer (mpc-proc) tag
)))
1485 (if (buffer-live-p buf
) buf
1486 (setq buf
(get-buffer-create (format "*MPC %ss*" tag
)))
1487 (mpc-proc-buffer (mpc-proc) tag buf
)
1488 (with-current-buffer buf
1489 (let ((inhibit-read-only t
))
1491 (if (member tag
'(Directory))
1492 (mpc-tagbrowser-dir-mode)
1493 (mpc-tagbrowser-mode))
1494 (insert mpc-tagbrowser-all-name
"\n"))
1497 (setq mpc-tag-name
(mpc-tagbrowser-tag-name tag
))
1498 (mpc-tagbrowser-all-select)
1499 (mpc-tagbrowser-refresh)
1502 (defvar tag-browser-tagtypes
1503 (lazy-completion-table tag-browser-tagtypes
1505 (append '("Playlist" "Directory")
1506 (mpc-cmd-tagtypes)))))
1508 (defun mpc-tagbrowser (tag)
1509 "Create a new browser for TAG."
1512 (let ((completion-ignore-case t
))
1514 (completing-read "Tag: " tag-browser-tagtypes nil
'require-match
)))))
1515 (let* ((newbuf (mpc-tagbrowser-buf tag
))
1516 (win (get-buffer-window newbuf
0)))
1517 (if win
(select-window win
)
1518 (if (with-current-buffer (window-buffer)
1519 (derived-mode-p 'mpc-tagbrowser-mode
))
1520 (setq win
(selected-window))
1521 ;; Find a tagbrowser-mode buffer.
1522 (let ((buffers (process-get (mpc-proc) 'buffers
))
1526 (not (and (buffer-live-p (setq buffer
(cdr (pop buffers
))))
1527 (with-current-buffer buffer
1528 (derived-mode-p 'mpc-tagbrowser-mode
))
1529 (setq win
(get-buffer-window buffer
0))))))))
1531 (pop-to-buffer newbuf
)
1532 (setq win
(split-window win nil
'horiz
))
1533 (set-window-buffer win newbuf
)
1534 (set-window-dedicated-p win
'soft
)
1536 (balance-windows-area)))))
1538 (defun mpc-tagbrowser-all-select ()
1539 "Select the special *ALL* entry if no other is selected."
1541 (delete-overlay mpc-tagbrowser-all-ol
)
1543 (goto-char (point-min))
1544 (if mpc-tagbrowser-all-ol
1545 (move-overlay mpc-tagbrowser-all-ol
1546 (point) (line-beginning-position 2))
1547 (let ((ol (make-overlay (point) (line-beginning-position 2))))
1548 (overlay-put ol
'face
'region
)
1549 (overlay-put ol
'evaporate t
)
1550 (setq-local mpc-tagbrowser-all-ol ol
))))))
1552 ;; (defvar mpc-constraints nil)
1553 (defun mpc-separator (active)
1554 ;; Place a separator mark.
1555 (unless mpc-separator-ol
1556 (setq-local mpc-separator-ol
1557 (make-overlay (point) (point)))
1558 (overlay-put mpc-separator-ol
'after-string
1560 'face
'(:height
0.05 :inverse-video t
))))
1561 (goto-char (point-min))
1564 (and (member (buffer-substring-no-properties
1565 (line-beginning-position) (line-end-position))
1567 (zerop (forward-line 1))))
1568 (if (or (eobp) (null active
))
1569 (delete-overlay mpc-separator-ol
)
1570 (move-overlay mpc-separator-ol
(1- (point)) (point))))
1572 (defun mpc-sort (active)
1573 ;; Sort the active elements at the front.
1574 (let ((inhibit-read-only t
))
1575 (goto-char (point-min))
1576 (if (mpc-tagbrowser-all-p) (forward-line 1))
1578 (sort-subr nil
'forward-line
'end-of-line
1581 (setq s1
(buffer-substring-no-properties
1583 (setq s2
(buffer-substring-no-properties
1587 (if (member s2 active
)
1588 (let ((cmp (mpc-compare-strings s1 s2 t
)))
1589 (and (numberp cmp
) (< cmp
0)))
1591 ((member s2 active
) nil
)
1592 (t (let ((cmp (mpc-compare-strings s1 s2 t
)))
1593 (and (numberp cmp
) (< cmp
0)))))))
1594 ;; The comparison predicate arg is new in Emacs-22.
1595 (wrong-number-of-arguments
1596 (sort-subr nil
'forward-line
'end-of-line
1598 (let ((name (buffer-substring-no-properties
1599 (point) (line-end-position))))
1601 ((member name active
) (concat "1" name
))
1602 (t (concat "2" "name"))))))))))
1604 (defvar mpc--changed-selection
)
1606 (defun mpc-reorder (&optional nodeactivate
)
1607 "Reorder entries based on the currently active selections.
1608 I.e. split the current browser buffer into a first part containing the
1609 entries included in the selection, then a separator, and then the entries
1610 not included in the selection.
1611 Return non-nil if a selection was deactivated."
1613 (let ((constraints (mpc-constraints-get-current (current-buffer)))
1615 ;; (unless (equal constraints mpc-constraints)
1616 ;; (setq-local mpc-constraints constraints)
1617 (dolist (cst constraints
)
1618 (let ((vals (apply 'mpc-union
1619 (mapcar (lambda (val)
1620 (mpc-cmd-list mpc-tag
(car cst
) val
))
1623 (if (listp active
) (mpc-intersection active vals
) vals
))))
1625 (when (listp active
)
1626 ;; Remove the selections if they are all in conflict with
1627 ;; other constraints.
1628 (let ((deactivate t
))
1629 (dolist (sel selection
)
1630 (when (member sel active
) (setq deactivate nil
)))
1632 ;; Variable declared/used by `mpc-select-save'.
1634 (setq mpc--changed-selection t
))
1635 (unless nodeactivate
1636 (setq selection nil
)
1637 (mapc 'delete-overlay mpc-select
)
1638 (setq mpc-select nil
)
1639 (mpc-tagbrowser-all-select))))
1641 ;; Don't bother splitting the "active" elements to the first part if
1642 ;; they're the same as the selection.
1643 (when (equal (sort (copy-sequence active
) #'string-lessp
)
1644 (sort (copy-sequence selection
) #'string-lessp
))
1645 (setq active
'all
)))
1647 ;; FIXME: This `mpc-sort' takes a lot of time. Maybe we should
1648 ;; be more clever and presume the buffer is mostly sorted already.
1649 (mpc-sort (if (listp active
) active
))
1650 (mpc-separator (if (listp active
) active
)))))
1652 (defun mpc-selection-refresh ()
1653 (let ((mpc--changed-selection t
))
1654 (while mpc--changed-selection
1655 (setq mpc--changed-selection nil
)
1656 (dolist (buf (process-get (mpc-proc) 'buffers
))
1657 (setq buf
(cdr buf
))
1658 (when (and (buffer-local-value 'mpc-tag buf
)
1659 (not (eq buf
(current-buffer))))
1660 (with-current-buffer buf
(mpc-reorder)))))
1661 ;; FIXME: reorder the current buffer last and prevent deactivation,
1662 ;; since whatever selection we made here is the most recent one
1663 ;; and should hence take precedence.
1664 (when mpc-tag
(mpc-reorder 'nodeactivate
))
1666 (if (and mpc--song-search mpc--changed-selection
)
1668 (setq mpc--song-search nil
)
1669 (mpc-selection-refresh))
1670 (mpc-songs-refresh))))
1672 ;;; Hierarchical tagbrowser ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1674 ;; - Add a button on each dir to open/close it (?)
1675 ;; - add the parent dir on the previous line, grayed-out, if it's not
1676 ;; present (because we're in the non-selected part and the parent is
1677 ;; in the selected part).
1679 (defvar mpc-tagbrowser-dir-mode-map
1680 (let ((map (make-sparse-keymap)))
1681 (set-keymap-parent map mpc-tagbrowser-mode-map
)
1682 (define-key map
[?\M-\C-m
] 'mpc-tagbrowser-dir-toggle
)
1685 ;; (defvar mpc-tagbrowser-dir-keywords
1686 ;; '(mpc-tagbrowser-dir-hide-prefix))
1688 (define-derived-mode mpc-tagbrowser-dir-mode mpc-tagbrowser-mode
'("MPC-" mpc-tag-name
)
1689 ;; (setq-local font-lock-defaults
1690 ;; '(mpc-tagbrowser-dir-keywords t))
1693 ;; (defun mpc-tagbrowser-dir-hide-prefix (limit)
1695 ;; (let ((prev (buffer-substring (line-beginning-position 0)
1696 ;; (line-end-position 0))))
1699 (defun mpc-tagbrowser-dir-toggle (event)
1700 "Open or close the element at point."
1701 (interactive (list last-nonmenu-event
))
1702 (mpc-event-set-point event
)
1703 (let ((name (buffer-substring (line-beginning-position)
1704 (line-end-position)))
1705 (prop (intern mpc-tag
))
1707 (if (not (member name
(process-get proc prop
)))
1708 (process-put proc prop
1709 (cons name
(process-get proc prop
)))
1710 (let ((new (delete name
(process-get proc prop
))))
1711 (setq name
(concat name
"/"))
1712 (process-put proc prop
1715 (if (string-prefix-p name x
)
1718 (mpc-tagbrowser-refresh)))
1721 ;;; Playlist management ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1723 (defvar-local mpc-songs-playlist nil
1724 "Name of the currently selected playlist, if any.
1725 A value of t means the main playlist.")
1727 (defun mpc-playlist-create (name)
1728 "Save current playlist under name NAME."
1729 (interactive "sPlaylist name: ")
1730 (mpc-proc-cmd (list "save" name
))
1731 (let ((buf (mpc-proc-buffer (mpc-proc) 'Playlist
)))
1732 (when (buffer-live-p buf
)
1733 (with-current-buffer buf
(mpc-tagbrowser-refresh)))))
1735 (defun mpc-playlist-destroy (name)
1736 "Delete playlist named NAME."
1738 (list (completing-read "Delete playlist: " (mpc-cmd-list 'Playlist
)
1739 nil
'require-match
)))
1740 (mpc-proc-cmd (list "rm" name
))
1741 (let ((buf (mpc-proc-buffer (mpc-proc) 'Playlist
)))
1742 (when (buffer-live-p buf
)
1743 (with-current-buffer buf
(mpc-tagbrowser-refresh)))))
1745 (defun mpc-playlist-rename (oldname newname
)
1746 "Rename playlist OLDNAME to NEWNAME."
1748 (let* ((oldname (if (and (eq mpc-tag
'Playlist
) (null current-prefix-arg
))
1749 (buffer-substring (line-beginning-position)
1750 (line-end-position))
1751 (completing-read "Rename playlist: "
1752 (mpc-cmd-list 'Playlist
)
1753 nil
'require-match
)))
1754 (newname (read-string (format "Rename '%s' to: " oldname
))))
1755 (if (zerop (length newname
))
1757 (list oldname newname
))))
1758 (mpc-proc-cmd (list "rename" oldname newname
))
1759 (let ((buf (mpc-proc-buffer (mpc-proc) 'Playlist
)))
1760 (if (buffer-live-p buf
)
1761 (with-current-buffer buf
(mpc-tagbrowser-refresh)))))
1763 (defun mpc-playlist ()
1764 "Show the current playlist."
1766 (mpc-constraints-push 'noerror
)
1767 (mpc-constraints-restore '()))
1769 (defun mpc-playlist-add ()
1770 "Add the selection to the playlist."
1772 (let ((songs (mapcar #'car
(mpc-songs-selection))))
1774 (message "Appended %d songs" (length songs
))
1775 ;; Return the songs added. Used in `mpc-play'.
1778 (defun mpc-playlist-delete ()
1779 "Remove the selected songs from the playlist."
1781 (unless mpc-songs-playlist
1782 (error "The selected songs aren't part of a playlist"))
1783 (let ((song-poss (mapcar #'cdr
(mpc-songs-selection))))
1784 (mpc-cmd-delete song-poss mpc-songs-playlist
)
1786 (message "Deleted %d songs" (length song-poss
))))
1788 ;;; Volume management ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1790 (defvar mpc-volume-map
1791 (let ((map (make-sparse-keymap)))
1792 ;; Bind the up-events rather than the down-event, so the
1793 ;; `message' isn't canceled by the subsequent up-event binding.
1794 (define-key map
[down-mouse-1
] 'ignore
)
1795 (define-key map
[mouse-1
] 'mpc-volume-mouse-set
)
1796 (define-key map
[header-line mouse-1
] 'mpc-volume-mouse-set
)
1797 (define-key map
[header-line down-mouse-1
] 'ignore
)
1798 (define-key map
[mode-line mouse-1
] 'mpc-volume-mouse-set
)
1799 (define-key map
[mode-line down-mouse-1
] 'ignore
)
1802 (defvar mpc-volume nil
) (put 'mpc-volume
'risky-local-variable t
)
1804 (defun mpc-volume-refresh ()
1805 ;; Maintain the volume.
1808 (string-to-number (cdr (assq 'volume mpc-status
)))))
1809 (let ((status-buf (mpc-proc-buffer (mpc-proc) 'status
)))
1810 (when status-buf
(with-current-buffer status-buf
(force-mode-line-update)))))
1812 (defvar mpc-volume-step
5)
1814 (defun mpc-volume-mouse-set (&optional event
)
1815 "Change volume setting."
1816 (interactive (list last-nonmenu-event
))
1817 (let* ((posn (event-start event
))
1819 (if (memq (if (stringp (car-safe (posn-object posn
)))
1820 (aref (car (posn-object posn
)) (cdr (posn-object posn
)))
1821 (with-current-buffer (window-buffer (posn-window posn
))
1822 (char-after (posn-point posn
))))
1824 (- mpc-volume-step
) mpc-volume-step
))
1825 (curvol (string-to-number (cdr (assq 'volume mpc-status
))))
1826 (newvol (max 0 (min 100 (+ curvol diff
)))))
1827 (if (= newvol curvol
)
1829 (message "MPD volume already at %s%%" newvol
)
1831 (mpc-proc-cmd (list "setvol" newvol
) 'mpc-status-refresh
)
1832 (message "Set MPD volume to %s%%" newvol
))))
1834 (defun mpc-volume-widget (vol &optional size
)
1835 (unless size
(setq size
12.5))
1836 (let ((scaledvol (* (/ vol
100.0) size
)))
1837 ;; (message "Volume sizes: %s - %s" (/ vol fact) (/ (- 100 vol) fact))
1838 (list (propertize "<" ;; "◁"
1840 'keymap mpc-volume-map
1841 'face
'(:box
(:line-width -
2 :style pressed-button
))
1842 'mouse-face
'(:box
(:line-width -
2 :style released-button
)))
1845 'display
(list 'space
:width scaledvol
)
1846 'face
'(:inverse-video t
1847 :box
(:line-width -
2 :style released-button
)))
1849 'display
(list 'space
:width
(- size scaledvol
))
1850 'face
'(:box
(:line-width -
2 :style released-button
)))
1852 (propertize ">" ;; "▷"
1854 'keymap mpc-volume-map
1855 'face
'(:box
(:line-width -
2 :style pressed-button
))
1856 'mouse-face
'(:box
(:line-width -
2 :style released-button
))))))
1858 ;;; MPC songs mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1860 (defvar mpc-current-song nil
) (put 'mpc-current-song
'risky-local-variable t
)
1861 (defvar mpc-current-updating nil
) (put 'mpc-current-updating
'risky-local-variable t
)
1862 (defvar mpc-songs-format-description nil
) (put 'mpc-songs-format-description
'risky-local-variable t
)
1864 (defvar mpc-previous-window-config nil
)
1866 (defvar mpc-songs-mode-map
1867 (let ((map (make-sparse-keymap)))
1868 (set-keymap-parent map mpc-mode-map
)
1869 (define-key map
[remap mpc-select
] 'mpc-songs-jump-to
)
1872 (defvar mpc-songpointer-set-visible nil
)
1874 (defvar mpc-songs-hashcons
(make-hash-table :test
'equal
:weakness t
)
1875 "Make song file name objects unique via hash consing.
1876 This is used so that they can be compared with `eq', which is needed for
1877 `text-property-any'.")
1878 (defun mpc-songs-hashcons (name)
1879 (or (gethash name mpc-songs-hashcons
) (puthash name name mpc-songs-hashcons
)))
1880 (defcustom mpc-songs-format
"%2{Disc--}%3{Track} %-5{Time} %25{Title} %20{Album} %20{Artist} %5{Date}"
1881 "Format used to display each song in the list of songs."
1884 (defvar mpc-songs-totaltime
)
1886 (defun mpc-songs-refresh ()
1887 (let ((buf (mpc-proc-buffer (mpc-proc) 'songs
)))
1888 (when (buffer-live-p buf
)
1889 (with-current-buffer buf
1890 (let ((constraints (mpc-constraints-get-current (current-buffer)))
1892 (inhibit-read-only t
)
1894 (curline (cons (count-lines (point-min)
1895 (line-beginning-position))
1896 (buffer-substring (line-beginning-position)
1897 (line-end-position))))
1899 (setq mpc-songs-playlist nil
)
1900 (if (null constraints
)
1901 ;; When there are no constraints, rather than show the list of
1902 ;; all songs (which could take a while to download and
1903 ;; format), we show the current playlist.
1904 ;; FIXME: it would be good to be able to show the complete
1905 ;; list, but that would probably require us to format it
1906 ;; on-the-fly to make it bearable.
1908 mpc-songs-playlist t
1909 active
(mpc-proc-buf-to-alists
1910 (mpc-proc-cmd "playlistinfo")))
1911 (dolist (cst constraints
)
1912 (if (and (eq (car cst
) 'Playlist
)
1913 (= 1 (length (cdr cst
))))
1914 (setq mpc-songs-playlist
(cadr cst
)))
1915 ;; We don't do anything really special here for playlists,
1916 ;; because it's unclear what's a correct "union" of playlists.
1917 (let ((vals (apply 'mpc-union
1918 (mapcar (lambda (val)
1919 (mpc-cmd-find (car cst
) val
))
1923 (if (eq (car cst
) 'Playlist
)
1927 ;; Try to preserve ordering and
1928 ;; repetitions from playlists.
1929 (not (eq (car cst
) 'Playlist
)))
1930 (mpc-intersection active vals
1931 (lambda (x) (assq 'file x
))))
1934 (mpc-intersection vals active
1936 (assq 'file x
)))))))))
1939 ;; Sorting songs is surprisingly difficult: when comparing two
1940 ;; songs with the same album name but different artist name, you
1941 ;; have to know whether these are two different albums (with the
1942 ;; same name) or a single album (typically a compilation).
1943 ;; I punt on it and just use file-name sorting, which does the
1944 ;; right thing if your library is properly arranged.
1945 (dolist (song (if dontsort active
1947 (lambda (song1 song2
)
1948 (let ((cmp (mpc-compare-strings
1949 (cdr (assq 'file song1
))
1950 (cdr (assq 'file song2
)))))
1951 (and (integerp cmp
) (< cmp
0)))))))
1952 (cl-incf totaltime
(string-to-number (or (cdr (assq 'Time song
)) "0")))
1953 (mpc-format mpc-songs-format song
)
1954 (delete-char (- (skip-chars-backward " "))) ;Remove trailing space.
1957 (line-beginning-position 0) (line-beginning-position)
1958 'mpc-file
(mpc-songs-hashcons (cdr (assq 'file song
))))
1959 (let ((pos (assq 'Pos song
)))
1962 (line-beginning-position 0) (line-beginning-position)
1963 'mpc-file-pos
(string-to-number (cdr pos
)))))
1965 (goto-char (point-min))
1966 (forward-line (car curline
))
1967 (if (or (search-forward (cdr curline
) nil t
)
1968 (search-backward (cdr curline
) nil t
))
1970 (goto-char (point-min)))
1971 (setq-local mpc-songs-totaltime
1972 (unless (zerop totaltime
)
1973 (list " " (mpc-secs-to-time totaltime
))))
1975 (let ((mpc-songpointer-set-visible t
))
1976 (mpc-songpointer-refresh)))
1978 (defun mpc-songs-search (string)
1979 "Filter songs to those who include STRING in their metadata."
1980 (interactive "sSearch for: ")
1981 (setq mpc--song-search
1982 (if (zerop (length string
)) nil string
))
1983 (let ((mpc--changed-selection t
))
1984 (while mpc--changed-selection
1985 (setq mpc--changed-selection nil
)
1986 (dolist (buf (process-get (mpc-proc) 'buffers
))
1987 (setq buf
(cdr buf
))
1988 (when (buffer-local-value 'mpc-tag buf
)
1989 (with-current-buffer buf
(mpc-reorder))))
1990 (mpc-songs-refresh))))
1992 (defun mpc-songs-kill-search ()
1993 "Turn off the current search restriction."
1995 (mpc-songs-search nil
))
1997 (defun mpc-songs-selection ()
1998 "Return the list of songs currently selected."
1999 (let ((buf (mpc-proc-buffer (mpc-proc) 'songs
)))
2000 (when (buffer-live-p buf
)
2001 (with-current-buffer buf
2005 (dolist (ol mpc-select
)
2007 (get-text-property (overlay-start ol
) 'mpc-file
)
2008 (get-text-property (overlay-start ol
) 'mpc-file-pos
))
2010 (goto-char (point-min))
2013 (get-text-property (point) 'mpc-file
)
2014 (get-text-property (point) 'mpc-file-pos
))
2017 (nreverse files
)))))))
2019 (defun mpc-songs-jump-to (song-file &optional posn
)
2020 "Jump to song SONG-FILE; interactively, this is the song at point."
2022 (let* ((event last-nonmenu-event
)
2023 (posn (event-end event
)))
2024 (with-selected-window (posn-window posn
)
2025 (goto-char (posn-point posn
))
2026 (list (get-text-property (point) 'mpc-file
)
2028 (let* ((plbuf (mpc-proc-cmd "playlist"))
2030 ;; Newer MPCs apparently include "file: " in the buffer.
2031 (concat "^\\([0-9]+\\):\\(?:file: \\)?"
2032 (regexp-quote song-file
) "$")))
2033 (sn (with-current-buffer plbuf
2034 (goto-char (point-min))
2035 (when (and re
(re-search-forward re nil t
))
2036 (match-string 1)))))
2038 ((null re
) (posn-set-point posn
))
2039 ((null sn
) (user-error "This song is not in the playlist"))
2040 ((null (with-current-buffer plbuf
(re-search-forward re nil t
)))
2041 ;; song-file only appears once in the playlist: no ambiguity,
2042 ;; we're good to go!
2043 (mpc-proc-cmd (list "play" sn
)))
2045 ;; The song appears multiple times in the playlist. If the current
2046 ;; buffer holds not only the destination song but also the current
2047 ;; song, then we will move in the playlist to the same relative
2048 ;; position as in the buffer. Otherwise, we will simply choose the
2049 ;; song occurrence closest to the current song.
2050 (with-selected-window (posn-window posn
)
2051 (let* ((cur (and (markerp overlay-arrow-position
)
2052 (marker-position overlay-arrow-position
)))
2053 (dest (save-excursion
2054 (goto-char (posn-point posn
))
2055 (line-beginning-position)))
2056 (lines (when cur
(* (if (< cur dest
) 1 -
1)
2057 (count-lines cur dest
)))))
2058 (with-current-buffer plbuf
2059 (goto-char (point-min))
2060 ;; Start the search from the current song.
2061 (forward-line (string-to-number
2062 (or (cdr (assq 'song mpc-status
)) "0")))
2063 ;; If the current song is also displayed in the buffer,
2064 ;; then try to move to the same relative position.
2065 (if lines
(forward-line lines
))
2066 ;; Now search the closest occurrence.
2067 (let* ((next (save-excursion
2068 (when (re-search-forward re nil t
)
2069 (cons (point) (match-string 1)))))
2070 (prev (save-excursion
2071 (when (re-search-backward re nil t
)
2072 (cons (point) (match-string 1)))))
2073 (sn (cdr (if (and next prev
)
2074 (if (< (- (car next
) (point))
2075 (- (point) (car prev
)))
2079 (mpc-proc-cmd (concat "play " sn
))))))))))
2081 (define-derived-mode mpc-songs-mode mpc-mode
"MPC-song"
2082 (setq mpc-songs-format-description
2083 (with-temp-buffer (mpc-format mpc-songs-format
'self
) (buffer-string)))
2084 (setq-local header-line-format
2085 ;; '("MPC " mpc-volume " " mpc-current-song)
2086 (list (propertize " " 'display
'(space :align-to
0))
2087 ;; 'mpc-songs-format-description
2089 (let ((hscroll (window-hscroll)))
2091 (mpc-format mpc-songs-format
'self hscroll
)
2092 ;; That would be simpler than the hscroll handling in
2093 ;; mpc-format, but currently move-to-column does not
2094 ;; recognize :space display properties.
2095 ;; (move-to-column hscroll)
2096 ;; (delete-region (point-min) (point))
2097 (buffer-string))))))
2100 '("%e" mode-line-frame-identification mode-line-buffer-identification
2102 (help-echo "mouse-1: Select (drag to resize)\nmouse-2: Make current window occupy the whole frame\nmouse-3: Remove current window from display"))
2105 (help-echo "mouse-1: Select (drag to resize)\nmouse-2: Make current window occupy the whole frame\nmouse-3: Remove current window from display"))
2107 mpc-current-updating
2109 (help-echo "mouse-1: Select (drag to resize)\nmouse-2: Make current window occupy the whole frame\nmouse-3: Remove current window from display"))
2112 ("Search=\"" mpc--song-search
"\"")
2113 help-echo
"mouse-2: kill this search"
2115 mouse-face mode-line-highlight
2116 keymap
(keymap (mode-line keymap
2117 (mouse-2 . mpc-songs-kill-search
))))
2118 (:propertize
"NoSearch"
2119 help-echo
"mouse-2: set a search restriction"
2121 mouse-face mode-line-highlight
2122 keymap
(keymap (mode-line keymap
(mouse-2 . mpc-songs-search
)))))))
2124 ;; (setq-local mode-line-process
2125 ;; '("" ;; mpc-volume " "
2126 ;; mpc-songs-totaltime
2127 ;; mpc-current-updating))
2130 (defun mpc-songpointer-set (pos)
2131 (let* ((win (get-buffer-window (current-buffer) t
))
2133 (or mpc-songpointer-set-visible
2134 (and (markerp overlay-arrow-position
)
2135 (eq (marker-buffer overlay-arrow-position
)
2137 (<= (window-start win
) overlay-arrow-position
)
2138 (< overlay-arrow-position
(window-end win
)))))))
2139 (unless (local-variable-p 'overlay-arrow-position
)
2140 (setq-local overlay-arrow-position
(make-marker)))
2141 (move-marker overlay-arrow-position pos
)
2142 ;; If the arrow was visible, try to keep it that way.
2143 (if (and visible pos
2144 (or (> (window-start win
) pos
) (>= pos
(window-end win t
))))
2145 (set-window-point win pos
))))
2147 (defun mpc-songpointer-refresh ()
2148 (let ((buf (mpc-proc-buffer (mpc-proc) 'songs
)))
2149 (when (buffer-live-p buf
)
2150 (with-current-buffer buf
2151 (let* ((pos (text-property-any
2152 (point-min) (point-max)
2153 'mpc-file
(mpc-songs-hashcons
2154 (cdr (assq 'file mpc-status
)))))
2159 (line-beginning-position 2) (point-max)
2160 'mpc-file
(mpc-songs-hashcons
2161 (cdr (assq 'file mpc-status
))))))))
2163 ;; The song appears multiple times in the buffer.
2164 ;; We need to be careful to choose the right occurrence.
2165 (mpc-proc-cmd "playlist" 'mpc-songpointer-refresh-hairy
)
2166 (mpc-songpointer-set pos
)))))))
2168 (defun mpc-songpointer-context (size plbuf
)
2169 (with-current-buffer plbuf
2170 (goto-char (point-min))
2171 (forward-line (string-to-number (or (cdr (assq 'song mpc-status
)) "0")))
2172 (let ((context-before '())
2173 (context-after '()))
2176 (when (re-search-backward "^[0-9]+:\\(.*\\)" nil t
)
2177 (push (mpc-songs-hashcons (match-string 1)) context-before
))))
2178 ;; Skip the actual current song.
2181 (when (re-search-forward "^[0-9]+:\\(.*\\)" nil t
)
2182 (push (mpc-songs-hashcons (match-string 1)) context-after
)))
2183 ;; If there isn't `size' context, then return nil.
2184 (unless (and (< (length context-before
) size
)
2185 (< (length context-after
) size
))
2186 (cons (nreverse context-before
) (nreverse context-after
))))))
2188 (defun mpc-songpointer-score (context pos
)
2191 (dolist (song (car context
))
2192 (and (zerop (forward-line -
1))
2193 (eq (get-text-property (point) 'mpc-file
) song
)
2196 (dolist (song (cdr context
))
2197 (and (zerop (forward-line 1))
2198 (eq (get-text-property (point) 'mpc-file
) song
)
2202 (defun mpc-songpointer-refresh-hairy ()
2203 ;; Based on the complete playlist, we should figure out where in the
2204 ;; song buffer is the currently playing song.
2205 (let ((plbuf (current-buffer))
2206 (buf (mpc-proc-buffer (mpc-proc) 'songs
)))
2207 (when (buffer-live-p buf
)
2208 (with-current-buffer buf
2209 (let* ((context-size 0)
2210 (context '(() .
()))
2211 (pos (text-property-any
2212 (point-min) (point-max)
2213 'mpc-file
(mpc-songs-hashcons
2214 (cdr (assq 'file mpc-status
)))))
2222 (line-beginning-position 2) (point-max)
2223 'mpc-file
(mpc-songs-hashcons
2224 (cdr (assq 'file mpc-status
))))))
2225 ;; There is an `other' contestant.
2226 (let ((other-score (mpc-songpointer-score context other
)))
2228 ;; `other' is worse: try the next one.
2229 ((< other-score score
) nil
)
2230 ;; `other' is better: remember it and then search further.
2231 ((> other-score score
)
2233 (setq score other-score
))
2234 ;; Both are equal and increasing the context size won't help.
2235 ;; Arbitrarily choose one of the two and keep looking
2236 ;; for a better match.
2237 ((< score context-size
) nil
)
2239 ;; Score is equal and increasing context might help: try it.
2240 (cl-incf context-size
)
2242 (mpc-songpointer-context context-size plbuf
)))
2243 (if (null new-context
)
2244 ;; There isn't more context: choose one arbitrarily
2245 ;; and keep looking for a better match elsewhere.
2246 (cl-decf context-size
)
2247 (setq context new-context
)
2248 (setq score
(mpc-songpointer-score context pos
))
2251 ;; Go back one line so we find `other' again.
2252 (setq other
(line-beginning-position 0)))))))))
2253 (mpc-songpointer-set pos
))))))
2255 (defun mpc-current-refresh ()
2256 ;; Maintain the current data.
2257 (mpc-status-buffer-refresh)
2258 (setq mpc-current-updating
2259 (if (assq 'updating_db mpc-status
) " Updating-DB"))
2261 (setq mpc-current-song
2262 (when (assq 'file mpc-status
)
2264 (mpc-secs-to-time (cdr (assq 'time mpc-status
)))
2266 (cdr (assq 'Title mpc-status
))
2268 (cdr (assq 'Artist mpc-status
))
2270 (cdr (assq 'Album mpc-status
))
2272 (force-mode-line-update t
))
2274 (defun mpc-songs-buf ()
2275 (let ((buf (mpc-proc-buffer (mpc-proc) 'songs
)))
2276 (if (buffer-live-p buf
) buf
2277 (with-current-buffer (setq buf
(get-buffer-create "*MPC-Songs*"))
2278 (mpc-proc-buffer (mpc-proc) 'songs buf
)
2282 (defun mpc-update ()
2283 "Tell MPD to refresh its database."
2288 "Quit Music Player Daemon."
2290 (let* ((proc mpc-proc
)
2291 (bufs (mapcar 'cdr
(if proc
(process-get proc
'buffers
))))
2292 (wins (mapcar (lambda (buf) (get-buffer-window buf
0)) bufs
))
2293 (song-buf (mpc-songs-buf))
2295 ;; Collect all the frames where MPC buffers appear.
2297 (when (and win
(not (memq (window-frame win
) frames
)))
2298 (push (window-frame win
) frames
)))
2299 (if (and frames song-buf
2300 (with-current-buffer song-buf mpc-previous-window-config
))
2302 (select-frame (car frames
))
2303 (set-window-configuration
2304 (with-current-buffer song-buf mpc-previous-window-config
)))
2305 ;; Now delete the ones that show nothing else than MPC buffers.
2306 (dolist (frame frames
)
2308 (dolist (win (window-list frame
))
2309 (unless (memq (window-buffer win
) bufs
) (setq delete nil
)))
2310 (if delete
(ignore-errors (delete-frame frame
))))))
2311 ;; Then kill the buffers.
2312 (mapc 'kill-buffer bufs
)
2314 (if proc
(delete-process proc
))))
2317 "Stop playing the current queue of songs."
2321 (mpc-status-refresh))
2326 (mpc-cmd-pause "1"))
2328 (defun mpc-resume ()
2331 (mpc-cmd-pause "0"))
2334 "Start playing whatever is selected."
2336 (if (member (cdr (assq 'state
(mpc-cmd-status))) '("pause"))
2338 ;; When playing the playlist ends, the playlist isn't cleared, but the
2339 ;; user probably doesn't want to re-listen to it before getting to
2340 ;; listen to what he just selected.
2341 ;; (if (member (cdr (assq 'state (mpc-cmd-status))) '("stop"))
2343 ;; Actually, we don't use mpc-play to append to the playlist any more,
2344 ;; so we can just always empty the playlist.
2346 (if (mpc-playlist-add)
2347 (if (member (cdr (assq 'state
(mpc-cmd-status))) '("stop"))
2349 (user-error "Don't know what to play"))))
2352 "Jump to the next song in the queue."
2354 (mpc-proc-cmd "next")
2355 (mpc-status-refresh))
2358 "Jump to the beginning of the current song, or to the previous song."
2360 (let ((time (cdr (assq 'time mpc-status
))))
2361 ;; Here we rely on the fact that string-to-number silently ignores
2362 ;; everything after a non-digit char.
2364 ;; Go back to the beginning of current song.
2365 ((and time
(> (string-to-number time
) 0))
2366 (mpc-proc-cmd (list "seekid" (cdr (assq 'songid mpc-status
)) 0)))
2367 ;; We're at the beginning of the first song of the playlist.
2368 ;; Fetch the previous one from `mpc-queue-back'.
2369 ;; ((and (zerop (string-to-number (cdr (assq 'song mpc-status))))
2371 ;; ;; Because we use cmd-list rather than cmd-play, the queue is not
2372 ;; ;; automatically updated.
2373 ;; (let ((prev (pop mpc-queue-back)))
2374 ;; (push prev mpc-queue)
2376 ;; (mpc-proc-cmd-list
2377 ;; (list (list "add" prev)
2378 ;; (list "move" (cdr (assq 'playlistlength mpc-status)) "0")
2380 ;; We're at the beginning of a song, but not the first one.
2381 (t (mpc-proc-cmd "previous")))
2382 (mpc-status-refresh)))
2384 (defvar mpc-last-seek-time
'(0 .
0))
2386 (defun mpc--faster (event speedup step
)
2388 (interactive (list last-nonmenu-event
))
2389 (let ((repeat-delay (/ (abs (float step
)) speedup
)))
2390 (if (not (memq 'down
(event-modifiers event
)))
2391 (let* ((currenttime (float-time))
2392 (last-time (- currenttime
(car mpc-last-seek-time
))))
2393 (if (< last-time
(* 0.9 repeat-delay
))
2395 (let* ((status (if (< last-time
1.0)
2396 mpc-status
(mpc-cmd-status)))
2397 (songid (cdr (assq 'songid status
)))
2399 (if (< last-time
1.0)
2400 (cdr mpc-last-seek-time
)
2402 (cdr (assq 'time status
)))))))
2403 (setq mpc-last-seek-time
2404 (cons currenttime
(setq time
(+ time step
))))
2405 (mpc-proc-cmd (list "seekid" songid time
)
2406 'mpc-status-refresh
))))
2407 (let ((status (mpc-cmd-status)))
2408 (let* ((songid (cdr (assq 'songid status
)))
2409 (time (if songid
(string-to-number
2410 (cdr (assq 'time status
))))))
2411 (let ((timer (run-with-timer
2414 (mpc-proc-cmd (list "seekid" songid
2415 (setq time
(+ time step
)))
2416 'mpc-status-refresh
)))))
2417 (while (mouse-movement-p
2418 (event-basic-type (setq event
(read-event)))))
2419 (cancel-timer timer
)))))))
2421 (defvar mpc--faster-toggle-timer nil
)
2422 (defun mpc--faster-stop ()
2423 (when mpc--faster-toggle-timer
2424 (cancel-timer mpc--faster-toggle-timer
)
2425 (setq mpc--faster-toggle-timer nil
)))
2427 (defun mpc--faster-toggle-refresh ()
2428 (if (equal (cdr (assq 'state mpc-status
)) "stop")
2429 (mpc--faster-stop)))
2431 (defun mpc--songduration ()
2433 (let ((s (cdr (assq 'time mpc-status
))))
2434 (if (not (string-match ":" s
))
2435 (error "Unexpected time format %S" s
)
2436 (substring s
(match-end 0))))))
2438 (defvar mpc--faster-toggle-forward nil
)
2439 (defvar mpc--faster-acceleration
0.5)
2440 (defun mpc--faster-toggle (speedup step
)
2441 (setq speedup
(float speedup
))
2442 (if mpc--faster-toggle-timer
2444 (mpc-status-refresh) (mpc-proc-sync)
2445 (let* (songid ;The ID of the currently ffwd/rewinding song.
2446 songduration
;The duration of that song.
2447 songtime
;The time of the song last time we ran.
2448 oldtime
;The time of day last time we ran.
2449 prevsongid
) ;The song we're in the process leaving.
2452 (let ((newsongid (cdr (assq 'songid mpc-status
))))
2454 (if (and (equal prevsongid newsongid
)
2455 (not (equal prevsongid songid
)))
2456 ;; We left prevsongid and came back to it. Pretend it
2458 (setq newsongid songid
))
2461 ((null newsongid
) (mpc--faster-stop))
2462 ((not (equal songid newsongid
))
2463 ;; We jumped to another song: reset.
2464 (setq songid newsongid
)
2465 (setq songtime
(string-to-number
2466 (cdr (assq 'time mpc-status
))))
2467 (setq songduration
(mpc--songduration))
2468 (setq oldtime
(float-time)))
2469 ((and (>= songtime songduration
) mpc--faster-toggle-forward
)
2470 ;; Skip to the beginning of the next song.
2471 (if (not (equal (cdr (assq 'state mpc-status
)) "play"))
2472 (mpc-proc-cmd "next" 'mpc-status-refresh
)
2473 ;; If we're playing, this is done automatically, so we
2474 ;; don't need to do anything, or rather we *shouldn't*
2475 ;; do anything otherwise there's a race condition where
2476 ;; we could skip straight to the next next song.
2478 ((and (<= songtime
0) (not mpc--faster-toggle-forward
))
2479 ;; Skip to the end of the previous song.
2480 (setq prevsongid songid
)
2481 (mpc-proc-cmd "previous"
2485 (setq songid
(cdr (assq 'songid mpc-status
)))
2486 (setq songtime
(setq songduration
(mpc--songduration)))
2487 (setq oldtime
(float-time))
2488 (mpc-proc-cmd (list "seekid" songid songtime
)))))))
2490 (setq speedup
(+ speedup mpc--faster-acceleration
))
2492 (truncate (* speedup
(- (float-time) oldtime
)))))
2493 (if (<= newstep
1) (setq newstep
1))
2494 (setq oldtime
(+ oldtime
(/ newstep speedup
)))
2495 (if (not mpc--faster-toggle-forward
)
2496 (setq newstep
(- newstep
)))
2497 (setq songtime
(min songduration
(+ songtime newstep
)))
2498 (unless (>= songtime songduration
)
2501 (list "seekid" songid songtime
)
2502 'mpc-status-refresh
)
2503 (mpc-proc-error (mpc-status-refresh)))))))))))
2504 (setq mpc--faster-toggle-forward
(> step
0))
2505 (funcall fun
) ;Initialize values.
2506 (setq mpc--faster-toggle-timer
2507 (run-with-timer t
0.3 fun
))))))
2511 (defvar mpc-faster-speedup
8)
2513 (defun mpc-ffwd (_event)
2515 (interactive (list last-nonmenu-event
))
2516 ;; (mpc--faster event 4.0 1)
2517 (mpc--faster-toggle mpc-faster-speedup
1))
2519 (defun mpc-rewind (_event)
2521 (interactive (list last-nonmenu-event
))
2522 ;; (mpc--faster event 4.0 -1)
2523 (mpc--faster-toggle mpc-faster-speedup -
1))
2526 (defun mpc-play-at-point (&optional event
)
2527 (interactive (list last-nonmenu-event
))
2531 ;; (defun mpc-play-tagval ()
2532 ;; "Play all the songs of the tag at point."
2534 ;; (let* ((val (buffer-substring (line-beginning-position) (line-end-position)))
2535 ;; (songs (mapcar 'cdar
2536 ;; (mpc-proc-buf-to-alists
2537 ;; (mpc-proc-cmd (list "find" mpc-tag val))))))
2538 ;; (mpc-cmd-add songs)
2539 ;; (if (member (cdr (assq 'state (mpc-cmd-status))) '("stop"))
2540 ;; (mpc-cmd-play))))
2542 ;;; Drag'n'drop support ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2544 ;; the main thing to do here, is to provide visual feedback during the drag:
2545 ;; - change the mouse-cursor.
2546 ;; - highlight/select the source and the current destination.
2548 (defun mpc-drag-n-drop (event)
2549 "DWIM for a drag EVENT."
2551 (let* ((start (event-start event
))
2552 (end (event-end event
))
2553 (start-buf (window-buffer (posn-window start
)))
2554 (end-buf (window-buffer (posn-window end
)))
2556 (with-current-buffer start-buf
2557 (goto-char (posn-point start
))
2558 (if (get-text-property (point) 'mpc-select
)
2559 ;; FIXME: actually we should only consider the constraints
2560 ;; corresponding to the selection in this particular buffer.
2561 (mpc-songs-selection)
2563 ((and (derived-mode-p 'mpc-songs-mode
)
2564 (get-text-property (point) 'mpc-file
))
2565 (list (cons (get-text-property (point) 'mpc-file
)
2566 (get-text-property (point) 'mpc-file-pos
))))
2567 ((and mpc-tag
(not (mpc-tagbrowser-all-p)))
2568 (mapcar (lambda (song)
2569 (list (cdr (assq 'file song
))))
2572 (buffer-substring (line-beginning-position)
2573 (line-end-position)))))
2575 (error "Unsupported starting position for drag'n'drop gesture")))))))
2576 (with-current-buffer end-buf
2577 (goto-char (posn-point end
))
2579 ((eq mpc-tag
'Playlist
)
2580 ;; Adding elements to a named playlist.
2581 (let ((playlist (if (or (mpc-tagbrowser-all-p)
2582 (and (bolp) (eolp)))
2583 (error "Not a playlist")
2584 (buffer-substring (line-beginning-position)
2585 (line-end-position)))))
2586 (mpc-cmd-add (mapcar 'car songs
) playlist
)
2587 (message "Added %d songs to %s" (length songs
) playlist
)
2588 (if (member playlist
2589 (cdr (assq 'Playlist
(mpc-constraints-get-current))))
2590 (mpc-songs-refresh))))
2591 ((derived-mode-p 'mpc-songs-mode
)
2593 ((null mpc-songs-playlist
)
2594 (error "The songs shown do not belong to a playlist"))
2595 ((eq start-buf end-buf
)
2596 ;; Moving songs within the shown playlist.
2597 (let ((dest-pos (get-text-property (point) 'mpc-file-pos
)))
2598 (mpc-cmd-move (mapcar 'cdr songs
) dest-pos mpc-songs-playlist
)
2599 (message "Moved %d songs" (length songs
))))
2601 ;; Adding songs to the shown playlist.
2602 (let ((dest-pos (get-text-property (point) 'mpc-file-pos
))
2603 (pl (if (stringp mpc-songs-playlist
)
2604 (mpc-cmd-find 'Playlist mpc-songs-playlist
)
2605 (mpc-proc-cmd-to-alist "playlist"))))
2606 ;; MPD's protocol does not let us add songs at a particular
2607 ;; position in a playlist, so we first have to add them to the
2608 ;; end, and then move them to their final destination.
2609 (mpc-cmd-add (mapcar 'car songs
) mpc-songs-playlist
)
2610 (mpc-cmd-move (let ((poss '()))
2611 (dotimes (i (length songs
))
2612 (push (+ i
(length pl
)) poss
))
2614 dest-pos mpc-songs-playlist
)
2615 (message "Added %d songs" (length songs
)))))
2616 (mpc-songs-refresh))
2618 (error "Unsupported drag'n'drop gesture"))))))
2620 ;;; Toplevel ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2622 (defcustom mpc-frame-alist
'((name .
"MPC") (tool-bar-lines .
1)
2624 "Alist of frame parameters for the MPC frame."
2629 "Main entry point for MPC."
2632 (if current-prefix-arg
2633 (setq mpc-host
(read-string "MPD host and port: " nil nil mpc-host
)))
2635 (let* ((song-buf (mpc-songs-buf))
2636 (song-win (get-buffer-window song-buf
0)))
2638 (select-window song-win
)
2639 (if (or (window-dedicated-p) (window-minibuffer-p))
2640 (ignore-errors (select-frame (make-frame mpc-frame-alist
)))
2641 (with-current-buffer song-buf
2642 (setq-local mpc-previous-window-config
2643 (current-window-configuration))))
2644 (let* ((win1 (selected-window))
2645 (win2 (split-window))
2646 (tags mpc-browser-tags
))
2647 (unless tags
(error "Need at least one entry in `mpc-browser-tags'"))
2648 (set-window-buffer win2 song-buf
)
2649 (set-window-dedicated-p win2
'soft
)
2650 (mpc-status-buffer-show)
2653 (set-window-buffer win1
(mpc-tagbrowser-buf (pop tags
)))
2654 (set-window-dedicated-p win1
'soft
)
2656 (setq win1
(split-window win1 nil
'horiz
)))))
2657 (balance-windows-area))
2659 (mpc-status-refresh))
2663 ;;; mpc.el ends here