-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathw3m-session.el
384 lines (333 loc) · 13 KB
/
w3m-session.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
;;; w3m-session.el --- Persistent emacs-w3m sessions
;; Copyright (C) 2003, 2004, 2006, 2007 Jose A Ortega Ruiz
;; Author: Jose A Ortega Ruiz <[email protected]>
;; Version: 0.3.5
;; Keywords: hypermedia, w3m, WWW
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; INTRODUCTION:
;;
;; w3m-session provides persistent emacs-w3m browsing sessions. When
;; quitting w3m (or, if you request it, at any other time while using
;; it) you can save the current w3m session (that is, the set of open
;; tabs and the URLs they're visiting). Upon restarting emacs-w3m
;; (possibly after restarting Emacs itself) you'll have the possibity
;; of recovering the saved session (that is, of re-opening the saved
;; tabs and URLs). You also have at your disposal a command to recover
;; the saved session at any other time.
;;
;; INSTALLATION:
;;
;; Just put this file somewhere on your Emacs load path and add the
;; following line to your .emacs file:
;;
;; (require 'w3m-session)
;;
;; After restarting Emacs (or evaluating the form above), each time
;; you start emacs-w3m with 'w3m' you'll get a prompt asking whether
;; your last browsing session should be loaded. Likewise, when
;; quitting the browser, you'll have the possibility of saving your
;; current session (overwriting the previous one).
;;
;; In addition, two new interactive functions are defined:
;;
;; w3m-session-load -- load the last stored session
;; w3m-session-save -- save the current session
;;
;; These functions can be invoked at any time while running emacs-w3m.
;; Optionally, you can bind them to key shortcuts with the proper
;; variations of the following elisp magic in your .emacs:
;; (defun w3m-add-keys ()
;; (define-key w3m-mode-map "S" 'w3m-session-save)
;; (define-key w3m-mode-map "L" 'w3m-session-load))
;; (add-hook 'w3m-mode-hook 'w3m-add-keys)
;;
;; CUSTOMIZATION:
;;
;; A new customization group, w3m-session, is available. There you can
;; customize the following variables:
;;
;; w3m-session-load-always -- if t, `w3m-session-load' will *not* ask
;; for confirmation (default nil)
;; w3m-session-save-always -- if t, `w3m-session-load' will *not* ask
;; for confirmation (default nil)
;; w3m-session-show-titles -- if t, the load prompt will list the
;; session URL titles (default t)
;; w3m-session-duplicate-tabs -- what to do when loading a session that
;; contains a URL already open
;; w3m-session-file -- the file where w3m session info
;; is stored (default "~/.w3m-session")
;; w3m-session-autosave-period -- the period, in seconds, for automatic
;; session backup file updating.
;;
;;
;; You can also customize them in your .emacs file, to wit:
;;
;; (setq w3m-session-file "~/.emacs.d/w3m-session")
;; (setq w3m-session-save-always nil)
;; (setq w3m-session-load-always nil)
;; (setq w3m-session-show-titles t)
;; (setq w3m-session-duplicate-tabs 'ask) ; 'never, 'always, 'ask
;;
;; HISTORY:
;;
;; Version 0.3.5 (Sun Jan 14, 2007):
;;
;; - automatic session backup every `w3m-session-autosave-period'
;; seconds.
;;
;; Version 0.3.4 (Wed Jul 19, 2006):
;;
;; - save session file on quitting Emacs (without using
;; desktop.el)
;;
;; Version 0.3.3 (Thu Jun 8, 2006):
;;
;; - save session file with pretty print.
;; - handle correctly multiple emacs-w3m (re)starts during a
;; single emacs session.
;; - save URLs in hexified form to allow & in them.
;; - code cleanup.
;;
;; Version 0.3.2 (Mon Sep 29, 2003):
;;
;; - bug fix: when searching or going to home/bookmarks/etc,
;; keep the current tab's focus.
;;
;; Version 0.3.1 (Tue Aug 26, 2003):
;;
;; - type of `w3m-session-file' set to 'file' in customisation
;; buffer.
;; - bug fix: syntax error due to a typo in `w3m-session-file'
;;
;; Version 0.3 (Mon Aug 25, 2003):
;;
;; - the load session tab lists the titles of the session's pages
;; (customizable via 'w3m-session-show-titles').
;; - the duplicated tab prompt displays also the URL's title.
;; - bug fix: active tab in session now is correctly saved.
;;
;; Version 0.2 (Fri Aug 22, 2003):
;;
;; - the session info now includes the active tab, which gets
;; displayed when the session is reloaded.
;; - when reloading a session in a running emacs-w3m, if the
;; session contains a URL that is already being displayed by the
;; browser, the tab can be reused or duplicated (customizable
;; via `w3m-session-duplicate-tabs').
;;
;; Version 0.1 (Wed Aug 20, 2003) -- Initial release.
;;
;;; Code:
;;; Dependencies:
(require 'w3m)
(require 'advice)
(require 'url-util)
;;; Custom variables:
(defgroup w3m-session nil
"w3m - session saving in w3m."
:group 'w3m
:prefix "w3m-session-")
(defcustom w3m-session-save-always nil
"If on, always save w3m session without asking."
:group 'w3m-session
:type 'boolean)
(defcustom w3m-session-load-always nil
"If on, always load w3m session without asking."
:group 'w3m-session
:type 'boolean)
(defcustom w3m-session-show-titles t
"If on, show URL titles in the load prompt."
:group 'w3m-session
:type 'boolean)
(defcustom w3m-session-duplicate-tabs 'never
"How to treat session URL already being visited.
When loading a session with `w3m-session-load', if one of the URLs in
the session is already displayed in a w3m tab, w3m-session can:
- `never' create a new tab (just reload it), or
- `always' duplicate the URL in a new tab, or
- `ask' the user what to do."
:group 'w3m-session
:type '(choice (const :value never)
(const :value always)
(const :value ask)))
(defcustom w3m-session-file "~/.w3m-session"
"File to save the w3m session data."
:group 'w3m-session
:type 'file)
(defvar w3m-session-autosave-period 180
"A backup of the current session is saved with this period (in secs).")
;;; Interactive functions:
(defun w3m-session-save ()
"Save the current w3m session."
(interactive)
(when (and (w3m-alive-p)
(or w3m-session-save-always
(y-or-n-p "Save current w3m session? ")))
(w3m-session-current-to-file)
(w3m-session--restart--autosave)))
(defun w3m-session-load ()
"Load last stored session into w3m."
(interactive)
(let ((s (w3m-session-load-aux)))
(when s
(w3m-session--restart--autosave)
(let* ((urls (w3m-session-url s))
(offset (w3m-session-offset s))
(buffers (unless (equal w3m-session-duplicate-tabs 'always)
(w3m-session-find-duplicated urls))))
(w3m-goto-url-new-session urls t)
(when buffers (w3m-session-close-buffers buffers))
(unless (zerop offset) (w3m-next-buffer offset))))))
(defun w3m-session-set-autosave-period (secs)
"Set new value for the period between session backup autosaves."
(interactive "p")
(let ((secs (or secs (read-number "New period (secs): " 0))))
(when (> secs 0)
(setq w3m-session-autosave-period secs)
(w3m-session--restart--autosave))))
;;; Internals:
;;;; advice w3m to use session management
(defadvice w3m (before jao-load-session activate)
"Optionally load last w3m session on startup."
(interactive
(let ((s (w3m-session-load-aux)))
(list (or (and s (w3m-session-url s)) w3m-home-page) t t))))
(defadvice w3m (after jao-select-tab activate)
"Goto the saved focused tab"
(interactive)
(let ((offset (w3m-session-offset)))
(unless (zerop offset)
(w3m-next-buffer offset))
(ad-deactivate 'w3m)))
(defadvice w3m-quit (before jao-save-session activate)
"Save session before quitting."
(interactive)
(w3m-session-save)
;; this is a little hack: when quitting a w3m session with a tab
;; selected other than the first, the frame is not automatically
;; closed as should be when w3m-pop-up-frames is t:
(switch-to-buffer (car (w3m-list-buffers)))
(ad-activate 'w3m))
;;;; save session on exit
(add-to-list 'kill-emacs-query-functions
'(lambda () (w3m-session-save) t))
;;;; auxiliar functions
(defvar jao-w3m-current-session '(w3m-session 0 nil))
(defun w3m-session-url (&optional s)
(let ((s (or s jao-w3m-current-session)))
(concat "group:"
(mapconcat 'car (nth 2 s) "&"))))
(defun w3m-session-offset (&optional s)
(let ((s (or s jao-w3m-current-session)))
(nth 1 s)))
(defun w3m-session-titles (&optional s)
(let ((s (or s jao-w3m-current-session)))
(mapcar 'cdr (nth 2 s))))
(defun w3m-session-current (&optional s)
(save-current-buffer
(setq jao-w3m-current-session
(or s
`(w3m-session
,(w3m-session-active-tab)
,(mapcar
(lambda (b) (set-buffer b)
(cons (url-hexify-string w3m-current-url)
(w3m-buffer-title b))) (w3m-list-buffers)))))))
(defun w3m-session-current-url ()
(when (w3m-alive-p)
(save-current-buffer
(concat "group:"
(mapconcat (lambda (b) (set-buffer b) w3m-current-url)
(w3m-list-buffers) "&")))))
(defun w3m-session-active-tab (&optional n bs alive)
(let ((n (or n 0))
(bs (or bs (w3m-list-buffers)))
(alive (or alive (w3m-alive-p))))
(if (equal alive (car bs)) n
(w3m-session-active-tab (incf n) (cdr bs) alive))))
(defun w3m-session-find-duplicated (urls)
(when (w3m-alive-p)
(save-current-buffer
(let* ((duplicate-p
(lambda (b)
(y-or-n-p
(format "'%s' (%s) is already open. Duplicate tab? "
(w3m-buffer-title b) w3m-current-url))))
(test-b
(lambda (b)
(set-buffer b)
(if (and
(string-match (regexp-quote w3m-current-url) urls)
(or (equal w3m-session-duplicate-tabs 'never)
(not (funcall duplicate-p b))))
b 'not)))
(buffers (mapcar test-b (w3m-list-buffers))))
(delete 'not buffers)))))
(defun w3m-session-close-buffers (buffers)
(save-current-buffer
(mapc 'kill-buffer buffers)))
(defun w3m-session-load-aux ()
(let ((new-session (w3m-session-from-file
(expand-file-name w3m-session-file))))
(if (and new-session
(or w3m-session-load-always
(y-or-n-p
(if w3m-session-show-titles
(format "Load last w3m session %S? "
(w3m-session-titles new-session))
"Load last w3m session? "))))
(w3m-session-current new-session)
nil)))
(defun w3m-session-from-file (fname)
(let ((fname (w3m-session--check--backup fname)))
(if (file-readable-p fname)
(with-temp-buffer
(insert-file-contents fname)
(goto-char (point-min))
(let ((sexp (read (current-buffer))))
(and (equal 'w3m-session (car sexp)) sexp)))
nil)))
(defsubst w3m-session-current-to-file ()
(w3m-session--to--file w3m-session-file))
(defun w3m-session--to--file (filename &optional is-auto)
(require 'pp)
(let ((msg (if is-auto (current-message))))
(with-temp-buffer
(insert ";;;; File generated by w3m-session. DO NOT EDIT!\n")
(pp (w3m-session-current) (current-buffer))
(insert "\n" ";;;; End of "
(file-name-nondirectory w3m-session-file) "\n")
(write-region (point-min) (point-max) (expand-file-name filename)))
(if is-auto (message msg))))
(defvar w3m-session--timer nil)
(defun w3m-session--backup-name (fname)
(concat (expand-file-name fname) ".bak"))
(defun w3m-session--check--backup (fname)
(let ((bfname (w3m-session--backup-name fname)))
(if (and (file-newer-than-file-p bfname fname)
(y-or-n-p "A newer autosaved session exists. Use it? "))
bfname
fname)))
(defun w3m-session--restart--autosave ()
(when (> w3m-session-autosave-period 0)
(if w3m-session--timer (cancel-timer w3m-session--timer))
(setq w3m-session--timer
(run-at-time w3m-session-autosave-period
w3m-session-autosave-period
'w3m-session--to--file
(w3m-session--backup-name w3m-session-file)
t))))
(provide 'w3m-session)
;;; w3m-session.el ends here