Christophe Weblog Wiki Code Publications Music
don't startup by default in "show all" 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     (if iplayer-current-channel
160         (setq mode-line-process (format "[%s]" iplayer-current-channel))
161       (setq mode-line-process nil)))
162   (switch-to-buffer (get-buffer-create "*iplayer*")))
163
164 (defvar iplayer-presets
165   '(("1" . "BBC One")
166     ("2" . "BBC Two")
167     ("3" . "BBC Three")
168     ("4" . "BBC Four")
169
170     ("!" . "BBC Radio 1")
171     ("\"" . "BBC Radio 2")
172     ("£" . "BBC Radio 3")
173     ("$" . "BBC Radio 4")
174     ("%" . "BBC Radio 5 live")
175     ("^" . "BBC 6 Music")
176     ("&" . "BBC 7")
177     ("*" . "BBC Radio 4 Extra"))
178   "Alist mapping keys to iPlayer channels.
179
180 Used in the `iplayer-preset' command.")
181
182 (defcustom iplayer-startup-channel "BBC One"
183   "The channel to display at startup"
184   :type `(choice
185           ,@(mapcar (lambda (x) `(const ,(cdr x))) iplayer-presets)
186           (const :tag "Show all content" nil))
187   :group 'iplayer)
188
189 (defun iplayer-frob-presets (presets)
190   (cond
191    ((version< emacs-version "24")
192     (mapcar (lambda (x) (cons (read-kbd-macro (car x)) (cdr x))) presets))
193    (t presets)))
194
195 (defvar iplayer-current-channel nil)
196
197 (define-iplayer-command iplayer-preset (&optional keys)
198   "Switch display to a preset channel.
199
200 The presets are defined in the variable `iplayer-presets'."
201   (interactive)
202   (let ((keys (or (and keys (concat keys)) (this-command-keys)))
203         (presets (iplayer-frob-presets iplayer-presets)))
204     (cond
205      ((= (length keys) 1)
206       (let ((channel (cdr (assoc keys presets))))
207         (if channel
208             (iplayer-channel channel)
209           (error "no preset for key %s" keys)))))))
210
211 (defun iplayer-channel (channel)
212   (setq iplayer-current-channel channel)
213   (display-iplayer-tree (get-iplayer-tree "--channel" (format "^%s$" channel))))
214
215 (define-iplayer-command iplayer-refresh (&optional keys)
216   "Refresh the current iPlayer channel display."
217   (interactive)
218   (if iplayer-current-channel
219       (iplayer-channel iplayer-current-channel)
220     (iplayer-show-all)))
221
222 (defun iplayer-download ()
223   (interactive)
224   (let ((id (get-text-property (point) 'iplayer-id)))
225     (if id
226         (let ((default-directory iplayer-download-directory))
227           ;; should probably use a process filter instead to give us a
228           ;; progress bar
229           (message "downloading id %s" id)
230           (start-process "get-iplayer" " *get-iplayer*" "get-iplayer" "--modes=best" "--get" (format "%s" id)))
231       (message "no id at point"))))
232
233 (defun iplayer-previous ()
234   (interactive)
235   (save-match-data
236     (outline-previous-heading)
237     (while (and (= (funcall outline-level) 1) (not (bobp)))
238       (outline-previous-heading)))
239   (hide-other)
240   (unless (bobp)
241     (save-excursion
242       (outline-up-heading 1 t)
243       (show-children))))
244
245 (defun iplayer-next ()
246   (interactive)
247   (save-match-data
248     (outline-next-heading)
249     (while (and (= (funcall outline-level) 1) (not (eobp)))
250       (outline-next-heading)))
251   (hide-other)
252   (save-excursion
253     (outline-up-heading 1 t)
254     (show-children)))
255
256 (defconst iplayer-mode-map
257   (let ((map (make-sparse-keymap)))
258     (define-key map (kbd "0") 'iplayer-show-all)
259     (let ((presets "123456789!\"£$%^&*()"))
260       (dotimes (i (length presets))
261         (define-key map (read-kbd-macro (substring presets i (1+ i)))
262           'iplayer-preset)))
263     (define-key map (kbd "RET") 'iplayer-download)
264     (define-key map (kbd "g") 'iplayer-refresh)
265     (define-key map (kbd "j") 'iplayer-next)
266     (define-key map (kbd "k") 'iplayer-previous)
267     (define-key map (kbd "n") 'iplayer-next)
268     (define-key map (kbd "p") 'iplayer-previous)
269     map
270     ))
271
272 (define-derived-mode iplayer-mode special-mode "iPlayer"
273   "A major mode for the BBC's iPlayer.
274 \\{iplayer-mode-map}")
275
276 (define-iplayer-command iplayer-show-all (&optional keys)
277   "Show all iPlayer entries."
278   (interactive)
279   (setq iplayer-current-channel nil)
280   (display-iplayer-tree (get-iplayer-tree)))
281
282 (define-iplayer-command iplayer (&optional keys)
283   "Start the emacs iPlayer interface."
284   (interactive)
285   (if iplayer-startup-channel
286       (iplayer-channel iplayer-startup-channel)
287     (iplayer-show-all)))
288
289 ;;;###autoload
290 (autoload 'iplayer "iplayer" "Start the emacs iPlayer interface." t)
291
292 (provide 'iplayer)
293 ;;; iplayer.el ends here