* ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
[emacs.git] / lisp / doc-view.el
blob2bf8b28ff8bcb68464d4c0a380079a48347b6538
1 ;;; doc-view.el --- View PDF/PostScript/DVI files in Emacs
3 ;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Tassilo Horn <tassilo@member.fsf.org>
6 ;; Maintainer: Tassilo Horn <tassilo@member.fsf.org>
7 ;; Keywords: files, pdf, ps, dvi
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Requirements:
28 ;; doc-view.el requires GNU Emacs 22.1 or newer. You also need Ghostscript,
29 ;; `dvipdfm' which comes with teTeX and `pdftotext', which comes with xpdf
30 ;; (http://www.foolabs.com/xpdf/) or poppler (http://poppler.freedesktop.org/).
32 ;;; Commentary:
34 ;; DocView is a document viewer for Emacs. It converts PDF, PS and DVI files
35 ;; to a set of PNG files, one PNG for each page, and displays the PNG images
36 ;; inside an Emacs buffer. This buffer uses `doc-view-mode' which provides
37 ;; convenient key bindings for browsing the document.
39 ;; To use it simply open a document file with
41 ;; C-x C-f ~/path/to/document RET
43 ;; and the document will be converted and displayed, if your emacs supports png
44 ;; images. With `C-c C-c' you can toggle between the rendered images
45 ;; representation and the source text representation of the document.
47 ;; Since conversion may take some time all the PNG images are cached in a
48 ;; subdirectory of `doc-view-cache-directory' and reused when you want to view
49 ;; that file again. To reconvert a document hit `g' (`doc-view-reconvert-doc')
50 ;; when displaying the document. To delete all cached files use
51 ;; `doc-view-clear-cache'. To open the cache with dired, so that you can tidy
52 ;; it out use `doc-view-dired-cache'.
54 ;; When conversion in underway the first page will be displayed as soon as it
55 ;; is available and the available pages are refreshed every
56 ;; `doc-view-conversion-refresh-interval' seconds. If that variable is nil the
57 ;; pages won't be displayed before conversion of the document finished
58 ;; completely.
60 ;; DocView lets you select a slice of the displayed pages. This slice will be
61 ;; remembered and applied to all pages of the current document. This enables
62 ;; you to cut away the margins of a document to save some space. To select a
63 ;; slice you can use `doc-view-set-slice' (bound to `s s') which will query you
64 ;; for the coordinates of the slice's top-left corner and its width and height.
65 ;; A much more convenient way to do the same is offered by the command
66 ;; `doc-view-set-slice-using-mouse' (bound to `s m'). After invokation you
67 ;; only have to press mouse-1 at the top-left corner and drag it to the
68 ;; bottom-right corner of the desired slice. To reset the slice use
69 ;; `doc-view-reset-slice' (bound to `s r').
71 ;; You can also search within the document. The command `doc-view-search'
72 ;; (bound to `C-s') queries for a search regexp and initializes a list of all
73 ;; matching pages and messages how many match-pages were found. After that you
74 ;; can jump to the next page containing a match with an additional `C-s'. With
75 ;; `C-r' you can do the same, but backwards. To search for a new regexp give a
76 ;; prefix arg to one of the search functions, e.g. by typing `C-u C-s'. The
77 ;; searching works by using a plain text representation of the document. If
78 ;; that doesn't already exist the first invokation of `doc-view-search' (or
79 ;; `doc-view-search-backward') starts the conversion. When that finishes and
80 ;; you're still viewing the document (i.e. you didn't switch to another buffer)
81 ;; you're queried for the regexp then.
83 ;; Dired users can simply hit `v' on a document file. If it's a PS, PDF or DVI
84 ;; it will be opened using `doc-view-mode'.
87 ;;; Configuration:
89 ;; If the images are too small or too big you should set the "-rXXX" option in
90 ;; `doc-view-ghostscript-options' to another value. (The bigger your screen,
91 ;; the higher the value.)
93 ;; This and all other options can be set with the customization interface.
94 ;; Simply do
96 ;; M-x customize-group RET doc-view RET
98 ;; and modify them to your needs.
100 ;;; Todo:
102 ;; - fix behavior with clone-indirect-buffer
103 ;; - allow different windows showing the same buffer to change pages
104 ;; independently.
105 ;; - share more code with image-mode again.
106 ;; - better menu.
107 ;; - Bind slicing to a drag event.
108 ;; - doc-view-fit-doc-to-window and doc-view-fit-window-to-doc.
109 ;; - zoom the region around the cursor (like xdvi).
110 ;; - get rid of the silly arrow in the fringe.
111 ;; - improve anti-aliasing (pdf-utils gets it better).
113 ;;;; About isearch support
115 ;; I tried implementing isearch by setting
116 ;; `isearch-search-fun-function' buffer-locally, but that didn't
117 ;; work too good. The function doing the real search was called
118 ;; endlessly somehow. But even if we'd get that working no real
119 ;; isearch feeling comes up due to the missing match highlighting.
120 ;; Currently I display all lines containing a match in a tooltip and
121 ;; each C-s or C-r jumps directly to the next/previous page with a
122 ;; match. With isearch we could only display the current match. So
123 ;; we had to decide if another C-s jumps to the next page with a
124 ;; match (thus only the first match in a page will be displayed in a
125 ;; tooltip) or to the next match, which would do nothing visible
126 ;; (except the tooltip) if the next match is on the same page.
128 ;; And it's much slower than the current search facility, because
129 ;; isearch really searches for each step forward or backward wheras
130 ;; the current approach searches once and then it knows to which
131 ;; pages to jump.
133 ;; Anyway, if someone with better isearch knowledge wants to give it a try,
134 ;; feel free to do it. --Tassilo
136 ;;; Code:
138 (require 'dired)
139 (require 'image-mode)
140 (require 'jka-compr)
142 ;;;; Customization Options
144 (defgroup doc-view nil
145 "In-buffer viewer for PDF, PostScript and DVI files."
146 :link '(function-link doc-view)
147 :version "22.2"
148 :group 'applications
149 :group 'multimedia
150 :prefix "doc-view-")
152 (defcustom doc-view-ghostscript-program (executable-find "gs")
153 "Program to convert PS and PDF files to PNG."
154 :type 'file
155 :group 'doc-view)
157 (defcustom doc-view-ghostscript-options
158 '("-dSAFER" ;; Avoid security problems when rendering files from untrusted
159 ;; sources.
160 "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4"
161 "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET")
162 "A list of options to give to ghostscript."
163 :type '(repeat string)
164 :group 'doc-view)
166 (defcustom doc-view-resolution 100
167 "Dots per inch resolution used to render the documents.
168 Higher values result in larger images."
169 :type 'number
170 :group 'doc-view)
172 (defcustom doc-view-dvipdfm-program (executable-find "dvipdfm")
173 "Program to convert DVI files to PDF.
175 DVI file will be converted to PDF before the resulting PDF is
176 converted to PNG."
177 :type 'file
178 :group 'doc-view)
180 (defcustom doc-view-ps2pdf-program (executable-find "ps2pdf")
181 "Program to convert PS files to PDF.
183 PS files will be converted to PDF before searching is possible."
184 :type 'file
185 :group 'doc-view)
187 (defcustom doc-view-pdftotext-program (executable-find "pdftotext")
188 "Program to convert PDF files to plain text.
190 Needed for searching."
191 :type 'file
192 :group 'doc-view)
194 (defcustom doc-view-cache-directory
195 (expand-file-name (format "docview%d" (user-uid))
196 temporary-file-directory)
197 "The base directory, where the PNG images will be saved."
198 :type 'directory
199 :group 'doc-view)
201 (defcustom doc-view-conversion-buffer "*doc-view conversion output*"
202 "The buffer where messages from the converter programs go to."
203 :type 'string
204 :group 'doc-view)
206 (defcustom doc-view-conversion-refresh-interval 3
207 "Interval in seconds between refreshes of the DocView buffer while converting.
208 After such a refresh newly converted pages will be available for
209 viewing. If set to nil there won't be any refreshes and the
210 pages won't be displayed before conversion of the whole document
211 has finished."
212 :type 'integer
213 :group 'doc-view)
215 ;;;; Internal Variables
217 (defvar doc-view-current-files nil
218 "Only used internally.")
220 (defvar doc-view-current-page nil
221 "Only used internally.")
223 (defvar doc-view-current-converter-process nil
224 "Only used internally.")
226 (defvar doc-view-current-timer nil
227 "Only used internally.")
229 (defvar doc-view-current-slice nil
230 "Only used internally.")
232 (defvar doc-view-current-cache-dir nil
233 "Only used internally.")
235 (defvar doc-view-current-search-matches nil
236 "Only used internally.")
238 (defvar doc-view-current-image nil
239 "Only used internally.")
241 (defvar doc-view-current-overlay nil
242 "Only used internally.")
244 (defvar doc-view-pending-cache-flush nil
245 "Only used internally.")
247 (defvar doc-view-current-info nil
248 "Only used internally.")
250 (defvar doc-view-previous-major-mode nil
251 "Only used internally.")
253 (defvar doc-view-buffer-file-name nil
254 "Only used internally.
255 The file name used for conversion. Normally it's the same as
256 `buffer-file-name', but for remote files, compressed files and
257 files inside an archive it is a temporary copy of
258 the (uncompressed, extracted) file residing in
259 `doc-view-cache-directory'.")
261 ;;;; DocView Keymaps
263 (defvar doc-view-mode-map
264 (let ((map (make-sparse-keymap)))
265 (suppress-keymap map)
266 ;; Navigation in the document
267 (define-key map (kbd "n") 'doc-view-next-page)
268 (define-key map (kbd "p") 'doc-view-previous-page)
269 (define-key map (kbd "<next>") 'forward-page)
270 (define-key map (kbd "<prior>") 'backward-page)
271 (define-key map [remap forward-page] 'doc-view-next-page)
272 (define-key map [remap backward-page] 'doc-view-previous-page)
273 (define-key map (kbd "SPC") 'doc-view-scroll-up-or-next-page)
274 (define-key map (kbd "DEL") 'doc-view-scroll-down-or-previous-page)
275 (define-key map (kbd "M-<") 'doc-view-first-page)
276 (define-key map (kbd "M->") 'doc-view-last-page)
277 (define-key map [remap goto-line] 'doc-view-goto-page)
278 (define-key map [remap scroll-up] 'image-scroll-up)
279 (define-key map [remap scroll-down] 'image-scroll-down)
280 ;; Zoom in/out.
281 (define-key map "+" 'doc-view-enlarge)
282 (define-key map "-" 'doc-view-shrink)
283 ;; Killing/burying the buffer (and the process)
284 (define-key map (kbd "q") 'bury-buffer)
285 (define-key map (kbd "k") 'doc-view-kill-proc-and-buffer)
286 (define-key map (kbd "K") 'doc-view-kill-proc)
287 ;; Slicing the image
288 (define-key map (kbd "s s") 'doc-view-set-slice)
289 (define-key map (kbd "s m") 'doc-view-set-slice-using-mouse)
290 (define-key map (kbd "s r") 'doc-view-reset-slice)
291 ;; Searching
292 (define-key map (kbd "C-s") 'doc-view-search)
293 (define-key map (kbd "<find>") 'doc-view-search)
294 (define-key map (kbd "C-r") 'doc-view-search-backward)
295 ;; Scrolling
296 (define-key map [remap forward-char] 'image-forward-hscroll)
297 (define-key map [remap backward-char] 'image-backward-hscroll)
298 (define-key map [remap next-line] 'image-next-line)
299 (define-key map [remap previous-line] 'image-previous-line)
300 ;; Show the tooltip
301 (define-key map (kbd "C-t") 'doc-view-show-tooltip)
302 ;; Toggle between text and image display or editing
303 (define-key map (kbd "C-c C-c") 'doc-view-toggle-display)
304 ;; Reconvert the current document
305 (define-key map (kbd "g") 'revert-buffer)
306 (define-key map (kbd "r") 'revert-buffer)
307 map)
308 "Keymap used by `doc-view-mode' when displaying a doc as a set of images.")
310 (easy-menu-define doc-view-menu doc-view-mode-map
311 "Menu for Doc View mode."
312 '("DocView"
313 ["Set Slice" doc-view-set-slice-using-mouse]
314 ["Set Slice (manual)" doc-view-set-slice]
315 ["Reset Slice" doc-view-reset-slice]
316 "---"
317 ["Search" doc-view-search]
318 ["Search Backwards" doc-view-search-backward]
319 ["Toggle display" doc-view-toggle-display]
322 (defvar doc-view-minor-mode-map
323 (let ((map (make-sparse-keymap)))
324 ;; Toggle between text and image display or editing
325 (define-key map (kbd "C-c C-c") 'doc-view-toggle-display)
326 map)
327 "Keymap used by `doc-minor-view-mode'.")
329 ;;;; Navigation Commands
331 (defun doc-view-goto-page (page)
332 "View the page given by PAGE."
333 (interactive "nPage: ")
334 (let ((len (length doc-view-current-files)))
335 (if (< page 1)
336 (setq page 1)
337 (when (> page len)
338 (setq page len)))
339 (setq doc-view-current-page page
340 doc-view-current-info
341 (concat
342 (propertize
343 (format "Page %d of %d."
344 doc-view-current-page
345 len) 'face 'bold)
346 ;; Tell user if converting isn't finished yet
347 (if doc-view-current-converter-process
348 " (still converting...)\n"
349 "\n")
350 ;; Display context infos if this page matches the last search
351 (when (and doc-view-current-search-matches
352 (assq doc-view-current-page
353 doc-view-current-search-matches))
354 (concat (propertize "Search matches:\n" 'face 'bold)
355 (let ((contexts ""))
356 (dolist (m (cdr (assq doc-view-current-page
357 doc-view-current-search-matches)))
358 (setq contexts (concat contexts " - \"" m "\"\n")))
359 contexts)))))
360 ;; Update the buffer
361 (doc-view-insert-image (nth (1- page) doc-view-current-files)
362 :pointer 'arrow)
363 (overlay-put doc-view-current-overlay 'help-echo doc-view-current-info)))
365 (defun doc-view-next-page (&optional arg)
366 "Browse ARG pages forward."
367 (interactive "p")
368 (doc-view-goto-page (+ doc-view-current-page (or arg 1))))
370 (defun doc-view-previous-page (&optional arg)
371 "Browse ARG pages backward."
372 (interactive "p")
373 (doc-view-goto-page (- doc-view-current-page (or arg 1))))
375 (defun doc-view-first-page ()
376 "View the first page."
377 (interactive)
378 (doc-view-goto-page 1))
380 (defun doc-view-last-page ()
381 "View the last page."
382 (interactive)
383 (doc-view-goto-page (length doc-view-current-files)))
385 (defun doc-view-scroll-up-or-next-page ()
386 "Scroll page up if possible, else goto next page."
387 (interactive)
388 (when (= (window-vscroll) (image-scroll-up nil))
389 (let ((cur-page doc-view-current-page))
390 (doc-view-next-page)
391 (when (/= cur-page doc-view-current-page)
392 (set-window-vscroll nil 0)))))
394 (defun doc-view-scroll-down-or-previous-page ()
395 "Scroll page down if possible, else goto previous page."
396 (interactive)
397 (when (= (window-vscroll) (image-scroll-down nil))
398 (let ((cur-page doc-view-current-page))
399 (doc-view-previous-page)
400 (when (/= cur-page doc-view-current-page)
401 (image-scroll-up nil)))))
403 ;;;; Utility Functions
405 (defun doc-view-kill-proc ()
406 "Kill the current converter process."
407 (interactive)
408 (when doc-view-current-converter-process
409 (kill-process doc-view-current-converter-process)
410 (setq doc-view-current-converter-process nil))
411 (when doc-view-current-timer
412 (cancel-timer doc-view-current-timer)
413 (setq doc-view-current-timer nil))
414 (setq mode-line-process nil))
416 (defun doc-view-kill-proc-and-buffer ()
417 "Kill the current converter process and buffer."
418 (interactive)
419 (doc-view-kill-proc)
420 (when (eq major-mode 'doc-view-mode)
421 (kill-buffer (current-buffer))))
423 (defun doc-view-make-safe-dir (dir)
424 (condition-case nil
425 (let ((umask (default-file-modes)))
426 (unwind-protect
427 (progn
428 ;; Create temp files with strict access rights. It's easy to
429 ;; loosen them later, whereas it's impossible to close the
430 ;; time-window of loose permissions otherwise.
431 (set-default-file-modes #o0700)
432 (make-directory dir))
433 ;; Reset the umask.
434 (set-default-file-modes umask)))
435 (file-already-exists
436 (if (file-symlink-p dir)
437 (error "Danger: %s points to a symbolic link" dir))
438 ;; In case it was created earlier with looser rights.
439 ;; We could check the mode info returned by file-attributes, but it's
440 ;; a pain to parse and it may not tell you what we want under
441 ;; non-standard file-systems. So let's just say what we want and let
442 ;; the underlying C code and file-system figure it out.
443 ;; This also ends up checking a bunch of useful conditions: it makes
444 ;; sure we have write-access to the directory and that we own it, thus
445 ;; closing a bunch of security holes.
446 (set-file-modes dir #o0700))))
448 (defun doc-view-current-cache-dir ()
449 "Return the directory where the png files of the current doc should be saved.
450 It's a subdirectory of `doc-view-cache-directory'."
451 (if doc-view-current-cache-dir
452 doc-view-current-cache-dir
453 ;; Try and make sure doc-view-cache-directory exists and is safe.
454 (doc-view-make-safe-dir doc-view-cache-directory)
455 ;; Now compute the subdirectory to use.
456 (setq doc-view-current-cache-dir
457 (file-name-as-directory
458 (expand-file-name
459 (concat (file-name-nondirectory buffer-file-name)
461 (let ((file doc-view-buffer-file-name))
462 (with-temp-buffer
463 (insert-file-contents-literally file)
464 (md5 (current-buffer)))))
465 doc-view-cache-directory)))))
467 (defun doc-view-remove-if (predicate list)
468 "Return LIST with all items removed that satisfy PREDICATE."
469 (let (new-list)
470 (dolist (item list (nreverse new-list))
471 (when (not (funcall predicate item))
472 (setq new-list (cons item new-list))))))
474 ;;;###autoload
475 (defun doc-view-mode-p (type)
476 "Return non-nil if image type TYPE is available for `doc-view'.
477 Image types are symbols like `dvi', `postscript' or `pdf'."
478 (and (display-graphic-p)
479 (image-type-available-p 'png)
480 (cond
481 ((eq type 'dvi)
482 (and (doc-view-mode-p 'pdf)
483 doc-view-dvipdfm-program
484 (executable-find doc-view-dvipdfm-program)))
485 ((or (eq type 'postscript) (eq type 'ps) (eq type 'eps)
486 (eq type 'pdf))
487 (and doc-view-ghostscript-program
488 (executable-find doc-view-ghostscript-program)))
489 (t ;; unknown image type
490 nil))))
492 ;;;; Conversion Functions
494 (defvar doc-view-shrink-factor 1.125)
496 (defun doc-view-enlarge (factor)
497 "Enlarge the document."
498 (interactive (list doc-view-shrink-factor))
499 (set (make-local-variable 'doc-view-resolution)
500 (* factor doc-view-resolution))
501 (doc-view-reconvert-doc))
503 (defun doc-view-shrink (factor)
504 "Shrink the document."
505 (interactive (list doc-view-shrink-factor))
506 (doc-view-enlarge (/ 1.0 factor)))
508 (defun doc-view-reconvert-doc ()
509 "Reconvert the current document.
510 Should be invoked when the cached images aren't up-to-date."
511 (interactive)
512 (doc-view-kill-proc)
513 ;; Clear the old cached files
514 (when (file-exists-p (doc-view-current-cache-dir))
515 (dired-delete-file (doc-view-current-cache-dir) 'always))
516 (doc-view-initiate-display))
518 (defun doc-view-dvi->pdf-sentinel (proc event)
519 "If DVI->PDF conversion was successful, convert the PDF to PNG now."
520 (if (not (string-match "finished" event))
521 (message "DocView: dvi->pdf process changed status to %s." event)
522 (with-current-buffer (process-get proc 'buffer)
523 (setq doc-view-current-converter-process nil
524 mode-line-process nil)
525 ;; Now go on converting this PDF to a set of PNG files.
526 (let* ((pdf (process-get proc 'pdf-file))
527 (png (expand-file-name "page-%d.png"
528 (doc-view-current-cache-dir))))
529 (doc-view-pdf/ps->png pdf png)))))
531 (defun doc-view-dvi->pdf (dvi pdf)
532 "Convert DVI to PDF asynchronously."
533 (setq doc-view-current-converter-process
534 (start-process "dvi->pdf" doc-view-conversion-buffer
535 doc-view-dvipdfm-program
536 "-o" pdf dvi)
537 mode-line-process (list (format ":%s" doc-view-current-converter-process)))
538 (set-process-sentinel doc-view-current-converter-process
539 'doc-view-dvi->pdf-sentinel)
540 (process-put doc-view-current-converter-process 'buffer (current-buffer))
541 (process-put doc-view-current-converter-process 'pdf-file pdf))
543 (defun doc-view-pdf/ps->png-sentinel (proc event)
544 "If PDF/PS->PNG conversion was successful, update the display."
545 (if (not (string-match "finished" event))
546 (message "DocView: converter process changed status to %s." event)
547 (with-current-buffer (process-get proc 'buffer)
548 (setq doc-view-current-converter-process nil
549 mode-line-process nil)
550 (when doc-view-current-timer
551 (cancel-timer doc-view-current-timer)
552 (setq doc-view-current-timer nil))
553 ;; Yippie, finished. Update the display!
554 (doc-view-display (current-buffer) 'force))))
556 (defun doc-view-pdf/ps->png (pdf-ps png)
557 "Convert PDF-PS to PNG asynchronously."
558 (setq doc-view-current-converter-process
559 ;; Make sure the process is started in an existing directory,
560 ;; (rather than some file-name-handler-managed dir, for example).
561 (let ((default-directory (file-name-directory pdf-ps)))
562 (apply 'start-process
563 (append (list "pdf/ps->png" doc-view-conversion-buffer
564 doc-view-ghostscript-program)
565 doc-view-ghostscript-options
566 (list (format "-r%d" (round doc-view-resolution)))
567 (list (concat "-sOutputFile=" png))
568 (list pdf-ps))))
569 mode-line-process (list (format ":%s" doc-view-current-converter-process)))
570 (process-put doc-view-current-converter-process
571 'buffer (current-buffer))
572 (set-process-sentinel doc-view-current-converter-process
573 'doc-view-pdf/ps->png-sentinel)
574 (when doc-view-conversion-refresh-interval
575 (setq doc-view-current-timer
576 (run-at-time "1 secs" doc-view-conversion-refresh-interval
577 'doc-view-display
578 (current-buffer)))))
580 (defun doc-view-pdf->txt-sentinel (proc event)
581 (if (not (string-match "finished" event))
582 (message "DocView: converter process changed status to %s." event)
583 (let ((current-buffer (current-buffer))
584 (proc-buffer (process-get proc 'buffer)))
585 (with-current-buffer proc-buffer
586 (setq doc-view-current-converter-process nil
587 mode-line-process nil)
588 ;; If the user looks at the DocView buffer where the conversion was
589 ;; performed, search anew. This time it will be queried for a regexp.
590 (when (eq current-buffer proc-buffer)
591 (doc-view-search nil))))))
593 (defun doc-view-pdf->txt (pdf txt)
594 "Convert PDF to TXT asynchronously."
595 (setq doc-view-current-converter-process
596 (start-process "pdf->txt" doc-view-conversion-buffer
597 doc-view-pdftotext-program "-raw"
598 pdf txt)
599 mode-line-process (list (format ":%s" doc-view-current-converter-process)))
600 (set-process-sentinel doc-view-current-converter-process
601 'doc-view-pdf->txt-sentinel)
602 (process-put doc-view-current-converter-process 'buffer (current-buffer)))
604 (defun doc-view-ps->pdf-sentinel (proc event)
605 (if (not (string-match "finished" event))
606 (message "DocView: converter process changed status to %s." event)
607 (with-current-buffer (process-get proc 'buffer)
608 (setq doc-view-current-converter-process nil
609 mode-line-process nil)
610 ;; Now we can transform to plain text.
611 (doc-view-pdf->txt (process-get proc 'pdf-file)
612 (expand-file-name "doc.txt"
613 (doc-view-current-cache-dir))))))
615 (defun doc-view-ps->pdf (ps pdf)
616 "Convert PS to PDF asynchronously."
617 (setq doc-view-current-converter-process
618 (start-process "ps->pdf" doc-view-conversion-buffer
619 doc-view-ps2pdf-program
620 ;; Avoid security problems when rendering files from
621 ;; untrusted sources.
622 "-dSAFER"
623 ;; in-file and out-file
624 ps pdf)
625 mode-line-process (list (format ":%s" doc-view-current-converter-process)))
626 (set-process-sentinel doc-view-current-converter-process
627 'doc-view-ps->pdf-sentinel)
628 (process-put doc-view-current-converter-process 'buffer (current-buffer))
629 (process-put doc-view-current-converter-process 'pdf-file pdf))
631 (defun doc-view-convert-current-doc ()
632 "Convert `doc-view-buffer-file-name' to a set of png files, one file per page.
633 Those files are saved in the directory given by the function
634 `doc-view-current-cache-dir'."
635 ;; Let stale files still display while we recompute the new ones, so only
636 ;; flush the cache when the conversion is over. One of the reasons why it
637 ;; is important to keep displaying the stale page is so that revert-buffer
638 ;; preserves the horizontal/vertical scroll settings (which are otherwise
639 ;; resets during the redisplay).
640 (setq doc-view-pending-cache-flush t)
641 (let ((png-file (expand-file-name "page-%d.png"
642 (doc-view-current-cache-dir))))
643 (make-directory (doc-view-current-cache-dir))
644 (if (not (string= (file-name-extension doc-view-buffer-file-name) "dvi"))
645 ;; Convert to PNG images.
646 (doc-view-pdf/ps->png doc-view-buffer-file-name png-file)
647 ;; DVI files have to be converted to PDF before Ghostscript can process
648 ;; it.
649 (doc-view-dvi->pdf doc-view-buffer-file-name
650 (expand-file-name "doc.pdf"
651 doc-view-current-cache-dir)))))
653 ;;;; Slicing
655 (defun doc-view-set-slice (x y width height)
656 "Set the slice of the images that should be displayed.
657 You can use this function to tell doc-view not to display the
658 margins of the document. It prompts for the top-left corner (X
659 and Y) of the slice to display and its WIDTH and HEIGHT.
661 See `doc-view-set-slice-using-mouse' for a more convenient way to
662 do that. To reset the slice use `doc-view-reset-slice'."
663 (interactive
664 (let* ((size (image-size doc-view-current-image t))
665 (a (read-number (format "Top-left X (0..%d): " (car size))))
666 (b (read-number (format "Top-left Y (0..%d): " (cdr size))))
667 (c (read-number (format "Width (0..%d): " (- (car size) a))))
668 (d (read-number (format "Height (0..%d): " (- (cdr size) b)))))
669 (list a b c d)))
670 (setq doc-view-current-slice (list x y width height))
671 ;; Redisplay
672 (doc-view-goto-page doc-view-current-page))
674 (defun doc-view-set-slice-using-mouse ()
675 "Set the slice of the images that should be displayed.
676 You set the slice by pressing mouse-1 at its top-left corner and
677 dragging it to its bottom-right corner. See also
678 `doc-view-set-slice' and `doc-view-reset-slice'."
679 (interactive)
680 (let (x y w h done)
681 (while (not done)
682 (let ((e (read-event
683 (concat "Press mouse-1 at the top-left corner and "
684 "drag it to the bottom-right corner!"))))
685 (when (eq (car e) 'drag-mouse-1)
686 (setq x (car (posn-object-x-y (event-start e))))
687 (setq y (cdr (posn-object-x-y (event-start e))))
688 (setq w (- (car (posn-object-x-y (event-end e))) x))
689 (setq h (- (cdr (posn-object-x-y (event-end e))) y))
690 (setq done t))))
691 (doc-view-set-slice x y w h)))
693 (defun doc-view-reset-slice ()
694 "Reset the current slice.
695 After calling this function whole pages will be visible again."
696 (interactive)
697 (setq doc-view-current-slice nil)
698 ;; Redisplay
699 (doc-view-goto-page doc-view-current-page))
701 ;;;; Display
703 (defun doc-view-insert-image (file &rest args)
704 "Insert the given png FILE.
705 ARGS is a list of image descriptors."
706 (when doc-view-pending-cache-flush
707 (clear-image-cache)
708 (setq doc-view-pending-cache-flush nil))
709 (if (null file)
710 ;; We're trying to display a page that doesn't exist. Typically happens
711 ;; if the conversion process somehow failed. Better not signal an
712 ;; error here because it could prevent a subsequent reconversion from
713 ;; fixing the problem.
714 (progn
715 (setq doc-view-current-image nil)
716 (move-overlay doc-view-current-overlay (point-min) (point-max))
717 (overlay-put doc-view-current-overlay 'display
718 "Cannot display this page! Probably a conversion failure!"))
719 (let ((image (apply 'create-image file 'png nil args)))
720 (setq doc-view-current-image image)
721 (move-overlay doc-view-current-overlay (point-min) (point-max))
722 (overlay-put doc-view-current-overlay 'display
723 (if doc-view-current-slice
724 (list (cons 'slice doc-view-current-slice) image)
725 image)))))
727 (defun doc-view-sort (a b)
728 "Return non-nil if A should be sorted before B.
729 Predicate for sorting `doc-view-current-files'."
730 (or (< (length a) (length b))
731 (and (= (length a) (length b))
732 (string< a b))))
734 (defun doc-view-display (buffer &optional force)
735 "Start viewing the document in BUFFER.
736 If FORCE is non-nil, start viewing even if the document does not
737 have the page we want to view."
738 (with-current-buffer buffer
739 (setq doc-view-current-files
740 (sort (directory-files (doc-view-current-cache-dir) t
741 "page-[0-9]+\\.png" t)
742 'doc-view-sort))
743 (when (or force
744 (>= (length doc-view-current-files)
745 (or doc-view-current-page 1)))
746 (doc-view-goto-page doc-view-current-page))))
748 (defun doc-view-buffer-message ()
749 ;; Only show this message initially, not when refreshing the buffer (in which
750 ;; case it's better to keep displaying the "stale" page while computing
751 ;; the fresh new ones).
752 (unless (overlay-get doc-view-current-overlay 'display)
753 (overlay-put doc-view-current-overlay 'display
754 (concat (propertize "Welcome to DocView!" 'face 'bold)
755 "\n"
757 If you see this buffer it means that the document you want to view is being
758 converted to PNG and the conversion of the first page hasn't finished yet or
759 `doc-view-conversion-refresh-interval' is set to nil.
761 For now these keys are useful:
763 `q' : Bury this buffer. Conversion will go on in background.
764 `k' : Kill the conversion process and this buffer.
765 `K' : Kill the conversion process.\n"))))
767 (defun doc-view-show-tooltip ()
768 (interactive)
769 (tooltip-show doc-view-current-info))
771 ;;;;; Toggle between editing and viewing
773 (defun doc-view-toggle-display ()
774 "Toggle between editing a document as text or viewing it."
775 (interactive)
776 (if (eq major-mode 'doc-view-mode)
777 ;; Switch to editing mode
778 (progn
779 (doc-view-kill-proc)
780 (setq buffer-read-only nil)
781 (remove-overlays (point-min) (point-max) 'doc-view)
782 ;; Switch to the previously used major mode or fall back to fundamental
783 ;; mode.
784 (if doc-view-previous-major-mode
785 (funcall doc-view-previous-major-mode)
786 (fundamental-mode))
787 (doc-view-minor-mode 1))
788 ;; Switch to doc-view-mode
789 (when (and (buffer-modified-p)
790 (y-or-n-p "The buffer has been modified. Save the changes? "))
791 (save-buffer))
792 (doc-view-mode)))
794 ;;;; Searching
796 (defun doc-view-search-internal (regexp file)
797 "Return a list of FILE's pages that contain text matching REGEXP.
798 The value is an alist of the form (PAGE CONTEXTS) where PAGE is
799 the pagenumber and CONTEXTS are all lines of text containing a match."
800 (with-temp-buffer
801 (insert-file-contents file)
802 (let ((page 1)
803 (lastpage 1)
804 matches)
805 (while (re-search-forward (concat "\\(?:\\([\f]\\)\\|\\("
806 regexp "\\)\\)") nil t)
807 (when (match-string 1) (setq page (1+ page)))
808 (when (match-string 2)
809 (if (/= page lastpage)
810 (push (cons page
811 (list (buffer-substring
812 (line-beginning-position)
813 (line-end-position))))
814 matches)
815 (setq matches (cons
816 (append
818 ;; This page already is a match.
819 (car matches)
820 ;; This is the first match on page.
821 (list page))
822 (list (buffer-substring
823 (line-beginning-position)
824 (line-end-position))))
825 (cdr matches))))
826 (setq lastpage page)))
827 (nreverse matches))))
829 (defun doc-view-search-no-of-matches (list)
830 "Extract the number of matches from the search result LIST."
831 (let ((no 0))
832 (dolist (p list)
833 (setq no (+ no (1- (length p)))))
834 no))
836 (defun doc-view-search-backward (new-query)
837 "Call `doc-view-search' for backward search.
838 If prefix NEW-QUERY is given, ask for a new regexp."
839 (interactive "P")
840 (doc-view-search new-query t))
842 (defun doc-view-search (new-query &optional backward)
843 "Jump to the next match or initiate a new search if NEW-QUERY is given.
844 If the current document hasn't been transformed to plain text
845 till now do that first.
846 If BACKWARD is non-nil, jump to the previous match."
847 (interactive "P")
848 (if (and (not new-query)
849 doc-view-current-search-matches)
850 (if backward
851 (doc-view-search-previous-match 1)
852 (doc-view-search-next-match 1))
853 ;; New search, so forget the old results.
854 (setq doc-view-current-search-matches nil)
855 (let ((txt (expand-file-name "doc.txt"
856 (doc-view-current-cache-dir))))
857 (if (file-readable-p txt)
858 (progn
859 (setq doc-view-current-search-matches
860 (doc-view-search-internal
861 (read-from-minibuffer "Regexp: ")
862 txt))
863 (message "DocView: search yielded %d matches."
864 (doc-view-search-no-of-matches
865 doc-view-current-search-matches)))
866 ;; We must convert to TXT first!
867 (if doc-view-current-converter-process
868 (message "DocView: please wait till conversion finished.")
869 (let ((ext (file-name-extension doc-view-buffer-file-name)))
870 (cond
871 ((string= ext "pdf")
872 ;; Doc is a PDF, so convert it to TXT
873 (doc-view-pdf->txt doc-view-buffer-file-name txt))
874 ((string= ext "ps")
875 ;; Doc is a PS, so convert it to PDF (which will be converted to
876 ;; TXT thereafter).
877 (doc-view-ps->pdf doc-view-buffer-file-name
878 (expand-file-name "doc.pdf"
879 (doc-view-current-cache-dir))))
880 ((string= ext "dvi")
881 ;; Doc is a DVI. This means that a doc.pdf already exists in its
882 ;; cache subdirectory.
883 (doc-view-pdf->txt (expand-file-name "doc.pdf"
884 (doc-view-current-cache-dir))
885 txt))
886 (t (error "DocView doesn't know what to do")))))))))
888 (defun doc-view-search-next-match (arg)
889 "Go to the ARGth next matching page."
890 (interactive "p")
891 (let* ((next-pages (doc-view-remove-if
892 (lambda (i) (<= (car i) doc-view-current-page))
893 doc-view-current-search-matches))
894 (page (car (nth (1- arg) next-pages))))
895 (if page
896 (doc-view-goto-page page)
897 (when (and
898 doc-view-current-search-matches
899 (y-or-n-p "No more matches after current page. Wrap to first match? "))
900 (doc-view-goto-page (caar doc-view-current-search-matches))))))
902 (defun doc-view-search-previous-match (arg)
903 "Go to the ARGth previous matching page."
904 (interactive "p")
905 (let* ((prev-pages (doc-view-remove-if
906 (lambda (i) (>= (car i) doc-view-current-page))
907 doc-view-current-search-matches))
908 (page (car (nth (1- arg) (nreverse prev-pages)))))
909 (if page
910 (doc-view-goto-page page)
911 (when (and
912 doc-view-current-search-matches
913 (y-or-n-p "No more matches before current page. Wrap to last match? "))
914 (doc-view-goto-page (caar (last doc-view-current-search-matches)))))))
916 ;;;; User interface commands and the mode
918 ;; (put 'doc-view-mode 'mode-class 'special)
920 (defun doc-view-initiate-display ()
921 ;; Switch to image display if possible
922 (if (doc-view-mode-p (intern (file-name-extension doc-view-buffer-file-name)))
923 (progn
924 (doc-view-buffer-message)
925 (setq doc-view-current-page (or doc-view-current-page 1))
926 (if (file-exists-p (doc-view-current-cache-dir))
927 (progn
928 (message "DocView: using cached files!")
929 (doc-view-display (current-buffer) 'force))
930 (doc-view-convert-current-doc))
931 (message
932 "%s"
933 (substitute-command-keys
934 (concat "Type \\[doc-view-toggle-display] to toggle between "
935 "editing or viewing the document."))))
936 (message
937 "%s"
938 (substitute-command-keys
939 (concat "No image (png) support available or some conversion utility for "
940 (file-name-extension doc-view-buffer-file-name)" files is missing. "
941 "Type \\[doc-view-toggle-display] to switch to an editing mode.")))))
943 (defvar bookmark-make-cell-function)
945 (defun doc-view-clone-buffer-hook ()
946 ;; FIXME: There are several potential problems linked with reconversion
947 ;; and auto-revert when we have indirect buffers because they share their
948 ;; /tmp cache directory. This sharing is good (you'd rather not reconvert
949 ;; for each clone), but that means that clones need to collaborate a bit.
950 ;; I guess it mostly means: detect when a reconversion process is already
951 ;; running, and run the sentinel in all clones.
952 ;; Not sure how important it is to fix it: a better target would be to
953 ;; allow a single buffer (without cloning) to display different pages in
954 ;; different windows.
955 ;; Maybe then the clones should really have a separate /tmp directory
956 ;; so they could have a different resolution and you could use clones
957 ;; for zooming.
958 (dolist (ol (overlays-in (point-min) (point-max)))
959 ;; The overlay was copied by the cloning, so we just need to find it
960 ;; and put it in doc-view-current-overlay.
961 (if (overlay-get ol 'doc-view) (setq doc-view-current-overlay ol))))
963 ;;;###autoload
964 (defun doc-view-mode ()
965 "Major mode in DocView buffers.
966 You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to
967 toggle between displaying the document or editing it as text.
968 \\{doc-view-mode-map}"
969 (interactive)
971 (let* ((prev-major-mode (if (eq major-mode 'doc-view-mode)
972 doc-view-previous-major-mode
973 major-mode)))
974 (kill-all-local-variables)
975 (set (make-local-variable 'doc-view-previous-major-mode) prev-major-mode))
977 ;; Handle compressed files, remote files, files inside archives
978 (set (make-local-variable 'doc-view-buffer-file-name)
979 (cond
980 (jka-compr-really-do-compress
981 (expand-file-name
982 (file-name-nondirectory
983 (file-name-sans-extension buffer-file-name))
984 doc-view-cache-directory))
985 ;; Is the file readable by local processes?
986 ;; We used to use `file-remote-p' but it's unclear what it's
987 ;; supposed to return nil for things like local files accessed via
988 ;; `su' or via file://...
989 ((let ((file-name-handler-alist nil))
990 (not (file-readable-p buffer-file-name)))
991 (expand-file-name
992 (file-name-nondirectory buffer-file-name)
993 doc-view-cache-directory))
994 (t buffer-file-name)))
995 (when (not (string= doc-view-buffer-file-name buffer-file-name))
996 (write-region nil nil doc-view-buffer-file-name))
998 (make-local-variable 'doc-view-current-files)
999 (make-local-variable 'doc-view-current-image)
1000 (make-local-variable 'doc-view-current-page)
1001 (make-local-variable 'doc-view-current-converter-process)
1002 (make-local-variable 'doc-view-current-timer)
1003 (make-local-variable 'doc-view-current-slice)
1004 (make-local-variable 'doc-view-current-cache-dir)
1005 (make-local-variable 'doc-view-current-info)
1006 (make-local-variable 'doc-view-current-search-matches)
1007 (set (make-local-variable 'doc-view-current-overlay)
1008 (make-overlay (point-min) (point-max) nil t))
1009 (overlay-put doc-view-current-overlay 'doc-view t)
1010 (add-hook 'change-major-mode-hook
1011 (lambda () (remove-overlays (point-min) (point-max) 'doc-view))
1012 nil t)
1013 (add-hook 'clone-indirect-buffer-hook 'doc-view-clone-buffer-hook nil t)
1015 ;; Keep track of [vh]scroll when switching buffers
1016 (make-local-variable 'image-mode-current-hscroll)
1017 (make-local-variable 'image-mode-current-vscroll)
1018 (image-set-window-hscroll (selected-window) (window-hscroll))
1019 (image-set-window-vscroll (selected-window) (window-vscroll))
1020 (add-hook 'window-configuration-change-hook
1021 'image-reset-current-vhscroll nil t)
1023 (set (make-local-variable 'mode-line-position)
1024 '(" P" (:eval (number-to-string doc-view-current-page))
1025 "/" (:eval (number-to-string (length doc-view-current-files)))))
1026 ;; Don't scroll unless the user specifically asked for it.
1027 (set (make-local-variable 'auto-hscroll-mode) nil)
1028 (set (make-local-variable 'cursor-type) nil)
1029 (use-local-map doc-view-mode-map)
1030 (set (make-local-variable 'after-revert-hook) 'doc-view-reconvert-doc)
1031 (set (make-local-variable 'bookmark-make-cell-function)
1032 'doc-view-bookmark-make-cell)
1033 (setq mode-name "DocView"
1034 buffer-read-only t
1035 major-mode 'doc-view-mode)
1036 (doc-view-initiate-display)
1037 (run-mode-hooks 'doc-view-mode-hook))
1039 ;;;###autoload
1040 (define-minor-mode doc-view-minor-mode
1041 "Toggle Doc view minor mode.
1042 With arg, turn Doc view minor mode on if arg is positive, off otherwise.
1043 See the command `doc-view-mode' for more information on this mode."
1044 nil " DocView" doc-view-minor-mode-map
1045 :group 'doc-view
1046 (when doc-view-minor-mode
1047 (add-hook 'change-major-mode-hook (lambda () (doc-view-minor-mode -1)) nil t)
1048 (message
1049 "%s"
1050 (substitute-command-keys
1051 "Type \\[doc-view-toggle-display] to toggle between editing or viewing the document."))))
1053 (defun doc-view-clear-cache ()
1054 "Delete the whole cache (`doc-view-cache-directory')."
1055 (interactive)
1056 (dired-delete-file doc-view-cache-directory 'always)
1057 (make-directory doc-view-cache-directory))
1059 (defun doc-view-dired-cache ()
1060 "Open `dired' in `doc-view-cache-directory'."
1061 (interactive)
1062 (dired doc-view-cache-directory))
1065 ;;;; Bookmark integration
1067 (defun doc-view-bookmark-make-cell (annotation &rest args)
1068 (let ((the-record
1069 `((filename . ,buffer-file-name)
1070 (page . ,doc-view-current-page)
1071 (handler . doc-view-bookmark-jump))))
1073 ;; Take no chances with text properties
1074 (set-text-properties 0 (length annotation) nil annotation)
1076 (when annotation
1077 (nconc the-record (list (cons 'annotation annotation))))
1079 ;; Finally, return the completed record.
1080 the-record))
1083 (declare-function bookmark-get-filename "bookmark" (bookmark))
1084 (declare-function bookmark-get-bookmark-record "bookmark" (bookmark))
1086 ;;;###autoload
1087 (defun doc-view-bookmark-jump (bmk)
1088 ;; This implements the `handler' function interface for record type
1089 ;; returned by `bookmark-make-cell-function', which see.
1090 (save-window-excursion
1091 (let ((filename (bookmark-get-filename bmk))
1092 (page (cdr (assq 'page (bookmark-get-bookmark-record bmk)))))
1093 (find-file filename)
1094 (when (not (eq major-mode 'doc-view-mode))
1095 (doc-view-toggle-display))
1096 (doc-view-goto-page page)
1097 `((buffer ,(current-buffer)) (position ,1)))))
1100 (provide 'doc-view)
1102 ;; Local Variables:
1103 ;; mode: outline-minor
1104 ;; End:
1106 ;; arch-tag: 5d6e5c5e-095f-489e-b4e4-1ca90a7d79be
1107 ;;; doc-view.el ends here