aboutsummaryrefslogtreecommitdiff
path: root/emms-player-mpg321-remote.el
diff options
context:
space:
mode:
authorDamien Elmes <emms@repose.cx>2006-06-16 10:31:00 +0000
committerDamien Elmes <emms@repose.cx>2006-06-16 10:31:00 +0000
commit5d67351b36d4050677e3d5cba35c298c18690bc0 (patch)
treeaa44e3984149f30e4fdc81d1f2531a8594c5c051 /emms-player-mpg321-remote.el
parenteefcda079f253ed0e154254766a8e0407e318000 (diff)
mpg321-remote: fix race condition
darcs-hash:20060616103159-4e3e3-fd8d7c3ce8e35b26f56f4822e65b7a217eaf4436.gz
Diffstat (limited to 'emms-player-mpg321-remote.el')
-rw-r--r--emms-player-mpg321-remote.el45
1 files changed, 25 insertions, 20 deletions
diff --git a/emms-player-mpg321-remote.el b/emms-player-mpg321-remote.el
index 4a95494..52453b7 100644
--- a/emms-player-mpg321-remote.el
+++ b/emms-player-mpg321-remote.el
@@ -74,8 +74,8 @@ For example: (list \"-o\" \"alsa\")"
(defvar emms-player-mpg321-remote-process-name "emms-player-mpg321-remote-proc"
"The name of the mpg321 remote player process")
-(defvar emms-player-mpg321-remote-stopped-p nil
- "True if we should ignore the next stop message.")
+(defvar emms-player-mpg321-remote-ignore-stop 0
+ "Number of stop messages to ignore, due to user action.")
(defmacro emms-player-mpg321-remote-add (cmd func)
`(emms-player-set 'emms-player-mpg321-remote
@@ -141,19 +141,22 @@ For example: (list \"-o\" \"alsa\")"
;; --------------------------------------------------
(defun emms-player-mpg321-remote-filter (proc str)
- (let* ((data (split-string str))
- (cmd (car data)))
- (cond
- ;; stop notice
- ((and (string= cmd "@P")
- (string= (cadr data) "0"))
- (emms-player-mpg321-remote-notify-emms))
- ;; frame notice
- ((string= cmd "@F")
- ;; even though a timer is constantly updating this variable,
- ;; updating it here will cause it to stay pretty much in sync.
- (setq emms-playing-time
- (truncate (string-to-number (nth 3 data))))))))
+ (let* ((data-lines (split-string str "\n" t))
+ data line cmd)
+ (dolist (line data-lines)
+ (setq data (split-string line))
+ (setq cmd (car data))
+ (cond
+ ;; stop notice
+ ((and (string= cmd "@P")
+ (string= (cadr data) "0"))
+ (emms-player-mpg321-remote-notify-emms))
+ ;; frame notice
+ ((string= cmd "@F")
+ ;; even though a timer is constantly updating this variable,
+ ;; updating it here will cause it to stay pretty much in sync.
+ (setq emms-playing-time
+ (truncate (string-to-number (nth 3 data)))))))))
(defun emms-player-mpg321-remote-start-playing (track)
"Start playing a song by telling the remote process to play it.
@@ -164,16 +167,18 @@ If the remote process is not running, launch it."
(defun emms-player-mpg321-remote-notify-emms (&optional user-action)
"Tell emms that the current song has finished.
-If USER-ACTION, set `emms-player-mpg321-remote-stopped-p' so that we
+If USER-ACTION, set `emms-player-mpg321-remote-ignore-stop' so that we
ignore the next message from mpg321."
(if user-action
- (let ((emms-player-stopped-p t))
+ (let ((emms-player-ignore-stop t))
;; so we ignore the next stop message
- (setq emms-player-mpg321-remote-stopped-p t)
+ (setq emms-player-mpg321-remote-ignore-stop
+ (1+ emms-player-mpg321-remote-ignore-stop))
(emms-player-stopped))
;; not a user action
- (if emms-player-mpg321-remote-stopped-p
- (setq emms-player-mpg321-remote-stopped-p nil)
+ (if (not (zerop emms-player-mpg321-remote-ignore-stop))
+ (setq emms-player-mpg321-remote-ignore-stop
+ (1- emms-player-mpg321-remote-ignore-stop))
(emms-player-stopped))))
(defun emms-player-mpg321-remote-stop-playing ()