13337
|
1 ;;; forms.el --- Forms mode: edit a file as a form to fill in
|
|
2
|
18215
|
3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
|
307
|
4
|
13317
|
5 ;; Author: Johan Vromans <jvromans@squirrel.nl>
|
3697
|
6
|
|
7 ;; This file is part of GNU Emacs.
|
276
|
8
|
3697
|
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
10 ;; it under the terms of the GNU General Public License as published by
|
|
11 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
12 ;; any later version.
|
276
|
13
|
3697
|
14 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 ;; GNU General Public License for more details.
|
307
|
18
|
3697
|
19 ;; You should have received a copy of the GNU General Public License
|
14169
|
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 ;; Boston, MA 02111-1307, USA.
|
3697
|
23
|
|
24 ;;; Commentary:
|
276
|
25
|
14169
|
26 ;; Visit a file using a form.
|
|
27 ;;
|
|
28 ;; === Naming conventions
|
|
29 ;;
|
|
30 ;; The names of all variables and functions start with 'forms-'.
|
|
31 ;; Names which start with 'forms--' are intended for internal use, and
|
|
32 ;; should *NOT* be used from the outside.
|
|
33 ;;
|
|
34 ;; All variables are buffer-local, to enable multiple forms visits
|
|
35 ;; simultaneously.
|
|
36 ;; Variable `forms--mode-setup' is local to *ALL* buffers, for it
|
|
37 ;; controls if forms-mode has been enabled in a buffer.
|
|
38 ;;
|
|
39 ;; === How it works ===
|
|
40 ;;
|
|
41 ;; Forms mode means visiting a data file which is supposed to consist
|
|
42 ;; of records each containing a number of fields. The records are
|
|
43 ;; separated by a newline, the fields are separated by a user-defined
|
|
44 ;; field separator (default: TAB).
|
|
45 ;; When shown, a record is transferred to an Emacs buffer and
|
|
46 ;; presented using a user-defined form. One record is shown at a
|
|
47 ;; time.
|
|
48 ;;
|
|
49 ;; Forms mode is a composite mode. It involves two files, and two
|
|
50 ;; buffers.
|
|
51 ;; The first file, called the control file, defines the name of the
|
|
52 ;; data file and the forms format. This file buffer will be used to
|
|
53 ;; present the forms.
|
|
54 ;; The second file holds the actual data. The buffer of this file
|
|
55 ;; will be buried, for it is never accessed directly.
|
|
56 ;;
|
24655
|
57 ;; Forms mode is invoked using M-x `forms-find-file' control-file.
|
14169
|
58 ;; Alternatively `forms-find-file-other-window' can be used.
|
|
59 ;;
|
|
60 ;; You may also visit the control file, and switch to forms mode by hand
|
24655
|
61 ;; with M-x `forms-mode'.
|
14169
|
62 ;;
|
|
63 ;; Automatic mode switching is supported if you specify
|
|
64 ;; "-*- forms -*-" in the first line of the control file.
|
|
65 ;;
|
|
66 ;; The control file is visited, evaluated using `eval-current-buffer',
|
|
67 ;; and should set at least the following variables:
|
|
68 ;;
|
|
69 ;; forms-file [string]
|
|
70 ;; The name of the data file.
|
|
71 ;;
|
|
72 ;; forms-number-of-fields [integer]
|
|
73 ;; The number of fields in each record.
|
|
74 ;;
|
|
75 ;; forms-format-list [list]
|
|
76 ;; Formatting instructions.
|
|
77 ;;
|
|
78 ;; `forms-format-list' should be a list, each element containing
|
|
79 ;;
|
|
80 ;; - a string, e.g. "hello". The string is inserted in the forms
|
|
81 ;; "as is".
|
|
82 ;;
|
|
83 ;; - an integer, denoting a field number.
|
|
84 ;; The contents of this field are inserted at this point.
|
|
85 ;; Fields are numbered starting with number one.
|
|
86 ;;
|
|
87 ;; - a function call, e.g. (insert "text").
|
|
88 ;; This function call is dynamically evaluated and should return a
|
|
89 ;; string. It should *NOT* have side-effects on the forms being
|
|
90 ;; constructed. The current fields are available to the function
|
|
91 ;; in the variable `forms-fields', they should *NOT* be modified.
|
|
92 ;;
|
|
93 ;; - a lisp symbol, that must evaluate to one of the above.
|
|
94 ;;
|
|
95 ;; Optional variables which may be set in the control file:
|
|
96 ;;
|
|
97 ;; forms-field-sep [string, default TAB]
|
|
98 ;; The field separator used to separate the
|
|
99 ;; fields in the data file. It may be a string.
|
|
100 ;;
|
|
101 ;; forms-read-only [bool, default nil]
|
|
102 ;; Non-nil means that the data file is visited
|
|
103 ;; read-only (view mode) as opposed to edit mode.
|
|
104 ;; If no write access to the data file is
|
|
105 ;; possible, view mode is enforced.
|
|
106 ;;
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
107 ;; forms-check-number-of-fields [bool, default t]
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
108 ;; If non-nil, a warning will be issued whenever
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
109 ;; a record is found that does not have the number
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
110 ;; of fields specified by `forms-number-of-fields'.
|
14169
|
111 ;;
|
|
112 ;; forms-multi-line [string, default "^K"]
|
24655
|
113 ;; If non-null, the records of the data file may
|
14169
|
114 ;; contain fields that can span multiple lines in
|
|
115 ;; the form.
|
24655
|
116 ;; This variable denotes the separator string
|
14169
|
117 ;; to be used for this purpose. Upon display, all
|
24655
|
118 ;; occurrences of this string are translated
|
14169
|
119 ;; to newlines. Upon storage they are translated
|
24655
|
120 ;; back to the separator string.
|
14169
|
121 ;;
|
|
122 ;; forms-forms-scroll [bool, default nil]
|
|
123 ;; Non-nil means: rebind locally the commands that
|
|
124 ;; perform `scroll-up' or `scroll-down' to use
|
|
125 ;; `forms-next-field' resp. `forms-prev-field'.
|
|
126 ;;
|
|
127 ;; forms-forms-jump [bool, default nil]
|
24655
|
128 ;; Non-nil means: rebind locally the commands
|
|
129 ;; `beginning-of-buffer' and `end-of-buffer' to
|
|
130 ;; perform, respectively, `forms-first-record' and
|
|
131 ;; `forms-last-record' instead.
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
132 ;;
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
133 ;; forms-insert-after [bool, default nil]
|
24655
|
134 ;; Non-nil means: insertions of new records go after
|
|
135 ;; current record, also initial position is at the
|
|
136 ;; last record. The default is to insert before the
|
|
137 ;; current record and the initial position is at the
|
|
138 ;; first record.
|
14169
|
139 ;;
|
|
140 ;; forms-read-file-filter [symbol, default nil]
|
|
141 ;; If not nil: this should be the name of a
|
|
142 ;; function that is called after the forms data file
|
|
143 ;; has been read. It can be used to transform
|
|
144 ;; the contents of the file into a format more suitable
|
|
145 ;; for forms-mode processing.
|
|
146 ;;
|
|
147 ;; forms-write-file-filter [symbol, default nil]
|
|
148 ;; If not nil: this should be the name of a
|
|
149 ;; function that is called before the forms data file
|
|
150 ;; is written (saved) to disk. It can be used to undo
|
|
151 ;; the effects of `forms-read-file-filter', if any.
|
|
152 ;;
|
|
153 ;; forms-new-record-filter [symbol, default nil]
|
|
154 ;; If not nil: this should be the name of a
|
|
155 ;; function that is called when a new
|
|
156 ;; record is created. It can be used to fill in
|
|
157 ;; the new record with default fields, for example.
|
|
158 ;;
|
|
159 ;; forms-modified-record-filter [symbol, default nil]
|
|
160 ;; If not nil: this should be the name of a
|
|
161 ;; function that is called when a record has
|
|
162 ;; been modified. It is called after the fields
|
|
163 ;; are parsed. It can be used to register
|
|
164 ;; modification dates, for example.
|
|
165 ;;
|
|
166 ;; forms-use-text-properties [bool, see text for default]
|
|
167 ;; This variable controls if forms mode should use
|
|
168 ;; text properties to protect the form text from being
|
|
169 ;; modified (using text-property `read-only').
|
|
170 ;; Also, the read-write fields are shown using a
|
|
171 ;; distinct face, if possible.
|
|
172 ;; As of emacs 19.29, the `intangible' text property
|
|
173 ;; is used to prevent moving into read-only fields.
|
24655
|
174 ;; This variable defaults to t if running Emacs 19 or
|
|
175 ;; later with text properties.
|
14169
|
176 ;; The default face to show read-write fields is
|
|
177 ;; copied from face `region'.
|
|
178 ;;
|
|
179 ;; forms-ro-face [symbol, default 'default]
|
|
180 ;; This is the face that is used to show
|
24655
|
181 ;; read-only text on the screen. If used, this
|
14169
|
182 ;; variable should be set to a symbol that is a
|
|
183 ;; valid face.
|
|
184 ;; E.g.
|
|
185 ;; (make-face 'my-face)
|
|
186 ;; (setq forms-ro-face 'my-face)
|
|
187 ;;
|
|
188 ;; forms-rw-face [symbol, default 'region]
|
|
189 ;; This is the face that is used to show
|
|
190 ;; read-write text on the screen.
|
|
191 ;;
|
|
192 ;; After evaluating the control file, its buffer is cleared and used
|
|
193 ;; for further processing.
|
|
194 ;; The data file (as designated by `forms-file') is visited in a buffer
|
24655
|
195 ;; `forms--file-buffer' which normally will not be shown.
|
14169
|
196 ;; Great malfunctioning may be expected if this file/buffer is modified
|
|
197 ;; outside of this package while it is being visited!
|
|
198 ;;
|
|
199 ;; Normal operation is to transfer one line (record) from the data file,
|
|
200 ;; split it into fields (into `forms--the-record-list'), and display it
|
|
201 ;; using the specs in `forms-format-list'.
|
|
202 ;; A format routine `forms--format' is built upon startup to format
|
|
203 ;; the records according to `forms-format-list'.
|
|
204 ;;
|
|
205 ;; When a form is changed the record is updated as soon as this form
|
|
206 ;; is left. The contents of the form are parsed using information
|
|
207 ;; obtained from `forms-format-list', and the fields which are
|
|
208 ;; deduced from the form are modified. Fields not shown on the forms
|
|
209 ;; retain their original values. The newly formed record then
|
|
210 ;; replaces the contents of the old record in `forms--file-buffer'.
|
|
211 ;; A parse routine `forms--parser' is built upon startup to parse
|
|
212 ;; the records.
|
|
213 ;;
|
|
214 ;; Two exit functions exist: `forms-exit' and `forms-exit-no-save'.
|
|
215 ;; `forms-exit' saves the data to the file, if modified.
|
24655
|
216 ;; `forms-exit-no-save' does not. However, if `forms-exit-no-save'
|
14169
|
217 ;; is executed and the file buffer has been modified, Emacs will ask
|
|
218 ;; questions anyway.
|
|
219 ;;
|
|
220 ;; Other functions provided by forms mode are:
|
|
221 ;;
|
|
222 ;; paging (forward, backward) by record
|
|
223 ;; jumping (first, last, random number)
|
|
224 ;; searching
|
|
225 ;; creating and deleting records
|
|
226 ;; reverting the form (NOT the file buffer)
|
|
227 ;; switching edit <-> view mode v.v.
|
|
228 ;; jumping from field to field
|
|
229 ;;
|
24655
|
230 ;; As a documented side-effect: jumping to the last record in the
|
14169
|
231 ;; file (using forms-last-record) will adjust forms--total-records if
|
|
232 ;; needed.
|
|
233 ;;
|
24655
|
234 ;; The forms buffer can be in one of two modes: edit mode or view
|
|
235 ;; mode. View mode is a read-only mode, whereby you cannot modify the
|
14169
|
236 ;; contents of the buffer.
|
|
237 ;;
|
|
238 ;; Edit mode commands:
|
|
239 ;;
|
|
240 ;; TAB forms-next-field
|
|
241 ;; \C-c TAB forms-next-field
|
|
242 ;; \C-c < forms-first-record
|
|
243 ;; \C-c > forms-last-record
|
|
244 ;; \C-c ? describe-mode
|
|
245 ;; \C-c \C-k forms-delete-record
|
|
246 ;; \C-c \C-q forms-toggle-read-only
|
|
247 ;; \C-c \C-o forms-insert-record
|
|
248 ;; \C-c \C-l forms-jump-record
|
|
249 ;; \C-c \C-n forms-next-record
|
|
250 ;; \C-c \C-p forms-prev-record
|
|
251 ;; \C-c \C-r forms-search-backward
|
|
252 ;; \C-c \C-s forms-search-forward
|
|
253 ;; \C-c \C-x forms-exit
|
|
254 ;;
|
|
255 ;; Read-only mode commands:
|
|
256 ;;
|
|
257 ;; SPC forms-next-record
|
|
258 ;; DEL forms-prev-record
|
|
259 ;; ? describe-mode
|
24655
|
260 ;; \C-q forms-toggle-read-only
|
14169
|
261 ;; l forms-jump-record
|
|
262 ;; n forms-next-record
|
|
263 ;; p forms-prev-record
|
|
264 ;; r forms-search-backward
|
|
265 ;; s forms-search-forward
|
|
266 ;; x forms-exit
|
|
267 ;;
|
|
268 ;; Of course, it is also possible to use the \C-c prefix to obtain the
|
|
269 ;; same command keys as in edit mode.
|
|
270 ;;
|
|
271 ;; The following bindings are available, independent of the mode:
|
|
272 ;;
|
|
273 ;; [next] forms-next-record
|
|
274 ;; [prior] forms-prev-record
|
|
275 ;; [begin] forms-first-record
|
|
276 ;; [end] forms-last-record
|
|
277 ;; [S-TAB] forms-prev-field
|
24655
|
278 ;; [backtab] forms-prev-field
|
14169
|
279 ;;
|
|
280 ;; For convenience, TAB is always bound to `forms-next-field', so you
|
|
281 ;; don't need the C-c prefix for this command.
|
|
282 ;;
|
24655
|
283 ;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump'),
|
14169
|
284 ;; the bindings of standard functions `scroll-up', `scroll-down',
|
|
285 ;; `beginning-of-buffer' and `end-of-buffer' can be locally replaced with
|
|
286 ;; forms mode functions next/prev record and first/last
|
|
287 ;; record.
|
|
288 ;;
|
24655
|
289 ;; `local-write-file-hooks' is defined to save the actual data file
|
14169
|
290 ;; instead of the buffer data, `revert-file-hook' is defined to
|
|
291 ;; revert a forms to original.
|
3697
|
292
|
|
293 ;;; Code:
|
|
294
|
19429
|
295 (defgroup forms nil
|
|
296 "Edit a file as a form to fill in."
|
|
297 :group 'data)
|
|
298
|
4121
|
299 ;;; Global variables and constants:
|
276
|
300
|
3697
|
301 (provide 'forms) ;;; official
|
|
302 (provide 'forms-mode) ;;; for compatibility
|
|
303
|
45337
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
304 (defconst forms-version (substring "$Revision: 2.42 $" 11 -2)
|
4790
|
305 "The version number of forms-mode (as string). The complete RCS id is:
|
|
306
|
45337
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
307 $Id: forms.el,v 2.42 2001/07/16 12:22:58 pj Exp $")
|
276
|
308
|
19429
|
309 (defcustom forms-mode-hooks nil
|
35968
|
310 "Hook run upon entering Forms mode."
|
19429
|
311 :group 'forms
|
35968
|
312 :type 'hook)
|
3697
|
313
|
4121
|
314 ;;; Mandatory variables - must be set by evaluating the control file.
|
276
|
315
|
|
316 (defvar forms-file nil
|
307
|
317 "Name of the file holding the data.")
|
276
|
318
|
|
319 (defvar forms-format-list nil
|
307
|
320 "List of formatting specifications.")
|
276
|
321
|
|
322 (defvar forms-number-of-fields nil
|
|
323 "Number of fields per record.")
|
3697
|
324
|
4121
|
325 ;;; Optional variables with default values.
|
276
|
326
|
19429
|
327 (defcustom forms-check-number-of-fields t
|
|
328 "*If non-nil, warn about records with wrong number of fields."
|
|
329 :group 'forms
|
|
330 :type 'boolean)
|
12847
|
331
|
276
|
332 (defvar forms-field-sep "\t"
|
3697
|
333 "Field separator character (default TAB).")
|
276
|
334
|
19565
|
335 (defvar forms-read-only nil
|
|
336 "Non-nil means: visit the file in view (read-only) mode.
|
19586
|
337 This is set automatically if the file permissions don't let you write it.")
|
276
|
338
|
19429
|
339 (defvar forms-multi-line "\C-k" "\
|
|
340 If not nil: use this character to separate multi-line fields (default C-k).")
|
276
|
341
|
19429
|
342 (defcustom forms-forms-scroll nil
|
3828
|
343 "*Non-nil means replace scroll-up/down commands in Forms mode.
|
19429
|
344 The replacement commands performs forms-next/prev-record."
|
|
345 :group 'forms
|
|
346 :type 'boolean)
|
276
|
347
|
19429
|
348 (defcustom forms-forms-jump nil
|
3828
|
349 "*Non-nil means redefine beginning/end-of-buffer in Forms mode.
|
19429
|
350 The replacement commands performs forms-first/last-record."
|
|
351 :group 'forms
|
|
352 :type 'boolean)
|
4121
|
353
|
8344
|
354 (defvar forms-read-file-filter nil
|
|
355 "The name of a function that is called after reading the data file.
|
|
356 This can be used to change the contents of the file to something more
|
|
357 suitable for forms processing.")
|
|
358
|
|
359 (defvar forms-write-file-filter nil
|
|
360 "The name of a function that is called before writing the data file.
|
19429
|
361 This can be used to undo the effects of `form-read-file-hook'.")
|
8344
|
362
|
4121
|
363 (defvar forms-new-record-filter nil
|
|
364 "The name of a function that is called when a new record is created.")
|
|
365
|
|
366 (defvar forms-modified-record-filter nil
|
|
367 "The name of a function that is called when a record has been modified.")
|
|
368
|
|
369 (defvar forms-fields nil
|
|
370 "List with fields of the current forms. First field has number 1.
|
|
371 This variable is for use by the filter routines only.
|
|
372 The contents may NOT be modified.")
|
|
373
|
19429
|
374 (defcustom forms-use-text-properties t
|
|
375 "*Non-nil means: use text properties.
|
|
376 Defaults to t if this Emacs is capable of handling text properties."
|
|
377 :group 'forms
|
|
378 :type 'boolean)
|
4121
|
379
|
19429
|
380 (defcustom forms-insert-after nil
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
381 "*Non-nil means: inserts of new records go after current record.
|
19429
|
382 Also, initial position is at last record."
|
|
383 :group 'forms
|
|
384 :type 'boolean)
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
385
|
19429
|
386 (defcustom forms-ro-face 'default
|
|
387 "The face (a symbol) that is used to display read-only text on the screen."
|
|
388 :group 'forms
|
|
389 :type 'face)
|
4121
|
390
|
19429
|
391 (defcustom forms-rw-face 'region
|
|
392 "The face (a symbol) that is used to display read-write text on the screen."
|
|
393 :group 'forms
|
|
394 :type 'face)
|
3697
|
395
|
276
|
396 ;;; Internal variables.
|
|
397
|
|
398 (defvar forms--file-buffer nil
|
|
399 "Buffer which holds the file data")
|
|
400
|
|
401 (defvar forms--total-records 0
|
|
402 "Total number of records in the data file.")
|
|
403
|
|
404 (defvar forms--current-record 0
|
|
405 "Number of the record currently on the screen.")
|
|
406
|
4790
|
407 (defvar forms-mode-map nil
|
276
|
408 "Keymap for form buffer.")
|
4790
|
409 (defvar forms-mode-ro-map nil
|
|
410 "Keymap for form buffer in view mode.")
|
|
411 (defvar forms-mode-edit-map nil
|
|
412 "Keymap for form buffer in edit mode.")
|
276
|
413
|
|
414 (defvar forms--markers nil
|
|
415 "Field markers in the screen.")
|
|
416
|
4121
|
417 (defvar forms--dyntexts nil
|
|
418 "Dynamic texts (resulting from function calls) on the screen.")
|
276
|
419
|
|
420 (defvar forms--the-record-list nil
|
|
421 "List of strings of the current record, as parsed from the file.")
|
|
422
|
|
423 (defvar forms--search-regexp nil
|
10346
|
424 "Last regexp used by forms-search functions.")
|
276
|
425
|
|
426 (defvar forms--format nil
|
|
427 "Formatting routine.")
|
|
428
|
|
429 (defvar forms--parser nil
|
|
430 "Forms parser routine.")
|
|
431
|
|
432 (defvar forms--mode-setup nil
|
4121
|
433 "To keep track of forms-mode being set-up.")
|
276
|
434 (make-variable-buffer-local 'forms--mode-setup)
|
|
435
|
307
|
436 (defvar forms--dynamic-text nil
|
4121
|
437 "Array that holds dynamic texts to insert between fields.")
|
307
|
438
|
4121
|
439 (defvar forms--elements nil
|
|
440 "Array with the order in which the fields are displayed.")
|
307
|
441
|
4121
|
442 (defvar forms--ro-face nil
|
|
443 "Face used to represent read-only data on the screen.")
|
3697
|
444
|
4121
|
445 (defvar forms--rw-face nil
|
|
446 "Face used to represent read-write data on the screen.")
|
3697
|
447
|
3941
|
448 ;;;###autoload
|
276
|
449 (defun forms-mode (&optional primary)
|
|
450 "Major mode to visit files in a field-structured manner using a form.
|
|
451
|
4790
|
452 Commands: Equivalent keys in read-only mode:
|
|
453 TAB forms-next-field TAB
|
22770
|
454 C-c TAB forms-next-field
|
|
455 C-c < forms-first-record <
|
|
456 C-c > forms-last-record >
|
|
457 C-c ? describe-mode ?
|
|
458 C-c C-k forms-delete-record
|
|
459 C-c C-q forms-toggle-read-only q
|
|
460 C-c C-o forms-insert-record
|
|
461 C-c C-l forms-jump-record l
|
|
462 C-c C-n forms-next-record n
|
|
463 C-c C-p forms-prev-record p
|
|
464 C-c C-r forms-search-reverse r
|
|
465 C-c C-s forms-search-forward s
|
|
466 C-c C-x forms-exit x
|
4790
|
467 "
|
|
468 (interactive)
|
276
|
469
|
4121
|
470 ;; This is not a simple major mode, as usual. Therefore, forms-mode
|
|
471 ;; takes an optional argument `primary' which is used for the
|
|
472 ;; initial set-up. Normal use would leave `primary' to nil.
|
|
473 ;; A global buffer-local variable `forms--mode-setup' has the same
|
|
474 ;; effect but makes it possible to auto-invoke forms-mode using
|
|
475 ;; `find-file'.
|
|
476 ;; Note: although it seems logical to have `make-local-variable'
|
|
477 ;; executed where the variable is first needed, I have deliberately
|
|
478 ;; placed all calls in this function.
|
|
479
|
276
|
480 ;; Primary set-up: evaluate buffer and check if the mandatory
|
|
481 ;; variables have been set.
|
|
482 (if (or primary (not forms--mode-setup))
|
|
483 (progn
|
4121
|
484 ;;(message "forms: setting up...")
|
276
|
485 (kill-all-local-variables)
|
|
486
|
4121
|
487 ;; Make mandatory variables.
|
276
|
488 (make-local-variable 'forms-file)
|
|
489 (make-local-variable 'forms-number-of-fields)
|
|
490 (make-local-variable 'forms-format-list)
|
|
491
|
4121
|
492 ;; Make optional variables.
|
276
|
493 (make-local-variable 'forms-field-sep)
|
|
494 (make-local-variable 'forms-read-only)
|
|
495 (make-local-variable 'forms-multi-line)
|
|
496 (make-local-variable 'forms-forms-scroll)
|
|
497 (make-local-variable 'forms-forms-jump)
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
498 (make-local-variable 'forms-insert-after)
|
4121
|
499 (make-local-variable 'forms-use-text-properties)
|
8344
|
500
|
|
501 ;; Filter functions.
|
|
502 (make-local-variable 'forms-read-file-filter)
|
|
503 (make-local-variable 'forms-write-file-filter)
|
4790
|
504 (make-local-variable 'forms-new-record-filter)
|
|
505 (make-local-variable 'forms-modified-record-filter)
|
4121
|
506
|
|
507 ;; Make sure no filters exist.
|
8344
|
508 (setq forms-read-file-filter nil)
|
|
509 (setq forms-write-file-filter nil)
|
4790
|
510 (setq forms-new-record-filter nil)
|
|
511 (setq forms-modified-record-filter nil)
|
4121
|
512
|
|
513 ;; If running Emacs 19 under X, setup faces to show read-only and
|
|
514 ;; read-write fields.
|
|
515 (if (fboundp 'make-face)
|
|
516 (progn
|
|
517 (make-local-variable 'forms-ro-face)
|
|
518 (make-local-variable 'forms-rw-face)))
|
276
|
519
|
|
520 ;; eval the buffer, should set variables
|
4121
|
521 ;;(message "forms: processing control file...")
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
522 ;; If enable-local-eval is not set to t the user is asked first.
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
523 (if (or (eq enable-local-eval t)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
524 (yes-or-no-p
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
525 (concat "Evaluate lisp code in buffer "
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
526 (buffer-name) " to display forms ")))
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
527 (eval-current-buffer)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
528 (error "`enable-local-eval' inhibits buffer evaluation"))
|
276
|
529
|
8344
|
530 ;; Check if the mandatory variables make sense.
|
276
|
531 (or forms-file
|
4790
|
532 (error (concat "Forms control file error: "
|
18223
|
533 "`forms-file' has not been set")))
|
8344
|
534
|
|
535 ;; Check forms-field-sep first, since it can be needed to
|
|
536 ;; construct a default format list.
|
4790
|
537 (or (stringp forms-field-sep)
|
|
538 (error (concat "Forms control file error: "
|
18223
|
539 "`forms-field-sep' is not a string")))
|
8344
|
540
|
|
541 (if forms-number-of-fields
|
|
542 (or (and (numberp forms-number-of-fields)
|
|
543 (> forms-number-of-fields 0))
|
|
544 (error (concat "Forms control file error: "
|
18223
|
545 "`forms-number-of-fields' must be a number > 0")))
|
8344
|
546 (or (null forms-format-list)
|
|
547 (error (concat "Forms control file error: "
|
18223
|
548 "`forms-number-of-fields' has not been set"))))
|
8344
|
549
|
|
550 (or forms-format-list
|
|
551 (forms--intuit-from-file))
|
|
552
|
276
|
553 (if forms-multi-line
|
|
554 (if (and (stringp forms-multi-line)
|
|
555 (eq (length forms-multi-line) 1))
|
|
556 (if (string= forms-multi-line forms-field-sep)
|
4790
|
557 (error (concat "Forms control file error: "
|
18223
|
558 "`forms-multi-line' is equal to 'forms-field-sep'")))
|
4790
|
559 (error (concat "Forms control file error: "
|
18223
|
560 "`forms-multi-line' must be nil or a one-character string"))))
|
4121
|
561 (or (fboundp 'set-text-properties)
|
|
562 (setq forms-use-text-properties nil))
|
276
|
563
|
4121
|
564 ;; Validate and process forms-format-list.
|
|
565 ;;(message "forms: pre-processing format list...")
|
18215
|
566 (make-local-variable 'forms--elements)
|
276
|
567 (forms--process-format-list)
|
|
568
|
4121
|
569 ;; Build the formatter and parser.
|
|
570 ;;(message "forms: building formatter...")
|
276
|
571 (make-local-variable 'forms--format)
|
4121
|
572 (make-local-variable 'forms--markers)
|
|
573 (make-local-variable 'forms--dyntexts)
|
|
574 ;;(message "forms: building parser...")
|
276
|
575 (forms--make-format)
|
|
576 (make-local-variable 'forms--parser)
|
|
577 (forms--make-parser)
|
4121
|
578 ;;(message "forms: building parser... done.")
|
276
|
579
|
4121
|
580 ;; Check if record filters are defined.
|
4790
|
581 (if (and forms-new-record-filter
|
|
582 (not (fboundp forms-new-record-filter)))
|
|
583 (error (concat "Forms control file error: "
|
18223
|
584 "`forms-new-record-filter' is not a function")))
|
4790
|
585
|
|
586 (if (and forms-modified-record-filter
|
|
587 (not (fboundp forms-modified-record-filter)))
|
|
588 (error (concat "Forms control file error: "
|
18223
|
589 "`forms-modified-record-filter' is not a function")))
|
276
|
590
|
4121
|
591 ;; The filters acces the contents of the forms using `forms-fields'.
|
307
|
592 (make-local-variable 'forms-fields)
|
276
|
593
|
4121
|
594 ;; Dynamic text support.
|
|
595 (make-local-variable 'forms--dynamic-text)
|
276
|
596
|
23382
|
597 ;; Prevent accidental overwrite of the control file and auto-save.
|
7381
9e7dd6d12e1f
(forms-mode): Set visited file name to nil to prevent overwrite and autosave.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
598 (set-visited-file-name nil)
|
276
|
599
|
4121
|
600 ;; Prepare this buffer for further processing.
|
|
601 (setq buffer-read-only nil)
|
|
602 (erase-buffer)
|
|
603
|
|
604 ;;(message "forms: setting up... done.")
|
|
605 ))
|
|
606
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
607 ;; initialization done
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
608 (setq forms--mode-setup t)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
609
|
4121
|
610 ;; Copy desired faces to the actual variables used by the forms formatter.
|
|
611 (if (fboundp 'make-face)
|
|
612 (progn
|
|
613 (make-local-variable 'forms--ro-face)
|
|
614 (make-local-variable 'forms--rw-face)
|
|
615 (if forms-read-only
|
|
616 (progn
|
|
617 (setq forms--ro-face forms-ro-face)
|
|
618 (setq forms--rw-face forms-ro-face))
|
|
619 (setq forms--ro-face forms-ro-face)
|
|
620 (setq forms--rw-face forms-rw-face))))
|
276
|
621
|
3941
|
622 ;; Make more local variables.
|
276
|
623 (make-local-variable 'forms--file-buffer)
|
|
624 (make-local-variable 'forms--total-records)
|
|
625 (make-local-variable 'forms--current-record)
|
|
626 (make-local-variable 'forms--the-record-list)
|
4121
|
627 (make-local-variable 'forms--search-regexp)
|
276
|
628
|
4790
|
629 ; The keymaps are global, so multiple forms mode buffers can share them.
|
|
630 ;(make-local-variable 'forms-mode-map)
|
|
631 ;(make-local-variable 'forms-mode-ro-map)
|
|
632 ;(make-local-variable 'forms-mode-edit-map)
|
276
|
633 (if forms-mode-map ; already defined
|
|
634 nil
|
4121
|
635 ;;(message "forms: building keymap...")
|
4790
|
636 (forms--mode-commands)
|
4121
|
637 ;;(message "forms: building keymap... done.")
|
|
638 )
|
276
|
639
|
6561
|
640 ;; set the major mode indicator
|
|
641 (setq major-mode 'forms-mode)
|
|
642 (setq mode-name "Forms")
|
|
643
|
276
|
644 ;; find the data file
|
|
645 (setq forms--file-buffer (find-file-noselect forms-file))
|
|
646
|
8344
|
647 ;; Pre-transform.
|
|
648 (let ((read-file-filter forms-read-file-filter)
|
|
649 (write-file-filter forms-write-file-filter))
|
|
650 (if read-file-filter
|
|
651 (save-excursion
|
|
652 (set-buffer forms--file-buffer)
|
10346
|
653 (let ((inhibit-read-only t)
|
|
654 (file-modified (buffer-modified-p)))
|
|
655 (run-hooks 'read-file-filter)
|
|
656 (if (not file-modified) (set-buffer-modified-p nil)))
|
8344
|
657 (if write-file-filter
|
|
658 (progn
|
|
659 (make-variable-buffer-local 'local-write-file-hooks)
|
|
660 (setq local-write-file-hooks (list write-file-filter)))))
|
|
661 (if write-file-filter
|
|
662 (save-excursion
|
|
663 (set-buffer forms--file-buffer)
|
|
664 (make-variable-buffer-local 'local-write-file-hooks)
|
12508
|
665 (setq local-write-file-hooks (list write-file-filter))))))
|
8344
|
666
|
276
|
667 ;; count the number of records, and set see if it may be modified
|
|
668 (let (ro)
|
|
669 (setq forms--total-records
|
|
670 (save-excursion
|
4121
|
671 (prog1
|
|
672 (progn
|
|
673 ;;(message "forms: counting records...")
|
|
674 (set-buffer forms--file-buffer)
|
|
675 (bury-buffer (current-buffer))
|
|
676 (setq ro buffer-read-only)
|
|
677 (count-lines (point-min) (point-max)))
|
|
678 ;;(message "forms: counting records... done.")
|
|
679 )))
|
276
|
680 (if ro
|
|
681 (setq forms-read-only t)))
|
|
682
|
4121
|
683 ;;(message "forms: proceeding setup...")
|
4867
|
684
|
|
685 ;; Since we aren't really implementing a minor mode, we hack the modeline
|
|
686 ;; directly to get the text " View " into forms-read-only form buffers. For
|
|
687 ;; that reason, this variable must be buffer only.
|
|
688 (make-local-variable 'minor-mode-alist)
|
|
689 (setq minor-mode-alist (list (list 'forms-read-only " View")))
|
|
690
|
4121
|
691 ;;(message "forms: proceeding setup (keymaps)...")
|
276
|
692 (forms--set-keymaps)
|
4121
|
693 ;;(message "forms: proceeding setup (commands)...")
|
3827
|
694 (forms--change-commands)
|
276
|
695
|
4121
|
696 ;;(message "forms: proceeding setup (buffer)...")
|
276
|
697 (set-buffer-modified-p nil)
|
|
698
|
8344
|
699 (if (= forms--total-records 0)
|
|
700 ;;(message "forms: proceeding setup (new file)...")
|
|
701 (progn
|
|
702 (insert
|
|
703 "GNU Emacs Forms Mode version " forms-version "\n\n"
|
|
704 (if (file-exists-p forms-file)
|
14356
|
705 (concat "No records available in file `" forms-file "'\n\n")
|
|
706 (format "Creating new file `%s'\nwith %d field%s per record\n\n"
|
8344
|
707 forms-file forms-number-of-fields
|
|
708 (if (= 1 forms-number-of-fields) "" "s")))
|
|
709 "Use " (substitute-command-keys "\\[forms-insert-record]")
|
|
710 " to create new records.\n")
|
|
711 (setq forms--current-record 1)
|
|
712 (setq buffer-read-only t)
|
|
713 (set-buffer-modified-p nil))
|
|
714
|
|
715 ;; setup the first (or current) record to show
|
|
716 (if (< forms--current-record 1)
|
|
717 (setq forms--current-record 1))
|
|
718 (forms-jump-record forms--current-record)
|
24655
|
719
|
|
720 (if forms-insert-after
|
|
721 (forms-last-record)
|
|
722 (forms-first-record))
|
8344
|
723 )
|
276
|
724
|
|
725 ;; user customising
|
4121
|
726 ;;(message "forms: proceeding setup (user hooks)...")
|
276
|
727 (run-hooks 'forms-mode-hooks)
|
4121
|
728 ;;(message "forms: setting up... done.")
|
276
|
729
|
|
730 ;; be helpful
|
|
731 (forms--help)
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
732 )
|
3697
|
733
|
4121
|
734 (defun forms--process-format-list ()
|
|
735 ;; Validate `forms-format-list' and set some global variables.
|
|
736 ;; Symbols in the list are evaluated, and consecutive strings are
|
|
737 ;; concatenated.
|
|
738 ;; Array `forms--elements' is constructed that contains the order
|
|
739 ;; of the fields on the display. This array is used by
|
|
740 ;; `forms--parser-using-text-properties' to extract the fields data
|
|
741 ;; from the form on the screen.
|
13984
|
742 ;; Upon completion, `forms-format-list' is guaranteed correct, so
|
4121
|
743 ;; `forms--make-format' and `forms--make-parser' do not need to perform
|
|
744 ;; any checks.
|
276
|
745
|
4121
|
746 ;; Verify that `forms-format-list' is not nil.
|
276
|
747 (or forms-format-list
|
4790
|
748 (error (concat "Forms control file error: "
|
18223
|
749 "`forms-format-list' has not been set")))
|
4121
|
750 ;; It must be a list.
|
276
|
751 (or (listp forms-format-list)
|
4790
|
752 (error (concat "Forms control file error: "
|
18223
|
753 "`forms-format-list' is not a list")))
|
276
|
754
|
4121
|
755 ;; Assume every field is painted once.
|
|
756 ;; `forms--elements' will grow if needed.
|
|
757 (setq forms--elements (make-vector forms-number-of-fields nil))
|
276
|
758
|
|
759 (let ((the-list forms-format-list) ; the list of format elements
|
307
|
760 (this-item 0) ; element in list
|
4121
|
761 (prev-item nil)
|
276
|
762 (field-num 0)) ; highest field number
|
|
763
|
307
|
764 (setq forms-format-list nil) ; gonna rebuild
|
|
765
|
276
|
766 (while the-list
|
|
767
|
|
768 (let ((el (car-safe the-list))
|
|
769 (rem (cdr-safe the-list)))
|
|
770
|
4121
|
771 ;; If it is a symbol, eval it first.
|
307
|
772 (if (and (symbolp el)
|
|
773 (boundp el))
|
|
774 (setq el (eval el)))
|
|
775
|
276
|
776 (cond
|
|
777
|
4121
|
778 ;; Try string ...
|
|
779 ((stringp el)
|
|
780 (if (stringp prev-item) ; try to concatenate strings
|
|
781 (setq prev-item (concat prev-item el))
|
|
782 (if prev-item
|
|
783 (setq forms-format-list
|
|
784 (append forms-format-list (list prev-item) nil)))
|
|
785 (setq prev-item el)))
|
|
786
|
|
787 ;; Try numeric ...
|
307
|
788 ((numberp el)
|
276
|
789
|
4121
|
790 ;; Validate range.
|
276
|
791 (if (or (<= el 0)
|
|
792 (> el forms-number-of-fields))
|
4790
|
793 (error (concat "Forms format error: "
|
|
794 "field number %d out of range 1..%d")
|
|
795 el forms-number-of-fields))
|
276
|
796
|
4121
|
797 ;; Store forms order.
|
18215
|
798 (if (>= field-num (length forms--elements))
|
4121
|
799 (setq forms--elements (vconcat forms--elements (1- el)))
|
|
800 (aset forms--elements field-num (1- el)))
|
|
801 (setq field-num (1+ field-num))
|
276
|
802
|
4121
|
803 (if prev-item
|
|
804 (setq forms-format-list
|
4723
|
805 (append forms-format-list (list prev-item) nil)))
|
4121
|
806 (setq prev-item el))
|
|
807
|
|
808 ;; Try function ...
|
307
|
809 ((listp el)
|
4121
|
810
|
|
811 ;; Validate.
|
307
|
812 (or (fboundp (car-safe el))
|
4790
|
813 (error (concat "Forms format error: "
|
18223
|
814 "%S is not a function")
|
14421
|
815 (car-safe el)))
|
4121
|
816
|
|
817 ;; Shift.
|
|
818 (if prev-item
|
|
819 (setq forms-format-list
|
|
820 (append forms-format-list (list prev-item) nil)))
|
|
821 (setq prev-item el))
|
307
|
822
|
276
|
823 ;; else
|
|
824 (t
|
4790
|
825 (error (concat "Forms format error: "
|
14421
|
826 "invalid element %S")
|
|
827 el)))
|
276
|
828
|
4121
|
829 ;; Advance to next element of the list.
|
|
830 (setq the-list rem)))
|
307
|
831
|
4121
|
832 ;; Append last item.
|
|
833 (if prev-item
|
|
834 (progn
|
|
835 (setq forms-format-list
|
|
836 (append forms-format-list (list prev-item) nil))
|
|
837 ;; Append a newline if the last item is a field.
|
4723
|
838 ;; This prevents parsing problems.
|
4121
|
839 ;; Also it makes it possible to insert an empty last field.
|
|
840 (if (numberp prev-item)
|
|
841 (setq forms-format-list
|
|
842 (append forms-format-list (list "\n") nil))))))
|
307
|
843
|
4121
|
844 (forms--debug 'forms-format-list
|
|
845 'forms--elements))
|
3697
|
846
|
4121
|
847 ;; Special treatment for read-only segments.
|
|
848 ;;
|
18215
|
849 ;; If text is inserted between two read-only segments, there seems to
|
|
850 ;; be no way to give the newly inserted text the RW face.
|
4723
|
851 ;; To solve this, read-only segments get the `insert-in-front-hooks'
|
18215
|
852 ;; property set with a function that temporarily switches the
|
|
853 ;; properties of the first character of the segment to the RW face, so
|
|
854 ;; the new text gets the right face. The `post-command-hook' is
|
|
855 ;; used to restore the original properties.
|
4121
|
856
|
4723
|
857 (defvar forms--iif-start nil
|
4121
|
858 "Record start of modification command.")
|
4723
|
859 (defvar forms--iif-properties nil
|
4121
|
860 "Original properties of the character being overridden.")
|
|
861
|
4723
|
862 (defun forms--iif-hook (begin end)
|
|
863 "`insert-in-front-hooks' function for read-only segments."
|
4121
|
864
|
4723
|
865 ;; Note start location. By making it a marker that points one
|
|
866 ;; character beyond the actual location, it is guaranteed to move
|
|
867 ;; correctly if text is inserted.
|
|
868 (or forms--iif-start
|
|
869 (setq forms--iif-start (copy-marker (1+ (point)))))
|
4121
|
870
|
4723
|
871 ;; Check if there is special treatment required.
|
|
872 (if (or (<= forms--iif-start 2)
|
|
873 (get-text-property (- forms--iif-start 2)
|
|
874 'read-only))
|
|
875 (progn
|
|
876 ;; Fetch current properties.
|
|
877 (setq forms--iif-properties
|
|
878 (text-properties-at (1- forms--iif-start)))
|
4121
|
879
|
4723
|
880 ;; Replace them.
|
|
881 (let ((inhibit-read-only t))
|
|
882 (set-text-properties
|
|
883 (1- forms--iif-start) forms--iif-start
|
|
884 (list 'face forms--rw-face 'front-sticky '(face))))
|
4121
|
885
|
4723
|
886 ;; Enable `post-command-hook' to restore the properties.
|
|
887 (setq post-command-hook
|
|
888 (append (list 'forms--iif-post-command-hook) post-command-hook)))
|
4121
|
889
|
4723
|
890 ;; No action needed. Clear marker.
|
|
891 (setq forms--iif-start nil)))
|
|
892
|
|
893 (defun forms--iif-post-command-hook ()
|
|
894 "`post-command-hook' function for read-only segments."
|
4121
|
895
|
|
896 ;; Disable `post-command-hook'.
|
|
897 (setq post-command-hook
|
4723
|
898 (delq 'forms--iif-hook-post-command-hook post-command-hook))
|
4121
|
899
|
|
900 ;; Restore properties.
|
4723
|
901 (if forms--iif-start
|
4121
|
902 (let ((inhibit-read-only t))
|
|
903 (set-text-properties
|
4723
|
904 (1- forms--iif-start) forms--iif-start
|
|
905 forms--iif-properties)))
|
4121
|
906
|
|
907 ;; Cleanup.
|
4723
|
908 (setq forms--iif-start nil))
|
4121
|
909
|
|
910 (defvar forms--marker)
|
|
911 (defvar forms--dyntext)
|
276
|
912
|
|
913 (defun forms--make-format ()
|
4121
|
914 "Generate `forms--format' using the information in `forms-format-list'."
|
|
915
|
|
916 ;; The real work is done using a mapcar of `forms--make-format-elt' on
|
|
917 ;; `forms-format-list'.
|
|
918 ;; This function sets up the necessary environment, and decides
|
|
919 ;; which function to mapcar.
|
|
920
|
|
921 (let ((forms--marker 0)
|
|
922 (forms--dyntext 0))
|
|
923 (setq
|
|
924 forms--format
|
|
925 (if forms-use-text-properties
|
26436
|
926 `(lambda (arg)
|
|
927 (let ((inhibit-read-only t))
|
|
928 ,@(apply 'append
|
|
929 (mapcar 'forms--make-format-elt-using-text-properties
|
|
930 forms-format-list))
|
|
931 ;; Prevent insertion before the first text.
|
|
932 ,@(if (numberp (car forms-format-list))
|
|
933 nil
|
|
934 '((add-text-properties (point-min) (1+ (point-min))
|
|
935 '(front-sticky (read-only intangible)))))
|
|
936 ;; Prevent insertion after the last text.
|
|
937 (remove-text-properties (1- (point)) (point)
|
|
938 '(rear-nonsticky)))
|
|
939 (setq forms--iif-start nil))
|
|
940 `(lambda (arg)
|
|
941 ,@(apply 'append
|
|
942 (mapcar 'forms--make-format-elt forms-format-list)))))
|
4121
|
943
|
|
944 ;; We have tallied the number of markers and dynamic texts,
|
|
945 ;; so we can allocate the arrays now.
|
|
946 (setq forms--markers (make-vector forms--marker nil))
|
|
947 (setq forms--dyntexts (make-vector forms--dyntext nil)))
|
307
|
948 (forms--debug 'forms--format))
|
276
|
949
|
4121
|
950 (defun forms--make-format-elt-using-text-properties (el)
|
|
951 "Helper routine to generate format function."
|
|
952
|
|
953 ;; The format routine `forms--format' will look like
|
|
954 ;;
|
|
955 ;; ;; preamble
|
|
956 ;; (lambda (arg)
|
|
957 ;; (let ((inhibit-read-only t))
|
|
958 ;;
|
4723
|
959 ;; ;; A string, e.g. "text: ".
|
4121
|
960 ;; (set-text-properties
|
|
961 ;; (point)
|
|
962 ;; (progn (insert "text: ") (point))
|
4723
|
963 ;; (list 'face forms--ro-face
|
|
964 ;; 'read-only 1
|
|
965 ;; 'insert-in-front-hooks 'forms--iif-hook
|
|
966 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
4121
|
967 ;;
|
4723
|
968 ;; ;; A field, e.g. 6.
|
4121
|
969 ;; (let ((here (point)))
|
|
970 ;; (aset forms--markers 0 (point-marker))
|
|
971 ;; (insert (elt arg 5))
|
|
972 ;; (or (= (point) here)
|
|
973 ;; (set-text-properties
|
|
974 ;; here (point)
|
4723
|
975 ;; (list 'face forms--rw-face
|
|
976 ;; 'front-sticky '(face))))
|
4121
|
977 ;;
|
4723
|
978 ;; ;; Another string, e.g. "\nmore text: ".
|
4121
|
979 ;; (set-text-properties
|
|
980 ;; (point)
|
|
981 ;; (progn (insert "\nmore text: ") (point))
|
|
982 ;; (list 'face forms--ro-face
|
4723
|
983 ;; 'read-only 2
|
|
984 ;; 'insert-in-front-hooks 'forms--iif-hook
|
|
985 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
4121
|
986 ;;
|
4723
|
987 ;; ;; A function, e.g. (tocol 40).
|
4121
|
988 ;; (set-text-properties
|
|
989 ;; (point)
|
|
990 ;; (progn
|
|
991 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
|
|
992 ;; (point))
|
|
993 ;; (list 'face forms--ro-face
|
4723
|
994 ;; 'read-only 2
|
|
995 ;; 'insert-in-front-hooks 'forms--iif-hook
|
|
996 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
|
997 ;;
|
|
998 ;; ;; Prevent insertion before the first text.
|
|
999 ;; (add-text-properties (point-min) (1+ (point-min))
|
|
1000 ;; '(front-sticky (read-only))))))
|
|
1001 ;; ;; Prevent insertion after the last text.
|
|
1002 ;; (remove-text-properties (1- (point)) (point)
|
|
1003 ;; '(rear-nonsticky)))
|
4121
|
1004 ;;
|
|
1005 ;; ;; wrap up
|
4723
|
1006 ;; (setq forms--iif-start nil)
|
4121
|
1007 ;; ))
|
|
1008
|
|
1009 (cond
|
|
1010 ((stringp el)
|
|
1011
|
26436
|
1012 `((set-text-properties
|
|
1013 (point) ; start at point
|
|
1014 (progn ; until after insertion
|
|
1015 (insert ,el)
|
|
1016 (point))
|
|
1017 (list 'face forms--ro-face ; read-only appearance
|
|
1018 'read-only ,@(list (1+ forms--marker))
|
|
1019 'intangible ,@(list (1+ forms--marker))
|
|
1020 'insert-in-front-hooks '(forms--iif-hook)
|
|
1021 'rear-nonsticky '(face read-only insert-in-front-hooks
|
|
1022 intangible)))))
|
4723
|
1023
|
4121
|
1024 ((numberp el)
|
26436
|
1025 `((let ((here (point)))
|
|
1026 (aset forms--markers
|
|
1027 ,(prog1 forms--marker
|
|
1028 (setq forms--marker (1+ forms--marker)))
|
|
1029 (point-marker))
|
|
1030 (insert (elt arg ,(1- el)))
|
|
1031 (or (= (point) here)
|
|
1032 (set-text-properties
|
|
1033 here (point)
|
|
1034 (list 'face forms--rw-face
|
|
1035 'front-sticky '(face)))))))
|
4121
|
1036
|
|
1037 ((listp el)
|
26436
|
1038 `((set-text-properties
|
|
1039 (point)
|
|
1040 (progn
|
|
1041 (insert (aset forms--dyntexts
|
|
1042 ,(prog1 forms--dyntext
|
|
1043 (setq forms--dyntext (1+ forms--dyntext)))
|
|
1044 ,el))
|
|
1045 (point))
|
|
1046 (list 'face forms--ro-face
|
|
1047 'read-only ,@(list (1+ forms--marker))
|
|
1048 'intangible ,@(list (1+ forms--marker))
|
|
1049 'insert-in-front-hooks '(forms--iif-hook)
|
|
1050 'rear-nonsticky '(read-only face insert-in-front-hooks
|
|
1051 intangible)))))
|
4121
|
1052
|
|
1053 ;; end of cond
|
|
1054 ))
|
276
|
1055
|
|
1056 (defun forms--make-format-elt (el)
|
4121
|
1057 "Helper routine to generate format function."
|
|
1058
|
|
1059 ;; If we're not using text properties, the format routine
|
|
1060 ;; `forms--format' will look like
|
|
1061 ;;
|
|
1062 ;; (lambda (arg)
|
|
1063 ;; ;; a string, e.g. "text: "
|
|
1064 ;; (insert "text: ")
|
|
1065 ;; ;; a field, e.g. 6
|
|
1066 ;; (aset forms--markers 0 (point-marker))
|
|
1067 ;; (insert (elt arg 5))
|
|
1068 ;; ;; another string, e.g. "\nmore text: "
|
|
1069 ;; (insert "\nmore text: ")
|
|
1070 ;; ;; a function, e.g. (tocol 40)
|
|
1071 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
|
|
1072 ;; ... )
|
|
1073
|
3697
|
1074 (cond
|
|
1075 ((stringp el)
|
26436
|
1076 `((insert ,el)))
|
3697
|
1077 ((numberp el)
|
|
1078 (prog1
|
26436
|
1079 `((aset forms--markers ,forms--marker (point-marker))
|
|
1080 (insert (elt arg ,(1- el))))
|
4121
|
1081 (setq forms--marker (1+ forms--marker))))
|
3697
|
1082 ((listp el)
|
|
1083 (prog1
|
26436
|
1084 `((insert (aset forms--dyntexts ,forms--dyntext ,el)))
|
4121
|
1085 (setq forms--dyntext (1+ forms--dyntext))))))
|
3697
|
1086
|
4121
|
1087 (defvar forms--field)
|
|
1088 (defvar forms--recordv)
|
|
1089 (defvar forms--seen-text)
|
276
|
1090
|
|
1091 (defun forms--make-parser ()
|
4121
|
1092 "Generate `forms--parser' from the information in `forms-format-list'."
|
|
1093
|
|
1094 ;; If we can use text properties, we simply set it to
|
|
1095 ;; `forms--parser-using-text-properties'.
|
|
1096 ;; Otherwise, the function is constructed using a mapcar of
|
|
1097 ;; `forms--make-parser-elt on `forms-format-list'.
|
|
1098
|
|
1099 (setq
|
|
1100 forms--parser
|
|
1101 (if forms-use-text-properties
|
|
1102 (function forms--parser-using-text-properties)
|
|
1103 (let ((forms--field nil)
|
|
1104 (forms--seen-text nil)
|
|
1105 (forms--dyntext 0))
|
|
1106
|
|
1107 ;; Note: we add a nil element to the list passed to `mapcar',
|
|
1108 ;; see `forms--make-parser-elt' for details.
|
26436
|
1109 `(lambda nil
|
|
1110 (let (here)
|
|
1111 (goto-char (point-min))
|
|
1112 ,@(apply 'append
|
|
1113 (mapcar
|
|
1114 'forms--make-parser-elt
|
|
1115 (append forms-format-list (list nil)))))))))
|
4121
|
1116
|
307
|
1117 (forms--debug 'forms--parser))
|
276
|
1118
|
4121
|
1119 (defun forms--parser-using-text-properties ()
|
|
1120 "Extract field info from forms when using text properties."
|
|
1121
|
|
1122 ;; Using text properties, we can simply jump to the markers, and
|
|
1123 ;; extract the information up to the following read-only segment.
|
|
1124
|
|
1125 (let ((i 0)
|
|
1126 here there)
|
|
1127 (while (< i (length forms--markers))
|
|
1128 (goto-char (setq here (aref forms--markers i)))
|
|
1129 (if (get-text-property here 'read-only)
|
|
1130 (aset forms--recordv (aref forms--elements i) nil)
|
|
1131 (if (setq there
|
|
1132 (next-single-property-change here 'read-only))
|
|
1133 (aset forms--recordv (aref forms--elements i)
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1134 (buffer-substring-no-properties here there))
|
4121
|
1135 (aset forms--recordv (aref forms--elements i)
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1136 (buffer-substring-no-properties here (point-max)))))
|
4121
|
1137 (setq i (1+ i)))))
|
276
|
1138
|
|
1139 (defun forms--make-parser-elt (el)
|
4121
|
1140 "Helper routine to generate forms parser function."
|
|
1141
|
|
1142 ;; The parse routine will look like:
|
|
1143 ;;
|
|
1144 ;; (lambda nil
|
|
1145 ;; (let (here)
|
|
1146 ;; (goto-char (point-min))
|
|
1147 ;;
|
|
1148 ;; ;; "text: "
|
|
1149 ;; (if (not (looking-at "text: "))
|
|
1150 ;; (error "Parse error: cannot find \"text: \""))
|
|
1151 ;; (forward-char 6) ; past "text: "
|
|
1152 ;;
|
|
1153 ;; ;; 6
|
|
1154 ;; ;; "\nmore text: "
|
|
1155 ;; (setq here (point))
|
|
1156 ;; (if (not (search-forward "\nmore text: " nil t nil))
|
|
1157 ;; (error "Parse error: cannot find \"\\nmore text: \""))
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1158 ;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12)))
|
4121
|
1159 ;;
|
|
1160 ;; ;; (tocol 40)
|
|
1161 ;; (let ((forms--dyntext (car-safe forms--dynamic-text)))
|
|
1162 ;; (if (not (looking-at (regexp-quote forms--dyntext)))
|
|
1163 ;; (error "Parse error: not looking at \"%s\"" forms--dyntext))
|
|
1164 ;; (forward-char (length forms--dyntext))
|
|
1165 ;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text)))
|
|
1166 ;; ...
|
|
1167 ;; ;; final flush (due to terminator sentinel, see below)
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1168 ;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max)))
|
4121
|
1169
|
307
|
1170 (cond
|
|
1171 ((stringp el)
|
|
1172 (prog1
|
4121
|
1173 (if forms--field
|
26436
|
1174 `((setq here (point))
|
|
1175 (if (not (search-forward ,el nil t nil))
|
|
1176 (error "Parse error: cannot find `%s'" ,el))
|
|
1177 (aset forms--recordv ,(1- forms--field)
|
|
1178 (buffer-substring-no-properties here
|
|
1179 (- (point) ,(length el)))))
|
|
1180 `((if (not (looking-at ,(regexp-quote el)))
|
|
1181 (error "Parse error: not looking at `%s'" ,el))
|
|
1182 (forward-char ,(length el))))
|
4121
|
1183 (setq forms--seen-text t)
|
|
1184 (setq forms--field nil)))
|
307
|
1185 ((numberp el)
|
4121
|
1186 (if forms--field
|
307
|
1187 (error "Cannot parse adjacent fields %d and %d"
|
4121
|
1188 forms--field el)
|
|
1189 (setq forms--field el)
|
307
|
1190 nil))
|
|
1191 ((null el)
|
4121
|
1192 (if forms--field
|
26436
|
1193 `((aset forms--recordv ,(1- forms--field)
|
|
1194 (buffer-substring-no-properties (point) (point-max))))))
|
307
|
1195 ((listp el)
|
|
1196 (prog1
|
4121
|
1197 (if forms--field
|
26436
|
1198 `((let ((here (point))
|
|
1199 (forms--dyntext (aref forms--dyntexts ,forms--dyntext)))
|
|
1200 (if (not (search-forward forms--dyntext nil t nil))
|
|
1201 (error "Parse error: cannot find `%s'" forms--dyntext))
|
|
1202 (aset forms--recordv ,(1- forms--field)
|
|
1203 (buffer-substring-no-properties here
|
|
1204 (- (point) (length forms--dyntext))))))
|
|
1205 `((let ((forms--dyntext (aref forms--dyntexts ,forms--dyntext)))
|
|
1206 (if (not (looking-at (regexp-quote forms--dyntext)))
|
|
1207 (error "Parse error: not looking at `%s'" forms--dyntext))
|
|
1208 (forward-char (length forms--dyntext)))))
|
4121
|
1209 (setq forms--dyntext (1+ forms--dyntext))
|
|
1210 (setq forms--seen-text t)
|
|
1211 (setq forms--field nil)))
|
307
|
1212 ))
|
3697
|
1213
|
8344
|
1214 (defun forms--intuit-from-file ()
|
|
1215 "Get number of fields and a default form using the data file."
|
|
1216
|
|
1217 ;; If `forms-number-of-fields' is not set, get it from the data file.
|
|
1218 (if (null forms-number-of-fields)
|
|
1219
|
|
1220 ;; Need a file to do this.
|
|
1221 (if (not (file-exists-p forms-file))
|
38436
|
1222 (error "Need existing file or explicit 'forms-number-of-records'")
|
8344
|
1223
|
|
1224 ;; Visit the file and extract the first record.
|
|
1225 (setq forms--file-buffer (find-file-noselect forms-file))
|
|
1226 (let ((read-file-filter forms-read-file-filter)
|
|
1227 (the-record))
|
|
1228 (setq the-record
|
|
1229 (save-excursion
|
|
1230 (set-buffer forms--file-buffer)
|
|
1231 (let ((inhibit-read-only t))
|
|
1232 (run-hooks 'read-file-filter))
|
|
1233 (goto-char (point-min))
|
|
1234 (forms--get-record)))
|
|
1235
|
|
1236 ;; This may be overkill, but try to avoid interference with
|
|
1237 ;; the normal processing.
|
|
1238 (kill-buffer forms--file-buffer)
|
|
1239
|
|
1240 ;; Count the number of fields in `the-record'.
|
|
1241 (let (the-result
|
|
1242 (start-pos 0)
|
|
1243 found-pos
|
|
1244 (field-sep-length (length forms-field-sep)))
|
|
1245 (setq forms-number-of-fields 1)
|
|
1246 (while (setq found-pos
|
|
1247 (string-match forms-field-sep the-record start-pos))
|
|
1248 (progn
|
|
1249 (setq forms-number-of-fields (1+ forms-number-of-fields))
|
|
1250 (setq start-pos (+ field-sep-length found-pos))))))))
|
|
1251
|
|
1252 ;; Construct default format list.
|
|
1253 (setq forms-format-list (list "Forms file \"" forms-file "\".\n\n"))
|
|
1254 (let ((i 0))
|
|
1255 (while (<= (setq i (1+ i)) forms-number-of-fields)
|
|
1256 (setq forms-format-list
|
|
1257 (append forms-format-list
|
|
1258 (list (format "%4d: " i) i "\n"))))))
|
|
1259
|
276
|
1260 (defun forms--set-keymaps ()
|
|
1261 "Set the keymaps used in this mode."
|
|
1262
|
4790
|
1263 (use-local-map (if forms-read-only
|
|
1264 forms-mode-ro-map
|
|
1265 forms-mode-edit-map)))
|
|
1266
|
|
1267 (defun forms--mode-commands ()
|
|
1268 "Fill the Forms mode keymaps."
|
276
|
1269
|
4790
|
1270 ;; `forms-mode-map' is always accessible via \C-c prefix.
|
|
1271 (setq forms-mode-map (make-keymap))
|
|
1272 (define-key forms-mode-map "\t" 'forms-next-field)
|
|
1273 (define-key forms-mode-map "\C-k" 'forms-delete-record)
|
|
1274 (define-key forms-mode-map "\C-q" 'forms-toggle-read-only)
|
|
1275 (define-key forms-mode-map "\C-o" 'forms-insert-record)
|
|
1276 (define-key forms-mode-map "\C-l" 'forms-jump-record)
|
|
1277 (define-key forms-mode-map "\C-n" 'forms-next-record)
|
|
1278 (define-key forms-mode-map "\C-p" 'forms-prev-record)
|
10346
|
1279 (define-key forms-mode-map "\C-r" 'forms-search-backward)
|
|
1280 (define-key forms-mode-map "\C-s" 'forms-search-forward)
|
4790
|
1281 (define-key forms-mode-map "\C-x" 'forms-exit)
|
|
1282 (define-key forms-mode-map "<" 'forms-first-record)
|
|
1283 (define-key forms-mode-map ">" 'forms-last-record)
|
|
1284 (define-key forms-mode-map "\C-?" 'forms-prev-record)
|
4121
|
1285
|
4790
|
1286 ;; `forms-mode-ro-map' replaces the local map when in read-only mode.
|
|
1287 (setq forms-mode-ro-map (make-keymap))
|
|
1288 (suppress-keymap forms-mode-ro-map)
|
|
1289 (define-key forms-mode-ro-map "\C-c" forms-mode-map)
|
|
1290 (define-key forms-mode-ro-map "\t" 'forms-next-field)
|
|
1291 (define-key forms-mode-ro-map "q" 'forms-toggle-read-only)
|
|
1292 (define-key forms-mode-ro-map "l" 'forms-jump-record)
|
|
1293 (define-key forms-mode-ro-map "n" 'forms-next-record)
|
|
1294 (define-key forms-mode-ro-map "p" 'forms-prev-record)
|
10346
|
1295 (define-key forms-mode-ro-map "r" 'forms-search-backward)
|
|
1296 (define-key forms-mode-ro-map "s" 'forms-search-forward)
|
4790
|
1297 (define-key forms-mode-ro-map "x" 'forms-exit)
|
|
1298 (define-key forms-mode-ro-map "<" 'forms-first-record)
|
|
1299 (define-key forms-mode-ro-map ">" 'forms-last-record)
|
|
1300 (define-key forms-mode-ro-map "?" 'describe-mode)
|
|
1301 (define-key forms-mode-ro-map " " 'forms-next-record)
|
|
1302 (forms--mode-commands1 forms-mode-ro-map)
|
10346
|
1303 (forms--mode-menu-ro forms-mode-ro-map)
|
4790
|
1304
|
|
1305 ;; This is the normal, local map.
|
|
1306 (setq forms-mode-edit-map (make-keymap))
|
|
1307 (define-key forms-mode-edit-map "\t" 'forms-next-field)
|
|
1308 (define-key forms-mode-edit-map "\C-c" forms-mode-map)
|
|
1309 (forms--mode-commands1 forms-mode-edit-map)
|
10346
|
1310 (forms--mode-menu-edit forms-mode-edit-map)
|
4790
|
1311 )
|
|
1312
|
10346
|
1313 (defun forms--mode-menu-ro (map)
|
|
1314 ;;; Menu initialisation
|
|
1315 ; (define-key map [menu-bar] (make-sparse-keymap))
|
|
1316 (define-key map [menu-bar forms]
|
|
1317 (cons "Forms" (make-sparse-keymap "Forms")))
|
|
1318 (define-key map [menu-bar forms menu-forms-exit]
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1319 '("Exit Forms Mode" . forms-exit))
|
10346
|
1320 (define-key map [menu-bar forms menu-forms-sep1]
|
|
1321 '("----"))
|
|
1322 (define-key map [menu-bar forms menu-forms-save]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1323 '("Save Data" . forms-save-buffer))
|
10346
|
1324 (define-key map [menu-bar forms menu-forms-print]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1325 '("Print Data" . forms-print))
|
10346
|
1326 (define-key map [menu-bar forms menu-forms-describe]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1327 '("Describe Mode" . describe-mode))
|
10346
|
1328 (define-key map [menu-bar forms menu-forms-toggle-ro]
|
|
1329 '("Toggle View/Edit" . forms-toggle-read-only))
|
|
1330 (define-key map [menu-bar forms menu-forms-jump-record]
|
|
1331 '("Jump" . forms-jump-record))
|
|
1332 (define-key map [menu-bar forms menu-forms-search-backward]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1333 '("Search Backward" . forms-search-backward))
|
10346
|
1334 (define-key map [menu-bar forms menu-forms-search-forward]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1335 '("Search Forward" . forms-search-forward))
|
10346
|
1336 (define-key map [menu-bar forms menu-forms-delete-record]
|
|
1337 '("Delete" . forms-delete-record))
|
|
1338 (define-key map [menu-bar forms menu-forms-insert-record]
|
|
1339 '("Insert" . forms-insert-record))
|
|
1340 (define-key map [menu-bar forms menu-forms-sep2]
|
|
1341 '("----"))
|
|
1342 (define-key map [menu-bar forms menu-forms-last-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1343 '("Last Record" . forms-last-record))
|
10346
|
1344 (define-key map [menu-bar forms menu-forms-first-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1345 '("First Record" . forms-first-record))
|
10346
|
1346 (define-key map [menu-bar forms menu-forms-prev-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1347 '("Previous Record" . forms-prev-record))
|
10346
|
1348 (define-key map [menu-bar forms menu-forms-next-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1349 '("Next Record" . forms-next-record))
|
10346
|
1350 (define-key map [menu-bar forms menu-forms-sep3]
|
|
1351 '("----"))
|
|
1352 (define-key map [menu-bar forms menu-forms-prev-field]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1353 '("Previous Field" . forms-prev-field))
|
10346
|
1354 (define-key map [menu-bar forms menu-forms-next-field]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1355 '("Next Field" . forms-next-field))
|
10346
|
1356 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
|
|
1357 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
|
|
1358 )
|
|
1359 (defun forms--mode-menu-edit (map)
|
|
1360 ;;; Menu initialisation
|
|
1361 ; (define-key map [menu-bar] (make-sparse-keymap))
|
|
1362 (define-key map [menu-bar forms]
|
|
1363 (cons "Forms" (make-sparse-keymap "Forms")))
|
|
1364 (define-key map [menu-bar forms menu-forms-edit--exit]
|
|
1365 '("Exit" . forms-exit))
|
|
1366 (define-key map [menu-bar forms menu-forms-edit-sep1]
|
|
1367 '("----"))
|
|
1368 (define-key map [menu-bar forms menu-forms-edit-save]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1369 '("Save Data" . forms-save-buffer))
|
10346
|
1370 (define-key map [menu-bar forms menu-forms-edit-print]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1371 '("Print Data" . forms-print))
|
10346
|
1372 (define-key map [menu-bar forms menu-forms-edit-describe]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1373 '("Describe Mode" . describe-mode))
|
10346
|
1374 (define-key map [menu-bar forms menu-forms-edit-toggle-ro]
|
|
1375 '("Toggle View/Edit" . forms-toggle-read-only))
|
|
1376 (define-key map [menu-bar forms menu-forms-edit-jump-record]
|
|
1377 '("Jump" . forms-jump-record))
|
|
1378 (define-key map [menu-bar forms menu-forms-edit-search-backward]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1379 '("Search Backward" . forms-search-backward))
|
10346
|
1380 (define-key map [menu-bar forms menu-forms-edit-search-forward]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1381 '("Search Forward" . forms-search-forward))
|
10346
|
1382 (define-key map [menu-bar forms menu-forms-edit-delete-record]
|
|
1383 '("Delete" . forms-delete-record))
|
|
1384 (define-key map [menu-bar forms menu-forms-edit-insert-record]
|
|
1385 '("Insert" . forms-insert-record))
|
|
1386 (define-key map [menu-bar forms menu-forms-edit-sep2]
|
|
1387 '("----"))
|
|
1388 (define-key map [menu-bar forms menu-forms-edit-last-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1389 '("Last Record" . forms-last-record))
|
10346
|
1390 (define-key map [menu-bar forms menu-forms-edit-first-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1391 '("First Record" . forms-first-record))
|
10346
|
1392 (define-key map [menu-bar forms menu-forms-edit-prev-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1393 '("Previous Record" . forms-prev-record))
|
10346
|
1394 (define-key map [menu-bar forms menu-forms-edit-next-record]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1395 '("Next Record" . forms-next-record))
|
10346
|
1396 (define-key map [menu-bar forms menu-forms-edit-sep3]
|
|
1397 '("----"))
|
|
1398 (define-key map [menu-bar forms menu-forms-edit-prev-field]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1399 '("Previous Field" . forms-prev-field))
|
10346
|
1400 (define-key map [menu-bar forms menu-forms-edit-next-field]
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1401 '("Next Field" . forms-next-field))
|
10346
|
1402 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
|
|
1403 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
|
|
1404 )
|
|
1405
|
|
1406 (defun forms--mode-commands1 (map)
|
4790
|
1407 "Helper routine to define keys."
|
|
1408 (define-key map [TAB] 'forms-next-field)
|
|
1409 (define-key map [S-tab] 'forms-prev-field)
|
|
1410 (define-key map [next] 'forms-next-record)
|
|
1411 (define-key map [prior] 'forms-prev-record)
|
|
1412 (define-key map [begin] 'forms-first-record)
|
|
1413 (define-key map [last] 'forms-last-record)
|
|
1414 (define-key map [backtab] 'forms-prev-field)
|
276
|
1415 )
|
3697
|
1416
|
276
|
1417 ;;; Changed functions
|
|
1418
|
|
1419 (defun forms--change-commands ()
|
3941
|
1420 "Localize some commands for Forms mode."
|
4121
|
1421
|
276
|
1422 ;; scroll-down -> forms-prev-record
|
|
1423 ;; scroll-up -> forms-next-record
|
3828
|
1424 (if forms-forms-scroll
|
|
1425 (progn
|
|
1426 (substitute-key-definition 'scroll-up 'forms-next-record
|
|
1427 (current-local-map)
|
|
1428 (current-global-map))
|
|
1429 (substitute-key-definition 'scroll-down 'forms-prev-record
|
|
1430 (current-local-map)
|
|
1431 (current-global-map))))
|
276
|
1432 ;;
|
|
1433 ;; beginning-of-buffer -> forms-first-record
|
|
1434 ;; end-of-buffer -> forms-end-record
|
3828
|
1435 (if forms-forms-jump
|
|
1436 (progn
|
|
1437 (substitute-key-definition 'beginning-of-buffer 'forms-first-record
|
|
1438 (current-local-map)
|
|
1439 (current-global-map))
|
|
1440 (substitute-key-definition 'end-of-buffer 'forms-last-record
|
|
1441 (current-local-map)
|
|
1442 (current-global-map))))
|
276
|
1443 ;;
|
8344
|
1444 ;; Save buffer
|
|
1445 (local-set-key "\C-x\C-s" 'forms-save-buffer)
|
|
1446 ;;
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1447 ;; We have our own revert function - use it.
|
4790
|
1448 (make-local-variable 'revert-buffer-function)
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1449 (setq revert-buffer-function 'forms--revert-buffer)
|
4790
|
1450
|
|
1451 t)
|
276
|
1452
|
|
1453 (defun forms--help ()
|
3941
|
1454 "Initial help for Forms mode."
|
14315
ab041898078d
(forms--help, forms-search-forward, forms-search-backward): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1455 (message "%s" (substitute-command-keys (concat
|
4790
|
1456 "\\[forms-next-record]:next"
|
|
1457 " \\[forms-prev-record]:prev"
|
|
1458 " \\[forms-first-record]:first"
|
|
1459 " \\[forms-last-record]:last"
|
|
1460 " \\[describe-mode]:help"))))
|
276
|
1461
|
|
1462 (defun forms--trans (subj arg rep)
|
3941
|
1463 "Translate in SUBJ all chars ARG into char REP. ARG and REP should
|
276
|
1464 be single-char strings."
|
|
1465 (let ((i 0)
|
|
1466 (x (length subj))
|
|
1467 (re (regexp-quote arg))
|
|
1468 (k (string-to-char rep)))
|
|
1469 (while (setq i (string-match re subj i))
|
|
1470 (aset subj i k)
|
|
1471 (setq i (1+ i)))))
|
|
1472
|
|
1473 (defun forms--exit (query &optional save)
|
4121
|
1474 "Internal exit from forms mode function."
|
|
1475
|
276
|
1476 (let ((buf (buffer-name forms--file-buffer)))
|
|
1477 (forms--checkmod)
|
|
1478 (if (and save
|
|
1479 (buffer-modified-p forms--file-buffer))
|
8344
|
1480 (forms-save-buffer))
|
276
|
1481 (save-excursion
|
|
1482 (set-buffer forms--file-buffer)
|
|
1483 (delete-auto-save-file-if-necessary)
|
|
1484 (kill-buffer (current-buffer)))
|
|
1485 (if (get-buffer buf) ; not killed???
|
18215
|
1486 (if save
|
|
1487 (error "Problem saving buffer %s" (buffer-name buf)))
|
276
|
1488 (delete-auto-save-file-if-necessary)
|
|
1489 (kill-buffer (current-buffer)))))
|
|
1490
|
|
1491 (defun forms--get-record ()
|
|
1492 "Fetch the current record from the file buffer."
|
4121
|
1493
|
|
1494 ;; This function is executed in the context of the `forms--file-buffer'.
|
|
1495
|
276
|
1496 (or (bolp)
|
|
1497 (beginning-of-line nil))
|
|
1498 (let ((here (point)))
|
|
1499 (prog2
|
|
1500 (end-of-line)
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1501 (buffer-substring-no-properties here (point))
|
276
|
1502 (goto-char here))))
|
|
1503
|
|
1504 (defun forms--show-record (the-record)
|
3941
|
1505 "Format THE-RECORD and display it in the current buffer."
|
276
|
1506
|
4121
|
1507 ;; Split the-record.
|
276
|
1508 (let (the-result
|
|
1509 (start-pos 0)
|
|
1510 found-pos
|
|
1511 (field-sep-length (length forms-field-sep)))
|
|
1512 (if forms-multi-line
|
|
1513 (forms--trans the-record forms-multi-line "\n"))
|
4121
|
1514 ;; Add an extra separator (makes splitting easy).
|
276
|
1515 (setq the-record (concat the-record forms-field-sep))
|
|
1516 (while (setq found-pos (string-match forms-field-sep the-record start-pos))
|
|
1517 (let ((ent (substring the-record start-pos found-pos)))
|
|
1518 (setq the-result
|
|
1519 (append the-result (list ent)))
|
|
1520 (setq start-pos (+ field-sep-length found-pos))))
|
|
1521 (setq forms--the-record-list the-result))
|
|
1522
|
|
1523 (setq buffer-read-only nil)
|
4121
|
1524 (if forms-use-text-properties
|
|
1525 (let ((inhibit-read-only t))
|
|
1526 (set-text-properties (point-min) (point-max) nil)))
|
276
|
1527 (erase-buffer)
|
|
1528
|
4121
|
1529 ;; Verify the number of fields, extend forms--the-record-list if needed.
|
276
|
1530 (if (= (length forms--the-record-list) forms-number-of-fields)
|
|
1531 nil
|
12847
|
1532 (if (null forms-check-number-of-fields)
|
|
1533 nil
|
|
1534 (message "Warning: this record has %d fields instead of %d"
|
|
1535 (length forms--the-record-list) forms-number-of-fields))
|
276
|
1536 (if (< (length forms--the-record-list) forms-number-of-fields)
|
|
1537 (setq forms--the-record-list
|
|
1538 (append forms--the-record-list
|
|
1539 (make-list
|
|
1540 (- forms-number-of-fields
|
|
1541 (length forms--the-record-list))
|
|
1542 "")))))
|
|
1543
|
4121
|
1544 ;; Call the formatter function.
|
307
|
1545 (setq forms-fields (append (list nil) forms--the-record-list nil))
|
276
|
1546 (funcall forms--format forms--the-record-list)
|
|
1547
|
4121
|
1548 ;; Prepare.
|
276
|
1549 (goto-char (point-min))
|
|
1550 (set-buffer-modified-p nil)
|
|
1551 (setq buffer-read-only forms-read-only)
|
|
1552 (setq mode-line-process
|
24077
|
1553 (concat " " (int-to-string forms--current-record)
|
|
1554 "/" (int-to-string forms--total-records))))
|
276
|
1555
|
|
1556 (defun forms--parse-form ()
|
|
1557 "Parse contents of form into list of strings."
|
|
1558 ;; The contents of the form are parsed, and a new list of strings
|
|
1559 ;; is constructed.
|
|
1560 ;; A vector with the strings from the original record is
|
3941
|
1561 ;; constructed, which is updated with the new contents. Therefore
|
276
|
1562 ;; fields which were not in the form are not modified.
|
|
1563 ;; Finally, the vector is transformed into a list for further processing.
|
|
1564
|
4121
|
1565 (let (forms--recordv)
|
276
|
1566
|
4121
|
1567 ;; Build the vector.
|
|
1568 (setq forms--recordv (vconcat forms--the-record-list))
|
276
|
1569
|
4121
|
1570 ;; Parse the form and update the vector.
|
307
|
1571 (let ((forms--dynamic-text forms--dynamic-text))
|
|
1572 (funcall forms--parser))
|
276
|
1573
|
4790
|
1574 (if forms-modified-record-filter
|
307
|
1575 ;; As a service to the user, we add a zeroth element so she
|
|
1576 ;; can use the same indices as in the forms definition.
|
4121
|
1577 (let ((the-fields (vconcat [nil] forms--recordv)))
|
4790
|
1578 (setq the-fields (funcall forms-modified-record-filter the-fields))
|
307
|
1579 (cdr (append the-fields nil)))
|
|
1580
|
4121
|
1581 ;; Transform to a list and return.
|
|
1582 (append forms--recordv nil))))
|
276
|
1583
|
|
1584 (defun forms--update ()
|
3941
|
1585 "Update current record with contents of form.
|
4121
|
1586 As a side effect: sets `forms--the-record-list'."
|
3941
|
1587
|
276
|
1588 (if forms-read-only
|
18215
|
1589 (error "Buffer is read-only"))
|
8344
|
1590
|
18215
|
1591 (let (the-record)
|
|
1592 ;; Build new record.
|
|
1593 (setq forms--the-record-list (forms--parse-form))
|
|
1594 (setq the-record
|
|
1595 (mapconcat 'identity forms--the-record-list forms-field-sep))
|
|
1596
|
|
1597 (if (string-match (regexp-quote forms-field-sep)
|
|
1598 (mapconcat 'identity forms--the-record-list ""))
|
|
1599 (error "Field separator occurs in record - update refused"))
|
|
1600
|
|
1601 ;; Handle multi-line fields, if allowed.
|
|
1602 (if forms-multi-line
|
|
1603 (forms--trans the-record "\n" forms-multi-line))
|
276
|
1604
|
18215
|
1605 ;; A final sanity check before updating.
|
|
1606 (if (string-match "\n" the-record)
|
|
1607 (error "Multi-line fields in this record - update refused"))
|
276
|
1608
|
18215
|
1609 (save-excursion
|
|
1610 (set-buffer forms--file-buffer)
|
|
1611 ;; Use delete-region instead of kill-region, to avoid
|
|
1612 ;; adding junk to the kill-ring.
|
|
1613 (delete-region (save-excursion (beginning-of-line) (point))
|
|
1614 (save-excursion (end-of-line) (point)))
|
|
1615 (insert the-record)
|
|
1616 (beginning-of-line))))
|
276
|
1617
|
|
1618 (defun forms--checkmod ()
|
|
1619 "Check if this form has been modified, and call forms--update if so."
|
|
1620 (if (buffer-modified-p nil)
|
|
1621 (let ((here (point)))
|
|
1622 (forms--update)
|
|
1623 (set-buffer-modified-p nil)
|
|
1624 (goto-char here))))
|
3697
|
1625
|
276
|
1626 ;;; Start and exit
|
3941
|
1627
|
|
1628 ;;;###autoload
|
276
|
1629 (defun forms-find-file (fn)
|
3941
|
1630 "Visit a file in Forms mode."
|
276
|
1631 (interactive "fForms file: ")
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1632 (let ((enable-local-eval t)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1633 (enable-local-variables t))
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1634 (find-file-read-only fn)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1635 (or forms--mode-setup (forms-mode t))))
|
276
|
1636
|
3941
|
1637 ;;;###autoload
|
276
|
1638 (defun forms-find-file-other-window (fn)
|
3941
|
1639 "Visit a file in Forms mode in other window."
|
276
|
1640 (interactive "fFbrowse file in other window: ")
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1641 (let ((enable-local-eval t)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1642 (enable-local-variables t))
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1643 (find-file-other-window fn)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1644 (or forms--mode-setup (forms-mode t))))
|
276
|
1645
|
|
1646 (defun forms-exit (query)
|
3941
|
1647 "Normal exit from Forms mode. Modified buffers are saved."
|
276
|
1648 (interactive "P")
|
|
1649 (forms--exit query t))
|
|
1650
|
|
1651 (defun forms-exit-no-save (query)
|
3941
|
1652 "Exit from Forms mode without saving buffers."
|
276
|
1653 (interactive "P")
|
|
1654 (forms--exit query nil))
|
3697
|
1655
|
276
|
1656 ;;; Navigating commands
|
|
1657
|
|
1658 (defun forms-next-record (arg)
|
|
1659 "Advance to the ARGth following record."
|
|
1660 (interactive "P")
|
|
1661 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t))
|
|
1662
|
|
1663 (defun forms-prev-record (arg)
|
|
1664 "Advance to the ARGth previous record."
|
|
1665 (interactive "P")
|
|
1666 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))
|
|
1667
|
|
1668 (defun forms-jump-record (arg &optional relative)
|
|
1669 "Jump to a random record."
|
|
1670 (interactive "NRecord number: ")
|
|
1671
|
4121
|
1672 ;; Verify that the record number is within range.
|
276
|
1673 (if (or (> arg forms--total-records)
|
|
1674 (<= arg 0))
|
18215
|
1675 (error
|
4121
|
1676 ;; Don't give the message if just paging.
|
276
|
1677 (if (not relative)
|
|
1678 (message "Record number %d out of range 1..%d"
|
18215
|
1679 arg forms--total-records)
|
|
1680 "")))
|
276
|
1681
|
18215
|
1682 ;; Flush.
|
|
1683 (forms--checkmod)
|
276
|
1684
|
18215
|
1685 ;; Calculate displacement.
|
|
1686 (let ((disp (- arg forms--current-record))
|
|
1687 (cur forms--current-record))
|
276
|
1688
|
18215
|
1689 ;; `forms--show-record' needs it now.
|
|
1690 (setq forms--current-record arg)
|
276
|
1691
|
18215
|
1692 ;; Get the record and show it.
|
|
1693 (forms--show-record
|
|
1694 (save-excursion
|
|
1695 (set-buffer forms--file-buffer)
|
|
1696 (beginning-of-line)
|
276
|
1697
|
18215
|
1698 ;; Move, and adjust the amount if needed (shouldn't happen).
|
|
1699 (if relative
|
|
1700 (if (zerop disp)
|
|
1701 nil
|
|
1702 (setq cur (+ cur disp (- (forward-line disp)))))
|
45337
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1703 (goto-char (point-min))
|
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1704 (setq cur (+ cur disp (- (forward-line (1- arg))))))
|
276
|
1705
|
18215
|
1706 (forms--get-record)))
|
276
|
1707
|
18215
|
1708 ;; This shouldn't happen.
|
|
1709 (if (/= forms--current-record cur)
|
|
1710 (progn
|
|
1711 (setq forms--current-record cur)
|
|
1712 (error "Stuck at record %d" cur)))))
|
276
|
1713
|
|
1714 (defun forms-first-record ()
|
|
1715 "Jump to first record."
|
|
1716 (interactive)
|
|
1717 (forms-jump-record 1))
|
|
1718
|
|
1719 (defun forms-last-record ()
|
3941
|
1720 "Jump to last record.
|
|
1721 As a side effect: re-calculates the number of records in the data file."
|
276
|
1722 (interactive)
|
|
1723 (let
|
|
1724 ((numrec
|
|
1725 (save-excursion
|
|
1726 (set-buffer forms--file-buffer)
|
|
1727 (count-lines (point-min) (point-max)))))
|
|
1728 (if (= numrec forms--total-records)
|
|
1729 nil
|
|
1730 (setq forms--total-records numrec)
|
4790
|
1731 (message "Warning: number of records changed to %d" forms--total-records)))
|
276
|
1732 (forms-jump-record forms--total-records))
|
3697
|
1733
|
276
|
1734 ;;; Other commands
|
3941
|
1735
|
4790
|
1736 (defun forms-toggle-read-only (arg)
|
|
1737 "Toggles read-only mode of a forms mode buffer.
|
|
1738 With an argument, enables read-only mode if the argument is positive.
|
13984
|
1739 Otherwise enables edit mode if the visited file is writable."
|
4790
|
1740
|
|
1741 (interactive "P")
|
|
1742
|
|
1743 (if (if arg
|
|
1744 ;; Negative arg means switch it off.
|
|
1745 (<= (prefix-numeric-value arg) 0)
|
|
1746 ;; No arg means toggle.
|
|
1747 forms-read-only)
|
276
|
1748
|
4790
|
1749 ;; Enable edit mode, if possible.
|
|
1750 (let ((ro forms-read-only))
|
|
1751 (if (save-excursion
|
|
1752 (set-buffer forms--file-buffer)
|
|
1753 buffer-read-only)
|
|
1754 (progn
|
|
1755 (setq forms-read-only t)
|
18215
|
1756 (message "No write access to `%s'" forms-file))
|
4790
|
1757 (setq forms-read-only nil))
|
|
1758 (if (equal ro forms-read-only)
|
|
1759 nil
|
|
1760 (forms-mode)))
|
|
1761
|
|
1762 ;; Enable view mode.
|
|
1763 (if forms-read-only
|
276
|
1764 nil
|
4790
|
1765 (forms--checkmod) ; sync
|
|
1766 (setq forms-read-only t)
|
276
|
1767 (forms-mode))))
|
|
1768
|
|
1769 ;; Sample:
|
307
|
1770 ;; (defun my-new-record-filter (the-fields)
|
276
|
1771 ;; ;; numbers are relative to 1
|
|
1772 ;; (aset the-fields 4 (current-time-string))
|
|
1773 ;; (aset the-fields 6 (user-login-name))
|
|
1774 ;; the-list)
|
307
|
1775 ;; (setq forms-new-record-filter 'my-new-record-filter)
|
276
|
1776
|
|
1777 (defun forms-insert-record (arg)
|
3941
|
1778 "Create a new record before the current one.
|
|
1779 With ARG: store the record after the current one.
|
4790
|
1780 If `forms-new-record-filter' contains the name of a function,
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1781 it is called to fill (some of) the fields with default values.
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1782 If `forms-insert-after is non-nil, the default behavior is to insert
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1783 after the current record."
|
276
|
1784
|
|
1785 (interactive "P")
|
|
1786
|
4790
|
1787 (if forms-read-only
|
|
1788 (error ""))
|
|
1789
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1790 (let (ln the-list the-record)
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1791
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1792 (if (or (and arg forms-insert-after)
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1793 (and (not arg) (not forms-insert-after)))
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1794 (setq ln forms--current-record)
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
diff
changeset
|
1795 (setq ln (1+ forms--current-record)))
|
276
|
1796
|
|
1797 (forms--checkmod)
|
4790
|
1798 (if forms-new-record-filter
|
276
|
1799 ;; As a service to the user, we add a zeroth element so she
|
|
1800 ;; can use the same indices as in the forms definition.
|
|
1801 (let ((the-fields (make-vector (1+ forms-number-of-fields) "")))
|
4790
|
1802 (setq the-fields (funcall forms-new-record-filter the-fields))
|
276
|
1803 (setq the-list (cdr (append the-fields nil))))
|
|
1804 (setq the-list (make-list forms-number-of-fields "")))
|
|
1805
|
|
1806 (setq the-record
|
|
1807 (mapconcat
|
|
1808 'identity
|
|
1809 the-list
|
|
1810 forms-field-sep))
|
|
1811
|
|
1812 (save-excursion
|
|
1813 (set-buffer forms--file-buffer)
|
45337
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1814 (goto-char (point-min))
|
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1815 (forward-line (1- ln))
|
276
|
1816 (open-line 1)
|
|
1817 (insert the-record)
|
|
1818 (beginning-of-line))
|
|
1819
|
|
1820 (setq forms--current-record ln))
|
|
1821
|
|
1822 (setq forms--total-records (1+ forms--total-records))
|
|
1823 (forms-jump-record forms--current-record))
|
|
1824
|
|
1825 (defun forms-delete-record (arg)
|
3941
|
1826 "Deletes a record. With a prefix argument: don't ask."
|
276
|
1827 (interactive "P")
|
4790
|
1828
|
|
1829 (if forms-read-only
|
|
1830 (error ""))
|
|
1831
|
276
|
1832 (forms--checkmod)
|
|
1833 (if (or arg
|
|
1834 (y-or-n-p "Really delete this record? "))
|
|
1835 (let ((ln forms--current-record))
|
|
1836 (save-excursion
|
|
1837 (set-buffer forms--file-buffer)
|
45337
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1838 (goto-char (point-min))
|
cd732a6001ea
(forms-jump-record, forms-insert-record, forms-delete-record): Calculate
Pavel Janík <Pavel@Janik.cz>
diff
changeset
|
1839 (forward-line (1- ln))
|
4723
|
1840 ;; Use delete-region instead of kill-region, to avoid
|
|
1841 ;; adding junk to the kill-ring.
|
8272
|
1842 (delete-region (progn (beginning-of-line) (point))
|
|
1843 (progn (beginning-of-line 2) (point))))
|
276
|
1844 (setq forms--total-records (1- forms--total-records))
|
|
1845 (if (> forms--current-record forms--total-records)
|
|
1846 (setq forms--current-record forms--total-records))
|
|
1847 (forms-jump-record forms--current-record)))
|
|
1848 (message ""))
|
|
1849
|
10346
|
1850 (defun forms-search-forward (regexp)
|
|
1851 "Search forward for record containing REGEXP."
|
276
|
1852 (interactive
|
10346
|
1853 (list (read-string (concat "Search forward for"
|
276
|
1854 (if forms--search-regexp
|
|
1855 (concat " ("
|
|
1856 forms--search-regexp
|
|
1857 ")"))
|
|
1858 ": "))))
|
|
1859 (if (equal "" regexp)
|
|
1860 (setq regexp forms--search-regexp))
|
|
1861 (forms--checkmod)
|
|
1862
|
|
1863 (let (the-line the-record here
|
|
1864 (fld-sep forms-field-sep))
|
18223
|
1865 (save-excursion
|
|
1866 (set-buffer forms--file-buffer)
|
|
1867 (end-of-line)
|
|
1868 (setq here (point))
|
|
1869 (if (or (re-search-forward regexp nil t)
|
|
1870 (and (> here (point-min))
|
|
1871 (progn
|
|
1872 (goto-char (point-min))
|
|
1873 (re-search-forward regexp here t))))
|
|
1874 (progn
|
276
|
1875 (setq the-record (forms--get-record))
|
18223
|
1876 (setq the-line (1+ (count-lines (point-min) (point))))
|
|
1877 (if (< (point) here)
|
|
1878 (message "Wrapped")))
|
|
1879 (goto-char here)
|
|
1880 (error "Search failed: %s" regexp)))
|
|
1881 (setq forms--current-record the-line)
|
|
1882 (forms--show-record the-record))
|
|
1883 (re-search-forward regexp nil t)
|
276
|
1884 (setq forms--search-regexp regexp))
|
|
1885
|
10346
|
1886 (defun forms-search-backward (regexp)
|
|
1887 "Search backward for record containing REGEXP."
|
|
1888 (interactive
|
|
1889 (list (read-string (concat "Search backward for"
|
|
1890 (if forms--search-regexp
|
|
1891 (concat " ("
|
|
1892 forms--search-regexp
|
|
1893 ")"))
|
|
1894 ": "))))
|
|
1895 (if (equal "" regexp)
|
|
1896 (setq regexp forms--search-regexp))
|
|
1897 (forms--checkmod)
|
|
1898
|
|
1899 (let (the-line the-record here
|
|
1900 (fld-sep forms-field-sep))
|
18223
|
1901 (save-excursion
|
|
1902 (set-buffer forms--file-buffer)
|
|
1903 (beginning-of-line)
|
|
1904 (setq here (point))
|
|
1905 (if (or (re-search-backward regexp nil t)
|
|
1906 (and (< (point) (point-max))
|
|
1907 (progn
|
|
1908 (goto-char (point-max))
|
|
1909 (re-search-backward regexp here t))))
|
|
1910 (progn
|
10346
|
1911 (setq the-record (forms--get-record))
|
18223
|
1912 (setq the-line (1+ (count-lines (point-min) (point))))
|
|
1913 (if (> (point) here)
|
|
1914 (message "Wrapped")))
|
|
1915 (goto-char here)
|
|
1916 (error "Search failed: %s" regexp)))
|
|
1917 (setq forms--current-record the-line)
|
|
1918 (forms--show-record the-record))
|
|
1919 (re-search-forward regexp nil t)
|
10346
|
1920 (setq forms--search-regexp regexp))
|
|
1921
|
8344
|
1922 (defun forms-save-buffer (&optional args)
|
|
1923 "Forms mode replacement for save-buffer.
|
|
1924 It saves the data buffer instead of the forms buffer.
|
18215
|
1925 Calls `forms-write-file-filter' before, and `forms-read-file-filter'
|
|
1926 after writing out the data."
|
8344
|
1927 (interactive "p")
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1928 (forms--checkmod)
|
18215
|
1929 (let ((write-file-filter forms-write-file-filter)
|
24794
|
1930 (read-file-filter forms-read-file-filter)
|
|
1931 (cur forms--current-record))
|
8344
|
1932 (save-excursion
|
|
1933 (set-buffer forms--file-buffer)
|
|
1934 (let ((inhibit-read-only t))
|
18223
|
1935 ;; Write file hooks are run via local-write-file-hooks.
|
|
1936 ;; (if write-file-filter
|
|
1937 ;; (save-excursion
|
24794
|
1938 ;; (run-hooks 'write-file-filter)))
|
|
1939
|
|
1940 ;; If they have a write-file-filter, force the buffer to be
|
|
1941 ;; saved even if it doesn't seem to be changed. First, they
|
|
1942 ;; might have changed the write-file-filter; and second, if
|
|
1943 ;; save-buffer does nothing, write-file-filter won't get run,
|
|
1944 ;; and then read-file-filter will be mightily confused.
|
|
1945 (or (null write-file-filter)
|
|
1946 (set-buffer-modified-p t))
|
8344
|
1947 (save-buffer args)
|
|
1948 (if read-file-filter
|
18215
|
1949 (save-excursion
|
|
1950 (run-hooks 'read-file-filter)))
|
24794
|
1951 (set-buffer-modified-p nil)))
|
|
1952 ;; Make sure we end up with the same record number as we started.
|
|
1953 ;; Since read-file-filter may perform arbitrary transformations on
|
|
1954 ;; the data buffer contents, save-excursion is not enough.
|
|
1955 (forms-jump-record cur))
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1956 t)
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1957
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1958 (defun forms--revert-buffer (&optional arg noconfirm)
|
276
|
1959 "Reverts current form to un-modified."
|
|
1960 (interactive "P")
|
|
1961 (if (or noconfirm
|
|
1962 (yes-or-no-p "Revert form to unmodified? "))
|
|
1963 (progn
|
|
1964 (set-buffer-modified-p nil)
|
|
1965 (forms-jump-record forms--current-record))))
|
|
1966
|
|
1967 (defun forms-next-field (arg)
|
|
1968 "Jump to ARG-th next field."
|
|
1969 (interactive "p")
|
|
1970
|
|
1971 (let ((i 0)
|
|
1972 (here (point))
|
|
1973 there
|
11557
|
1974 (cnt 0)
|
|
1975 (inhibit-point-motion-hooks t))
|
276
|
1976
|
|
1977 (if (zerop arg)
|
|
1978 (setq cnt 1)
|
|
1979 (setq cnt (+ cnt arg)))
|
|
1980
|
|
1981 (if (catch 'done
|
4121
|
1982 (while (< i (length forms--markers))
|
276
|
1983 (if (or (null (setq there (aref forms--markers i)))
|
|
1984 (<= there here))
|
|
1985 nil
|
|
1986 (if (<= (setq cnt (1- cnt)) 0)
|
|
1987 (progn
|
|
1988 (goto-char there)
|
|
1989 (throw 'done t))))
|
|
1990 (setq i (1+ i))))
|
|
1991 nil
|
|
1992 (goto-char (aref forms--markers 0)))))
|
307
|
1993
|
4790
|
1994 (defun forms-prev-field (arg)
|
|
1995 "Jump to ARG-th previous field."
|
|
1996 (interactive "p")
|
|
1997
|
|
1998 (let ((i (length forms--markers))
|
|
1999 (here (point))
|
|
2000 there
|
11557
|
2001 (cnt 0)
|
|
2002 (inhibit-point-motion-hooks t))
|
4790
|
2003
|
|
2004 (if (zerop arg)
|
|
2005 (setq cnt 1)
|
|
2006 (setq cnt (+ cnt arg)))
|
|
2007
|
|
2008 (if (catch 'done
|
|
2009 (while (> i 0)
|
|
2010 (setq i ( 1- i))
|
|
2011 (if (or (null (setq there (aref forms--markers i)))
|
|
2012 (>= there here))
|
|
2013 nil
|
|
2014 (if (<= (setq cnt (1- cnt)) 0)
|
|
2015 (progn
|
|
2016 (goto-char there)
|
|
2017 (throw 'done t))))))
|
|
2018 nil
|
|
2019 (goto-char (aref forms--markers (1- (length forms--markers)))))))
|
10346
|
2020
|
|
2021 (defun forms-print ()
|
|
2022 "Send the records to the printer with 'print-buffer', one record per page."
|
|
2023 (interactive)
|
|
2024 (let ((inhibit-read-only t)
|
|
2025 (save-record forms--current-record)
|
24077
|
2026 (total-nb-records forms--total-records)
|
10346
|
2027 (nb-record 1)
|
|
2028 (record nil))
|
|
2029 (while (<= nb-record forms--total-records)
|
|
2030 (forms-jump-record nb-record)
|
|
2031 (setq record (buffer-string))
|
|
2032 (save-excursion
|
|
2033 (set-buffer (get-buffer-create "*forms-print*"))
|
|
2034 (goto-char (buffer-end 1))
|
|
2035 (insert record)
|
|
2036 (setq buffer-read-only nil)
|
24077
|
2037 (if (< nb-record total-nb-records)
|
10346
|
2038 (insert "\n\n")))
|
|
2039 (setq nb-record (1+ nb-record)))
|
|
2040 (save-excursion
|
|
2041 (set-buffer "*forms-print*")
|
|
2042 (print-buffer)
|
|
2043 (set-buffer-modified-p nil)
|
|
2044 (kill-buffer (current-buffer)))
|
|
2045 (forms-jump-record save-record)))
|
|
2046
|
307
|
2047 ;;;
|
|
2048 ;;; Special service
|
|
2049 ;;;
|
|
2050 (defun forms-enumerate (the-fields)
|
3941
|
2051 "Take a quoted list of symbols, and set their values to sequential numbers.
|
|
2052 The first symbol gets number 1, the second 2 and so on.
|
13984
|
2053 It returns the highest number.
|
307
|
2054
|
|
2055 Usage: (setq forms-number-of-fields
|
|
2056 (forms-enumerate
|
|
2057 '(field1 field2 field2 ...)))"
|
|
2058
|
|
2059 (let ((the-index 0))
|
|
2060 (while the-fields
|
|
2061 (setq the-index (1+ the-index))
|
|
2062 (let ((el (car-safe the-fields)))
|
|
2063 (setq the-fields (cdr-safe the-fields))
|
|
2064 (set el the-index)))
|
|
2065 the-index))
|
3697
|
2066
|
307
|
2067 ;;; Debugging
|
3941
|
2068
|
307
|
2069 (defvar forms--debug nil
|
|
2070 "*Enables forms-mode debugging if not nil.")
|
|
2071
|
|
2072 (defun forms--debug (&rest args)
|
3941
|
2073 "Internal debugging routine."
|
307
|
2074 (if forms--debug
|
|
2075 (let ((ret nil))
|
|
2076 (while args
|
|
2077 (let ((el (car-safe args)))
|
|
2078 (setq args (cdr-safe args))
|
|
2079 (if (stringp el)
|
|
2080 (setq ret (concat ret el))
|
|
2081 (setq ret (concat ret (prin1-to-string el) " = "))
|
|
2082 (if (boundp el)
|
|
2083 (let ((vel (eval el)))
|
|
2084 (setq ret (concat ret (prin1-to-string vel) "\n")))
|
|
2085 (setq ret (concat ret "<unbound>" "\n")))
|
|
2086 (if (fboundp el)
|
|
2087 (setq ret (concat ret (prin1-to-string (symbol-function el))
|
|
2088 "\n"))))))
|
|
2089 (save-excursion
|
|
2090 (set-buffer (get-buffer-create "*forms-mode debug*"))
|
4121
|
2091 (if (zerop (buffer-size))
|
|
2092 (emacs-lisp-mode))
|
307
|
2093 (goto-char (point-max))
|
|
2094 (insert ret)))))
|
|
2095
|
38436
|
2096 ;;; forms.el ends here
|