(kill-whole-line): Make it interact correctly with the kill ring.
[bpt/emacs.git] / lisp / forms.el
CommitLineData
be010748
RS
1;;; forms.el --- Forms mode: edit a file as a form to fill in
2
ef6a4dfe 3;; Copyright (C) 1991, 1994, 1995, 1996, 1997, 2003 Free Software Foundation, Inc.
b22c9ebf 4
776f3a6d 5;; Author: Johan Vromans <jvromans@squirrel.nl>
b22c9ebf
RS
6
7;; This file is part of GNU Emacs.
8
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.
13
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.
c1110355 18
b22c9ebf 19;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
b22c9ebf
RS
23
24;;; Commentary:
c1110355 25
b578f267
EN
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;;
71296446 34;; All variables are buffer-local, to enable multiple forms visits
b578f267 35;; simultaneously.
71296446 36;; Variable `forms--mode-setup' is local to *ALL* buffers, for it
b578f267
EN
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;;
4e0a3e27 57;; Forms mode is invoked using M-x `forms-find-file' control-file.
b578f267
EN
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
4e0a3e27 61;; with M-x `forms-mode'.
b578f267 62;;
71296446 63;; Automatic mode switching is supported if you specify
b578f267 64;; "-*- forms -*-" in the first line of the control file.
71296446 65;;
b578f267
EN
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".
71296446 82;;
b578f267
EN
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.
71296446 86;;
b578f267
EN
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.
71296446 92;;
b578f267
EN
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
71296446 105;; possible, view mode is enforced.
b578f267 106;;
149bb5be
JV
107;; forms-check-number-of-fields [bool, default t]
108;; If non-nil, a warning will be issued whenever
109;; a record is found that does not have the number
110;; of fields specified by `forms-number-of-fields'.
b578f267
EN
111;;
112;; forms-multi-line [string, default "^K"]
4e0a3e27 113;; If non-null, the records of the data file may
b578f267
EN
114;; contain fields that can span multiple lines in
115;; the form.
4e0a3e27 116;; This variable denotes the separator string
b578f267 117;; to be used for this purpose. Upon display, all
4e0a3e27 118;; occurrences of this string are translated
b578f267 119;; to newlines. Upon storage they are translated
4e0a3e27 120;; back to the separator string.
b578f267
EN
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]
4e0a3e27
KH
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.
149bb5be
JV
132;;
133;; forms-insert-after [bool, default nil]
4e0a3e27
KH
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.
b578f267
EN
139;;
140;; forms-read-file-filter [symbol, default nil]
71296446 141;; If not nil: this should be the name of a
b578f267
EN
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]
71296446 148;; If not nil: this should be the name of a
b578f267
EN
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]
71296446 154;; If not nil: this should be the name of a
b578f267
EN
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]
71296446 160;; If not nil: this should be the name of a
b578f267
EN
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.
4e0a3e27
KH
174;; This variable defaults to t if running Emacs 19 or
175;; later with text properties.
b578f267
EN
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
4e0a3e27 181;; read-only text on the screen. If used, this
b578f267
EN
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
4e0a3e27 195;; `forms--file-buffer' which normally will not be shown.
b578f267
EN
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'.
71296446 202;; A format routine `forms--format' is built upon startup to format
b578f267
EN
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.
4e0a3e27 216;; `forms-exit-no-save' does not. However, if `forms-exit-no-save'
b578f267
EN
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;;
4e0a3e27 230;; As a documented side-effect: jumping to the last record in the
b578f267
EN
231;; file (using forms-last-record) will adjust forms--total-records if
232;; needed.
233;;
4e0a3e27
KH
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
b578f267
EN
236;; contents of the buffer.
237;;
238;; Edit mode commands:
71296446 239;;
b578f267
EN
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
71296446 254;;
b578f267 255;; Read-only mode commands:
71296446 256;;
b578f267
EN
257;; SPC forms-next-record
258;; DEL forms-prev-record
259;; ? describe-mode
4e0a3e27 260;; \C-q forms-toggle-read-only
b578f267
EN
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
71296446 267;;
b578f267
EN
268;; Of course, it is also possible to use the \C-c prefix to obtain the
269;; same command keys as in edit mode.
71296446
JB
270;;
271;; The following bindings are available, independent of the mode:
272;;
b578f267
EN
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
4e0a3e27 278;; [backtab] forms-prev-field
b578f267
EN
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;;
4e0a3e27 283;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump'),
b578f267
EN
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;;
c2fe6e7a 289;; `write-file-functions' is defined to save the actual data file
b578f267
EN
290;; instead of the buffer data, `revert-file-hook' is defined to
291;; revert a forms to original.
b22c9ebf
RS
292\f
293;;; Code:
294
d2e7d71b
RS
295(defgroup forms nil
296 "Edit a file as a form to fill in."
297 :group 'data)
298
fbee9727 299;;; Global variables and constants:
c1110355 300
b22c9ebf
RS
301(provide 'forms) ;;; official
302(provide 'forms-mode) ;;; for compatibility
303
c2fe6e7a 304(defconst forms-version (substring "$Revision: 2.46 $" 11 -2)
2cc27dd3
RS
305 "The version number of forms-mode (as string). The complete RCS id is:
306
c2fe6e7a 307 $Id: forms.el,v 2.46 2003/05/23 12:48:06 rms Exp $")
c1110355 308
d2e7d71b 309(defcustom forms-mode-hooks nil
4c1fc0f6 310 "Hook run upon entering Forms mode."
d2e7d71b 311 :group 'forms
4c1fc0f6 312 :type 'hook)
b22c9ebf 313\f
fbee9727 314;;; Mandatory variables - must be set by evaluating the control file.
c1110355
BP
315
316(defvar forms-file nil
01a45313 317 "Name of the file holding the data.")
c1110355
BP
318
319(defvar forms-format-list nil
01a45313 320 "List of formatting specifications.")
c1110355
BP
321
322(defvar forms-number-of-fields nil
323 "Number of fields per record.")
b22c9ebf 324\f
fbee9727 325;;; Optional variables with default values.
c1110355 326
d2e7d71b
RS
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)
4fd3a710 331
c1110355 332(defvar forms-field-sep "\t"
b22c9ebf 333 "Field separator character (default TAB).")
c1110355 334
a08bd820
RS
335(defvar forms-read-only nil
336 "Non-nil means: visit the file in view (read-only) mode.
02cf5781 337This is set automatically if the file permissions don't let you write it.")
c1110355 338
d2e7d71b
RS
339(defvar forms-multi-line "\C-k" "\
340If not nil: use this character to separate multi-line fields (default C-k).")
c1110355 341
d2e7d71b 342(defcustom forms-forms-scroll nil
ea3d9551 343 "*Non-nil means replace scroll-up/down commands in Forms mode.
d2e7d71b
RS
344The replacement commands performs forms-next/prev-record."
345 :group 'forms
346 :type 'boolean)
c1110355 347
d2e7d71b 348(defcustom forms-forms-jump nil
ea3d9551 349 "*Non-nil means redefine beginning/end-of-buffer in Forms mode.
d2e7d71b
RS
350The replacement commands performs forms-first/last-record."
351 :group 'forms
352 :type 'boolean)
fbee9727 353
9c308ed2
RS
354(defvar forms-read-file-filter nil
355 "The name of a function that is called after reading the data file.
356This can be used to change the contents of the file to something more
357suitable 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.
d2e7d71b 361This can be used to undo the effects of `form-read-file-hook'.")
9c308ed2 362
fbee9727
RS
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.
71296446 371This variable is for use by the filter routines only.
fbee9727
RS
372The contents may NOT be modified.")
373
d2e7d71b
RS
374(defcustom forms-use-text-properties t
375 "*Non-nil means: use text properties.
376Defaults to t if this Emacs is capable of handling text properties."
377 :group 'forms
378 :type 'boolean)
fbee9727 379
d2e7d71b 380(defcustom forms-insert-after nil
149bb5be 381 "*Non-nil means: inserts of new records go after current record.
d2e7d71b
RS
382Also, initial position is at last record."
383 :group 'forms
384 :type 'boolean)
385
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)
390
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)
b22c9ebf 395\f
c1110355
BP
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
2cc27dd3 407(defvar forms-mode-map nil
c1110355 408 "Keymap for form buffer.")
2cc27dd3
RS
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.")
c1110355
BP
413
414(defvar forms--markers nil
415 "Field markers in the screen.")
416
fbee9727
RS
417(defvar forms--dyntexts nil
418 "Dynamic texts (resulting from function calls) on the screen.")
c1110355 419
71296446 420(defvar forms--the-record-list nil
c1110355
BP
421 "List of strings of the current record, as parsed from the file.")
422
423(defvar forms--search-regexp nil
ac7e3dbe 424 "Last regexp used by forms-search functions.")
c1110355
BP
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
fbee9727 433 "To keep track of forms-mode being set-up.")
c1110355
BP
434(make-variable-buffer-local 'forms--mode-setup)
435
01a45313 436(defvar forms--dynamic-text nil
fbee9727 437 "Array that holds dynamic texts to insert between fields.")
01a45313 438
fbee9727
RS
439(defvar forms--elements nil
440 "Array with the order in which the fields are displayed.")
01a45313 441
fbee9727
RS
442(defvar forms--ro-face nil
443 "Face used to represent read-only data on the screen.")
b22c9ebf 444
fbee9727
RS
445(defvar forms--rw-face nil
446 "Face used to represent read-write data on the screen.")
b22c9ebf 447\f
71296446 448;;;###autoload
c1110355
BP
449(defun forms-mode (&optional primary)
450 "Major mode to visit files in a field-structured manner using a form.
451
2cc27dd3
RS
452Commands: Equivalent keys in read-only mode:
453 TAB forms-next-field TAB
71296446 454 C-c TAB forms-next-field
fc6bfeec
SE
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
2cc27dd3
RS
467"
468 (interactive)
c1110355 469
fbee9727
RS
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
c1110355
BP
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
fbee9727 484 ;;(message "forms: setting up...")
c1110355
BP
485 (kill-all-local-variables)
486
fbee9727 487 ;; Make mandatory variables.
c1110355
BP
488 (make-local-variable 'forms-file)
489 (make-local-variable 'forms-number-of-fields)
490 (make-local-variable 'forms-format-list)
491
fbee9727 492 ;; Make optional variables.
c1110355
BP
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)
149bb5be 498 (make-local-variable 'forms-insert-after)
fbee9727 499 (make-local-variable 'forms-use-text-properties)
9c308ed2
RS
500
501 ;; Filter functions.
502 (make-local-variable 'forms-read-file-filter)
503 (make-local-variable 'forms-write-file-filter)
2cc27dd3
RS
504 (make-local-variable 'forms-new-record-filter)
505 (make-local-variable 'forms-modified-record-filter)
fbee9727
RS
506
507 ;; Make sure no filters exist.
9c308ed2
RS
508 (setq forms-read-file-filter nil)
509 (setq forms-write-file-filter nil)
2cc27dd3
RS
510 (setq forms-new-record-filter nil)
511 (setq forms-modified-record-filter nil)
fbee9727 512
71296446 513 ;; If running Emacs 19 under X, setup faces to show read-only and
fbee9727
RS
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)))
c1110355
BP
519
520 ;; eval the buffer, should set variables
fbee9727 521 ;;(message "forms: processing control file...")
485efad0
RS
522 ;; If enable-local-eval is not set to t the user is asked first.
523 (if (or (eq enable-local-eval t)
71296446 524 (yes-or-no-p
485efad0
RS
525 (concat "Evaluate lisp code in buffer "
526 (buffer-name) " to display forms ")))
527 (eval-current-buffer)
528 (error "`enable-local-eval' inhibits buffer evaluation"))
c1110355 529
9c308ed2 530 ;; Check if the mandatory variables make sense.
c1110355 531 (or forms-file
71296446 532 (error (concat "Forms control file error: "
a92f7abb 533 "`forms-file' has not been set")))
9c308ed2
RS
534
535 ;; Check forms-field-sep first, since it can be needed to
536 ;; construct a default format list.
2cc27dd3
RS
537 (or (stringp forms-field-sep)
538 (error (concat "Forms control file error: "
a92f7abb 539 "`forms-field-sep' is not a string")))
9c308ed2
RS
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: "
a92f7abb 545 "`forms-number-of-fields' must be a number > 0")))
9c308ed2
RS
546 (or (null forms-format-list)
547 (error (concat "Forms control file error: "
a92f7abb 548 "`forms-number-of-fields' has not been set"))))
9c308ed2
RS
549
550 (or forms-format-list
551 (forms--intuit-from-file))
552
c1110355
BP
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)
71296446 557 (error (concat "Forms control file error: "
a92f7abb 558 "`forms-multi-line' is equal to 'forms-field-sep'")))
2cc27dd3 559 (error (concat "Forms control file error: "
a92f7abb 560 "`forms-multi-line' must be nil or a one-character string"))))
fbee9727
RS
561 (or (fboundp 'set-text-properties)
562 (setq forms-use-text-properties nil))
71296446 563
fbee9727
RS
564 ;; Validate and process forms-format-list.
565 ;;(message "forms: pre-processing format list...")
38bd9da2 566 (make-local-variable 'forms--elements)
c1110355
BP
567 (forms--process-format-list)
568
fbee9727
RS
569 ;; Build the formatter and parser.
570 ;;(message "forms: building formatter...")
c1110355 571 (make-local-variable 'forms--format)
fbee9727
RS
572 (make-local-variable 'forms--markers)
573 (make-local-variable 'forms--dyntexts)
fbee9727 574 ;;(message "forms: building parser...")
c1110355
BP
575 (forms--make-format)
576 (make-local-variable 'forms--parser)
577 (forms--make-parser)
fbee9727 578 ;;(message "forms: building parser... done.")
c1110355 579
fbee9727 580 ;; Check if record filters are defined.
2cc27dd3
RS
581 (if (and forms-new-record-filter
582 (not (fboundp forms-new-record-filter)))
583 (error (concat "Forms control file error: "
a92f7abb 584 "`forms-new-record-filter' is not a function")))
2cc27dd3
RS
585
586 (if (and forms-modified-record-filter
587 (not (fboundp forms-modified-record-filter)))
588 (error (concat "Forms control file error: "
a92f7abb 589 "`forms-modified-record-filter' is not a function")))
01a45313 590
fbee9727 591 ;; The filters acces the contents of the forms using `forms-fields'.
01a45313 592 (make-local-variable 'forms-fields)
c1110355 593
fbee9727
RS
594 ;; Dynamic text support.
595 (make-local-variable 'forms--dynamic-text)
c1110355 596
4e0c8650 597 ;; Prevent accidental overwrite of the control file and auto-save.
724244d2 598 (set-visited-file-name nil)
c1110355 599
fbee9727
RS
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
485efad0
RS
607 ;; initialization done
608 (setq forms--mode-setup t)
609
fbee9727
RS
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))))
c1110355 621
ac2a7a91 622 ;; Make more local variables.
c1110355
BP
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)
fbee9727 627 (make-local-variable 'forms--search-regexp)
c1110355 628
2cc27dd3
RS
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)
c1110355
BP
633 (if forms-mode-map ; already defined
634 nil
fbee9727 635 ;;(message "forms: building keymap...")
2cc27dd3 636 (forms--mode-commands)
fbee9727
RS
637 ;;(message "forms: building keymap... done.")
638 )
c1110355 639
4a971a93
KH
640 ;; set the major mode indicator
641 (setq major-mode 'forms-mode)
642 (setq mode-name "Forms")
643
c1110355
BP
644 ;; find the data file
645 (setq forms--file-buffer (find-file-noselect forms-file))
646
9c308ed2
RS
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)
ac7e3dbe
JV
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)))
9c308ed2
RS
657 (if write-file-filter
658 (progn
c2fe6e7a
RS
659 (make-local-variable 'write-file-functions)
660 (setq write-file-functions (list write-file-filter)))))
9c308ed2
RS
661 (if write-file-filter
662 (save-excursion
663 (set-buffer forms--file-buffer)
c2fe6e7a
RS
664 (make-local-variable 'write-file-functions)
665 (setq write-file-functions (list write-file-filter))))))
9c308ed2 666
c1110355
BP
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
fbee9727
RS
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 )))
c1110355
BP
680 (if ro
681 (setq forms-read-only t)))
682
fbee9727 683 ;;(message "forms: proceeding setup...")
891f0daa
RS
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
fbee9727 691 ;;(message "forms: proceeding setup (keymaps)...")
c1110355 692 (forms--set-keymaps)
fbee9727 693 ;;(message "forms: proceeding setup (commands)...")
0cfa68a9 694 (forms--change-commands)
c1110355 695
fbee9727 696 ;;(message "forms: proceeding setup (buffer)...")
c1110355
BP
697 (set-buffer-modified-p nil)
698
9c308ed2
RS
699 (if (= forms--total-records 0)
700 ;;(message "forms: proceeding setup (new file)...")
701 (progn
71296446 702 (insert
9c308ed2
RS
703 "GNU Emacs Forms Mode version " forms-version "\n\n"
704 (if (file-exists-p forms-file)
60a37dc6
KH
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"
9c308ed2
RS
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)
c1110355 719
4e0a3e27
KH
720 (if forms-insert-after
721 (forms-last-record)
722 (forms-first-record))
723 )
149bb5be 724
c1110355 725 ;; user customising
fbee9727 726 ;;(message "forms: proceeding setup (user hooks)...")
c1110355 727 (run-hooks 'forms-mode-hooks)
fbee9727 728 ;;(message "forms: setting up... done.")
c1110355
BP
729
730 ;; be helpful
731 (forms--help)
485efad0 732)
b22c9ebf 733\f
c1110355 734(defun forms--process-format-list ()
fbee9727
RS
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
71296446 739 ;; of the fields on the display. This array is used by
fbee9727
RS
740 ;; `forms--parser-using-text-properties' to extract the fields data
741 ;; from the form on the screen.
968db5f7 742 ;; Upon completion, `forms-format-list' is guaranteed correct, so
fbee9727
RS
743 ;; `forms--make-format' and `forms--make-parser' do not need to perform
744 ;; any checks.
745
746 ;; Verify that `forms-format-list' is not nil.
c1110355 747 (or forms-format-list
2cc27dd3 748 (error (concat "Forms control file error: "
a92f7abb 749 "`forms-format-list' has not been set")))
fbee9727 750 ;; It must be a list.
c1110355 751 (or (listp forms-format-list)
2cc27dd3 752 (error (concat "Forms control file error: "
a92f7abb 753 "`forms-format-list' is not a list")))
c1110355 754
fbee9727
RS
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))
c1110355
BP
758
759 (let ((the-list forms-format-list) ; the list of format elements
01a45313 760 (this-item 0) ; element in list
fbee9727 761 (prev-item nil)
71296446 762 (field-num 0)) ; highest field number
c1110355 763
01a45313
RS
764 (setq forms-format-list nil) ; gonna rebuild
765
c1110355
BP
766 (while the-list
767
768 (let ((el (car-safe the-list))
769 (rem (cdr-safe the-list)))
770
fbee9727 771 ;; If it is a symbol, eval it first.
01a45313
RS
772 (if (and (symbolp el)
773 (boundp el))
774 (setq el (eval el)))
775
c1110355
BP
776 (cond
777
fbee9727
RS
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 ...
71296446 788 ((numberp el)
c1110355 789
fbee9727 790 ;; Validate range.
c1110355
BP
791 (if (or (<= el 0)
792 (> el forms-number-of-fields))
2cc27dd3
RS
793 (error (concat "Forms format error: "
794 "field number %d out of range 1..%d")
795 el forms-number-of-fields))
c1110355 796
fbee9727 797 ;; Store forms order.
38bd9da2 798 (if (>= field-num (length forms--elements))
fbee9727
RS
799 (setq forms--elements (vconcat forms--elements (1- el)))
800 (aset forms--elements field-num (1- el)))
801 (setq field-num (1+ field-num))
802
fbee9727
RS
803 (if prev-item
804 (setq forms-format-list
1f111018 805 (append forms-format-list (list prev-item) nil)))
fbee9727
RS
806 (setq prev-item el))
807
808 ;; Try function ...
01a45313 809 ((listp el)
fbee9727
RS
810
811 ;; Validate.
01a45313 812 (or (fboundp (car-safe el))
2cc27dd3 813 (error (concat "Forms format error: "
a92f7abb 814 "%S is not a function")
5cc7f7d6 815 (car-safe el)))
fbee9727
RS
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))
01a45313 822
c1110355
BP
823 ;; else
824 (t
2cc27dd3 825 (error (concat "Forms format error: "
5cc7f7d6
KH
826 "invalid element %S")
827 el)))
c1110355 828
fbee9727
RS
829 ;; Advance to next element of the list.
830 (setq the-list rem)))
c1110355 831
fbee9727
RS
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.
1f111018 838 ;; This prevents parsing problems.
fbee9727
RS
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))))))
843
844 (forms--debug 'forms-format-list
845 'forms--elements))
b22c9ebf 846\f
fbee9727
RS
847;; Special treatment for read-only segments.
848;;
38bd9da2
KH
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.
1f111018 851;; To solve this, read-only segments get the `insert-in-front-hooks'
38bd9da2
KH
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.
1f111018
RS
856
857(defvar forms--iif-start nil
fbee9727 858 "Record start of modification command.")
1f111018 859(defvar forms--iif-properties nil
fbee9727
RS
860 "Original properties of the character being overridden.")
861
1f111018
RS
862(defun forms--iif-hook (begin end)
863 "`insert-in-front-hooks' function for read-only segments."
fbee9727 864
71296446
JB
865 ;; Note start location. By making it a marker that points one
866 ;; character beyond the actual location, it is guaranteed to move
1f111018
RS
867 ;; correctly if text is inserted.
868 (or forms--iif-start
869 (setq forms--iif-start (copy-marker (1+ (point)))))
fbee9727 870
1f111018
RS
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.
71296446 877 (setq forms--iif-properties
1f111018 878 (text-properties-at (1- forms--iif-start)))
fbee9727 879
1f111018
RS
880 ;; Replace them.
881 (let ((inhibit-read-only t))
71296446 882 (set-text-properties
1f111018
RS
883 (1- forms--iif-start) forms--iif-start
884 (list 'face forms--rw-face 'front-sticky '(face))))
fbee9727 885
1f111018
RS
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)))
fbee9727 889
1f111018
RS
890 ;; No action needed. Clear marker.
891 (setq forms--iif-start nil)))
fbee9727 892
1f111018
RS
893(defun forms--iif-post-command-hook ()
894 "`post-command-hook' function for read-only segments."
fbee9727
RS
895
896 ;; Disable `post-command-hook'.
897 (setq post-command-hook
1f111018 898 (delq 'forms--iif-hook-post-command-hook post-command-hook))
fbee9727
RS
899
900 ;; Restore properties.
1f111018 901 (if forms--iif-start
fbee9727 902 (let ((inhibit-read-only t))
71296446 903 (set-text-properties
1f111018
RS
904 (1- forms--iif-start) forms--iif-start
905 forms--iif-properties)))
fbee9727
RS
906
907 ;; Cleanup.
1f111018 908 (setq forms--iif-start nil))
fbee9727
RS
909\f
910(defvar forms--marker)
911(defvar forms--dyntext)
c1110355
BP
912
913(defun forms--make-format ()
fbee9727
RS
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))
71296446 923 (setq
fbee9727 924 forms--format
71296446 925 (if forms-use-text-properties
5658a814
GM
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)))))
fbee9727
RS
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)))
01a45313 948 (forms--debug 'forms--format))
c1110355 949
fbee9727
RS
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))
fbee9727 958 ;;
1f111018 959 ;; ;; A string, e.g. "text: ".
71296446 960 ;; (set-text-properties
fbee9727 961 ;; (point)
71296446 962 ;; (progn (insert "text: ") (point))
1f111018
RS
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)))
fbee9727 967 ;;
1f111018 968 ;; ;; A field, e.g. 6.
fbee9727
RS
969 ;; (let ((here (point)))
970 ;; (aset forms--markers 0 (point-marker))
971 ;; (insert (elt arg 5))
972 ;; (or (= (point) here)
71296446 973 ;; (set-text-properties
fbee9727 974 ;; here (point)
1f111018
RS
975 ;; (list 'face forms--rw-face
976 ;; 'front-sticky '(face))))
fbee9727 977 ;;
1f111018 978 ;; ;; Another string, e.g. "\nmore text: ".
fbee9727
RS
979 ;; (set-text-properties
980 ;; (point)
981 ;; (progn (insert "\nmore text: ") (point))
982 ;; (list 'face forms--ro-face
1f111018
RS
983 ;; 'read-only 2
984 ;; 'insert-in-front-hooks 'forms--iif-hook
985 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
fbee9727 986 ;;
1f111018 987 ;; ;; A function, e.g. (tocol 40).
fbee9727
RS
988 ;; (set-text-properties
989 ;; (point)
990 ;; (progn
991 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
992 ;; (point))
993 ;; (list 'face forms--ro-face
1f111018
RS
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)))
fbee9727
RS
1004 ;;
1005 ;; ;; wrap up
1f111018 1006 ;; (setq forms--iif-start nil)
fbee9727
RS
1007 ;; ))
1008
1009 (cond
1010 ((stringp el)
71296446
JB
1011
1012 `((set-text-properties
5658a814
GM
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)))))
71296446 1023
fbee9727 1024 ((numberp el)
5658a814 1025 `((let ((here (point)))
71296446 1026 (aset forms--markers
5658a814
GM
1027 ,(prog1 forms--marker
1028 (setq forms--marker (1+ forms--marker)))
1029 (point-marker))
1030 (insert (elt arg ,(1- el)))
1031 (or (= (point) here)
71296446 1032 (set-text-properties
5658a814
GM
1033 here (point)
1034 (list 'face forms--rw-face
1035 'front-sticky '(face)))))))
fbee9727
RS
1036
1037 ((listp el)
5658a814
GM
1038 `((set-text-properties
1039 (point)
1040 (progn
71296446 1041 (insert (aset forms--dyntexts
5658a814
GM
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)))))
fbee9727
RS
1052
1053 ;; end of cond
1054 ))
c1110355
BP
1055
1056(defun forms--make-format-elt (el)
fbee9727
RS
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
71296446 1074 (cond
b22c9ebf 1075 ((stringp el)
5658a814 1076 `((insert ,el)))
b22c9ebf
RS
1077 ((numberp el)
1078 (prog1
5658a814
GM
1079 `((aset forms--markers ,forms--marker (point-marker))
1080 (insert (elt arg ,(1- el))))
fbee9727 1081 (setq forms--marker (1+ forms--marker))))
b22c9ebf
RS
1082 ((listp el)
1083 (prog1
5658a814 1084 `((insert (aset forms--dyntexts ,forms--dyntext ,el)))
fbee9727 1085 (setq forms--dyntext (1+ forms--dyntext))))))
b22c9ebf 1086\f
fbee9727
RS
1087(defvar forms--field)
1088(defvar forms--recordv)
1089(defvar forms--seen-text)
c1110355
BP
1090
1091(defun forms--make-parser ()
fbee9727
RS
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.
5658a814
GM
1109 `(lambda nil
1110 (let (here)
1111 (goto-char (point-min))
1112 ,@(apply 'append
71296446
JB
1113 (mapcar
1114 'forms--make-parser-elt
5658a814 1115 (append forms-format-list (list nil)))))))))
fbee9727 1116
01a45313 1117 (forms--debug 'forms--parser))
c1110355 1118
fbee9727
RS
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)
71296446 1131 (if (setq there
fbee9727
RS
1132 (next-single-property-change here 'read-only))
1133 (aset forms--recordv (aref forms--elements i)
a0844fc6 1134 (buffer-substring-no-properties here there))
fbee9727 1135 (aset forms--recordv (aref forms--elements i)
a0844fc6 1136 (buffer-substring-no-properties here (point-max)))))
fbee9727 1137 (setq i (1+ i)))))
c1110355
BP
1138
1139(defun forms--make-parser-elt (el)
fbee9727
RS
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))
71296446 1147 ;;
fbee9727
RS
1148 ;; ;; "text: "
1149 ;; (if (not (looking-at "text: "))
1150 ;; (error "Parse error: cannot find \"text: \""))
1151 ;; (forward-char 6) ; past "text: "
71296446 1152 ;;
fbee9727
RS
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: \""))
a0844fc6 1158 ;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12)))
fbee9727
RS
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)))
71296446 1166 ;; ...
fbee9727 1167 ;; ;; final flush (due to terminator sentinel, see below)
a0844fc6 1168 ;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max)))
fbee9727 1169
01a45313
RS
1170 (cond
1171 ((stringp el)
1172 (prog1
fbee9727 1173 (if forms--field
5658a814
GM
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))))
fbee9727
RS
1183 (setq forms--seen-text t)
1184 (setq forms--field nil)))
01a45313 1185 ((numberp el)
fbee9727 1186 (if forms--field
01a45313 1187 (error "Cannot parse adjacent fields %d and %d"
fbee9727
RS
1188 forms--field el)
1189 (setq forms--field el)
01a45313
RS
1190 nil))
1191 ((null el)
fbee9727 1192 (if forms--field
5658a814
GM
1193 `((aset forms--recordv ,(1- forms--field)
1194 (buffer-substring-no-properties (point) (point-max))))))
01a45313
RS
1195 ((listp el)
1196 (prog1
fbee9727 1197 (if forms--field
5658a814
GM
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)))))
fbee9727
RS
1209 (setq forms--dyntext (1+ forms--dyntext))
1210 (setq forms--seen-text t)
1211 (setq forms--field nil)))
01a45313 1212 ))
b22c9ebf 1213\f
9c308ed2
RS
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))
e8af40ee 1222 (error "Need existing file or explicit 'forms-number-of-records'")
9c308ed2
RS
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
71296446 1236 ;; This may be overkill, but try to avoid interference with
9c308ed2
RS
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\f
c1110355
BP
1260(defun forms--set-keymaps ()
1261 "Set the keymaps used in this mode."
1262
71296446
JB
1263 (use-local-map (if forms-read-only
1264 forms-mode-ro-map
2cc27dd3
RS
1265 forms-mode-edit-map)))
1266
1267(defun forms--mode-commands ()
1268 "Fill the Forms mode keymaps."
1269
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)
ac7e3dbe
JV
1279 (define-key forms-mode-map "\C-r" 'forms-search-backward)
1280 (define-key forms-mode-map "\C-s" 'forms-search-forward)
2cc27dd3
RS
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)
2cc27dd3
RS
1284 (define-key forms-mode-map "\C-?" 'forms-prev-record)
1285
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)
2cc27dd3
RS
1290 (define-key forms-mode-ro-map "q" 'forms-toggle-read-only)
1291 (define-key forms-mode-ro-map "l" 'forms-jump-record)
1292 (define-key forms-mode-ro-map "n" 'forms-next-record)
1293 (define-key forms-mode-ro-map "p" 'forms-prev-record)
ac7e3dbe
JV
1294 (define-key forms-mode-ro-map "r" 'forms-search-backward)
1295 (define-key forms-mode-ro-map "s" 'forms-search-forward)
2cc27dd3
RS
1296 (define-key forms-mode-ro-map "x" 'forms-exit)
1297 (define-key forms-mode-ro-map "<" 'forms-first-record)
1298 (define-key forms-mode-ro-map ">" 'forms-last-record)
1299 (define-key forms-mode-ro-map "?" 'describe-mode)
1300 (define-key forms-mode-ro-map " " 'forms-next-record)
1301 (forms--mode-commands1 forms-mode-ro-map)
ac7e3dbe 1302 (forms--mode-menu-ro forms-mode-ro-map)
2cc27dd3
RS
1303
1304 ;; This is the normal, local map.
1305 (setq forms-mode-edit-map (make-keymap))
2cc27dd3
RS
1306 (define-key forms-mode-edit-map "\C-c" forms-mode-map)
1307 (forms--mode-commands1 forms-mode-edit-map)
ac7e3dbe 1308 (forms--mode-menu-edit forms-mode-edit-map)
2cc27dd3
RS
1309 )
1310
ac7e3dbe
JV
1311(defun forms--mode-menu-ro (map)
1312;;; Menu initialisation
1313; (define-key map [menu-bar] (make-sparse-keymap))
1314 (define-key map [menu-bar forms]
1315 (cons "Forms" (make-sparse-keymap "Forms")))
1316 (define-key map [menu-bar forms menu-forms-exit]
149bb5be 1317 '("Exit Forms Mode" . forms-exit))
ac7e3dbe
JV
1318 (define-key map [menu-bar forms menu-forms-sep1]
1319 '("----"))
1320 (define-key map [menu-bar forms menu-forms-save]
dad40e13 1321 '("Save Data" . forms-save-buffer))
ac7e3dbe 1322 (define-key map [menu-bar forms menu-forms-print]
dad40e13 1323 '("Print Data" . forms-print))
ac7e3dbe 1324 (define-key map [menu-bar forms menu-forms-describe]
dad40e13 1325 '("Describe Mode" . describe-mode))
ac7e3dbe
JV
1326 (define-key map [menu-bar forms menu-forms-toggle-ro]
1327 '("Toggle View/Edit" . forms-toggle-read-only))
1328 (define-key map [menu-bar forms menu-forms-jump-record]
1329 '("Jump" . forms-jump-record))
1330 (define-key map [menu-bar forms menu-forms-search-backward]
dad40e13 1331 '("Search Backward" . forms-search-backward))
ac7e3dbe 1332 (define-key map [menu-bar forms menu-forms-search-forward]
dad40e13 1333 '("Search Forward" . forms-search-forward))
ac7e3dbe
JV
1334 (define-key map [menu-bar forms menu-forms-delete-record]
1335 '("Delete" . forms-delete-record))
1336 (define-key map [menu-bar forms menu-forms-insert-record]
1337 '("Insert" . forms-insert-record))
1338 (define-key map [menu-bar forms menu-forms-sep2]
1339 '("----"))
1340 (define-key map [menu-bar forms menu-forms-last-record]
dad40e13 1341 '("Last Record" . forms-last-record))
ac7e3dbe 1342 (define-key map [menu-bar forms menu-forms-first-record]
dad40e13 1343 '("First Record" . forms-first-record))
ac7e3dbe 1344 (define-key map [menu-bar forms menu-forms-prev-record]
dad40e13 1345 '("Previous Record" . forms-prev-record))
ac7e3dbe 1346 (define-key map [menu-bar forms menu-forms-next-record]
dad40e13 1347 '("Next Record" . forms-next-record))
ac7e3dbe
JV
1348 (define-key map [menu-bar forms menu-forms-sep3]
1349 '("----"))
1350 (define-key map [menu-bar forms menu-forms-prev-field]
dad40e13 1351 '("Previous Field" . forms-prev-field))
ac7e3dbe 1352 (define-key map [menu-bar forms menu-forms-next-field]
dad40e13 1353 '("Next Field" . forms-next-field))
ac7e3dbe
JV
1354 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
1355 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
1356)
1357(defun forms--mode-menu-edit (map)
1358;;; Menu initialisation
1359; (define-key map [menu-bar] (make-sparse-keymap))
1360 (define-key map [menu-bar forms]
1361 (cons "Forms" (make-sparse-keymap "Forms")))
1362 (define-key map [menu-bar forms menu-forms-edit--exit]
1363 '("Exit" . forms-exit))
1364 (define-key map [menu-bar forms menu-forms-edit-sep1]
1365 '("----"))
1366 (define-key map [menu-bar forms menu-forms-edit-save]
dad40e13 1367 '("Save Data" . forms-save-buffer))
ac7e3dbe 1368 (define-key map [menu-bar forms menu-forms-edit-print]
dad40e13 1369 '("Print Data" . forms-print))
ac7e3dbe 1370 (define-key map [menu-bar forms menu-forms-edit-describe]
dad40e13 1371 '("Describe Mode" . describe-mode))
ac7e3dbe
JV
1372 (define-key map [menu-bar forms menu-forms-edit-toggle-ro]
1373 '("Toggle View/Edit" . forms-toggle-read-only))
1374 (define-key map [menu-bar forms menu-forms-edit-jump-record]
1375 '("Jump" . forms-jump-record))
1376 (define-key map [menu-bar forms menu-forms-edit-search-backward]
dad40e13 1377 '("Search Backward" . forms-search-backward))
ac7e3dbe 1378 (define-key map [menu-bar forms menu-forms-edit-search-forward]
dad40e13 1379 '("Search Forward" . forms-search-forward))
ac7e3dbe
JV
1380 (define-key map [menu-bar forms menu-forms-edit-delete-record]
1381 '("Delete" . forms-delete-record))
1382 (define-key map [menu-bar forms menu-forms-edit-insert-record]
1383 '("Insert" . forms-insert-record))
1384 (define-key map [menu-bar forms menu-forms-edit-sep2]
1385 '("----"))
1386 (define-key map [menu-bar forms menu-forms-edit-last-record]
dad40e13 1387 '("Last Record" . forms-last-record))
ac7e3dbe 1388 (define-key map [menu-bar forms menu-forms-edit-first-record]
dad40e13 1389 '("First Record" . forms-first-record))
ac7e3dbe 1390 (define-key map [menu-bar forms menu-forms-edit-prev-record]
dad40e13 1391 '("Previous Record" . forms-prev-record))
ac7e3dbe 1392 (define-key map [menu-bar forms menu-forms-edit-next-record]
dad40e13 1393 '("Next Record" . forms-next-record))
ac7e3dbe
JV
1394 (define-key map [menu-bar forms menu-forms-edit-sep3]
1395 '("----"))
1396 (define-key map [menu-bar forms menu-forms-edit-prev-field]
dad40e13 1397 '("Previous Field" . forms-prev-field))
ac7e3dbe 1398 (define-key map [menu-bar forms menu-forms-edit-next-field]
dad40e13 1399 '("Next Field" . forms-next-field))
ac7e3dbe
JV
1400 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
1401 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
1402)
1403
71296446 1404(defun forms--mode-commands1 (map)
2cc27dd3 1405 "Helper routine to define keys."
4d308b5a 1406 (define-key map "\t" 'forms-next-field)
2cc27dd3
RS
1407 (define-key map [S-tab] 'forms-prev-field)
1408 (define-key map [next] 'forms-next-record)
1409 (define-key map [prior] 'forms-prev-record)
1410 (define-key map [begin] 'forms-first-record)
1411 (define-key map [last] 'forms-last-record)
1412 (define-key map [backtab] 'forms-prev-field)
c1110355 1413 )
b22c9ebf 1414\f
c1110355 1415;;; Changed functions
c1110355
BP
1416
1417(defun forms--change-commands ()
ac2a7a91 1418 "Localize some commands for Forms mode."
fbee9727 1419
c1110355 1420 ;; scroll-down -> forms-prev-record
c1110355 1421 ;; scroll-up -> forms-next-record
ea3d9551
RS
1422 (if forms-forms-scroll
1423 (progn
ef6a4dfe
AS
1424 (local-set-key [remap scroll-up] 'forms-next-record)
1425 (local-set-key [remap scroll-down] 'forms-prev-record)))
c1110355
BP
1426 ;;
1427 ;; beginning-of-buffer -> forms-first-record
c1110355 1428 ;; end-of-buffer -> forms-end-record
ea3d9551
RS
1429 (if forms-forms-jump
1430 (progn
ef6a4dfe
AS
1431 (local-set-key [remap beginning-of-buffer] 'forms-first-record)
1432 (local-set-key [remap end-of-buffer] 'forms-last-record)))
c1110355 1433 ;;
9c308ed2
RS
1434 ;; Save buffer
1435 (local-set-key "\C-x\C-s" 'forms-save-buffer)
1436 ;;
485efad0 1437 ;; We have our own revert function - use it.
2cc27dd3 1438 (make-local-variable 'revert-buffer-function)
485efad0 1439 (setq revert-buffer-function 'forms--revert-buffer)
2cc27dd3
RS
1440
1441 t)
c1110355
BP
1442
1443(defun forms--help ()
ac2a7a91 1444 "Initial help for Forms mode."
5edb2df7 1445 (message "%s" (substitute-command-keys (concat
2cc27dd3
RS
1446 "\\[forms-next-record]:next"
1447 " \\[forms-prev-record]:prev"
1448 " \\[forms-first-record]:first"
1449 " \\[forms-last-record]:last"
1450 " \\[describe-mode]:help"))))
c1110355
BP
1451
1452(defun forms--trans (subj arg rep)
ac2a7a91 1453 "Translate in SUBJ all chars ARG into char REP. ARG and REP should
c1110355
BP
1454 be single-char strings."
1455 (let ((i 0)
1456 (x (length subj))
1457 (re (regexp-quote arg))
1458 (k (string-to-char rep)))
1459 (while (setq i (string-match re subj i))
1460 (aset subj i k)
1461 (setq i (1+ i)))))
1462
1463(defun forms--exit (query &optional save)
fbee9727
RS
1464 "Internal exit from forms mode function."
1465
c1110355
BP
1466 (let ((buf (buffer-name forms--file-buffer)))
1467 (forms--checkmod)
1468 (if (and save
1469 (buffer-modified-p forms--file-buffer))
9c308ed2 1470 (forms-save-buffer))
c1110355
BP
1471 (save-excursion
1472 (set-buffer forms--file-buffer)
1473 (delete-auto-save-file-if-necessary)
1474 (kill-buffer (current-buffer)))
1475 (if (get-buffer buf) ; not killed???
38bd9da2
KH
1476 (if save
1477 (error "Problem saving buffer %s" (buffer-name buf)))
c1110355
BP
1478 (delete-auto-save-file-if-necessary)
1479 (kill-buffer (current-buffer)))))
1480
1481(defun forms--get-record ()
1482 "Fetch the current record from the file buffer."
fbee9727
RS
1483
1484 ;; This function is executed in the context of the `forms--file-buffer'.
1485
c1110355
BP
1486 (or (bolp)
1487 (beginning-of-line nil))
1488 (let ((here (point)))
1489 (prog2
1490 (end-of-line)
a0844fc6 1491 (buffer-substring-no-properties here (point))
c1110355
BP
1492 (goto-char here))))
1493
1494(defun forms--show-record (the-record)
ac2a7a91 1495 "Format THE-RECORD and display it in the current buffer."
c1110355 1496
fbee9727 1497 ;; Split the-record.
c1110355
BP
1498 (let (the-result
1499 (start-pos 0)
1500 found-pos
1501 (field-sep-length (length forms-field-sep)))
1502 (if forms-multi-line
1503 (forms--trans the-record forms-multi-line "\n"))
fbee9727 1504 ;; Add an extra separator (makes splitting easy).
c1110355
BP
1505 (setq the-record (concat the-record forms-field-sep))
1506 (while (setq found-pos (string-match forms-field-sep the-record start-pos))
1507 (let ((ent (substring the-record start-pos found-pos)))
1508 (setq the-result
1509 (append the-result (list ent)))
1510 (setq start-pos (+ field-sep-length found-pos))))
1511 (setq forms--the-record-list the-result))
1512
1513 (setq buffer-read-only nil)
fbee9727
RS
1514 (if forms-use-text-properties
1515 (let ((inhibit-read-only t))
fbee9727 1516 (set-text-properties (point-min) (point-max) nil)))
c1110355
BP
1517 (erase-buffer)
1518
fbee9727 1519 ;; Verify the number of fields, extend forms--the-record-list if needed.
c1110355
BP
1520 (if (= (length forms--the-record-list) forms-number-of-fields)
1521 nil
4fd3a710
RS
1522 (if (null forms-check-number-of-fields)
1523 nil
4fd3a710
RS
1524 (message "Warning: this record has %d fields instead of %d"
1525 (length forms--the-record-list) forms-number-of-fields))
c1110355 1526 (if (< (length forms--the-record-list) forms-number-of-fields)
71296446 1527 (setq forms--the-record-list
c1110355 1528 (append forms--the-record-list
71296446
JB
1529 (make-list
1530 (- forms-number-of-fields
c1110355
BP
1531 (length forms--the-record-list))
1532 "")))))
1533
fbee9727 1534 ;; Call the formatter function.
01a45313 1535 (setq forms-fields (append (list nil) forms--the-record-list nil))
c1110355
BP
1536 (funcall forms--format forms--the-record-list)
1537
fbee9727 1538 ;; Prepare.
c1110355
BP
1539 (goto-char (point-min))
1540 (set-buffer-modified-p nil)
1541 (setq buffer-read-only forms-read-only)
1542 (setq mode-line-process
a9d358fb
RS
1543 (concat " " (int-to-string forms--current-record)
1544 "/" (int-to-string forms--total-records))))
c1110355
BP
1545
1546(defun forms--parse-form ()
1547 "Parse contents of form into list of strings."
1548 ;; The contents of the form are parsed, and a new list of strings
1549 ;; is constructed.
71296446 1550 ;; A vector with the strings from the original record is
ac2a7a91 1551 ;; constructed, which is updated with the new contents. Therefore
c1110355
BP
1552 ;; fields which were not in the form are not modified.
1553 ;; Finally, the vector is transformed into a list for further processing.
1554
fbee9727 1555 (let (forms--recordv)
c1110355 1556
fbee9727
RS
1557 ;; Build the vector.
1558 (setq forms--recordv (vconcat forms--the-record-list))
c1110355 1559
fbee9727 1560 ;; Parse the form and update the vector.
01a45313
RS
1561 (let ((forms--dynamic-text forms--dynamic-text))
1562 (funcall forms--parser))
c1110355 1563
2cc27dd3 1564 (if forms-modified-record-filter
01a45313
RS
1565 ;; As a service to the user, we add a zeroth element so she
1566 ;; can use the same indices as in the forms definition.
fbee9727 1567 (let ((the-fields (vconcat [nil] forms--recordv)))
2cc27dd3 1568 (setq the-fields (funcall forms-modified-record-filter the-fields))
01a45313
RS
1569 (cdr (append the-fields nil)))
1570
fbee9727
RS
1571 ;; Transform to a list and return.
1572 (append forms--recordv nil))))
c1110355
BP
1573
1574(defun forms--update ()
ac2a7a91 1575 "Update current record with contents of form.
fbee9727 1576As a side effect: sets `forms--the-record-list'."
ac2a7a91 1577
c1110355 1578 (if forms-read-only
38bd9da2 1579 (error "Buffer is read-only"))
9c308ed2 1580
38bd9da2
KH
1581 (let (the-record)
1582 ;; Build new record.
1583 (setq forms--the-record-list (forms--parse-form))
1584 (setq the-record
1585 (mapconcat 'identity forms--the-record-list forms-field-sep))
71296446 1586
38bd9da2
KH
1587 (if (string-match (regexp-quote forms-field-sep)
1588 (mapconcat 'identity forms--the-record-list ""))
1589 (error "Field separator occurs in record - update refused"))
71296446 1590
38bd9da2
KH
1591 ;; Handle multi-line fields, if allowed.
1592 (if forms-multi-line
1593 (forms--trans the-record "\n" forms-multi-line))
c1110355 1594
38bd9da2
KH
1595 ;; A final sanity check before updating.
1596 (if (string-match "\n" the-record)
1597 (error "Multi-line fields in this record - update refused"))
c1110355 1598
38bd9da2
KH
1599 (save-excursion
1600 (set-buffer forms--file-buffer)
1601 ;; Use delete-region instead of kill-region, to avoid
1602 ;; adding junk to the kill-ring.
1603 (delete-region (save-excursion (beginning-of-line) (point))
1604 (save-excursion (end-of-line) (point)))
1605 (insert the-record)
1606 (beginning-of-line))))
c1110355
BP
1607
1608(defun forms--checkmod ()
1609 "Check if this form has been modified, and call forms--update if so."
1610 (if (buffer-modified-p nil)
1611 (let ((here (point)))
1612 (forms--update)
1613 (set-buffer-modified-p nil)
1614 (goto-char here))))
b22c9ebf 1615\f
c1110355 1616;;; Start and exit
ac2a7a91
RS
1617
1618;;;###autoload
c1110355 1619(defun forms-find-file (fn)
ac2a7a91 1620 "Visit a file in Forms mode."
c1110355 1621 (interactive "fForms file: ")
485efad0
RS
1622 (let ((enable-local-eval t)
1623 (enable-local-variables t))
1624 (find-file-read-only fn)
1625 (or forms--mode-setup (forms-mode t))))
c1110355 1626
ac2a7a91 1627;;;###autoload
c1110355 1628(defun forms-find-file-other-window (fn)
ac2a7a91 1629 "Visit a file in Forms mode in other window."
c1110355 1630 (interactive "fFbrowse file in other window: ")
485efad0
RS
1631 (let ((enable-local-eval t)
1632 (enable-local-variables t))
1633 (find-file-other-window fn)
1634 (or forms--mode-setup (forms-mode t))))
c1110355
BP
1635
1636(defun forms-exit (query)
ac2a7a91 1637 "Normal exit from Forms mode. Modified buffers are saved."
c1110355
BP
1638 (interactive "P")
1639 (forms--exit query t))
1640
1641(defun forms-exit-no-save (query)
ac2a7a91 1642 "Exit from Forms mode without saving buffers."
c1110355
BP
1643 (interactive "P")
1644 (forms--exit query nil))
b22c9ebf 1645\f
c1110355
BP
1646;;; Navigating commands
1647
1648(defun forms-next-record (arg)
1649 "Advance to the ARGth following record."
1650 (interactive "P")
1651 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t))
1652
1653(defun forms-prev-record (arg)
1654 "Advance to the ARGth previous record."
1655 (interactive "P")
1656 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))
1657
1658(defun forms-jump-record (arg &optional relative)
1659 "Jump to a random record."
1660 (interactive "NRecord number: ")
1661
fbee9727 1662 ;; Verify that the record number is within range.
c1110355
BP
1663 (if (or (> arg forms--total-records)
1664 (<= arg 0))
38bd9da2 1665 (error
fbee9727 1666 ;; Don't give the message if just paging.
c1110355
BP
1667 (if (not relative)
1668 (message "Record number %d out of range 1..%d"
38bd9da2
KH
1669 arg forms--total-records)
1670 "")))
c1110355 1671
38bd9da2
KH
1672 ;; Flush.
1673 (forms--checkmod)
c1110355 1674
38bd9da2
KH
1675 ;; Calculate displacement.
1676 (let ((disp (- arg forms--current-record))
1677 (cur forms--current-record))
c1110355 1678
38bd9da2
KH
1679 ;; `forms--show-record' needs it now.
1680 (setq forms--current-record arg)
c1110355 1681
38bd9da2
KH
1682 ;; Get the record and show it.
1683 (forms--show-record
1684 (save-excursion
1685 (set-buffer forms--file-buffer)
1686 (beginning-of-line)
c1110355 1687
38bd9da2
KH
1688 ;; Move, and adjust the amount if needed (shouldn't happen).
1689 (if relative
1690 (if (zerop disp)
1691 nil
1692 (setq cur (+ cur disp (- (forward-line disp)))))
17b17258
PJ
1693 (goto-char (point-min))
1694 (setq cur (+ cur disp (- (forward-line (1- arg))))))
c1110355 1695
38bd9da2 1696 (forms--get-record)))
c1110355 1697
38bd9da2
KH
1698 ;; This shouldn't happen.
1699 (if (/= forms--current-record cur)
1700 (progn
1701 (setq forms--current-record cur)
1702 (error "Stuck at record %d" cur)))))
c1110355
BP
1703
1704(defun forms-first-record ()
1705 "Jump to first record."
1706 (interactive)
1707 (forms-jump-record 1))
1708
1709(defun forms-last-record ()
ac2a7a91
RS
1710 "Jump to last record.
1711As a side effect: re-calculates the number of records in the data file."
c1110355
BP
1712 (interactive)
1713 (let
71296446 1714 ((numrec
c1110355
BP
1715 (save-excursion
1716 (set-buffer forms--file-buffer)
1717 (count-lines (point-min) (point-max)))))
1718 (if (= numrec forms--total-records)
1719 nil
c1110355 1720 (setq forms--total-records numrec)
2cc27dd3 1721 (message "Warning: number of records changed to %d" forms--total-records)))
c1110355 1722 (forms-jump-record forms--total-records))
b22c9ebf 1723\f
c1110355 1724;;; Other commands
ac2a7a91 1725
2cc27dd3
RS
1726(defun forms-toggle-read-only (arg)
1727 "Toggles read-only mode of a forms mode buffer.
1728With an argument, enables read-only mode if the argument is positive.
968db5f7 1729Otherwise enables edit mode if the visited file is writable."
c1110355 1730
2cc27dd3
RS
1731 (interactive "P")
1732
1733 (if (if arg
1734 ;; Negative arg means switch it off.
1735 (<= (prefix-numeric-value arg) 0)
1736 ;; No arg means toggle.
1737 forms-read-only)
1738
1739 ;; Enable edit mode, if possible.
1740 (let ((ro forms-read-only))
1741 (if (save-excursion
1742 (set-buffer forms--file-buffer)
1743 buffer-read-only)
1744 (progn
1745 (setq forms-read-only t)
38bd9da2 1746 (message "No write access to `%s'" forms-file))
2cc27dd3
RS
1747 (setq forms-read-only nil))
1748 (if (equal ro forms-read-only)
1749 nil
1750 (forms-mode)))
1751
1752 ;; Enable view mode.
1753 (if forms-read-only
c1110355 1754 nil
2cc27dd3
RS
1755 (forms--checkmod) ; sync
1756 (setq forms-read-only t)
c1110355
BP
1757 (forms-mode))))
1758
1759;; Sample:
01a45313 1760;; (defun my-new-record-filter (the-fields)
c1110355
BP
1761;; ;; numbers are relative to 1
1762;; (aset the-fields 4 (current-time-string))
1763;; (aset the-fields 6 (user-login-name))
1764;; the-list)
01a45313 1765;; (setq forms-new-record-filter 'my-new-record-filter)
c1110355
BP
1766
1767(defun forms-insert-record (arg)
ac2a7a91
RS
1768 "Create a new record before the current one.
1769With ARG: store the record after the current one.
71296446 1770If `forms-new-record-filter' contains the name of a function,
149bb5be
JV
1771it is called to fill (some of) the fields with default values.
1772If `forms-insert-after is non-nil, the default behavior is to insert
1773after the current record."
c1110355
BP
1774
1775 (interactive "P")
1776
2cc27dd3
RS
1777 (if forms-read-only
1778 (error ""))
1779
149bb5be
JV
1780 (let (ln the-list the-record)
1781
1782 (if (or (and arg forms-insert-after)
1783 (and (not arg) (not forms-insert-after)))
1784 (setq ln forms--current-record)
1785 (setq ln (1+ forms--current-record)))
c1110355
BP
1786
1787 (forms--checkmod)
2cc27dd3 1788 (if forms-new-record-filter
c1110355
BP
1789 ;; As a service to the user, we add a zeroth element so she
1790 ;; can use the same indices as in the forms definition.
1791 (let ((the-fields (make-vector (1+ forms-number-of-fields) "")))
2cc27dd3 1792 (setq the-fields (funcall forms-new-record-filter the-fields))
c1110355
BP
1793 (setq the-list (cdr (append the-fields nil))))
1794 (setq the-list (make-list forms-number-of-fields "")))
1795
1796 (setq the-record
1797 (mapconcat
1798 'identity
1799 the-list
1800 forms-field-sep))
1801
1802 (save-excursion
1803 (set-buffer forms--file-buffer)
17b17258
PJ
1804 (goto-char (point-min))
1805 (forward-line (1- ln))
c1110355
BP
1806 (open-line 1)
1807 (insert the-record)
1808 (beginning-of-line))
71296446 1809
c1110355
BP
1810 (setq forms--current-record ln))
1811
1812 (setq forms--total-records (1+ forms--total-records))
1813 (forms-jump-record forms--current-record))
1814
1815(defun forms-delete-record (arg)
ac2a7a91 1816 "Deletes a record. With a prefix argument: don't ask."
c1110355 1817 (interactive "P")
2cc27dd3
RS
1818
1819 (if forms-read-only
1820 (error ""))
1821
c1110355
BP
1822 (forms--checkmod)
1823 (if (or arg
1824 (y-or-n-p "Really delete this record? "))
1825 (let ((ln forms--current-record))
1826 (save-excursion
1827 (set-buffer forms--file-buffer)
17b17258
PJ
1828 (goto-char (point-min))
1829 (forward-line (1- ln))
1f111018
RS
1830 ;; Use delete-region instead of kill-region, to avoid
1831 ;; adding junk to the kill-ring.
eb4ca295
RS
1832 (delete-region (progn (beginning-of-line) (point))
1833 (progn (beginning-of-line 2) (point))))
c1110355
BP
1834 (setq forms--total-records (1- forms--total-records))
1835 (if (> forms--current-record forms--total-records)
1836 (setq forms--current-record forms--total-records))
1837 (forms-jump-record forms--current-record)))
1838 (message ""))
1839
ac7e3dbe
JV
1840(defun forms-search-forward (regexp)
1841 "Search forward for record containing REGEXP."
71296446
JB
1842 (interactive
1843 (list (read-string (concat "Search forward for"
c1110355
BP
1844 (if forms--search-regexp
1845 (concat " ("
1846 forms--search-regexp
1847 ")"))
1848 ": "))))
1849 (if (equal "" regexp)
1850 (setq regexp forms--search-regexp))
1851 (forms--checkmod)
1852
1853 (let (the-line the-record here
1854 (fld-sep forms-field-sep))
a92f7abb
RS
1855 (save-excursion
1856 (set-buffer forms--file-buffer)
1857 (end-of-line)
1858 (setq here (point))
1859 (if (or (re-search-forward regexp nil t)
1860 (and (> here (point-min))
1861 (progn
1862 (goto-char (point-min))
1863 (re-search-forward regexp here t))))
1864 (progn
c1110355 1865 (setq the-record (forms--get-record))
a92f7abb
RS
1866 (setq the-line (1+ (count-lines (point-min) (point))))
1867 (if (< (point) here)
1868 (message "Wrapped")))
1869 (goto-char here)
1870 (error "Search failed: %s" regexp)))
1871 (setq forms--current-record the-line)
1872 (forms--show-record the-record))
1873 (re-search-forward regexp nil t)
c1110355
BP
1874 (setq forms--search-regexp regexp))
1875
ac7e3dbe
JV
1876(defun forms-search-backward (regexp)
1877 "Search backward for record containing REGEXP."
71296446
JB
1878 (interactive
1879 (list (read-string (concat "Search backward for"
ac7e3dbe
JV
1880 (if forms--search-regexp
1881 (concat " ("
1882 forms--search-regexp
1883 ")"))
1884 ": "))))
1885 (if (equal "" regexp)
1886 (setq regexp forms--search-regexp))
1887 (forms--checkmod)
1888
1889 (let (the-line the-record here
1890 (fld-sep forms-field-sep))
a92f7abb
RS
1891 (save-excursion
1892 (set-buffer forms--file-buffer)
1893 (beginning-of-line)
1894 (setq here (point))
1895 (if (or (re-search-backward regexp nil t)
1896 (and (< (point) (point-max))
1897 (progn
1898 (goto-char (point-max))
1899 (re-search-backward regexp here t))))
1900 (progn
ac7e3dbe 1901 (setq the-record (forms--get-record))
a92f7abb
RS
1902 (setq the-line (1+ (count-lines (point-min) (point))))
1903 (if (> (point) here)
1904 (message "Wrapped")))
1905 (goto-char here)
1906 (error "Search failed: %s" regexp)))
1907 (setq forms--current-record the-line)
1908 (forms--show-record the-record))
1909 (re-search-forward regexp nil t)
ac7e3dbe
JV
1910 (setq forms--search-regexp regexp))
1911
9c308ed2
RS
1912(defun forms-save-buffer (&optional args)
1913 "Forms mode replacement for save-buffer.
1914It saves the data buffer instead of the forms buffer.
38bd9da2
KH
1915Calls `forms-write-file-filter' before, and `forms-read-file-filter'
1916after writing out the data."
9c308ed2 1917 (interactive "p")
485efad0 1918 (forms--checkmod)
38bd9da2 1919 (let ((write-file-filter forms-write-file-filter)
f3ae6c2a
EZ
1920 (read-file-filter forms-read-file-filter)
1921 (cur forms--current-record))
9c308ed2
RS
1922 (save-excursion
1923 (set-buffer forms--file-buffer)
1924 (let ((inhibit-read-only t))
a92f7abb 1925 ;; Write file hooks are run via local-write-file-hooks.
71296446
JB
1926 ;; (if write-file-filter
1927 ;; (save-excursion
f3ae6c2a
EZ
1928 ;; (run-hooks 'write-file-filter)))
1929
1930 ;; If they have a write-file-filter, force the buffer to be
1931 ;; saved even if it doesn't seem to be changed. First, they
1932 ;; might have changed the write-file-filter; and second, if
1933 ;; save-buffer does nothing, write-file-filter won't get run,
1934 ;; and then read-file-filter will be mightily confused.
1935 (or (null write-file-filter)
1936 (set-buffer-modified-p t))
9c308ed2
RS
1937 (save-buffer args)
1938 (if read-file-filter
38bd9da2
KH
1939 (save-excursion
1940 (run-hooks 'read-file-filter)))
f3ae6c2a
EZ
1941 (set-buffer-modified-p nil)))
1942 ;; Make sure we end up with the same record number as we started.
1943 ;; Since read-file-filter may perform arbitrary transformations on
1944 ;; the data buffer contents, save-excursion is not enough.
1945 (forms-jump-record cur))
485efad0
RS
1946 t)
1947
1948(defun forms--revert-buffer (&optional arg noconfirm)
c1110355
BP
1949 "Reverts current form to un-modified."
1950 (interactive "P")
1951 (if (or noconfirm
1952 (yes-or-no-p "Revert form to unmodified? "))
1953 (progn
1954 (set-buffer-modified-p nil)
1955 (forms-jump-record forms--current-record))))
1956
1957(defun forms-next-field (arg)
1958 "Jump to ARG-th next field."
1959 (interactive "p")
1960
1961 (let ((i 0)
1962 (here (point))
1963 there
2996d9f8
RS
1964 (cnt 0)
1965 (inhibit-point-motion-hooks t))
c1110355
BP
1966
1967 (if (zerop arg)
1968 (setq cnt 1)
1969 (setq cnt (+ cnt arg)))
1970
1971 (if (catch 'done
fbee9727 1972 (while (< i (length forms--markers))
c1110355
BP
1973 (if (or (null (setq there (aref forms--markers i)))
1974 (<= there here))
1975 nil
1976 (if (<= (setq cnt (1- cnt)) 0)
1977 (progn
1978 (goto-char there)
1979 (throw 'done t))))
1980 (setq i (1+ i))))
1981 nil
1982 (goto-char (aref forms--markers 0)))))
01a45313 1983
2cc27dd3
RS
1984(defun forms-prev-field (arg)
1985 "Jump to ARG-th previous field."
1986 (interactive "p")
1987
1988 (let ((i (length forms--markers))
1989 (here (point))
1990 there
2996d9f8
RS
1991 (cnt 0)
1992 (inhibit-point-motion-hooks t))
2cc27dd3
RS
1993
1994 (if (zerop arg)
1995 (setq cnt 1)
1996 (setq cnt (+ cnt arg)))
1997
1998 (if (catch 'done
1999 (while (> i 0)
2000 (setq i ( 1- i))
2001 (if (or (null (setq there (aref forms--markers i)))
2002 (>= there here))
2003 nil
2004 (if (<= (setq cnt (1- cnt)) 0)
2005 (progn
2006 (goto-char there)
2007 (throw 'done t))))))
2008 nil
2009 (goto-char (aref forms--markers (1- (length forms--markers)))))))
ac7e3dbe
JV
2010
2011(defun forms-print ()
2012 "Send the records to the printer with 'print-buffer', one record per page."
2013 (interactive)
2014 (let ((inhibit-read-only t)
2015 (save-record forms--current-record)
a9d358fb 2016 (total-nb-records forms--total-records)
ac7e3dbe
JV
2017 (nb-record 1)
2018 (record nil))
2019 (while (<= nb-record forms--total-records)
2020 (forms-jump-record nb-record)
2021 (setq record (buffer-string))
2022 (save-excursion
2023 (set-buffer (get-buffer-create "*forms-print*"))
2024 (goto-char (buffer-end 1))
2025 (insert record)
2026 (setq buffer-read-only nil)
a9d358fb 2027 (if (< nb-record total-nb-records)
ac7e3dbe
JV
2028 (insert "\n\f\n")))
2029 (setq nb-record (1+ nb-record)))
2030 (save-excursion
2031 (set-buffer "*forms-print*")
2032 (print-buffer)
2033 (set-buffer-modified-p nil)
2034 (kill-buffer (current-buffer)))
2035 (forms-jump-record save-record)))
2036
01a45313
RS
2037;;;
2038;;; Special service
2039;;;
2040(defun forms-enumerate (the-fields)
ac2a7a91
RS
2041 "Take a quoted list of symbols, and set their values to sequential numbers.
2042The first symbol gets number 1, the second 2 and so on.
968db5f7 2043It returns the highest number.
01a45313
RS
2044
2045Usage: (setq forms-number-of-fields
2046 (forms-enumerate
2047 '(field1 field2 field2 ...)))"
2048
2049 (let ((the-index 0))
2050 (while the-fields
2051 (setq the-index (1+ the-index))
2052 (let ((el (car-safe the-fields)))
2053 (setq the-fields (cdr-safe the-fields))
2054 (set el the-index)))
2055 the-index))
b22c9ebf 2056\f
01a45313 2057;;; Debugging
ac2a7a91 2058
01a45313
RS
2059(defvar forms--debug nil
2060 "*Enables forms-mode debugging if not nil.")
2061
2062(defun forms--debug (&rest args)
ac2a7a91 2063 "Internal debugging routine."
01a45313
RS
2064 (if forms--debug
2065 (let ((ret nil))
2066 (while args
2067 (let ((el (car-safe args)))
2068 (setq args (cdr-safe args))
2069 (if (stringp el)
2070 (setq ret (concat ret el))
2071 (setq ret (concat ret (prin1-to-string el) " = "))
2072 (if (boundp el)
2073 (let ((vel (eval el)))
2074 (setq ret (concat ret (prin1-to-string vel) "\n")))
2075 (setq ret (concat ret "<unbound>" "\n")))
2076 (if (fboundp el)
71296446 2077 (setq ret (concat ret (prin1-to-string (symbol-function el))
01a45313
RS
2078 "\n"))))))
2079 (save-excursion
2080 (set-buffer (get-buffer-create "*forms-mode debug*"))
fbee9727
RS
2081 (if (zerop (buffer-size))
2082 (emacs-lisp-mode))
01a45313
RS
2083 (goto-char (point-max))
2084 (insert ret)))))
2085
e8af40ee 2086;;; forms.el ends here