aboutsummaryrefslogtreecommitdiff
path: root/emms-player-mpd.el
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2005-12-31 08:32:00 +0000
committerMichael Olson <mwolson@gnu.org>2005-12-31 08:32:00 +0000
commit400cae8b98eb32273a9f6a248309e583056fd1bd (patch)
tree5ab35619a763e9aa98b01886df14184402b39f1f /emms-player-mpd.el
parent6f5d5aec27e89f6215b7bcccd4bbefd6d0bb9190 (diff)
Significantly improve (and speed up) MusicPD support.
darcs-hash:20051231083223-1bfb2-424c2ad1bc366455e51204f02c69887bc38658f5.gz
Diffstat (limited to 'emms-player-mpd.el')
-rw-r--r--emms-player-mpd.el285
1 files changed, 229 insertions, 56 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el
index c04d4b9..5c079ff 100644
--- a/emms-player-mpd.el
+++ b/emms-player-mpd.el
@@ -25,9 +25,9 @@
;;; Benefits
-;; MusicPD features crossfade, very little skipping, many clients,
-;; many supported output formats, and good abstraction of client and
-;; server, among other things.
+;; MusicPD features crossfade, very little skipping, minor CPU usage,
+;; many clients, many supported output formats, fast manipulation via
+;; network processes, and good abstraction of client and server.
;;; MusicPD setup
@@ -38,7 +38,7 @@
;; packages and the svn repo.
;;
;; Copy the example configuration for mpd into ~/.mpdconf and edit it
-;; to your needs. I using your top level music directory for
+;; to your needs. Use your top level music directory for
;; music_directory. If your playlists use absolute file names, be
;; certain that music_directory has the leading directory part.
;;
@@ -53,27 +53,20 @@
;;; EMMS setup
-;; emms-pause and emms-seek are evil functions. You should hack them
-;; so that they accept emms-player-mpd.
-
;; Add "emms-player-mpd" to the top of `emms-player-list'. If you use
-;; absolute file names in your m3u playlists, make sure you set
-;; `emms-player-mpd-music-directory' to the value of "music_directory"
-;; from your MusicPD config.
+;; absolute file names in your m3u playlists (which is most likely),
+;; make sure you set `emms-player-mpd-music-directory' to the value of
+;; "music_directory" from your MusicPD config.
+
+;; To get track info from MusicPD, do the following.
+
+;; (add-to-list 'emms-info-functions 'emms-info-mpd)
;;; TODO
;; If you try to play individual songs, the tracks will not advance.
;; I recommend playing playlists instead. This should be addresed
-;; eventually, though, perhaps with a connection to the mpd process.
-;;
-;; Instead of relying on mpc, we should get MPD_HOST and MPD_PORT from
-;; the environment (or specify them as options), open a network
-;; connection, send the command you want, then "\nclose" to close the
-;; connection. Alternatively, the process can be left open (omitting
-;; "close" but keeping "\n") for more commands. Apparently the
-;; process closes automatically after a while though ... wonder how
-;; other clients handle that.
+;; eventually, though, perhaps with a timer watching the mpd process.
;;
;; It might also be good to "sync" the mpd playlist with the emms one.
;; Currently we just clear the mpd playlist, add the track, and play,
@@ -119,8 +112,44 @@ leave it set to nil."
directory)
:group 'emms-player-mpd)
+(defcustom emms-player-mpd-connect-function
+ (if (and (fboundp 'open-network-stream-nowait)
+ ;; CVS Emacs claims to define open-network-stream-nowait on
+ ;; windows, however, it does, in fact, not work.
+ (not (memq system-type '(windows-nt cygwin ms-dos darwin))))
+ 'open-network-stream-nowait
+ 'open-network-stream)
+ "Function used to initiate the connection to MusicPD.
+It should take same arguments as `open-network-stream' does.
+
+This will usually be auto-detected correctly."
+ :type 'function
+ :group 'emms-player-mpd)
+
+(defcustom emms-player-mpd-server-name "localhost"
+ "The MusicPD server that we should connect to."
+ :type 'string
+ :group 'emms-player-mpd)
+
+(defcustom emms-player-mpd-server-port "6600"
+ "The port of the MusicPD server that we should connect to."
+ :type '(choice number string)
+ :group 'emms-player-mpd)
+
+(defcustom emms-player-mpd-timeout 10
+ "The maximum acceptable delay (in seconds) while waiting for a
+response from the MusicPD server."
+ :type 'integer
+ :group 'emms-player-mpd)
+
+(defcustom emms-player-mpd-verbose nil
+ "Whether to provide notifications for server connection events
+and errors."
+ :type 'boolean
+ :group 'emms-player-mpd)
+
(define-emms-simple-player mpd '(file url playlist)
- emms-player-mpd-supported-regexp "mpc")
+ emms-player-mpd-supported-regexp "mpd")
(emms-player-set emms-player-mpd
'pause
@@ -134,21 +163,123 @@ leave it set to nil."
'seek
'emms-player-mpd-seek)
+;;; Dealing with the MusicPD network process
+
+(defvar emms-player-mpd-process nil)
+(defvar emms-player-mpd-returned-data nil)
+
+(defun emms-player-mpd-sentinel (proc str)
+ "The process sentinel for MusicPD."
+ (let ((status (process-status proc)))
+ (cond ((memq status '(exit signal closed))
+ (when emms-player-mpd-verbose
+ (message "Closed MusicPD process"))
+ (setq emms-player-mpd-process nil))
+ ((memq status '(run listen open))
+ (when emms-player-mpd-verbose
+ (message "MusicPD process started successfully"))))))
+
+(defun emms-player-mpd-filter (proc string)
+ "The process filter for MusicPD."
+ (setq emms-player-mpd-returned-data string))
+
+(defun emms-player-mpd-ensure-process ()
+ "Make sure that a MusicPD process is currently active."
+ (unless (and emms-player-mpd-process
+ (processp emms-player-mpd-process)
+ (memq (process-status emms-player-mpd-process) '(run open)))
+ (setq emms-player-mpd-process
+ (funcall emms-player-mpd-connect-function "mpd"
+ nil
+ emms-player-mpd-server-name
+ emms-player-mpd-server-port))
+ (set-process-sentinel emms-player-mpd-process
+ 'emms-player-mpd-sentinel)
+ (set-process-filter emms-player-mpd-process
+ 'emms-player-mpd-filter)))
+
+(defun emms-player-mpd-send (command)
+ "Send the given COMMAND to the MusicPD server."
+ (emms-player-mpd-ensure-process)
+ (unless (string= (substring command -1) "\n")
+ (setq command (concat command "\n")))
+ (process-send-string emms-player-mpd-process command)
+ nil)
+
+(defun emms-player-mpd-send-and-wait (command)
+ "Send the given COMMAND to the MusicPD server and await a response,
+which is returned."
+ (setq emms-player-mpd-returned-data nil)
+ (emms-player-mpd-send command)
+ (accept-process-output emms-player-mpd-process emms-player-mpd-timeout)
+ emms-player-mpd-returned-data)
+
+;;; Helper functions
+
+(defun emms-player-mpd-parse-response (response)
+ "Convert the given MusicPD response into a list.
+The car of the list is special:
+If an error has occurred, it will contain a cons cell whose car is
+an error number and whose cdr is the corresponding message.
+Otherwise, it will be nil."
+ (when (stringp response)
+ (save-match-data
+ (let* ((data (split-string response "\n"))
+ (cruft (last data 3))
+ (status (if (string= (cadr cruft) "")
+ (car cruft)
+ (cadr cruft))))
+ (setcdr cruft nil)
+ (when (string-match "^OK MPD " (car data))
+ (setq data (cdr data)))
+ (if (string-match "^ACK \\[\\([0-9]+\\)@[0-9]+\\] \\(.+\\)" status)
+ (cons (cons (match-string 1 status)
+ (match-string 2 status))
+ data)
+ (cons nil data))))))
+
+(defun emms-player-mpd-get-alist (info)
+ "Turn the given parsed INFO from MusicPD into an alist.
+The format of the alist is (name . value)."
+ (when (and info
+ (null (car info)) ; no error has occurred
+ (cdr info)) ; data exists
+ (let (alist)
+ (dolist (line (cdr info))
+ (string-match "\\`\\([^:]+\\):\\s-*\\(.+\\)" line)
+ (let ((name (match-string 1 line))
+ (value (match-string 2 line)))
+ (when (and name value)
+ (setq name (downcase name))
+ (add-to-list 'alist (cons name value) t))))
+ alist)))
+
+(defun emms-player-mpd-get-filename (file)
+ "Turn FILE into something that MusicPD can understand.
+This usually means removing a prefix."
+ (if (or (null emms-player-mpd-music-directory)
+ (not (eq (aref file 0) ?/))
+ (string-match "\\`http://" file))
+ file
+ (file-relative-name file emms-player-mpd-music-directory)))
+
+;;; MusicPD commands
+
(defun emms-player-mpd-clear ()
"Clear the playlist."
- (shell-command-to-string (concat emms-player-mpd-command-name " clear")))
+ (emms-player-mpd-send "clear"))
(defun emms-player-mpd-add (file)
"Add FILE to the current MusicPD playlist.
-If we succeeded in adding the file, return the string from the
-process, nil otherwise."
- (when (and emms-player-mpd-music-directory
- (not (string-match "\\`http://" file)))
- (setq file (file-relative-name file emms-player-mpd-music-directory)))
- (let ((output (shell-command-to-string (concat emms-player-mpd-command-name
- " add " file))))
- (when (and output (not (string= output "")))
- output)))
+If we do not succeed in adding the file, return the string from
+the process, nil otherwise."
+ (setq file (emms-player-mpd-get-filename file))
+ (let ((output (emms-player-mpd-parse-response
+ (emms-player-mpd-send-and-wait (concat "add " file)))))
+ (when (car output)
+ (when emms-player-mpd-verbose
+ (message "MusicPD error: %s: %s" file (cdar output)))
+ (cdar output))))
(defun emms-player-mpd-load (playlist)
"Load contents of PLAYLIST into MusicPD by adding each line.
@@ -174,7 +305,7 @@ This handles both m3u and pls type playlists."
(defun emms-player-mpd-play ()
"Play whatever is in the current MusicPD playlist."
- (shell-command-to-string (concat emms-player-mpd-command-name " play")))
+ (emms-player-mpd-send "play"))
(defun emms-player-mpd-start (track)
"Starts a process playing TRACK."
@@ -191,49 +322,91 @@ This handles both m3u and pls type playlists."
(defun emms-player-mpd-stop ()
"Stop the currently playing song."
(interactive)
- (shell-command-to-string (concat emms-player-mpd-command-name " stop")))
+ (emms-player-mpd-send "stop"))
(defun emms-player-mpd-pause ()
"Pause the currently playing song."
(interactive)
- (shell-command-to-string (concat emms-player-mpd-command-name " toggle")))
+ (emms-player-mpd-send "pause"))
(defun emms-player-mpd-seek (sec)
"Seek backward or forward by SEC seconds, depending on sign of SEC."
(interactive)
- (shell-command-to-string (concat emms-player-mpd-command-name
- (format " seek %s%d"
- (if (> sec 0) "+" "")
- sec)))
- ;; Taking our cue from emms-player-mplayer-seek
- (when (fboundp 'emms-lyrics-seek)
- (emms-lyrics-seek sec)))
+ (emms-player-mpd-send (format "seek %s%d"
+ (if (> sec 0) "+" "")
+ sec)))
;; Not currently used by the API (to my knowledge), but I make use of
;; these to advance my playlists.
+
(defun emms-player-mpd-next ()
"Move forward by one track in MusicPD's internal playlist."
(interactive)
- (shell-command-to-string (concat emms-player-mpd-command-name " next")))
+ (emms-player-mpd-send "next"))
(defun emms-player-mpd-previous ()
"Move backward by one track in MusicPD's internal playlist."
(interactive)
- (shell-command-to-string (concat emms-player-mpd-command-name " previous")))
-
-;; A "Now Playing" function -- I don't know how to integrate this into
-;; emms-show.
-(defun emms-player-mpd-show ()
- "Show the currently-playing track. If nothing is playing, return nil."
- (interactive)
- (let ((np (car (split-string
- (shell-command-to-string
- (concat emms-player-mpd-command-name))
- "\n"))))
- (when (and np
- (not (string= np ""))
- (not (string-match "\\`\\(volume\\|error\\):" np)))
- np)))
+ (emms-player-mpd-send "previous"))
+
+;;; Track info
+
+(defun emms-info-mpd (track &optional info)
+ "Add track information to TRACK.
+This is a useful addition to `emms-info-functions'.
+If INFO is specified, use that instead of acquiring the necessary
+info from MusicPD."
+ (let (file)
+ (unless info
+ (when (and (eq 'file (emms-track-type track))
+ emms-player-mpd-music-directory
+ (setq file (emms-player-mpd-get-filename
+ (emms-track-name track)))
+ (string-match emms-player-mpd-supported-regexp file))
+ (setq info (emms-player-mpd-get-alist
+ (emms-player-mpd-parse-response
+ (emms-player-mpd-send-and-wait
+ (concat "find filename " file)))))))
+ (when info
+ (dolist (data info)
+ (let ((name (car data))
+ (value (cdr data)))
+ (setq name (cond ((string= name "artist") 'info-artist)
+ ((string= name "title") 'info-title)
+ ((string= name "album") 'info-album)
+ ((string= name "track") 'info-tracknumber)
+ ((string= name "date") 'info-year)
+ ((string= name "genre") 'info-genre)
+ ((string= name "time")
+ (setq value (string-to-number value))
+ 'info-playing-time)
+ (t nil)))
+ (when name
+ (emms-track-set track name value)))))))
+
+(defun emms-player-mpd-show (&optional insertp)
+ "Describe the current EMMS track in the minibuffer.
+If INSERTP is non-nil, insert the description into the current buffer instead.
+This function uses `emms-show-format' to format the current track.
+It differs from `emms-show' in that it asks MusicPD for the current track,
+rather than EMMS."
+ (interactive "P")
+ (let* ((info (emms-player-mpd-get-alist
+ (emms-player-mpd-parse-response
+ (emms-player-mpd-send-and-wait "currentsong"))))
+ (track (emms-dictionary '*track*))
+ desc string)
+ (when info
+ (emms-track-set track 'type 'file)
+ (emms-track-set track 'name (cdr (assoc "file" info)))
+ (emms-info-mpd track info)
+ (setq desc (emms-track-description track)))
+ (setq string (if desc
+ (format emms-show-format desc)
+ "Nothing playing right now"))
+ (if insertp
+ (insert string)
+ (message "%s" string))))
(provide 'emms-player-mpd)