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