Christophe Weblog Wiki Code Publications Music
Derive from special-mode
[iplayer-el.git] / iplayer.el
1 ;;; iplayer.el --- Browse and download BBC TV/radio shows
2
3 ;; Copyright (C) 2012-2013  Christophe Rhodes
4
5 ;; Author: Christophe Rhodes <csr21@cantab.net>
6 ;; Version: 0.1
7 ;; Keywords: multimedia
8
9 ;; This program is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23
24 ;; Requires and uses the 'get-iplayer' script to provide a
25 ;; convenient interface to BBC iPlayer.
26
27 ;;; Code:
28
29 (defgroup iplayer nil
30   "Browse and download BBC TV/radio shows."
31   :prefix "iplayer-"
32   :group 'applications)
33
34 (defcustom iplayer-download-directory "~/iPlayer/"
35   "Directory into which shows will be downloaded."
36   :group 'iplayer
37   :type 'directory)
38
39 (defvar iplayer-updating-cache-process nil)
40 (defvar iplayer-updating-cache-sentinel-info nil)
41 (defvar iplayer-updating-cache-sentinel-executing nil)
42
43 (defun iplayer-updating-cache-sentinel (process event)
44   ;; FIXME: assumes that all went well
45   (let* ((iplayer-updating-cache-sentinel-executing t)
46          (info (reverse iplayer-updating-cache-sentinel-info)))
47     (setq iplayer-updating-cache-process nil
48           iplayer-updating-cache-sentinel-info nil)
49     (dolist (info info)
50       (let ((iplayer-command-frame (nth 0 info))
51             (iplayer-command-window (nth 1 info))
52             (iplayer-command-buffer (nth 2 info))
53             (keys (nth 3 info))
54             (function (nth 4 info)))
55         (when (and (frame-live-p iplayer-command-frame)
56                    (window-live-p iplayer-command-window)
57                    (buffer-live-p iplayer-command-buffer))
58           (let ((old-frame (selected-frame))
59                 (old-window (selected-window))
60                 (old-buffer (current-buffer)))
61             (cond
62              ((version< emacs-version "24")
63               (let ((pre-command-hook
64                      (lambda ()
65                        (select-frame iplayer-command-frame)
66                        (select-window iplayer-command-window)
67                        (set-buffer iplayer-command-buffer)
68                        (setq pre-command-hook nil))))
69                 ;; KLUDGE: execute-kbd-macro executes a normal
70                 ;; command-loop, whose first action is to select the
71                 ;; current frame and window, which is why we contort
72                 ;; things to select the frame/window/buffer we actually
73                 ;; want in pre-command-hook.  I'm actually surprised
74                 ;; that it works, but mine is not too much to reason
75                 ;; why; lots of other ways to try to achieve this didn't
76                 ;; in fact work.
77                 (execute-kbd-macro keys)
78                 ;; KLUDGE: and then we restore old state
79                 (select-window old-window)
80                 (select-frame old-frame)
81                 (set-buffer old-buffer)))
82              (t
83               ;; KLUDGE: we store the function name, which is fine,
84               ;; but some of our functions need to know which
85               ;; keystrokes were used to invoke them, so we need to
86               ;; pass those along, so we need to make sure that all
87               ;; iplayer-functions accept an optional argument, argh
88               ;; argh argh.
89               (with-selected-frame iplayer-command-frame
90                 (with-current-buffer iplayer-command-buffer
91                   (with-selected-window iplayer-command-window
92                     (funcall function keys)))))))))
93       (message "Done updating iPlayer cache"))))
94
95 (defmacro define-iplayer-command (name arglist &rest body)
96   (let (docstring interactive)
97     (when (stringp (car body))
98       (setq docstring (car body) body (cdr body)))
99     (when (and (consp (car body)) (eql (car (car body)) 'interactive))
100       (setq interactive (car body) body (cdr body)))
101     `(defun ,name ,arglist
102        ,@(when docstring (list docstring))
103        ,@(when interactive (list interactive))
104        (unless iplayer-updating-cache-process
105          (setq iplayer-updating-cache-process
106                (start-process "updating-iplayer" " *updating-iplayer*"
107                               "get-iplayer" "--type" "radio,tv" "-q"))
108          (set-process-sentinel iplayer-updating-cache-process
109                                'iplayer-updating-cache-sentinel)
110          (message "Updating iPlayer cache"))
111        (if iplayer-updating-cache-sentinel-executing
112            (progn ,@body)
113          (push (list (selected-frame) (selected-window) (current-buffer) (this-command-keys-vector) ',name)
114                iplayer-updating-cache-sentinel-info)))))
115
116 (defun get-iplayer-tree (&rest args)
117   (with-temp-buffer
118     (apply #'call-process "get-iplayer" nil t nil "--nocopyright" "--type" "radio,tv" "--tree" "--terse" args)
119     (goto-char (point-min))
120     (let (result program episodes)
121       (while (< (point) (point-max))
122         (cond
123          ((looking-at "^\\w")
124           (when (and program episodes)
125             (push (cons program (reverse episodes)) result))
126           (setf program (buffer-substring (point) (progn (end-of-line) (point))))
127           (when (string-match "^\\(tv\\|radio\\), " program)
128             (setq program (substring program (match-end 0))))
129           (setf episodes nil)
130           (unless (= (point) (point-max))
131             (forward-char)))
132          ((looking-at "^  \\([0-9]+\\):\\s-\\(.*\\)$")
133           (let ((episode
134                  (cons (buffer-substring (match-beginning 1) (match-end 1))
135                        (buffer-substring (match-beginning 2) (match-end 2)))))
136             (when (string-match "^\\(tv\\|radio\\), " (cdr  episode))
137               (rplacd episode (substring (cdr episode) (match-end 0))))
138             (push episode episodes))
139           (forward-line))
140          (t (forward-line))))
141       (reverse result))))
142
143 (defun display-iplayer-tree (tree)
144   (with-current-buffer (get-buffer-create "*iplayer*")
145     (let ((buffer-read-only nil))
146       (fundamental-mode)
147       (delete-region (point-min) (point-max))
148       (dolist (entry tree)
149         (let ((program (car entry))
150               (episodes (cdr entry)))
151           (insert (propertize (format "* %s\n" program) 'face 'outline-1))
152           (dolist (episode episodes)
153             (insert (propertize (format "** %s\n" (cdr episode))
154                                 'face 'outline-2 'iplayer-id (car episode)))))))
155     (iplayer-mode)
156     (orgstruct-mode 1)
157     (org-overview)
158     (goto-char (point-min)))
159   (switch-to-buffer (get-buffer-create "*iplayer*")))
160
161 (defvar iplayer-presets
162   '(("1" . "BBC One")
163     ("2" . "BBC Two")
164     ("3" . "BBC Three")
165     ("4" . "BBC Four")
166
167     ("!" . "BBC Radio 1")
168     ("\"" . "BBC Radio 2")
169     ("£" . "BBC Radio 3")
170     ("$" . "BBC Radio 4")
171     ("%" . "BBC Radio 5 live")
172     ("^" . "BBC 6 Music")
173     ("&" . "BBC 7")
174     ("*" . "BBC Radio 4 Extra"))
175   "Alist mapping keys to iPlayer channels.
176
177 Used in the `iplayer-preset' command.")
178
179 (defun iplayer-frob-presets (presets)
180   (cond
181    ((version< emacs-version "24")
182     (mapcar (lambda (x) (cons (read-kbd-macro (car x)) (cdr x))) presets))
183    (t presets)))
184
185 (define-iplayer-command iplayer-preset (&optional keys)
186   "Switch display to a preset channel.
187
188 The presets are defined in the variable `iplayer-presets'."
189   (interactive)
190   (let ((keys (or (and keys (concat keys)) (this-command-keys)))
191         (presets (iplayer-frob-presets iplayer-presets)))
192     (cond
193      ((= (length keys) 1)
194       (let ((channel (cdr (assoc keys presets))))
195         (if channel
196             (progn
197               (setq mode-line-process (format "[%s]" channel))
198               (iplayer-channel (format "^%s$" channel)))
199           (error "no preset for key %s" keys)))))))
200
201 (defun iplayer-channel (channel)
202   (display-iplayer-tree (get-iplayer-tree "--channel" channel)))
203
204 (defun iplayer-download ()
205   (interactive)
206   (let ((id (get-text-property (point) 'iplayer-id)))
207     (if id
208         (let ((default-directory iplayer-download-directory))
209           ;; should probably use a process filter instead to give us a
210           ;; progress bar
211           (message "downloading id %s" id)
212           (start-process "get-iplayer" " *get-iplayer*" "get-iplayer" "--modes=best" "--get" (format "%s" id)))
213       (message "no id at point"))))
214
215 (defun iplayer-previous ()
216   (interactive)
217   (save-match-data
218     (outline-previous-heading)
219     (while (and (= (funcall outline-level) 1) (not (bobp)))
220       (outline-previous-heading)))
221   (hide-other)
222   (unless (bobp)
223     (save-excursion
224       (outline-up-heading 1 t)
225       (show-children))))
226
227 (defun iplayer-next ()
228   (interactive)
229   (save-match-data
230     (outline-next-heading)
231     (while (and (= (funcall outline-level) 1) (not (eobp)))
232       (outline-next-heading)))
233   (hide-other)
234   (save-excursion
235     (outline-up-heading 1 t)
236     (show-children)))
237
238 (defconst iplayer-mode-map
239   (let ((map (make-sparse-keymap)))
240     (define-key map (kbd "0") 'iplayer)
241     (let ((presets "123456789!\"£$%^&*()"))
242       (dotimes (i (length presets))
243         (define-key map (read-kbd-macro (substring presets i (1+ i)))
244           'iplayer-preset)))
245     (define-key map (kbd "RET") 'iplayer-download)
246     (define-key map (kbd "j") 'iplayer-next)
247     (define-key map (kbd "k") 'iplayer-previous)
248     map
249     ))
250
251 (define-derived-mode iplayer-mode special-mode "iPlayer"
252   "A major mode for the BBC's iPlayer.
253 \\{iplayer-mode-map}")
254
255 (define-iplayer-command iplayer (&optional keys)
256   "Start the emacs iPlayer interface."
257   (interactive)
258   (setq mode-line-process nil)
259   (display-iplayer-tree (get-iplayer-tree)))
260
261 ;;;###autoload
262 (autoload 'iplayer "iplayer" "Start the emacs iPlayer interface." t)
263
264 (provide 'iplayer)
265 ;;; iplayer.el ends here