2013-08-25 17:57:43 +03:00
|
|
|
;;; vlf.el --- View Large Files -*- lexical-binding: t -*-
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-01-12 18:12:45 +02:00
|
|
|
;; Copyright (C) 2006, 2012, 2013 Free Software Foundation, Inc.
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-12-11 03:21:08 +02:00
|
|
|
;; Version: 1.2
|
2013-01-12 17:05:25 +02:00
|
|
|
;; Keywords: large files, utilities
|
2013-08-06 02:14:39 +03:00
|
|
|
;; Maintainer: Andrey Kotlarski <m00naticus@gmail.com>
|
2013-01-12 17:05:25 +02:00
|
|
|
;; Authors: 2006 Mathias Dahl <mathias.dahl@gmail.com>
|
|
|
|
;; 2012 Sam Steingold <sds@gnu.org>
|
2013-01-12 17:30:49 +02:00
|
|
|
;; 2013 Andrey Kotlarski <m00naticus@gmail.com>
|
2013-08-06 02:14:39 +03:00
|
|
|
;; URL: https://github.com/m00natic/vlfi
|
2013-01-12 17:05:25 +02:00
|
|
|
|
|
|
|
;; 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:
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
;; This package provides the M-x vlf command, which visits part of a
|
2013-05-01 02:02:28 +03:00
|
|
|
;; large file without loading the entire file.
|
2013-08-25 17:57:43 +03:00
|
|
|
;; The buffer uses VLF mode, which defines several commands for
|
2013-05-01 02:02:28 +03:00
|
|
|
;; moving around, searching and editing selected part of file.
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-08-06 02:14:39 +03:00
|
|
|
;; This package was inspired by a snippet posted by Kevin Rodgers,
|
|
|
|
;; showing how to use `insert-file-contents' to extract part of a
|
|
|
|
;; file.
|
2013-01-12 17:05:25 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defgroup vlf nil
|
2013-01-12 17:05:25 +02:00
|
|
|
"View Large Files in Emacs."
|
2013-08-25 17:57:43 +03:00
|
|
|
:prefix "vlf-"
|
2013-01-12 17:05:25 +02:00
|
|
|
:group 'files)
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defcustom vlf-batch-size 1024
|
2013-01-12 17:05:25 +02:00
|
|
|
"Defines how large each batch of file data is (in bytes)."
|
2013-12-11 02:54:44 +02:00
|
|
|
:group 'vlf
|
|
|
|
:type 'integer)
|
2013-08-25 17:57:43 +03:00
|
|
|
(put 'vlf-batch-size 'permanent-local t)
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-12-11 02:54:44 +02:00
|
|
|
;;;###autoload
|
2013-12-11 12:01:26 +02:00
|
|
|
(defcustom vlf-application 'ask
|
2013-12-11 02:54:44 +02:00
|
|
|
"Determines when `vlf' will be offered on opening files.
|
|
|
|
Possible values are: nil to never use it;
|
2013-12-11 12:01:26 +02:00
|
|
|
`ask' offer `vlf' when file size is beyond `large-file-warning-threshold';
|
2013-12-11 02:54:44 +02:00
|
|
|
`dont-ask' automatically use `vlf' for large files;
|
|
|
|
`always' use `vlf' for all files."
|
|
|
|
:group 'vlf
|
|
|
|
:type '(radio (const :format "%v " nil)
|
2013-12-11 12:01:26 +02:00
|
|
|
(const :format "%v " ask)
|
2013-12-11 02:54:44 +02:00
|
|
|
(const :format "%v " dont-ask)
|
|
|
|
(const :format "%v" always)))
|
|
|
|
|
2013-04-08 00:57:53 +03:00
|
|
|
;;; Keep track of file position.
|
2013-08-25 17:57:43 +03:00
|
|
|
(defvar vlf-start-pos 0
|
2013-04-02 01:46:45 +03:00
|
|
|
"Absolute position of the visible chunk start.")
|
2013-08-25 17:57:43 +03:00
|
|
|
(put 'vlf-start-pos 'permanent-local t)
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defvar vlf-end-pos 0 "Absolute position of the visible chunk end.")
|
|
|
|
(put 'vlf-end-pos 'permanent-local t)
|
|
|
|
|
|
|
|
(defvar vlf-file-size 0 "Total size of presented file.")
|
|
|
|
(put 'vlf-file-size 'permanent-local t)
|
|
|
|
|
|
|
|
(defvar vlf-mode-map
|
2013-12-11 02:56:01 +02:00
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map "n" 'vlf-next-batch)
|
|
|
|
(define-key map "p" 'vlf-prev-batch)
|
|
|
|
(define-key map " " 'vlf-next-batch-from-point)
|
2013-08-25 17:57:43 +03:00
|
|
|
(define-key map "+" 'vlf-change-batch-size)
|
2013-04-01 03:07:20 +03:00
|
|
|
(define-key map "-"
|
2013-08-25 17:57:43 +03:00
|
|
|
(lambda () "Decrease vlf batch size by factor of 2."
|
2013-04-13 22:36:33 +03:00
|
|
|
(interactive)
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-change-batch-size t)))
|
|
|
|
(define-key map "s" 'vlf-re-search-forward)
|
|
|
|
(define-key map "r" 'vlf-re-search-backward)
|
|
|
|
(define-key map "o" 'vlf-occur)
|
|
|
|
(define-key map "[" 'vlf-beginning-of-file)
|
|
|
|
(define-key map "]" 'vlf-end-of-file)
|
|
|
|
(define-key map "j" 'vlf-jump-to-chunk)
|
|
|
|
(define-key map "l" 'vlf-goto-line)
|
2013-12-11 02:56:01 +02:00
|
|
|
(define-key map "g" 'vlf-revert)
|
|
|
|
map)
|
2013-08-25 17:57:43 +03:00
|
|
|
"Keymap for `vlf-mode'.")
|
2013-08-06 02:11:21 +03:00
|
|
|
|
2013-12-11 02:56:01 +02:00
|
|
|
(defvar vlf-prefix-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map "\C-c\C-v" vlf-mode-map)
|
|
|
|
map)
|
|
|
|
"Prefixed keymap for `vlf-mode'.")
|
|
|
|
|
2013-12-12 02:07:25 +02:00
|
|
|
(defmacro vlf-with-undo-disabled (&rest body)
|
|
|
|
"Execute BODY with temporarily disabled undo."
|
|
|
|
`(let ((undo-enabled (not (eq buffer-undo-list t))))
|
|
|
|
(if undo-enabled
|
|
|
|
(buffer-disable-undo))
|
|
|
|
(unwind-protect (progn ,@body)
|
|
|
|
(if undo-enabled
|
|
|
|
(buffer-enable-undo)))))
|
|
|
|
|
2013-12-02 02:08:24 +02:00
|
|
|
(define-minor-mode vlf-mode
|
2013-01-12 17:05:25 +02:00
|
|
|
"Mode to browse large files in."
|
2013-12-02 02:08:24 +02:00
|
|
|
:lighter " VLF"
|
2013-12-04 00:20:02 +02:00
|
|
|
:group 'vlf
|
2013-12-11 02:56:01 +02:00
|
|
|
:keymap vlf-prefix-map
|
2013-12-02 02:08:24 +02:00
|
|
|
(if vlf-mode
|
|
|
|
(progn
|
2013-12-08 17:21:34 +02:00
|
|
|
(set (make-local-variable 'require-final-newline) nil)
|
2013-12-02 02:08:24 +02:00
|
|
|
(add-hook 'write-file-functions 'vlf-write nil t)
|
|
|
|
(set (make-local-variable 'revert-buffer-function)
|
|
|
|
'vlf-revert)
|
|
|
|
(make-local-variable 'vlf-batch-size)
|
|
|
|
(set (make-local-variable 'vlf-file-size)
|
2013-12-13 02:32:30 +02:00
|
|
|
(vlf-get-file-size buffer-file-truename))
|
2013-12-11 12:01:26 +02:00
|
|
|
(set (make-local-variable 'vlf-start-pos) 0)
|
|
|
|
(set (make-local-variable 'vlf-end-pos) 0)
|
2013-12-02 02:08:24 +02:00
|
|
|
(let* ((pos (position-bytes (point)))
|
|
|
|
(start (* (/ pos vlf-batch-size) vlf-batch-size)))
|
|
|
|
(goto-char (byte-to-position (- pos start)))
|
|
|
|
(vlf-move-to-batch start)))
|
2013-12-03 01:50:03 +02:00
|
|
|
(kill-local-variable 'revert-buffer-function)
|
2013-12-02 02:08:24 +02:00
|
|
|
(when (or (not large-file-warning-threshold)
|
|
|
|
(< vlf-file-size large-file-warning-threshold)
|
2013-12-04 00:20:02 +02:00
|
|
|
(y-or-n-p (format "Load whole file (%s)? "
|
2013-12-02 02:08:24 +02:00
|
|
|
(file-size-human-readable
|
|
|
|
vlf-file-size))))
|
2013-12-08 17:21:34 +02:00
|
|
|
(kill-local-variable 'require-final-newline)
|
2013-12-02 02:08:24 +02:00
|
|
|
(remove-hook 'write-file-functions 'vlf-write t)
|
|
|
|
(let ((pos (+ vlf-start-pos (position-bytes (point)))))
|
2013-12-04 14:40:07 +02:00
|
|
|
(vlf-with-undo-disabled
|
2013-12-08 17:22:23 +02:00
|
|
|
(insert-file-contents buffer-file-name t nil nil t))
|
2013-12-02 02:08:24 +02:00
|
|
|
(goto-char (byte-to-position pos)))
|
|
|
|
(rename-buffer (file-name-nondirectory buffer-file-name) t))))
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-04-13 22:49:08 +03:00
|
|
|
;;;###autoload
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf (file)
|
2013-12-02 02:08:24 +02:00
|
|
|
"View Large FILE in batches.
|
|
|
|
You can customize number of bytes displayed by customizing
|
2013-08-25 17:57:43 +03:00
|
|
|
`vlf-batch-size'."
|
2013-04-14 18:27:31 +03:00
|
|
|
(interactive "fFile to open: ")
|
2013-08-25 17:57:43 +03:00
|
|
|
(with-current-buffer (generate-new-buffer "*vlf*")
|
2013-08-06 16:23:04 +03:00
|
|
|
(set-visited-file-name file)
|
2013-12-02 02:08:24 +02:00
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(vlf-mode 1)
|
2013-04-13 22:49:08 +03:00
|
|
|
(switch-to-buffer (current-buffer))))
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; integration with other packages
|
|
|
|
|
|
|
|
;;;###autoload
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun dired-vlf ()
|
|
|
|
"In Dired, visit the file on this line in VLF mode."
|
2013-04-14 18:27:31 +03:00
|
|
|
(interactive)
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf (dired-get-file-for-visit)))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(eval-after-load "dired"
|
2013-08-25 17:57:43 +03:00
|
|
|
'(define-key dired-mode-map "V" 'dired-vlf))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-12-11 16:01:12 +02:00
|
|
|
;;;###autoload
|
2013-12-11 16:15:26 +02:00
|
|
|
(defcustom vlf-forbidden-modes-list
|
|
|
|
'(archive-mode tar-mode jka-compr git-commit-mode image-mode
|
|
|
|
doc-view-mode doc-view-mode-maybe)
|
2013-12-11 15:58:35 +02:00
|
|
|
"Major modes which VLF will not be automatically applied to."
|
|
|
|
:group 'vlf
|
|
|
|
:type '(list symbol))
|
|
|
|
|
2013-12-11 16:01:12 +02:00
|
|
|
;;;###autoload
|
2013-12-11 15:58:35 +02:00
|
|
|
(defun vlf-determine-major-mode (filename)
|
|
|
|
"Determine major mode from FILENAME."
|
|
|
|
(let ((name filename)
|
|
|
|
(remote-id (file-remote-p filename))
|
|
|
|
mode)
|
|
|
|
;; Remove backup-suffixes from file name.
|
|
|
|
(setq name (file-name-sans-versions name))
|
|
|
|
;; Remove remote file name identification.
|
|
|
|
(and (stringp remote-id)
|
|
|
|
(string-match (regexp-quote remote-id) name)
|
|
|
|
(setq name (substring name (match-end 0))))
|
|
|
|
(setq mode
|
|
|
|
(if (memq system-type '(windows-nt cygwin))
|
|
|
|
;; System is case-insensitive.
|
|
|
|
(let ((case-fold-search t))
|
2013-12-12 16:16:32 +02:00
|
|
|
(assoc-default name auto-mode-alist 'string-match))
|
2013-12-11 15:58:35 +02:00
|
|
|
;; System is case-sensitive.
|
|
|
|
(or ;; First match case-sensitively.
|
|
|
|
(let ((case-fold-search nil))
|
2013-12-12 16:16:32 +02:00
|
|
|
(assoc-default name auto-mode-alist 'string-match))
|
2013-12-11 15:58:35 +02:00
|
|
|
;; Fallback to case-insensitive match.
|
|
|
|
(and auto-mode-case-fold
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
(assoc-default name auto-mode-alist
|
|
|
|
'string-match))))))
|
|
|
|
(if (and mode (consp mode))
|
|
|
|
(cadr mode)
|
|
|
|
mode)))
|
|
|
|
|
2013-04-13 22:49:08 +03:00
|
|
|
;;;###autoload
|
2013-08-25 17:57:43 +03:00
|
|
|
(defadvice abort-if-file-too-large (around vlf-if-file-too-large
|
2013-08-06 02:07:36 +03:00
|
|
|
compile activate)
|
2013-04-13 22:49:08 +03:00
|
|
|
"If file SIZE larger than `large-file-warning-threshold', \
|
2013-08-25 17:57:43 +03:00
|
|
|
allow user to view file with `vlf', open it normally, or abort.
|
2013-04-13 22:49:08 +03:00
|
|
|
OP-TYPE specifies the file operation being performed over FILENAME."
|
2013-12-11 02:54:44 +02:00
|
|
|
(cond
|
2013-12-12 13:44:31 +02:00
|
|
|
((or (not size) (zerop size)))
|
2013-12-11 15:58:35 +02:00
|
|
|
((or (not vlf-application)
|
2013-12-11 16:07:14 +02:00
|
|
|
(not filename)
|
2013-12-11 15:58:35 +02:00
|
|
|
(memq (vlf-determine-major-mode filename)
|
|
|
|
vlf-forbidden-modes-list))
|
2013-12-11 02:54:44 +02:00
|
|
|
ad-do-it)
|
|
|
|
((eq vlf-application 'always)
|
|
|
|
(vlf filename)
|
|
|
|
(error ""))
|
2013-12-12 13:44:31 +02:00
|
|
|
((and large-file-warning-threshold
|
|
|
|
(< large-file-warning-threshold size))
|
2013-12-11 02:54:44 +02:00
|
|
|
(if (eq vlf-application 'dont-ask)
|
|
|
|
(progn (vlf filename)
|
|
|
|
(error ""))
|
|
|
|
(let ((char nil))
|
|
|
|
(while (not (memq (setq char
|
|
|
|
(read-event
|
|
|
|
(propertize
|
|
|
|
(format
|
|
|
|
"File %s is large (%s): \
|
2013-08-25 17:57:43 +03:00
|
|
|
%s normally (o), %s with vlf (v) or abort (a)"
|
2013-12-11 02:54:44 +02:00
|
|
|
(if filename
|
|
|
|
(file-name-nondirectory filename)
|
|
|
|
"")
|
|
|
|
(file-size-human-readable size)
|
|
|
|
op-type op-type)
|
|
|
|
'face 'minibuffer-prompt)))
|
|
|
|
'(?o ?O ?v ?V ?a ?A))))
|
|
|
|
(cond ((memq char '(?v ?V))
|
|
|
|
(vlf filename)
|
|
|
|
(error ""))
|
|
|
|
((memq char '(?a ?A))
|
|
|
|
(error "Aborted"))))))))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-04-14 02:50:31 +03:00
|
|
|
;; scroll auto batching
|
2013-08-25 17:57:43 +03:00
|
|
|
(defadvice scroll-up (around vlf-scroll-up
|
2013-04-14 02:50:31 +03:00
|
|
|
activate compile)
|
2013-08-25 17:57:43 +03:00
|
|
|
"Slide to next batch if at end of buffer in `vlf-mode'."
|
2013-12-04 15:11:04 +02:00
|
|
|
(if (and vlf-mode (pos-visible-in-window-p (point-max)))
|
2013-08-25 17:57:43 +03:00
|
|
|
(progn (vlf-next-batch 1)
|
2013-04-14 02:50:31 +03:00
|
|
|
(goto-char (point-min)))
|
|
|
|
ad-do-it))
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defadvice scroll-down (around vlf-scroll-down
|
2013-04-14 02:50:31 +03:00
|
|
|
activate compile)
|
2013-12-04 00:20:02 +02:00
|
|
|
"Slide to previous batch if at beginning of buffer in `vlf-mode'."
|
2013-12-04 15:11:04 +02:00
|
|
|
(if (and vlf-mode (pos-visible-in-window-p (point-min)))
|
2013-08-25 17:57:43 +03:00
|
|
|
(progn (vlf-prev-batch 1)
|
2013-04-14 02:50:31 +03:00
|
|
|
(goto-char (point-max)))
|
|
|
|
ad-do-it))
|
|
|
|
|
2013-04-23 19:15:43 +03:00
|
|
|
;; non-recent Emacs
|
2013-08-13 12:39:55 +03:00
|
|
|
;;;###autoload
|
2013-04-13 22:49:08 +03:00
|
|
|
(unless (fboundp 'file-size-human-readable)
|
|
|
|
(defun file-size-human-readable (file-size)
|
|
|
|
"Print FILE-SIZE in MB."
|
2013-12-12 14:39:56 +02:00
|
|
|
(format "%.3fMB" (/ file-size 1048576.0))))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; utilities
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-change-batch-size (decrease)
|
|
|
|
"Change the buffer-local value of `vlf-batch-size'.
|
2013-01-12 17:05:25 +02:00
|
|
|
Normally, the value is doubled;
|
2013-01-12 17:30:49 +02:00
|
|
|
with the prefix argument DECREASE it is halved."
|
2013-01-12 17:05:25 +02:00
|
|
|
(interactive "P")
|
2013-08-25 17:57:43 +03:00
|
|
|
(setq vlf-batch-size (if decrease
|
2013-12-02 02:08:24 +02:00
|
|
|
(/ vlf-batch-size 2)
|
|
|
|
(* vlf-batch-size 2)))
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-move-to-batch vlf-start-pos))
|
2013-02-02 16:12:30 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-update-buffer-name ()
|
2013-12-04 14:00:24 +02:00
|
|
|
"Update the current buffer name."
|
|
|
|
(rename-buffer (format "%s(%d/%d)[%s]"
|
|
|
|
(file-name-nondirectory buffer-file-name)
|
|
|
|
(/ vlf-end-pos vlf-batch-size)
|
|
|
|
(/ vlf-file-size vlf-batch-size)
|
|
|
|
(file-size-human-readable vlf-batch-size))
|
|
|
|
t))
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-get-file-size (file)
|
2013-04-14 00:52:07 +03:00
|
|
|
"Get size in bytes of FILE."
|
2013-12-13 02:32:30 +02:00
|
|
|
(or (nth 7 (file-attributes file)) 0))
|
2013-04-14 00:52:07 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-verify-size ()
|
2013-08-06 16:23:04 +03:00
|
|
|
"Update file size information if necessary and visited file time."
|
|
|
|
(unless (verify-visited-file-modtime (current-buffer))
|
2013-12-13 02:32:30 +02:00
|
|
|
(setq vlf-file-size (vlf-get-file-size buffer-file-truename))
|
2013-08-06 16:23:04 +03:00
|
|
|
(set-visited-file-modtime)))
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-insert-file (&optional from-end)
|
2013-04-13 22:49:08 +03:00
|
|
|
"Insert first chunk of current file contents in current buffer.
|
|
|
|
With FROM-END prefix, start from the back."
|
2013-08-25 19:17:04 +03:00
|
|
|
(let ((start 0)
|
|
|
|
(end vlf-batch-size))
|
|
|
|
(if from-end
|
|
|
|
(setq start (- vlf-file-size vlf-batch-size)
|
|
|
|
end vlf-file-size)
|
|
|
|
(setq end (min vlf-batch-size vlf-file-size)))
|
|
|
|
(vlf-move-to-chunk start end)))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-beginning-of-file ()
|
2013-04-13 22:49:08 +03:00
|
|
|
"Jump to beginning of file content."
|
|
|
|
(interactive)
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-insert-file))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-end-of-file ()
|
2013-04-13 22:49:08 +03:00
|
|
|
"Jump to end of file content."
|
|
|
|
(interactive)
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-insert-file t))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-revert (&optional _ignore-auto noconfirm)
|
2013-08-06 02:13:01 +03:00
|
|
|
"Revert current chunk. Ignore _IGNORE-AUTO.
|
2013-04-15 17:42:11 +03:00
|
|
|
Ask for confirmation if NOCONFIRM is nil."
|
2013-12-11 02:56:01 +02:00
|
|
|
(interactive)
|
|
|
|
(when (or noconfirm
|
|
|
|
(yes-or-no-p (format "Revert buffer from file %s? "
|
|
|
|
buffer-file-name)))
|
|
|
|
(set-buffer-modified-p nil)
|
2013-12-13 02:32:30 +02:00
|
|
|
(set-visited-file-modtime)
|
2013-12-11 02:56:01 +02:00
|
|
|
(vlf-move-to-chunk-2 vlf-start-pos vlf-end-pos)))
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-jump-to-chunk (n)
|
2013-04-13 22:57:09 +03:00
|
|
|
"Go to to chunk N."
|
|
|
|
(interactive "nGoto to chunk: ")
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-move-to-batch (* (1- n) vlf-batch-size)))
|
2013-04-13 22:57:09 +03:00
|
|
|
|
2013-12-04 00:03:29 +02:00
|
|
|
(defun vlf-no-modifications ()
|
|
|
|
"Ensure there are no buffer modifications."
|
|
|
|
(if (buffer-modified-p)
|
|
|
|
(error "Save or discard your changes first")
|
|
|
|
t))
|
2013-12-03 02:37:13 +02:00
|
|
|
|
2013-04-13 22:49:08 +03:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; batch movement
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-next-batch (append)
|
2013-01-12 17:05:25 +02:00
|
|
|
"Display the next batch of file data.
|
2013-01-12 17:30:49 +02:00
|
|
|
When prefix argument is supplied and positive
|
|
|
|
jump over APPEND number of batches.
|
|
|
|
When prefix argument is negative
|
|
|
|
append next APPEND number of batches to the existing buffer."
|
|
|
|
(interactive "p")
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-verify-size)
|
2013-12-11 02:56:01 +02:00
|
|
|
(let* ((end (min (+ vlf-end-pos (* vlf-batch-size (abs append)))
|
2013-08-25 19:17:04 +03:00
|
|
|
vlf-file-size))
|
|
|
|
(start (if (< append 0)
|
|
|
|
vlf-start-pos
|
|
|
|
(- end vlf-batch-size))))
|
|
|
|
(vlf-move-to-chunk start end)))
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-prev-batch (prepend)
|
2013-01-12 17:05:25 +02:00
|
|
|
"Display the previous batch of file data.
|
2013-01-12 17:30:49 +02:00
|
|
|
When prefix argument is supplied and positive
|
|
|
|
jump over PREPEND number of batches.
|
|
|
|
When prefix argument is negative
|
|
|
|
append previous PREPEND number of batches to the existing buffer."
|
|
|
|
(interactive "p")
|
2013-08-25 17:57:43 +03:00
|
|
|
(if (zerop vlf-start-pos)
|
2013-01-12 17:30:49 +02:00
|
|
|
(error "Already at BOF"))
|
2013-12-11 02:56:01 +02:00
|
|
|
(let* ((start (max 0 (- vlf-start-pos (* vlf-batch-size (abs prepend)))))
|
2013-08-25 19:17:04 +03:00
|
|
|
(end (if (< prepend 0)
|
|
|
|
vlf-end-pos
|
|
|
|
(+ start vlf-batch-size))))
|
|
|
|
(vlf-move-to-chunk start end)))
|
2013-01-12 17:30:49 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-move-to-batch (start &optional minimal)
|
2013-04-01 03:08:14 +03:00
|
|
|
"Move to batch determined by START.
|
2013-08-25 17:57:43 +03:00
|
|
|
Adjust according to file start/end and show `vlf-batch-size' bytes.
|
2013-04-14 01:09:13 +03:00
|
|
|
When given MINIMAL flag, skip non important operations."
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-verify-size)
|
2013-08-25 19:17:04 +03:00
|
|
|
(let* ((start (max 0 start))
|
|
|
|
(end (min (+ start vlf-batch-size) vlf-file-size)))
|
|
|
|
(if (= vlf-file-size end) ; re-adjust start
|
|
|
|
(setq start (max 0 (- end vlf-batch-size))))
|
|
|
|
(vlf-move-to-chunk start end minimal)))
|
|
|
|
|
2013-12-07 20:18:07 +02:00
|
|
|
(defun vlf-next-batch-from-point ()
|
|
|
|
"Display batch of file data starting from current point."
|
|
|
|
(interactive)
|
2013-12-13 02:30:29 +02:00
|
|
|
(let ((start (+ vlf-start-pos (position-bytes (point)) -1)))
|
|
|
|
(vlf-move-to-chunk start (+ start vlf-batch-size)))
|
2013-12-07 20:18:07 +02:00
|
|
|
(goto-char (point-min)))
|
|
|
|
|
2013-08-25 19:17:04 +03:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; primitive chunk operations
|
2013-04-01 03:08:14 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-move-to-chunk (start end &optional minimal)
|
2013-04-14 01:09:13 +03:00
|
|
|
"Move to chunk determined by START END.
|
2013-08-26 00:39:51 +03:00
|
|
|
When given MINIMAL flag, skip non important operations.
|
|
|
|
If same as current chunk is requested, do nothing."
|
|
|
|
(unless (and (= start vlf-start-pos)
|
|
|
|
(= end vlf-end-pos))
|
|
|
|
(vlf-verify-size)
|
2013-12-09 01:55:41 +02:00
|
|
|
(if (vlf-move-to-chunk-1 start end)
|
|
|
|
(or minimal (vlf-update-buffer-name)))))
|
2013-08-25 19:17:04 +03:00
|
|
|
|
|
|
|
(defun vlf-move-to-chunk-1 (start end)
|
2013-08-26 00:39:51 +03:00
|
|
|
"Move to chunk determined by START END keeping as much edits if any.
|
2013-08-25 19:17:04 +03:00
|
|
|
Return t if move hasn't been canceled."
|
2013-12-03 02:37:13 +02:00
|
|
|
(let ((modified (buffer-modified-p))
|
|
|
|
(start (max 0 start))
|
|
|
|
(end (min end vlf-file-size))
|
|
|
|
(edit-end (+ (position-bytes (point-max)) vlf-start-pos)))
|
|
|
|
(cond
|
|
|
|
((and (= start vlf-start-pos) (= end edit-end))
|
|
|
|
(unless modified
|
|
|
|
(vlf-move-to-chunk-2 start end)
|
|
|
|
t))
|
|
|
|
((or (<= edit-end start) (<= end vlf-start-pos))
|
|
|
|
(when (or (not modified)
|
|
|
|
(y-or-n-p "Chunk modified, are you sure? ")) ;full chunk renewal
|
2013-12-09 01:55:41 +02:00
|
|
|
(set-buffer-modified-p nil)
|
2013-12-03 02:37:13 +02:00
|
|
|
(vlf-move-to-chunk-2 start end)
|
|
|
|
t))
|
|
|
|
((or (and (<= start vlf-start-pos) (<= edit-end end))
|
|
|
|
(not modified)
|
|
|
|
(y-or-n-p "Chunk modified, are you sure? "))
|
|
|
|
(let ((pos (+ (position-bytes (point)) vlf-start-pos))
|
|
|
|
(shift-start 0)
|
|
|
|
(shift-end 0)
|
|
|
|
(inhibit-read-only t))
|
|
|
|
(cond ((< end edit-end)
|
2013-12-09 01:55:41 +02:00
|
|
|
(let* ((del-pos (1+ (byte-to-position
|
|
|
|
(- end vlf-start-pos))))
|
|
|
|
(del-len (length (encode-coding-region
|
|
|
|
del-pos (point-max)
|
|
|
|
buffer-file-coding-system
|
|
|
|
t))))
|
2013-12-11 12:01:26 +02:00
|
|
|
(setq end (- (if (zerop vlf-end-pos)
|
|
|
|
vlf-file-size
|
|
|
|
vlf-end-pos)
|
|
|
|
del-len))
|
2013-12-09 01:55:41 +02:00
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(delete-region del-pos (point-max)))))
|
2013-12-03 02:37:13 +02:00
|
|
|
((< edit-end end)
|
|
|
|
(let ((edit-end-pos (point-max)))
|
|
|
|
(goto-char edit-end-pos)
|
2013-12-08 17:22:23 +02:00
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(insert-file-contents buffer-file-name nil
|
|
|
|
vlf-end-pos end)
|
|
|
|
(setq shift-end (cdr (vlf-adjust-chunk
|
|
|
|
vlf-end-pos end nil t
|
|
|
|
edit-end-pos)))))))
|
2013-12-03 02:37:13 +02:00
|
|
|
(cond ((< vlf-start-pos start)
|
2013-12-09 01:55:41 +02:00
|
|
|
(let* ((del-pos (1+ (byte-to-position
|
|
|
|
(- start vlf-start-pos))))
|
|
|
|
(del-len (length (encode-coding-region
|
|
|
|
(point-min) del-pos
|
|
|
|
buffer-file-coding-system
|
|
|
|
t))))
|
|
|
|
(setq start (+ vlf-start-pos del-len))
|
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(delete-region (point-min) del-pos))))
|
2013-12-03 02:37:13 +02:00
|
|
|
((< start vlf-start-pos)
|
|
|
|
(let ((edit-end-pos (point-max)))
|
|
|
|
(goto-char edit-end-pos)
|
2013-12-08 17:22:23 +02:00
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(insert-file-contents buffer-file-name nil
|
|
|
|
start vlf-start-pos)
|
|
|
|
(setq shift-start (car
|
|
|
|
(vlf-adjust-chunk start
|
|
|
|
vlf-start-pos
|
|
|
|
t nil
|
|
|
|
edit-end-pos)))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(insert (delete-and-extract-region edit-end-pos
|
|
|
|
(point-max)))))))
|
2013-12-11 02:51:46 +02:00
|
|
|
(setq start (- start shift-start))
|
|
|
|
(goto-char (or (byte-to-position (- pos start))
|
|
|
|
(byte-to-position (- pos vlf-start-pos))
|
|
|
|
(point-max)))
|
|
|
|
(setq vlf-start-pos start
|
|
|
|
vlf-end-pos (+ end shift-end)))
|
2013-12-03 02:37:13 +02:00
|
|
|
(set-buffer-modified-p modified)
|
|
|
|
t))))
|
2013-08-25 19:17:04 +03:00
|
|
|
|
|
|
|
(defun vlf-move-to-chunk-2 (start end)
|
2013-08-26 00:39:51 +03:00
|
|
|
"Unconditionally move to chunk determined by START END."
|
2013-12-04 14:40:07 +02:00
|
|
|
(setq vlf-start-pos (max 0 start)
|
|
|
|
vlf-end-pos (min end vlf-file-size))
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
(pos (position-bytes (point))))
|
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(erase-buffer)
|
|
|
|
(insert-file-contents buffer-file-name nil
|
|
|
|
vlf-start-pos vlf-end-pos)
|
|
|
|
(let ((shifts (vlf-adjust-chunk vlf-start-pos vlf-end-pos t
|
|
|
|
t)))
|
|
|
|
(setq vlf-start-pos (- vlf-start-pos (car shifts))
|
|
|
|
vlf-end-pos (+ vlf-end-pos (cdr shifts)))
|
|
|
|
(goto-char (or (byte-to-position (+ pos (car shifts)))
|
|
|
|
(point-max))))))
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(set-visited-file-modtime))
|
2013-08-25 19:17:04 +03:00
|
|
|
|
|
|
|
(defun vlf-adjust-chunk (start end &optional adjust-start adjust-end
|
2013-12-02 02:08:24 +02:00
|
|
|
position)
|
2013-12-08 21:04:26 +02:00
|
|
|
"Adjust chunk at absolute START to END till content can be\
|
2013-08-25 19:17:04 +03:00
|
|
|
properly decoded. ADJUST-START determines if trying to prepend bytes\
|
2013-12-08 17:21:34 +02:00
|
|
|
to the beginning, ADJUST-END - append to the end.
|
2013-08-25 19:17:04 +03:00
|
|
|
Use buffer POSITION as start if given.
|
|
|
|
Return number of bytes moved back for proper decoding and number of
|
|
|
|
bytes added to the end."
|
2013-12-08 21:04:26 +02:00
|
|
|
(let ((shift-start 0)
|
|
|
|
(shift-end 0))
|
2013-08-25 19:17:04 +03:00
|
|
|
(if adjust-start
|
2013-12-08 21:04:26 +02:00
|
|
|
(let ((position (or position (point-min)))
|
|
|
|
(chunk-size (- end start)))
|
|
|
|
(while (and (not (zerop start))
|
|
|
|
(< shift-start 4)
|
|
|
|
(< 4 (abs (- chunk-size
|
|
|
|
(length (encode-coding-region
|
|
|
|
position (point-max)
|
|
|
|
buffer-file-coding-system
|
|
|
|
t))))))
|
|
|
|
(setq shift-start (1+ shift-start)
|
|
|
|
start (1- start)
|
|
|
|
chunk-size (1+ chunk-size))
|
|
|
|
(delete-region position (point-max))
|
|
|
|
(goto-char position)
|
|
|
|
(insert-file-contents buffer-file-name nil start end))))
|
|
|
|
(if adjust-end
|
|
|
|
(cond ((vlf-partial-decode-shown-p) ;remove raw bytes from end
|
|
|
|
(goto-char (point-max))
|
|
|
|
(while (eq (char-charset (preceding-char)) 'eight-bit)
|
|
|
|
(setq shift-end (1- shift-end))
|
|
|
|
(delete-char -1)))
|
|
|
|
((< end vlf-file-size) ;add bytes until new character is displayed
|
|
|
|
(let ((position (or position (point-min)))
|
|
|
|
(expected-size (buffer-size)))
|
|
|
|
(while (and (progn
|
|
|
|
(setq shift-end (1+ shift-end)
|
|
|
|
end (1+ end))
|
|
|
|
(delete-region position (point-max))
|
|
|
|
(goto-char position)
|
|
|
|
(insert-file-contents buffer-file-name
|
|
|
|
nil start end)
|
|
|
|
(< end vlf-file-size))
|
|
|
|
(= expected-size (buffer-size))))))))
|
2013-08-25 19:17:04 +03:00
|
|
|
(cons shift-start shift-end)))
|
2013-04-14 19:48:02 +03:00
|
|
|
|
2013-12-08 21:04:26 +02:00
|
|
|
(defun vlf-partial-decode-shown-p ()
|
|
|
|
"Determine if partial decode codes are displayed.
|
|
|
|
This seems to be the case with GNU/Emacs before 24.4."
|
|
|
|
(cond ((< emacs-major-version 24) t)
|
|
|
|
((< 24 emacs-major-version) nil)
|
|
|
|
(t ;; TODO: use (< emacs-minor-version 4) after 24.4 release
|
|
|
|
(string-lessp emacs-version "24.3.5"))))
|
|
|
|
|
2013-04-13 22:49:08 +03:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2013-04-01 03:09:32 +03:00
|
|
|
;;; search
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-re-search (regexp count backward batch-step)
|
2013-05-01 02:18:37 +03:00
|
|
|
"Search for REGEXP COUNT number of times forward or BACKWARD.
|
|
|
|
BATCH-STEP is amount of overlap between successive chunks."
|
2013-08-26 12:29:39 +03:00
|
|
|
(if (<= count 0)
|
|
|
|
(error "Count must be positive"))
|
2013-12-03 01:50:03 +02:00
|
|
|
(let* ((case-fold-search t)
|
|
|
|
(match-chunk-start vlf-start-pos)
|
2013-08-25 17:57:43 +03:00
|
|
|
(match-chunk-end vlf-end-pos)
|
|
|
|
(match-start-pos (+ vlf-start-pos (position-bytes (point))))
|
2013-04-13 22:36:33 +03:00
|
|
|
(match-end-pos match-start-pos)
|
|
|
|
(to-find count)
|
2013-04-16 02:16:03 +03:00
|
|
|
(reporter (make-progress-reporter
|
|
|
|
(concat "Searching for " regexp "...")
|
|
|
|
(if backward
|
2013-08-25 17:57:43 +03:00
|
|
|
(- vlf-file-size vlf-end-pos)
|
|
|
|
vlf-start-pos)
|
|
|
|
vlf-file-size)))
|
2013-12-02 02:08:24 +02:00
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(unwind-protect
|
|
|
|
(catch 'end-of-file
|
|
|
|
(if backward
|
|
|
|
(while (not (zerop to-find))
|
|
|
|
(cond ((re-search-backward regexp nil t)
|
|
|
|
(setq to-find (1- to-find)
|
|
|
|
match-chunk-start vlf-start-pos
|
|
|
|
match-chunk-end vlf-end-pos
|
|
|
|
match-start-pos (+ vlf-start-pos
|
|
|
|
(position-bytes
|
|
|
|
(match-beginning 0)))
|
|
|
|
match-end-pos (+ vlf-start-pos
|
|
|
|
(position-bytes
|
|
|
|
(match-end 0)))))
|
|
|
|
((zerop vlf-start-pos)
|
|
|
|
(throw 'end-of-file nil))
|
|
|
|
(t (let ((batch-move (- vlf-start-pos
|
|
|
|
(- vlf-batch-size
|
|
|
|
batch-step))))
|
|
|
|
(vlf-move-to-batch
|
|
|
|
(if (< match-start-pos batch-move)
|
|
|
|
(- match-start-pos vlf-batch-size)
|
|
|
|
batch-move) t))
|
|
|
|
(goto-char (if (< match-start-pos
|
|
|
|
vlf-end-pos)
|
|
|
|
(or (byte-to-position
|
|
|
|
(- match-start-pos
|
|
|
|
vlf-start-pos))
|
|
|
|
(point-max))
|
|
|
|
(point-max)))
|
|
|
|
(progress-reporter-update
|
|
|
|
reporter (- vlf-file-size
|
|
|
|
vlf-start-pos)))))
|
|
|
|
(while (not (zerop to-find))
|
|
|
|
(cond ((re-search-forward regexp nil t)
|
|
|
|
(setq to-find (1- to-find)
|
|
|
|
match-chunk-start vlf-start-pos
|
|
|
|
match-chunk-end vlf-end-pos
|
|
|
|
match-start-pos (+ vlf-start-pos
|
|
|
|
(position-bytes
|
|
|
|
(match-beginning 0)))
|
|
|
|
match-end-pos (+ vlf-start-pos
|
|
|
|
(position-bytes
|
|
|
|
(match-end 0)))))
|
|
|
|
((= vlf-end-pos vlf-file-size)
|
|
|
|
(throw 'end-of-file nil))
|
|
|
|
(t (let ((batch-move (- vlf-end-pos batch-step)))
|
|
|
|
(vlf-move-to-batch
|
|
|
|
(if (< batch-move match-end-pos)
|
|
|
|
match-end-pos
|
|
|
|
batch-move) t))
|
|
|
|
(goto-char (if (< vlf-start-pos match-end-pos)
|
|
|
|
(or (byte-to-position
|
|
|
|
(- match-end-pos
|
|
|
|
vlf-start-pos))
|
|
|
|
(point-min))
|
|
|
|
(point-min)))
|
|
|
|
(progress-reporter-update reporter
|
|
|
|
vlf-end-pos)))))
|
|
|
|
(progress-reporter-done reporter))
|
2013-12-04 13:59:08 +02:00
|
|
|
(set-buffer-modified-p nil)
|
2013-12-02 02:08:24 +02:00
|
|
|
(if backward
|
|
|
|
(vlf-goto-match match-chunk-start match-chunk-end
|
2013-04-15 00:57:10 +03:00
|
|
|
match-end-pos match-start-pos
|
2013-04-13 22:36:33 +03:00
|
|
|
count to-find)
|
2013-12-02 02:08:24 +02:00
|
|
|
(vlf-goto-match match-chunk-start match-chunk-end
|
2013-04-15 00:57:10 +03:00
|
|
|
match-start-pos match-end-pos
|
2013-12-02 02:08:24 +02:00
|
|
|
count to-find))))))
|
2013-04-01 12:57:58 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-goto-match (match-chunk-start match-chunk-end
|
2013-12-02 02:08:24 +02:00
|
|
|
match-pos-start
|
|
|
|
match-pos-end
|
|
|
|
count to-find)
|
2013-04-15 00:57:10 +03:00
|
|
|
"Move to MATCH-CHUNK-START MATCH-CHUNK-END surrounding \
|
|
|
|
MATCH-POS-START and MATCH-POS-END.
|
2013-04-01 14:38:50 +03:00
|
|
|
According to COUNT and left TO-FIND, show if search has been
|
2013-04-01 03:09:32 +03:00
|
|
|
successful. Return nil if nothing found."
|
2013-04-15 00:57:10 +03:00
|
|
|
(if (= count to-find)
|
2013-08-25 17:57:43 +03:00
|
|
|
(progn (vlf-move-to-chunk match-chunk-start match-chunk-end)
|
2013-04-15 00:57:10 +03:00
|
|
|
(goto-char (or (byte-to-position (- match-pos-start
|
2013-08-25 17:57:43 +03:00
|
|
|
vlf-start-pos))
|
2013-04-15 00:57:10 +03:00
|
|
|
(point-max)))
|
|
|
|
(message "Not found")
|
|
|
|
nil)
|
|
|
|
(let ((success (zerop to-find)))
|
|
|
|
(if success
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-update-buffer-name)
|
|
|
|
(vlf-move-to-chunk match-chunk-start match-chunk-end))
|
2013-04-15 00:57:10 +03:00
|
|
|
(let* ((match-end (or (byte-to-position (- match-pos-end
|
2013-08-25 17:57:43 +03:00
|
|
|
vlf-start-pos))
|
2013-04-15 00:57:10 +03:00
|
|
|
(point-max)))
|
|
|
|
(overlay (make-overlay (byte-to-position
|
|
|
|
(- match-pos-start
|
2013-08-25 17:57:43 +03:00
|
|
|
vlf-start-pos))
|
2013-04-15 00:57:10 +03:00
|
|
|
match-end)))
|
2013-04-16 12:25:06 +03:00
|
|
|
(overlay-put overlay 'face 'match)
|
2013-04-15 00:57:10 +03:00
|
|
|
(unless success
|
|
|
|
(goto-char match-end)
|
|
|
|
(message "Moved to the %d match which is last"
|
|
|
|
(- count to-find)))
|
2013-12-04 00:20:02 +02:00
|
|
|
(unwind-protect (sit-for 3)
|
2013-08-26 12:03:18 +03:00
|
|
|
(delete-overlay overlay))
|
2013-04-15 00:57:10 +03:00
|
|
|
t))))
|
2013-04-01 03:09:32 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-re-search-forward (regexp count)
|
2013-04-10 02:10:00 +03:00
|
|
|
"Search forward for REGEXP prefix COUNT number of times.
|
2013-08-25 17:57:43 +03:00
|
|
|
Search is performed chunk by chunk in `vlf-batch-size' memory."
|
2013-12-04 00:03:29 +02:00
|
|
|
(interactive (if (vlf-no-modifications)
|
|
|
|
(list (read-regexp "Search whole file"
|
|
|
|
(if regexp-history
|
|
|
|
(car regexp-history)))
|
|
|
|
(or current-prefix-arg 1))))
|
|
|
|
(vlf-re-search regexp count nil (/ vlf-batch-size 8)))
|
2013-03-29 18:12:20 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-re-search-backward (regexp count)
|
2013-04-10 02:10:00 +03:00
|
|
|
"Search backward for REGEXP prefix COUNT number of times.
|
2013-08-25 17:57:43 +03:00
|
|
|
Search is performed chunk by chunk in `vlf-batch-size' memory."
|
2013-12-04 00:03:29 +02:00
|
|
|
(interactive (if (vlf-no-modifications)
|
|
|
|
(list (read-regexp "Search whole file backward"
|
|
|
|
(if regexp-history
|
|
|
|
(car regexp-history)))
|
|
|
|
(or current-prefix-arg 1))))
|
|
|
|
(vlf-re-search regexp count t (/ vlf-batch-size 8)))
|
2013-03-29 18:12:20 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-goto-line (n)
|
2013-05-02 14:18:41 +03:00
|
|
|
"Go to line N. If N is negative, count from the end of file."
|
2013-12-04 00:03:29 +02:00
|
|
|
(interactive (if (vlf-no-modifications)
|
|
|
|
(list (read-number "Go to line: "))))
|
|
|
|
(let ((start-pos vlf-start-pos)
|
|
|
|
(end-pos vlf-end-pos)
|
|
|
|
(pos (point))
|
|
|
|
(success nil))
|
|
|
|
(unwind-protect
|
|
|
|
(if (< 0 n)
|
|
|
|
(progn (vlf-beginning-of-file)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(setq success (vlf-re-search "[\n\C-m]" (1- n)
|
|
|
|
nil 0)))
|
|
|
|
(vlf-end-of-file)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(setq success (vlf-re-search "[\n\C-m]" (- n) t 0)))
|
|
|
|
(if success
|
|
|
|
(message "Onto line %s" n)
|
|
|
|
(vlf-move-to-chunk start-pos end-pos)
|
|
|
|
(goto-char pos)))))
|
2013-04-14 02:18:06 +03:00
|
|
|
|
2013-04-16 02:16:03 +03:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; occur
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defvar vlf-occur-mode-map
|
2013-04-16 12:25:06 +03:00
|
|
|
(let ((map (make-sparse-keymap)))
|
2013-08-25 17:57:43 +03:00
|
|
|
(define-key map "n" 'vlf-occur-next-match)
|
|
|
|
(define-key map "p" 'vlf-occur-prev-match)
|
|
|
|
(define-key map "\C-m" 'vlf-occur-visit)
|
2013-12-04 00:15:31 +02:00
|
|
|
(define-key map "\M-\r" 'vlf-occur-visit-new-buffer)
|
2013-08-25 17:57:43 +03:00
|
|
|
(define-key map [mouse-1] 'vlf-occur-visit)
|
|
|
|
(define-key map "o" 'vlf-occur-show)
|
2013-04-16 12:25:06 +03:00
|
|
|
map)
|
2013-08-25 17:57:43 +03:00
|
|
|
"Keymap for command `vlf-occur-mode'.")
|
2013-04-16 12:25:06 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(define-derived-mode vlf-occur-mode special-mode "VLF[occur]"
|
|
|
|
"Major mode for showing occur matches of VLF opened files.")
|
2013-04-16 12:25:06 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-occur-next-match ()
|
2013-04-16 12:25:06 +03:00
|
|
|
"Move cursor to next match."
|
|
|
|
(interactive)
|
|
|
|
(if (eq (get-char-property (point) 'face) 'match)
|
|
|
|
(goto-char (next-single-property-change (point) 'face)))
|
|
|
|
(goto-char (or (text-property-any (point) (point-max) 'face 'match)
|
|
|
|
(text-property-any (point-min) (point)
|
|
|
|
'face 'match))))
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-occur-prev-match ()
|
2013-04-16 12:25:06 +03:00
|
|
|
"Move cursor to previous match."
|
|
|
|
(interactive)
|
|
|
|
(if (eq (get-char-property (point) 'face) 'match)
|
|
|
|
(goto-char (previous-single-property-change (point) 'face)))
|
|
|
|
(while (not (eq (get-char-property (point) 'face) 'match))
|
|
|
|
(goto-char (or (previous-single-property-change (point) 'face)
|
|
|
|
(point-max)))))
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-occur-show (&optional event)
|
|
|
|
"Visit current `vlf-occur' link in a vlf buffer but stay in the \
|
|
|
|
occur buffer. If original VLF buffer has been killed,
|
|
|
|
open new VLF session each time.
|
2013-04-17 11:53:49 +03:00
|
|
|
EVENT may hold details of the invocation."
|
|
|
|
(interactive (list last-nonmenu-event))
|
|
|
|
(let ((occur-buffer (if event
|
|
|
|
(window-buffer (posn-window
|
|
|
|
(event-end event)))
|
|
|
|
(current-buffer))))
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-occur-visit event)
|
2013-04-17 11:53:49 +03:00
|
|
|
(pop-to-buffer occur-buffer)))
|
|
|
|
|
2013-12-04 00:15:31 +02:00
|
|
|
(defun vlf-occur-visit-new-buffer ()
|
|
|
|
"Visit `vlf-occur' link in new vlf buffer."
|
|
|
|
(interactive)
|
|
|
|
(let ((current-prefix-arg t))
|
|
|
|
(vlf-occur-visit)))
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-occur-visit (&optional event)
|
|
|
|
"Visit current `vlf-occur' link in a vlf buffer.
|
2013-12-04 00:15:31 +02:00
|
|
|
With prefix argument or if original VLF buffer has been killed,
|
|
|
|
open new VLF session.
|
2013-04-17 11:54:12 +03:00
|
|
|
EVENT may hold details of the invocation."
|
2013-04-16 14:29:42 +03:00
|
|
|
(interactive (list last-nonmenu-event))
|
|
|
|
(when event
|
2013-04-17 11:54:12 +03:00
|
|
|
(set-buffer (window-buffer (posn-window (event-end event))))
|
2013-04-16 14:29:42 +03:00
|
|
|
(goto-char (posn-point (event-end event))))
|
|
|
|
(let* ((pos (point))
|
2013-04-16 15:38:36 +03:00
|
|
|
(pos-relative (- pos (line-beginning-position) 1))
|
2013-04-16 14:29:42 +03:00
|
|
|
(file (get-char-property pos 'file)))
|
|
|
|
(if file
|
|
|
|
(let ((chunk-start (get-char-property pos 'chunk-start))
|
|
|
|
(chunk-end (get-char-property pos 'chunk-end))
|
2013-12-04 00:15:31 +02:00
|
|
|
(vlf-buffer (get-char-property pos 'buffer))
|
|
|
|
(occur-buffer (current-buffer))
|
2013-04-23 00:53:54 +03:00
|
|
|
(match-pos (+ (get-char-property pos 'line-pos)
|
|
|
|
pos-relative)))
|
2013-12-04 00:15:31 +02:00
|
|
|
(cond (current-prefix-arg
|
|
|
|
(setq vlf-buffer (vlf file))
|
|
|
|
(switch-to-buffer occur-buffer))
|
|
|
|
((not (buffer-live-p vlf-buffer))
|
|
|
|
(or (catch 'found
|
|
|
|
(dolist (buf (buffer-list))
|
|
|
|
(set-buffer buf)
|
|
|
|
(and vlf-mode (equal file buffer-file-name)
|
|
|
|
(setq vlf-buffer buf)
|
|
|
|
(throw 'found t))))
|
|
|
|
(setq vlf-buffer (vlf file)))
|
|
|
|
(switch-to-buffer occur-buffer)))
|
|
|
|
(pop-to-buffer vlf-buffer)
|
2013-08-25 19:17:04 +03:00
|
|
|
(vlf-move-to-chunk chunk-start chunk-end)
|
|
|
|
(goto-char match-pos)))))
|
2013-04-16 14:29:42 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-occur (regexp)
|
2013-04-17 11:54:12 +03:00
|
|
|
"Make whole file occur style index for REGEXP.
|
|
|
|
Prematurely ending indexing will still show what's found so far."
|
2013-04-16 02:16:03 +03:00
|
|
|
(interactive (list (read-regexp "List lines matching regexp"
|
|
|
|
(if regexp-history
|
|
|
|
(car regexp-history)))))
|
2013-12-03 02:04:27 +02:00
|
|
|
(if (buffer-modified-p) ;use temporary buffer not to interfere with modifications
|
2013-12-03 01:50:03 +02:00
|
|
|
(let ((vlf-buffer (current-buffer))
|
|
|
|
(file buffer-file-name)
|
|
|
|
(batch-size vlf-batch-size))
|
|
|
|
(with-temp-buffer
|
|
|
|
(setq buffer-file-name file)
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(set (make-local-variable 'vlf-batch-size) batch-size)
|
|
|
|
(vlf-mode 1)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(vlf-build-occur regexp vlf-buffer))))
|
|
|
|
(let ((start-pos vlf-start-pos)
|
|
|
|
(end-pos vlf-end-pos)
|
|
|
|
(pos (point)))
|
|
|
|
(vlf-beginning-of-file)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(vlf-with-undo-disabled
|
|
|
|
(unwind-protect (vlf-build-occur regexp (current-buffer))
|
|
|
|
(vlf-move-to-chunk start-pos end-pos)
|
|
|
|
(goto-char pos))))))
|
|
|
|
|
|
|
|
(defun vlf-build-occur (regexp vlf-buffer)
|
2013-12-04 00:20:02 +02:00
|
|
|
"Build occur style index for REGEXP over VLF-BUFFER."
|
2013-12-03 01:50:03 +02:00
|
|
|
(let ((case-fold-search t)
|
|
|
|
(line 1)
|
2013-04-16 14:29:42 +03:00
|
|
|
(last-match-line 0)
|
2013-04-16 02:16:03 +03:00
|
|
|
(last-line-pos (point-min))
|
|
|
|
(file buffer-file-name)
|
2013-04-16 15:51:30 +03:00
|
|
|
(total-matches 0)
|
2013-08-25 17:57:43 +03:00
|
|
|
(match-end-pos (+ vlf-start-pos (position-bytes (point))))
|
2013-04-16 02:16:03 +03:00
|
|
|
(occur-buffer (generate-new-buffer
|
2013-08-25 17:57:43 +03:00
|
|
|
(concat "*VLF-occur " (file-name-nondirectory
|
2013-12-02 02:08:24 +02:00
|
|
|
buffer-file-name)
|
2013-04-16 02:16:03 +03:00
|
|
|
"*")))
|
|
|
|
(line-regexp (concat "\\(?5:[\n\C-m]\\)\\|\\(?10:"
|
|
|
|
regexp "\\)"))
|
2013-08-25 17:57:43 +03:00
|
|
|
(batch-step (/ vlf-batch-size 8))
|
2013-04-23 00:53:54 +03:00
|
|
|
(end-of-file nil)
|
2013-04-16 02:16:03 +03:00
|
|
|
(reporter (make-progress-reporter
|
|
|
|
(concat "Building index for " regexp "...")
|
2013-08-25 17:57:43 +03:00
|
|
|
vlf-start-pos vlf-file-size)))
|
2013-04-16 02:16:03 +03:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2013-04-23 00:53:54 +03:00
|
|
|
(while (not end-of-file)
|
2013-04-16 02:16:03 +03:00
|
|
|
(if (re-search-forward line-regexp nil t)
|
|
|
|
(progn
|
2013-08-25 17:57:43 +03:00
|
|
|
(setq match-end-pos (+ vlf-start-pos
|
2013-04-16 02:16:03 +03:00
|
|
|
(position-bytes
|
|
|
|
(match-end 0))))
|
|
|
|
(if (match-string 5)
|
2013-04-17 11:54:12 +03:00
|
|
|
(setq line (1+ line) ; line detected
|
2013-04-16 02:16:03 +03:00
|
|
|
last-line-pos (point))
|
2013-08-25 17:57:43 +03:00
|
|
|
(let* ((chunk-start vlf-start-pos)
|
|
|
|
(chunk-end vlf-end-pos)
|
2013-04-16 14:29:42 +03:00
|
|
|
(line-pos (line-beginning-position))
|
|
|
|
(line-text (buffer-substring
|
|
|
|
line-pos (line-end-position))))
|
2013-04-16 02:16:03 +03:00
|
|
|
(with-current-buffer occur-buffer
|
2013-04-17 11:54:12 +03:00
|
|
|
(unless (= line last-match-line) ;new match line
|
|
|
|
(insert "\n:") ; insert line number
|
2013-04-16 15:38:36 +03:00
|
|
|
(let* ((overlay-pos (1- (point)))
|
|
|
|
(overlay (make-overlay
|
|
|
|
overlay-pos
|
|
|
|
(1+ overlay-pos))))
|
|
|
|
(overlay-put overlay 'before-string
|
|
|
|
(propertize
|
|
|
|
(number-to-string line)
|
|
|
|
'face 'shadow)))
|
2013-04-17 11:54:12 +03:00
|
|
|
(insert (propertize line-text ; insert line
|
2013-04-16 15:38:36 +03:00
|
|
|
'file file
|
2013-08-25 17:57:43 +03:00
|
|
|
'buffer vlf-buffer
|
2013-04-16 15:38:36 +03:00
|
|
|
'chunk-start chunk-start
|
|
|
|
'chunk-end chunk-end
|
|
|
|
'mouse-face '(highlight)
|
2013-04-16 15:51:30 +03:00
|
|
|
'line-pos line-pos
|
|
|
|
'help-echo
|
|
|
|
(format "Move to line %d"
|
|
|
|
line))))
|
|
|
|
(setq last-match-line line
|
|
|
|
total-matches (1+ total-matches))
|
2013-04-23 00:53:54 +03:00
|
|
|
(let ((line-start (1+
|
|
|
|
(line-beginning-position)))
|
2013-04-16 14:29:42 +03:00
|
|
|
(match-pos (match-beginning 10)))
|
2013-04-17 11:54:12 +03:00
|
|
|
(add-text-properties ; mark match
|
2013-04-16 14:29:42 +03:00
|
|
|
(+ line-start match-pos (- last-line-pos))
|
2013-04-16 02:16:03 +03:00
|
|
|
(+ line-start (match-end 10)
|
|
|
|
(- last-line-pos))
|
2013-04-23 00:53:54 +03:00
|
|
|
(list 'face 'match
|
2013-04-16 15:51:30 +03:00
|
|
|
'help-echo
|
|
|
|
(format "Move to match %d"
|
|
|
|
total-matches))))))))
|
2013-08-25 17:57:43 +03:00
|
|
|
(setq end-of-file (= vlf-end-pos vlf-file-size))
|
2013-04-23 00:53:54 +03:00
|
|
|
(unless end-of-file
|
2013-08-25 17:57:43 +03:00
|
|
|
(let ((batch-move (- vlf-end-pos batch-step)))
|
|
|
|
(vlf-move-to-batch (if (< batch-move match-end-pos)
|
2013-12-02 02:08:24 +02:00
|
|
|
match-end-pos
|
|
|
|
batch-move) t))
|
2013-08-25 17:57:43 +03:00
|
|
|
(goto-char (if (< vlf-start-pos match-end-pos)
|
2013-04-23 00:53:54 +03:00
|
|
|
(or (byte-to-position (- match-end-pos
|
2013-08-25 17:57:43 +03:00
|
|
|
vlf-start-pos))
|
2013-04-23 00:53:54 +03:00
|
|
|
(point-min))
|
|
|
|
(point-min)))
|
|
|
|
(setq last-match-line 0
|
|
|
|
last-line-pos (line-beginning-position))
|
2013-08-25 17:57:43 +03:00
|
|
|
(progress-reporter-update reporter vlf-end-pos))))
|
2013-04-16 02:16:03 +03:00
|
|
|
(progress-reporter-done reporter))
|
2013-12-04 13:59:08 +02:00
|
|
|
(set-buffer-modified-p nil)
|
2013-04-16 15:51:30 +03:00
|
|
|
(if (zerop total-matches)
|
|
|
|
(progn (with-current-buffer occur-buffer
|
|
|
|
(set-buffer-modified-p nil))
|
|
|
|
(kill-buffer occur-buffer)
|
|
|
|
(message "No matches for \"%s\"" regexp))
|
|
|
|
(with-current-buffer occur-buffer
|
|
|
|
(goto-char (point-min))
|
2013-04-16 02:16:03 +03:00
|
|
|
(insert (propertize
|
2013-12-03 01:50:03 +02:00
|
|
|
(format "%d matches in %d lines for \"%s\" \
|
2013-04-16 15:51:30 +03:00
|
|
|
in file: %s" total-matches line regexp file)
|
|
|
|
'face 'underline))
|
|
|
|
(set-buffer-modified-p nil)
|
2013-04-17 11:54:12 +03:00
|
|
|
(forward-char 2)
|
2013-08-25 17:57:43 +03:00
|
|
|
(vlf-occur-mode))
|
2013-04-16 15:51:30 +03:00
|
|
|
(display-buffer occur-buffer)))))
|
2013-04-16 02:16:03 +03:00
|
|
|
|
2013-04-13 22:49:08 +03:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; saving
|
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-write ()
|
2013-04-13 22:49:08 +03:00
|
|
|
"Write current chunk to file. Always return true to disable save.
|
2013-08-06 02:11:21 +03:00
|
|
|
If changing size of chunk, shift remaining file content."
|
2013-04-13 22:49:08 +03:00
|
|
|
(interactive)
|
2013-12-13 02:32:30 +02:00
|
|
|
(and (buffer-modified-p)
|
|
|
|
(or (verify-visited-file-modtime (current-buffer))
|
|
|
|
(y-or-n-p "File has changed since visited or saved. \
|
|
|
|
Save anyway? "))
|
|
|
|
(if (zerop vlf-file-size) ;new file
|
|
|
|
(progn
|
|
|
|
(write-region nil nil buffer-file-name vlf-start-pos t)
|
|
|
|
(setq vlf-file-size (vlf-get-file-size
|
|
|
|
buffer-file-truename)
|
|
|
|
vlf-end-pos vlf-file-size)
|
|
|
|
(vlf-update-buffer-name))
|
|
|
|
(let* ((region-length (length (encode-coding-region
|
|
|
|
(point-min) (point-max)
|
|
|
|
buffer-file-coding-system t)))
|
|
|
|
(size-change (- vlf-end-pos vlf-start-pos
|
|
|
|
region-length)))
|
|
|
|
(if (zerop size-change)
|
|
|
|
(write-region nil nil buffer-file-name vlf-start-pos t)
|
|
|
|
(let ((pos (point)))
|
|
|
|
(if (< 0 size-change)
|
|
|
|
(vlf-file-shift-back size-change)
|
2013-12-13 17:08:13 +02:00
|
|
|
(vlf-file-shift-forward (- size-change))
|
|
|
|
(vlf-verify-size))
|
2013-12-13 02:32:30 +02:00
|
|
|
(vlf-move-to-chunk-2 vlf-start-pos
|
|
|
|
(if (< (- vlf-end-pos vlf-start-pos)
|
|
|
|
vlf-batch-size)
|
|
|
|
(+ vlf-start-pos vlf-batch-size)
|
|
|
|
vlf-end-pos))
|
|
|
|
(vlf-update-buffer-name)
|
|
|
|
(goto-char pos))))))
|
2013-05-04 23:53:17 +03:00
|
|
|
t)
|
2013-04-13 22:49:08 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-file-shift-back (size-change)
|
2013-04-13 20:47:29 +03:00
|
|
|
"Shift file contents SIZE-CHANGE bytes back."
|
2013-08-25 17:57:43 +03:00
|
|
|
(write-region nil nil buffer-file-name vlf-start-pos t)
|
2013-12-04 14:40:07 +02:00
|
|
|
(let ((read-start-pos vlf-end-pos)
|
|
|
|
(coding-system-for-write 'no-conversion)
|
|
|
|
(reporter (make-progress-reporter "Adjusting file content..."
|
|
|
|
vlf-end-pos
|
|
|
|
vlf-file-size)))
|
|
|
|
(vlf-with-undo-disabled
|
2013-12-02 02:08:24 +02:00
|
|
|
(while (vlf-shift-batch read-start-pos (- read-start-pos
|
2013-04-14 18:19:49 +03:00
|
|
|
size-change))
|
2013-12-02 02:08:24 +02:00
|
|
|
(setq read-start-pos (+ read-start-pos vlf-batch-size))
|
|
|
|
(progress-reporter-update reporter read-start-pos))
|
|
|
|
;; pad end with space
|
|
|
|
(erase-buffer)
|
2013-12-13 17:08:13 +02:00
|
|
|
(vlf-verify-size)
|
2013-12-04 14:40:07 +02:00
|
|
|
(insert-char 32 size-change))
|
|
|
|
(write-region nil nil buffer-file-name (- vlf-file-size
|
|
|
|
size-change) t)
|
|
|
|
(progress-reporter-done reporter)))
|
2013-04-13 20:47:29 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-shift-batch (read-pos write-pos)
|
|
|
|
"Read `vlf-batch-size' bytes from READ-POS and write them \
|
2013-04-13 20:47:29 +03:00
|
|
|
back at WRITE-POS. Return nil if EOF is reached, t otherwise."
|
|
|
|
(erase-buffer)
|
2013-12-13 17:08:13 +02:00
|
|
|
(vlf-verify-size)
|
2013-08-25 17:57:43 +03:00
|
|
|
(let ((read-end (+ read-pos vlf-batch-size)))
|
2013-04-13 20:47:29 +03:00
|
|
|
(insert-file-contents-literally buffer-file-name nil
|
|
|
|
read-pos
|
2013-08-25 17:57:43 +03:00
|
|
|
(min vlf-file-size read-end))
|
2013-04-15 15:04:22 +03:00
|
|
|
(write-region nil nil buffer-file-name write-pos 0)
|
2013-08-25 17:57:43 +03:00
|
|
|
(< read-end vlf-file-size)))
|
2013-04-13 20:47:29 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(defun vlf-file-shift-forward (size-change)
|
2013-04-13 22:34:54 +03:00
|
|
|
"Shift file contents SIZE-CHANGE bytes forward.
|
|
|
|
Done by saving content up front and then writing previous batch."
|
2013-12-04 14:40:07 +02:00
|
|
|
(let ((read-size (max (/ vlf-batch-size 2) size-change))
|
|
|
|
(read-pos vlf-end-pos)
|
|
|
|
(write-pos vlf-start-pos)
|
|
|
|
(reporter (make-progress-reporter "Adjusting file content..."
|
|
|
|
vlf-start-pos
|
|
|
|
vlf-file-size)))
|
|
|
|
(vlf-with-undo-disabled
|
2013-12-02 02:08:24 +02:00
|
|
|
(when (vlf-shift-batches read-size read-pos write-pos t)
|
|
|
|
(setq write-pos (+ read-pos size-change)
|
|
|
|
read-pos (+ read-pos read-size))
|
|
|
|
(progress-reporter-update reporter write-pos)
|
|
|
|
(let ((coding-system-for-write 'no-conversion))
|
|
|
|
(while (vlf-shift-batches read-size read-pos write-pos nil)
|
|
|
|
(setq write-pos (+ read-pos size-change)
|
|
|
|
read-pos (+ read-pos read-size))
|
2013-12-04 14:40:07 +02:00
|
|
|
(progress-reporter-update reporter write-pos)))))
|
|
|
|
(progress-reporter-done reporter)))
|
2013-12-02 02:08:24 +02:00
|
|
|
|
|
|
|
(defun vlf-shift-batches (read-size read-pos write-pos hide-read)
|
|
|
|
"Append READ-SIZE bytes of file starting at READ-POS.
|
2013-04-15 23:38:14 +03:00
|
|
|
Then write initial buffer content to file at WRITE-POS.
|
|
|
|
If HIDE-READ is non nil, temporarily hide literal read content.
|
2013-04-13 22:34:54 +03:00
|
|
|
Return nil if EOF is reached, t otherwise."
|
2013-12-13 17:08:13 +02:00
|
|
|
(vlf-verify-size)
|
2013-08-25 17:57:43 +03:00
|
|
|
(let ((read-more (< read-pos vlf-file-size))
|
2013-04-15 23:38:14 +03:00
|
|
|
(start-write-pos (point-min))
|
|
|
|
(end-write-pos (point-max)))
|
2013-04-13 22:34:54 +03:00
|
|
|
(when read-more
|
2013-04-15 23:38:14 +03:00
|
|
|
(goto-char end-write-pos)
|
2013-04-13 22:34:54 +03:00
|
|
|
(insert-file-contents-literally buffer-file-name nil read-pos
|
2013-12-02 02:08:24 +02:00
|
|
|
(min vlf-file-size
|
|
|
|
(+ read-pos read-size))))
|
2013-04-13 22:34:54 +03:00
|
|
|
;; write
|
2013-04-15 23:38:14 +03:00
|
|
|
(if hide-read ; hide literal region if user has to choose encoding
|
|
|
|
(narrow-to-region start-write-pos end-write-pos))
|
|
|
|
(write-region start-write-pos end-write-pos
|
|
|
|
buffer-file-name write-pos 0)
|
|
|
|
(delete-region start-write-pos end-write-pos)
|
|
|
|
(if hide-read (widen))
|
2013-04-13 22:34:54 +03:00
|
|
|
read-more))
|
2013-04-11 17:44:32 +03:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
(provide 'vlf)
|
2013-01-12 17:05:25 +02:00
|
|
|
|
2013-08-25 17:57:43 +03:00
|
|
|
;;; vlf.el ends here
|