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