Christophe Weblog Wiki Code Publications Music
iplayer-el.git
11 years agoslightly-confusing iplayer-{previous,next} commands
Christophe Rhodes [Mon, 26 Nov 2012 22:02:20 +0000 (22:02 +0000)]
slightly-confusing iplayer-{previous,next} commands

Bind them to ?k and ?j in iplayer-mode.

11 years agocosmetic change
Christophe Rhodes [Fri, 6 Jul 2012 20:56:13 +0000 (21:56 +0100)]
cosmetic change

Use this-command-keys-vector rather than this-command-keys --
marginally easier to debug with.

11 years agofix iplayer commands invoked using M-x
Christophe Rhodes [Fri, 6 Jul 2012 20:55:43 +0000 (21:55 +0100)]
fix iplayer commands invoked using M-x

Sure, I only notice this when I have to restart my emacs.  But once is
annoying enough.  The problem was that running M-x iplayer would cause
an error from within execute-extended-command, within the process
sentinel.  After trying to debug this and generating a nifty
unbreakable infinite loop, I finally twigged that it was the
frame/window/buffer frobbing that was the problem.  Piling hack upon
hack, the answer is that we only want to do the frobbing once before
the first command in the command keys, and once after the execution
has finished.  Make it so.

11 years agorework commands in light of long cache refresh time
Christophe Rhodes [Mon, 11 Jun 2012 10:33:21 +0000 (11:33 +0100)]
rework commands in light of long cache refresh time

The issue is that of get-iplayer itself managing its cache: if at any
point it decides that the cache is sufficiently stale, it goes off and
refreshes everything, which seems to take a long time -- if I'm
unlucky, breaking my ERC sessions (and in any case making the rest of
the editor session unusable).

Construct a background process and sentinel to manage the cache
updating before calling the real get-iplayer command.  The tricky bit
here is to make sure that the sentinel and real body get executed in
the right context.  Many things in the world are simpler with lexical
scoping; this would have been one of them, but I am still on emacs 23
and lexical binding is a thing of the future, so instead of making a
bunch of thunks to be called later, we have to save commands (well,
key sequences), but then those key sequences are divorced from the
window and frame that they were originally typed into, so we have to
get that context back.  Naive ways of doing that turn out not to work,
because execute-kbd-macro runs its own command loop, which first of
all selects a current frame and window, so if we've navigated away
from the *iplayer* window/buffer we end up adding keystrokes to
e.g. an ERC buffer, which is suboptimal; however, (ab)using the pre
and post command hooks seems to make things work.  So do that, and all
is well.

11 years ago(ab)use mode-line-process to display preset in the mode line
Christophe Rhodes [Tue, 24 Apr 2012 11:33:41 +0000 (12:33 +0100)]
(ab)use mode-line-process to display preset in the mode line

11 years agoremove debugging call to message in iplayer-preset
Christophe Rhodes [Tue, 24 Apr 2012 11:33:03 +0000 (12:33 +0100)]
remove debugging call to message in iplayer-preset

11 years agofirst cut of iPlayer interface for Emacs
Christophe Rhodes [Mon, 23 Apr 2012 20:19:36 +0000 (21:19 +0100)]
first cut of iPlayer interface for Emacs

Very raw.  Uses get_iplayer (spelled "get-iplayer" on my system); "parses"
the tree output; uses Orgstruct for presentation, and text properties for
user interface.  Uncached calls to get-iplayer (the first in any four hours,
unless the user has a cron job) blocks the whole of emacs for a good little
while as get-iplayer spends its time pulling down metadata, and there is
almost no useful feedback when downloading.

On the other hand, it's easier for me than the command-line interface.