Mercurial > emacs
annotate lisp/sort.el @ 5531:c4f36c5ece61
(creating src/Makefile): Put code inside 2nd arg to AC_OUTPUT as it should
be; hopefully noone will again see fit to gratuitously break this and not
make a change log entry. Optimized sed processing of Makefile.in and cpp
output; now preserves comments previously removed from the cpp input.
Eliminated temp file for cpp output.
Generate -U switches to undefine all identifiers that appear in the
directory name ${srcdir}; pass these to cpp.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Sun, 09 Jan 1994 00:36:27 +0000 |
parents | 6eb86cda3856 |
children | cbd0de32e997 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; sort.el --- commands to sort text in an Emacs buffer. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
3 ;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Author: Howie Kaye |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
6 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: unix |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
8 |
70 | 9 ;; This file is part of GNU Emacs. |
10 | |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
70 | 14 ;; any later version. |
15 | |
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. | |
20 | |
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 | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
26 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
27 ;;; This package provides the sorting facilities documented in the Emacs |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
28 ;;; user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
29 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
30 ;;; Code: |
70 | 31 |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
32 (defvar sort-fold-case nil |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
33 "*Non-nil if the buffer sort functions should ignore case.") |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
34 |
70 | 35 (defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun) |
36 "General text sorting routine to divide buffer into records and sort them. | |
37 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. | |
38 | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
39 We divide the accessible portion of the buffer into disjoint pieces |
998 | 40 called sort records. A portion of each sort record (perhaps all of |
41 it) is designated as the sort key. The records are rearranged in the | |
42 buffer in order by their sort keys. The records may or may not be | |
43 contiguous. | |
70 | 44 |
45 Usually the records are rearranged in order of ascending sort key. | |
46 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
47 | |
48 The next four arguments are functions to be called to move point | |
49 across a sort record. They will be called many times from within sort-subr. | |
50 | |
51 NEXTRECFUN is called with point at the end of the previous record. | |
52 It moves point to the start of the next record. | |
53 It should move point to the end of the buffer if there are no more records. | |
54 The first record is assumed to start at the position of point when sort-subr | |
55 is called. | |
56 | |
1836 | 57 ENDRECFUN is called with point within the record. |
70 | 58 It should move point to the end of the record. |
59 | |
1836 | 60 STARTKEYFUN moves from the start of the record to the start of the key. |
61 It may return either a non-nil value to be used as the key, or | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
62 else the key is the substring between the values of point after |
135 | 63 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key |
64 starts at the beginning of the record. | |
70 | 65 |
66 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
67 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
68 same as ENDRECFUN." | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
69 ;; Heuristically try to avoid messages if sorting a small amt of text. |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
70 (let ((messages (> (- (point-max) (point-min)) 50000))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
71 (save-excursion |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
72 (if messages (message "Finding sort keys...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
73 (let* ((sort-lists (sort-build-lists nextrecfun endrecfun |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
74 startkeyfun endkeyfun)) |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
75 (old (reverse sort-lists)) |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
76 (case-fold-search sort-fold-case)) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
77 (if (null sort-lists) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
78 () |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
79 (or reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
80 (if messages (message "Sorting records...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
81 (setq sort-lists |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
82 (if (fboundp 'sortcar) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
83 (sortcar sort-lists |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
84 (cond ((numberp (car (car sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
85 ;; This handles both ints and floats. |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
86 '<) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
87 ((consp (car (car sort-lists))) |
1844
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
88 (function |
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
89 (lambda (a b) |
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
90 (> 0 (compare-buffer-substrings |
1845
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
91 nil (car a) (cdr a) |
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
92 nil (car b) (cdr b)))))) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
93 (t |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
94 'string<))) |
998 | 95 (sort sort-lists |
96 (cond ((numberp (car (car sort-lists))) | |
97 (function | |
98 (lambda (a b) | |
99 (< (car a) (car b))))) | |
100 ((consp (car (car sort-lists))) | |
101 (function | |
102 (lambda (a b) | |
1844
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
103 (> 0 (compare-buffer-substrings |
1845
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
104 nil (car (car a)) (cdr (car a)) |
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
105 nil (car (car b)) (cdr (car b))))))) |
998 | 106 (t |
107 (function | |
108 (lambda (a b) | |
109 (string< (car a) (car b))))))))) | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
110 (if reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
111 (if messages (message "Reordering buffer...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
112 (sort-reorder-buffer sort-lists old))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
113 (if messages (message "Reordering buffer... Done")))) |
70 | 114 nil) |
115 | |
116 ;; Parse buffer into records using the arguments as Lisp expressions; | |
136 | 117 ;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS) |
70 | 118 ;; where KEY is the sort key (a number or string), |
119 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer. | |
120 | |
121 ;; The records appear in the list lastmost first! | |
122 | |
123 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun) | |
124 (let ((sort-lists ()) | |
125 (start-rec nil) | |
126 done key) | |
127 ;; Loop over sort records. | |
128 ;(goto-char (point-min)) -- it is the caller's responsibility to | |
129 ;arrange this if necessary | |
130 (while (not (eobp)) | |
131 (setq start-rec (point)) ;save record start | |
132 (setq done nil) | |
133 ;; Get key value, or move to start of key. | |
134 (setq key (catch 'key | |
135 (or (and startkeyfun (funcall startkeyfun)) | |
136 ;; If key was not returned as value, | |
137 ;; move to end of key and get key from the buffer. | |
138 (let ((start (point))) | |
139 (funcall (or endkeyfun | |
140 (prog1 endrecfun (setq done t)))) | |
1844
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
141 (cons start (point)))))) |
70 | 142 ;; Move to end of this record (start of next one, or end of buffer). |
143 (cond ((prog1 done (setq done nil))) | |
144 (endrecfun (funcall endrecfun)) | |
145 (nextrecfun (funcall nextrecfun) (setq done t))) | |
146 (if key (setq sort-lists (cons | |
147 ;; consing optimization in case in which key | |
148 ;; is same as record. | |
149 (if (and (consp key) | |
150 (equal (car key) start-rec) | |
151 (equal (cdr key) (point))) | |
152 (cons key key) | |
135 | 153 (cons key (cons start-rec (point)))) |
154 sort-lists))) | |
70 | 155 (and (not done) nextrecfun (funcall nextrecfun))) |
156 sort-lists)) | |
157 | |
158 (defun sort-reorder-buffer (sort-lists old) | |
159 (let ((inhibit-quit t) | |
160 (last (point-min)) | |
161 (min (point-min)) (max (point-max))) | |
162 ;; Make sure insertions done for reordering | |
163 ;; do not go after any markers at the end of the sorted region, | |
164 ;; by inserting a space to separate them. | |
165 (goto-char (point-max)) | |
166 (insert-before-markers " ") | |
167 (narrow-to-region min (1- (point-max))) | |
168 (while sort-lists | |
169 (goto-char (point-max)) | |
170 (insert-buffer-substring (current-buffer) | |
171 last | |
172 (nth 1 (car old))) | |
173 (goto-char (point-max)) | |
174 (insert-buffer-substring (current-buffer) | |
175 (nth 1 (car sort-lists)) | |
135 | 176 (cdr (cdr (car sort-lists)))) |
177 (setq last (cdr (cdr (car old))) | |
70 | 178 sort-lists (cdr sort-lists) |
179 old (cdr old))) | |
180 (goto-char (point-max)) | |
181 (insert-buffer-substring (current-buffer) | |
182 last | |
183 max) | |
184 ;; Delete the original copy of the text. | |
185 (delete-region min max) | |
186 ;; Get rid of the separator " ". | |
187 (goto-char (point-max)) | |
188 (narrow-to-region min (1+ (point))) | |
189 (delete-region (point) (1+ (point))))) | |
190 | |
258 | 191 ;;;###autoload |
70 | 192 (defun sort-lines (reverse beg end) |
193 "Sort lines in region alphabetically; argument means descending order. | |
194 Called from a program, there are three arguments: | |
195 REVERSE (non-nil means reverse order), BEG and END (region to sort)." | |
196 (interactive "P\nr") | |
197 (save-excursion | |
198 (save-restriction | |
199 (narrow-to-region beg end) | |
200 (goto-char (point-min)) | |
201 (sort-subr reverse 'forward-line 'end-of-line)))) | |
202 | |
258 | 203 ;;;###autoload |
70 | 204 (defun sort-paragraphs (reverse beg end) |
205 "Sort paragraphs in region alphabetically; argument means descending order. | |
206 Called from a program, there are three arguments: | |
207 REVERSE (non-nil means reverse order), BEG and END (region to sort)." | |
208 (interactive "P\nr") | |
209 (save-excursion | |
210 (save-restriction | |
211 (narrow-to-region beg end) | |
212 (goto-char (point-min)) | |
213 (sort-subr reverse | |
214 (function (lambda () (skip-chars-forward "\n \t\f"))) | |
215 'forward-paragraph)))) | |
216 | |
258 | 217 ;;;###autoload |
70 | 218 (defun sort-pages (reverse beg end) |
219 "Sort pages in region alphabetically; argument means descending order. | |
220 Called from a program, there are three arguments: | |
221 REVERSE (non-nil means reverse order), BEG and END (region to sort)." | |
222 (interactive "P\nr") | |
223 (save-excursion | |
224 (save-restriction | |
225 (narrow-to-region beg end) | |
226 (goto-char (point-min)) | |
227 (sort-subr reverse | |
228 (function (lambda () (skip-chars-forward "\n"))) | |
229 'forward-page)))) | |
230 | |
231 (defvar sort-fields-syntax-table nil) | |
232 (if sort-fields-syntax-table nil | |
233 (let ((table (make-syntax-table)) | |
234 (i 0)) | |
235 (while (< i 256) | |
236 (modify-syntax-entry i "w" table) | |
237 (setq i (1+ i))) | |
238 (modify-syntax-entry ?\ " " table) | |
239 (modify-syntax-entry ?\t " " table) | |
240 (modify-syntax-entry ?\n " " table) | |
241 (modify-syntax-entry ?\. "_" table) ; for floating pt. numbers. -wsr | |
242 (setq sort-fields-syntax-table table))) | |
243 | |
258 | 244 ;;;###autoload |
70 | 245 (defun sort-numeric-fields (field beg end) |
246 "Sort lines in region numerically by the ARGth field of each line. | |
247 Fields are separated by whitespace and numbered from 1 up. | |
248 Specified field must contain a number in each line of the region. | |
86 | 249 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 250 Called from a program, there are three arguments: |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
251 FIELD, BEG and END. BEG and END specify region to sort." |
70 | 252 (interactive "p\nr") |
253 (sort-fields-1 field beg end | |
254 (function (lambda () | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
255 (sort-skip-fields field) |
2185
5bf3a379d7b5
* sort.el (sort-float-fields, sort-numeric-fields): Use
Jim Blandy <jimb@redhat.com>
parents:
2184
diff
changeset
|
256 (string-to-number |
70 | 257 (buffer-substring |
258 (point) | |
259 (save-excursion | |
260 ;; This is just wrong! Even without floats... | |
261 ;; (skip-chars-forward "[0-9]") | |
262 (forward-sexp 1) | |
263 (point)))))) | |
264 nil)) | |
265 | |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
266 ;;;;;###autoload |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
267 ;;(defun sort-float-fields (field beg end) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
268 ;; "Sort lines in region numerically by the ARGth field of each line. |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
269 ;;Fields are separated by whitespace and numbered from 1 up. Specified field |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
270 ;;must contain a floating point number in each line of the region. With a |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
271 ;;negative arg, sorts by the ARGth field counted from the right. Called from a |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
272 ;;program, there are three arguments: FIELD, BEG and END. BEG and END specify |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
273 ;;region to sort." |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
274 ;; (interactive "p\nr") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
275 ;; (sort-fields-1 field beg end |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
276 ;; (function (lambda () |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
277 ;; (sort-skip-fields field) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
278 ;; (string-to-number |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
279 ;; (buffer-substring |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
280 ;; (point) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
281 ;; (save-excursion |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
282 ;; (re-search-forward |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
283 ;; "[+-]?[0-9]*\.?[0-9]*\\([eE][+-]?[0-9]+\\)?") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
284 ;; (point)))))) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
285 ;; nil)) |
86 | 286 |
258 | 287 ;;;###autoload |
70 | 288 (defun sort-fields (field beg end) |
289 "Sort lines in region lexicographically by the ARGth field of each line. | |
290 Fields are separated by whitespace and numbered from 1 up. | |
86 | 291 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 292 Called from a program, there are three arguments: |
293 FIELD, BEG and END. BEG and END specify region to sort." | |
294 (interactive "p\nr") | |
295 (sort-fields-1 field beg end | |
296 (function (lambda () | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
297 (sort-skip-fields field) |
70 | 298 nil)) |
299 (function (lambda () (skip-chars-forward "^ \t\n"))))) | |
300 | |
301 (defun sort-fields-1 (field beg end startkeyfun endkeyfun) | |
86 | 302 (let ((tbl (syntax-table))) |
303 (if (zerop field) (setq field 1)) | |
70 | 304 (unwind-protect |
305 (save-excursion | |
306 (save-restriction | |
307 (narrow-to-region beg end) | |
308 (goto-char (point-min)) | |
309 (set-syntax-table sort-fields-syntax-table) | |
86 | 310 (sort-subr nil |
70 | 311 'forward-line 'end-of-line |
312 startkeyfun endkeyfun))) | |
313 (set-syntax-table tbl)))) | |
314 | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
315 ;; Position at the beginning of field N on the current line, |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
316 ;; assuming point is initially at the beginning of the line. |
70 | 317 (defun sort-skip-fields (n) |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
318 (if (> n 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
319 ;; Skip across N - 1 fields. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
320 (let ((i (1- n))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
321 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
322 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
323 (skip-chars-forward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
324 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
325 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
326 (if (eolp) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
327 (error "Line has too few fields: %s" |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
328 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
329 (save-excursion (beginning-of-line) (point)) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
330 (save-excursion (end-of-line) (point)))))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
331 (end-of-line) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
332 ;; Skip back across - N - 1 fields. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
333 (let ((i (1- (- n)))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
334 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
335 (skip-chars-backward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
336 (skip-chars-backward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
337 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
338 (skip-chars-backward " \t")) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
339 (if (bolp) |
70 | 340 (error "Line has too few fields: %s" |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
341 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
342 (save-excursion (beginning-of-line) (point)) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
343 (save-excursion (end-of-line) (point))))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
344 ;; Position at the front of the field |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
345 ;; even if moving backwards. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
346 (skip-chars-backward "^ \t\n"))) |
70 | 347 |
258 | 348 ;;;###autoload |
70 | 349 (defun sort-regexp-fields (reverse record-regexp key-regexp beg end) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3409
diff
changeset
|
350 "Sort the region lexicographically as specified by RECORD-REGEXP and KEY. |
70 | 351 RECORD-REGEXP specifies the textual units which should be sorted. |
352 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
353 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
354 is to be used for sorting. | |
355 If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from | |
356 RECORD-REGEXP is used. | |
357 If it is \"\\&\" then the whole record is used. | |
358 Otherwise, it is a regular-expression for which to search within the record. | |
359 If a match for KEY is not found within a record then that record is ignored. | |
360 | |
361 With a negative prefix arg sorts in reverse order. | |
362 | |
363 For example: to sort lines in the region by the first word on each line | |
364 starting with the letter \"f\", | |
365 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" | |
86 | 366 ;; using negative prefix arg to mean "reverse" is now inconsistent with |
367 ;; other sort-.*fields functions but then again this was before, since it | |
368 ;; didn't use the magnitude of the arg to specify anything. | |
70 | 369 (interactive "P\nsRegexp specifying records to sort: |
370 sRegexp specifying key within record: \nr") | |
371 (cond ((or (equal key-regexp "") (equal key-regexp "\\&")) | |
372 (setq key-regexp 0)) | |
373 ((string-match "\\`\\\\[1-9]\\'" key-regexp) | |
374 (setq key-regexp (- (aref key-regexp 1) ?0)))) | |
375 (save-excursion | |
376 (save-restriction | |
377 (narrow-to-region beg end) | |
378 (goto-char (point-min)) | |
379 (let (sort-regexp-record-end) ;isn't dynamic scoping wonderful? | |
380 (re-search-forward record-regexp) | |
381 (setq sort-regexp-record-end (point)) | |
382 (goto-char (match-beginning 0)) | |
383 (sort-subr reverse | |
384 (function (lambda () | |
385 (and (re-search-forward record-regexp nil 'move) | |
386 (setq sort-regexp-record-end (match-end 0)) | |
387 (goto-char (match-beginning 0))))) | |
388 (function (lambda () | |
389 (goto-char sort-regexp-record-end))) | |
390 (function (lambda () | |
391 (let ((n 0)) | |
392 (cond ((numberp key-regexp) | |
393 (setq n key-regexp)) | |
394 ((re-search-forward | |
395 key-regexp sort-regexp-record-end t) | |
396 (setq n 0)) | |
397 (t (throw 'key nil))) | |
398 (condition-case () | |
399 (if (fboundp 'buffer-substring-lessp) | |
400 (cons (match-beginning n) | |
401 (match-end n)) | |
402 (buffer-substring (match-beginning n) | |
403 (match-end n))) | |
404 ;; if there was no such register | |
405 (error (throw 'key nil))))))))))) | |
406 | |
407 | |
408 (defvar sort-columns-subprocess t) | |
409 | |
258 | 410 ;;;###autoload |
70 | 411 (defun sort-columns (reverse &optional beg end) |
412 "Sort lines in region alphabetically by a certain range of columns. | |
413 For the purpose of this command, the region includes | |
414 the entire line that point is in and the entire line the mark is in. | |
415 The column positions of point and mark bound the range of columns to sort on. | |
416 A prefix argument means sort into reverse order. | |
417 | |
418 Note that `sort-columns' rejects text that contains tabs, | |
419 because tabs could be split across the specified columns | |
420 and it doesn't know how to handle that. Also, when possible, | |
421 it uses the `sort' utility program, which doesn't understand tabs. | |
422 Use \\[untabify] to convert tabs to spaces before sorting." | |
423 (interactive "P\nr") | |
424 (save-excursion | |
425 (let (beg1 end1 col-beg1 col-end1 col-start col-end) | |
426 (goto-char (min beg end)) | |
427 (setq col-beg1 (current-column)) | |
428 (beginning-of-line) | |
429 (setq beg1 (point)) | |
430 (goto-char (max beg end)) | |
431 (setq col-end1 (current-column)) | |
432 (forward-line) | |
433 (setq end1 (point)) | |
434 (setq col-start (min col-beg1 col-end1)) | |
435 (setq col-end (max col-beg1 col-end1)) | |
436 (if (search-backward "\t" beg1 t) | |
437 (error "sort-columns does not work with tabs. Use M-x untabify.")) | |
438 (if (not (eq system-type 'vax-vms)) | |
439 ;; Use the sort utility if we can; it is 4 times as fast. | |
440 (call-process-region beg1 end1 "sort" t t nil | |
441 (if reverse "-rt\n" "-t\n") | |
442 (concat "+0." col-start) | |
443 (concat "-0." col-end)) | |
444 ;; On VMS, use Emacs's own facilities. | |
445 (save-excursion | |
446 (save-restriction | |
447 (narrow-to-region beg1 end1) | |
448 (goto-char beg1) | |
449 (sort-subr reverse 'forward-line 'end-of-line | |
450 (function (lambda () (move-to-column col-start) nil)) | |
451 (function (lambda () (move-to-column col-end) nil))))))))) | |
86 | 452 |
258 | 453 ;;;###autoload |
86 | 454 (defun reverse-region (beg end) |
455 "Reverse the order of lines in a region. | |
456 From a program takes two point or marker arguments, BEG and END." | |
457 (interactive "r") | |
458 (if (> beg end) | |
459 (let (mid) (setq mid end end beg beg mid))) | |
460 (save-excursion | |
461 ;; put beg at the start of a line and end and the end of one -- | |
462 ;; the largest possible region which fits this criteria | |
463 (goto-char beg) | |
464 (or (bolp) (forward-line 1)) | |
465 (setq beg (point)) | |
466 (goto-char end) | |
467 ;; the test for bolp is for those times when end is on an empty line; | |
468 ;; it is probably not the case that the line should be included in the | |
469 ;; reversal; it isn't difficult to add it afterward. | |
470 (or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line))) | |
471 (setq end (point-marker)) | |
472 ;; the real work. this thing cranks through memory on large regions. | |
473 (let (ll (do t)) | |
474 (while do | |
475 (goto-char beg) | |
476 (setq ll (cons (buffer-substring (point) (progn (end-of-line) (point))) | |
477 ll)) | |
478 (setq do (/= (point) end)) | |
479 (delete-region beg (if do (1+ (point)) (point)))) | |
480 (while (cdr ll) | |
481 (insert (car ll) "\n") | |
482 (setq ll (cdr ll))) | |
483 (insert (car ll))))) | |
584 | 484 |
485 (provide 'sort) | |
486 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
487 ;;; sort.el ends here |