(Qcurrent_input_method, Qactivate_input_method): New
[emacs.git] / lisp / forms.el
blob669d188337a4b77f667cbbdefac279c183965017
1 ;;; forms.el --- Forms mode: edit a file as a form to fill in
3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
5 ;; Author: Johan Vromans <jvromans@squirrel.nl>
7 ;; This file is part of GNU Emacs.
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.
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.
19 ;; You should have received a copy of the GNU General Public License
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.
24 ;;; Commentary:
26 ;; Visit a file using a form.
28 ;; === Naming conventions
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.
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.
39 ;; === How it works ===
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.
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.
57 ;; Forms mode is invoked using M-x forms-find-file control-file .
58 ;; Alternatively `forms-find-file-other-window' can be used.
60 ;; You may also visit the control file, and switch to forms mode by hand
61 ;; with M-x forms-mode .
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:
69 ;; forms-file [string]
70 ;; The name of the data file.
72 ;; forms-number-of-fields [integer]
73 ;; The number of fields in each record.
75 ;; forms-format-list [list]
76 ;; Formatting instructions.
78 ;; `forms-format-list' should be a list, each element containing
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.
95 ;; Optional variables which may be set in the control file:
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.
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.
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'.
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.
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'.
127 ;; forms-forms-jump [bool, default nil]
128 ;; Non-nil means: rebind locally the commands that
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.
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.
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.
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.
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.
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'.
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)
183 ;; forms-rw-face [symbol, default 'region]
184 ;; This is the face that is used to show
185 ;; read-write text on the screen.
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!
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'.
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.
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.
215 ;; Other functions provided by forms mode are:
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
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.
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.
233 ;; Edit mode commands:
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
250 ;; Read-only mode commands:
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
263 ;; Of course, it is also possible to use the \C-c prefix to obtain the
264 ;; same command keys as in edit mode.
266 ;; The following bindings are available, independent of the mode:
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
275 ;; For convenience, TAB is always bound to `forms-next-field', so you
276 ;; don't need the C-c prefix for this command.
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.
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.
288 ;;; Code:
290 (defgroup forms nil
291 "Edit a file as a form to fill in."
292 :group 'data)
294 ;;; Global variables and constants:
296 (provide 'forms) ;;; official
297 (provide 'forms-mode) ;;; for compatibility
299 (defconst forms-version (substring "$Revision: 2.31 $" 11 -2)
300 "The version number of forms-mode (as string). The complete RCS id is:
302 $Id: forms.el,v 2.31 1997/06/11 21:07:22 rms Exp rms $")
304 (defcustom forms-mode-hooks nil
305 "Hook functions to be run upon entering Forms mode."
306 :group 'forms
307 :type 'function)
309 ;;; Mandatory variables - must be set by evaluating the control file.
311 (defvar forms-file nil
312 "Name of the file holding the data.")
314 (defvar forms-format-list nil
315 "List of formatting specifications.")
317 (defvar forms-number-of-fields nil
318 "Number of fields per record.")
320 ;;; Optional variables with default values.
322 (defcustom forms-check-number-of-fields t
323 "*If non-nil, warn about records with wrong number of fields."
324 :group 'forms
325 :type 'boolean)
327 (defvar forms-field-sep "\t"
328 "Field separator character (default TAB).")
330 (defcustom forms-read-only nil
331 "*Non-nil means: visit the file in view (read-only) mode.
332 \(Default is to allow write access on the data file)."
333 :group 'forms
334 :type 'boolean)
336 (defvar forms-multi-line "\C-k" "\
337 If not nil: use this character to separate multi-line fields (default C-k).")
339 (defcustom forms-forms-scroll nil
340 "*Non-nil means replace scroll-up/down commands in Forms mode.
341 The replacement commands performs forms-next/prev-record."
342 :group 'forms
343 :type 'boolean)
345 (defcustom forms-forms-jump nil
346 "*Non-nil means redefine beginning/end-of-buffer in Forms mode.
347 The replacement commands performs forms-first/last-record."
348 :group 'forms
349 :type 'boolean)
351 (defvar forms-read-file-filter nil
352 "The name of a function that is called after reading the data file.
353 This can be used to change the contents of the file to something more
354 suitable for forms processing.")
356 (defvar forms-write-file-filter nil
357 "The name of a function that is called before writing the data file.
358 This can be used to undo the effects of `form-read-file-hook'.")
360 (defvar forms-new-record-filter nil
361 "The name of a function that is called when a new record is created.")
363 (defvar forms-modified-record-filter nil
364 "The name of a function that is called when a record has been modified.")
366 (defvar forms-fields nil
367 "List with fields of the current forms. First field has number 1.
368 This variable is for use by the filter routines only.
369 The contents may NOT be modified.")
371 (defcustom forms-use-text-properties t
372 "*Non-nil means: use text properties.
373 Defaults to t if this Emacs is capable of handling text properties."
374 :group 'forms
375 :type 'boolean)
377 (defcustom forms-insert-after nil
378 "*Non-nil means: inserts of new records go after current record.
379 Also, initial position is at last record."
380 :group 'forms
381 :type 'boolean)
383 (defcustom forms-ro-face 'default
384 "The face (a symbol) that is used to display read-only text on the screen."
385 :group 'forms
386 :type 'face)
388 (defcustom forms-rw-face 'region
389 "The face (a symbol) that is used to display read-write text on the screen."
390 :group 'forms
391 :type 'face)
393 ;;; Internal variables.
395 (defvar forms--file-buffer nil
396 "Buffer which holds the file data")
398 (defvar forms--total-records 0
399 "Total number of records in the data file.")
401 (defvar forms--current-record 0
402 "Number of the record currently on the screen.")
404 (defvar forms-mode-map nil
405 "Keymap for form buffer.")
406 (defvar forms-mode-ro-map nil
407 "Keymap for form buffer in view mode.")
408 (defvar forms-mode-edit-map nil
409 "Keymap for form buffer in edit mode.")
411 (defvar forms--markers nil
412 "Field markers in the screen.")
414 (defvar forms--dyntexts nil
415 "Dynamic texts (resulting from function calls) on the screen.")
417 (defvar forms--the-record-list nil
418 "List of strings of the current record, as parsed from the file.")
420 (defvar forms--search-regexp nil
421 "Last regexp used by forms-search functions.")
423 (defvar forms--format nil
424 "Formatting routine.")
426 (defvar forms--parser nil
427 "Forms parser routine.")
429 (defvar forms--mode-setup nil
430 "To keep track of forms-mode being set-up.")
431 (make-variable-buffer-local 'forms--mode-setup)
433 (defvar forms--dynamic-text nil
434 "Array that holds dynamic texts to insert between fields.")
436 (defvar forms--elements nil
437 "Array with the order in which the fields are displayed.")
439 (defvar forms--ro-face nil
440 "Face used to represent read-only data on the screen.")
442 (defvar forms--rw-face nil
443 "Face used to represent read-write data on the screen.")
445 ;;;###autoload
446 (defun forms-mode (&optional primary)
447 "Major mode to visit files in a field-structured manner using a form.
449 Commands: Equivalent keys in read-only mode:
450 TAB forms-next-field TAB
451 \\C-c TAB forms-next-field
452 \\C-c < forms-first-record <
453 \\C-c > forms-last-record >
454 \\C-c ? describe-mode ?
455 \\C-c \\C-k forms-delete-record
456 \\C-c \\C-q forms-toggle-read-only q
457 \\C-c \\C-o forms-insert-record
458 \\C-c \\C-l forms-jump-record l
459 \\C-c \\C-n forms-next-record n
460 \\C-c \\C-p forms-prev-record p
461 \\C-c \\C-r forms-search-reverse r
462 \\C-c \\C-s forms-search-forward s
463 \\C-c \\C-x forms-exit x
465 (interactive)
467 ;; This is not a simple major mode, as usual. Therefore, forms-mode
468 ;; takes an optional argument `primary' which is used for the
469 ;; initial set-up. Normal use would leave `primary' to nil.
470 ;; A global buffer-local variable `forms--mode-setup' has the same
471 ;; effect but makes it possible to auto-invoke forms-mode using
472 ;; `find-file'.
473 ;; Note: although it seems logical to have `make-local-variable'
474 ;; executed where the variable is first needed, I have deliberately
475 ;; placed all calls in this function.
477 ;; Primary set-up: evaluate buffer and check if the mandatory
478 ;; variables have been set.
479 (if (or primary (not forms--mode-setup))
480 (progn
481 ;;(message "forms: setting up...")
482 (kill-all-local-variables)
484 ;; Make mandatory variables.
485 (make-local-variable 'forms-file)
486 (make-local-variable 'forms-number-of-fields)
487 (make-local-variable 'forms-format-list)
489 ;; Make optional variables.
490 (make-local-variable 'forms-field-sep)
491 (make-local-variable 'forms-read-only)
492 (make-local-variable 'forms-multi-line)
493 (make-local-variable 'forms-forms-scroll)
494 (make-local-variable 'forms-forms-jump)
495 (make-local-variable 'forms-insert-after)
496 (make-local-variable 'forms-use-text-properties)
498 ;; Filter functions.
499 (make-local-variable 'forms-read-file-filter)
500 (make-local-variable 'forms-write-file-filter)
501 (make-local-variable 'forms-new-record-filter)
502 (make-local-variable 'forms-modified-record-filter)
504 ;; Make sure no filters exist.
505 (setq forms-read-file-filter nil)
506 (setq forms-write-file-filter nil)
507 (setq forms-new-record-filter nil)
508 (setq forms-modified-record-filter nil)
510 ;; If running Emacs 19 under X, setup faces to show read-only and
511 ;; read-write fields.
512 (if (fboundp 'make-face)
513 (progn
514 (make-local-variable 'forms-ro-face)
515 (make-local-variable 'forms-rw-face)))
517 ;; eval the buffer, should set variables
518 ;;(message "forms: processing control file...")
519 ;; If enable-local-eval is not set to t the user is asked first.
520 (if (or (eq enable-local-eval t)
521 (yes-or-no-p
522 (concat "Evaluate lisp code in buffer "
523 (buffer-name) " to display forms ")))
524 (eval-current-buffer)
525 (error "`enable-local-eval' inhibits buffer evaluation"))
527 ;; Check if the mandatory variables make sense.
528 (or forms-file
529 (error (concat "Forms control file error: "
530 "`forms-file' has not been set")))
532 ;; Check forms-field-sep first, since it can be needed to
533 ;; construct a default format list.
534 (or (stringp forms-field-sep)
535 (error (concat "Forms control file error: "
536 "`forms-field-sep' is not a string")))
538 (if forms-number-of-fields
539 (or (and (numberp forms-number-of-fields)
540 (> forms-number-of-fields 0))
541 (error (concat "Forms control file error: "
542 "`forms-number-of-fields' must be a number > 0")))
543 (or (null forms-format-list)
544 (error (concat "Forms control file error: "
545 "`forms-number-of-fields' has not been set"))))
547 (or forms-format-list
548 (forms--intuit-from-file))
550 (if forms-multi-line
551 (if (and (stringp forms-multi-line)
552 (eq (length forms-multi-line) 1))
553 (if (string= forms-multi-line forms-field-sep)
554 (error (concat "Forms control file error: "
555 "`forms-multi-line' is equal to 'forms-field-sep'")))
556 (error (concat "Forms control file error: "
557 "`forms-multi-line' must be nil or a one-character string"))))
558 (or (fboundp 'set-text-properties)
559 (setq forms-use-text-properties nil))
561 ;; Validate and process forms-format-list.
562 ;;(message "forms: pre-processing format list...")
563 (make-local-variable 'forms--elements)
564 (forms--process-format-list)
566 ;; Build the formatter and parser.
567 ;;(message "forms: building formatter...")
568 (make-local-variable 'forms--format)
569 (make-local-variable 'forms--markers)
570 (make-local-variable 'forms--dyntexts)
571 ;;(message "forms: building parser...")
572 (forms--make-format)
573 (make-local-variable 'forms--parser)
574 (forms--make-parser)
575 ;;(message "forms: building parser... done.")
577 ;; Check if record filters are defined.
578 (if (and forms-new-record-filter
579 (not (fboundp forms-new-record-filter)))
580 (error (concat "Forms control file error: "
581 "`forms-new-record-filter' is not a function")))
583 (if (and forms-modified-record-filter
584 (not (fboundp forms-modified-record-filter)))
585 (error (concat "Forms control file error: "
586 "`forms-modified-record-filter' is not a function")))
588 ;; The filters acces the contents of the forms using `forms-fields'.
589 (make-local-variable 'forms-fields)
591 ;; Dynamic text support.
592 (make-local-variable 'forms--dynamic-text)
594 ;; Prevent accidental overwrite of the control file and autosave.
595 (set-visited-file-name nil)
597 ;; Prepare this buffer for further processing.
598 (setq buffer-read-only nil)
599 (erase-buffer)
601 ;;(message "forms: setting up... done.")
604 ;; initialization done
605 (setq forms--mode-setup t)
607 ;; Copy desired faces to the actual variables used by the forms formatter.
608 (if (fboundp 'make-face)
609 (progn
610 (make-local-variable 'forms--ro-face)
611 (make-local-variable 'forms--rw-face)
612 (if forms-read-only
613 (progn
614 (setq forms--ro-face forms-ro-face)
615 (setq forms--rw-face forms-ro-face))
616 (setq forms--ro-face forms-ro-face)
617 (setq forms--rw-face forms-rw-face))))
619 ;; Make more local variables.
620 (make-local-variable 'forms--file-buffer)
621 (make-local-variable 'forms--total-records)
622 (make-local-variable 'forms--current-record)
623 (make-local-variable 'forms--the-record-list)
624 (make-local-variable 'forms--search-regexp)
626 ; The keymaps are global, so multiple forms mode buffers can share them.
627 ;(make-local-variable 'forms-mode-map)
628 ;(make-local-variable 'forms-mode-ro-map)
629 ;(make-local-variable 'forms-mode-edit-map)
630 (if forms-mode-map ; already defined
632 ;;(message "forms: building keymap...")
633 (forms--mode-commands)
634 ;;(message "forms: building keymap... done.")
637 ;; set the major mode indicator
638 (setq major-mode 'forms-mode)
639 (setq mode-name "Forms")
641 ;; find the data file
642 (setq forms--file-buffer (find-file-noselect forms-file))
644 ;; Pre-transform.
645 (let ((read-file-filter forms-read-file-filter)
646 (write-file-filter forms-write-file-filter))
647 (if read-file-filter
648 (save-excursion
649 (set-buffer forms--file-buffer)
650 (let ((inhibit-read-only t)
651 (file-modified (buffer-modified-p)))
652 (run-hooks 'read-file-filter)
653 (if (not file-modified) (set-buffer-modified-p nil)))
654 (if write-file-filter
655 (progn
656 (make-variable-buffer-local 'local-write-file-hooks)
657 (setq local-write-file-hooks (list write-file-filter)))))
658 (if write-file-filter
659 (save-excursion
660 (set-buffer forms--file-buffer)
661 (make-variable-buffer-local 'local-write-file-hooks)
662 (setq local-write-file-hooks (list write-file-filter))))))
664 ;; count the number of records, and set see if it may be modified
665 (let (ro)
666 (setq forms--total-records
667 (save-excursion
668 (prog1
669 (progn
670 ;;(message "forms: counting records...")
671 (set-buffer forms--file-buffer)
672 (bury-buffer (current-buffer))
673 (setq ro buffer-read-only)
674 (count-lines (point-min) (point-max)))
675 ;;(message "forms: counting records... done.")
677 (if ro
678 (setq forms-read-only t)))
680 ;;(message "forms: proceeding setup...")
682 ;; Since we aren't really implementing a minor mode, we hack the modeline
683 ;; directly to get the text " View " into forms-read-only form buffers. For
684 ;; that reason, this variable must be buffer only.
685 (make-local-variable 'minor-mode-alist)
686 (setq minor-mode-alist (list (list 'forms-read-only " View")))
688 ;;(message "forms: proceeding setup (keymaps)...")
689 (forms--set-keymaps)
690 ;;(message "forms: proceeding setup (commands)...")
691 (forms--change-commands)
693 ;;(message "forms: proceeding setup (buffer)...")
694 (set-buffer-modified-p nil)
696 (if (= forms--total-records 0)
697 ;;(message "forms: proceeding setup (new file)...")
698 (progn
699 (insert
700 "GNU Emacs Forms Mode version " forms-version "\n\n"
701 (if (file-exists-p forms-file)
702 (concat "No records available in file `" forms-file "'\n\n")
703 (format "Creating new file `%s'\nwith %d field%s per record\n\n"
704 forms-file forms-number-of-fields
705 (if (= 1 forms-number-of-fields) "" "s")))
706 "Use " (substitute-command-keys "\\[forms-insert-record]")
707 " to create new records.\n")
708 (setq forms--current-record 1)
709 (setq buffer-read-only t)
710 (set-buffer-modified-p nil))
712 ;; setup the first (or current) record to show
713 (if (< forms--current-record 1)
714 (setq forms--current-record 1))
715 (forms-jump-record forms--current-record)
718 (if forms-insert-after
719 (forms-last-record)
720 (forms-first-record))
722 ;; user customising
723 ;;(message "forms: proceeding setup (user hooks)...")
724 (run-hooks 'forms-mode-hooks)
725 ;;(message "forms: setting up... done.")
727 ;; be helpful
728 (forms--help)
731 (defun forms--process-format-list ()
732 ;; Validate `forms-format-list' and set some global variables.
733 ;; Symbols in the list are evaluated, and consecutive strings are
734 ;; concatenated.
735 ;; Array `forms--elements' is constructed that contains the order
736 ;; of the fields on the display. This array is used by
737 ;; `forms--parser-using-text-properties' to extract the fields data
738 ;; from the form on the screen.
739 ;; Upon completion, `forms-format-list' is guaranteed correct, so
740 ;; `forms--make-format' and `forms--make-parser' do not need to perform
741 ;; any checks.
743 ;; Verify that `forms-format-list' is not nil.
744 (or forms-format-list
745 (error (concat "Forms control file error: "
746 "`forms-format-list' has not been set")))
747 ;; It must be a list.
748 (or (listp forms-format-list)
749 (error (concat "Forms control file error: "
750 "`forms-format-list' is not a list")))
752 ;; Assume every field is painted once.
753 ;; `forms--elements' will grow if needed.
754 (setq forms--elements (make-vector forms-number-of-fields nil))
756 (let ((the-list forms-format-list) ; the list of format elements
757 (this-item 0) ; element in list
758 (prev-item nil)
759 (field-num 0)) ; highest field number
761 (setq forms-format-list nil) ; gonna rebuild
763 (while the-list
765 (let ((el (car-safe the-list))
766 (rem (cdr-safe the-list)))
768 ;; If it is a symbol, eval it first.
769 (if (and (symbolp el)
770 (boundp el))
771 (setq el (eval el)))
773 (cond
775 ;; Try string ...
776 ((stringp el)
777 (if (stringp prev-item) ; try to concatenate strings
778 (setq prev-item (concat prev-item el))
779 (if prev-item
780 (setq forms-format-list
781 (append forms-format-list (list prev-item) nil)))
782 (setq prev-item el)))
784 ;; Try numeric ...
785 ((numberp el)
787 ;; Validate range.
788 (if (or (<= el 0)
789 (> el forms-number-of-fields))
790 (error (concat "Forms format error: "
791 "field number %d out of range 1..%d")
792 el forms-number-of-fields))
794 ;; Store forms order.
795 (if (>= field-num (length forms--elements))
796 (setq forms--elements (vconcat forms--elements (1- el)))
797 (aset forms--elements field-num (1- el)))
798 (setq field-num (1+ field-num))
800 (if prev-item
801 (setq forms-format-list
802 (append forms-format-list (list prev-item) nil)))
803 (setq prev-item el))
805 ;; Try function ...
806 ((listp el)
808 ;; Validate.
809 (or (fboundp (car-safe el))
810 (error (concat "Forms format error: "
811 "%S is not a function")
812 (car-safe el)))
814 ;; Shift.
815 (if prev-item
816 (setq forms-format-list
817 (append forms-format-list (list prev-item) nil)))
818 (setq prev-item el))
820 ;; else
822 (error (concat "Forms format error: "
823 "invalid element %S")
824 el)))
826 ;; Advance to next element of the list.
827 (setq the-list rem)))
829 ;; Append last item.
830 (if prev-item
831 (progn
832 (setq forms-format-list
833 (append forms-format-list (list prev-item) nil))
834 ;; Append a newline if the last item is a field.
835 ;; This prevents parsing problems.
836 ;; Also it makes it possible to insert an empty last field.
837 (if (numberp prev-item)
838 (setq forms-format-list
839 (append forms-format-list (list "\n") nil))))))
841 (forms--debug 'forms-format-list
842 'forms--elements))
844 ;; Special treatment for read-only segments.
846 ;; If text is inserted between two read-only segments, there seems to
847 ;; be no way to give the newly inserted text the RW face.
848 ;; To solve this, read-only segments get the `insert-in-front-hooks'
849 ;; property set with a function that temporarily switches the
850 ;; properties of the first character of the segment to the RW face, so
851 ;; the new text gets the right face. The `post-command-hook' is
852 ;; used to restore the original properties.
854 (defvar forms--iif-start nil
855 "Record start of modification command.")
856 (defvar forms--iif-properties nil
857 "Original properties of the character being overridden.")
859 (defun forms--iif-hook (begin end)
860 "`insert-in-front-hooks' function for read-only segments."
862 ;; Note start location. By making it a marker that points one
863 ;; character beyond the actual location, it is guaranteed to move
864 ;; correctly if text is inserted.
865 (or forms--iif-start
866 (setq forms--iif-start (copy-marker (1+ (point)))))
868 ;; Check if there is special treatment required.
869 (if (or (<= forms--iif-start 2)
870 (get-text-property (- forms--iif-start 2)
871 'read-only))
872 (progn
873 ;; Fetch current properties.
874 (setq forms--iif-properties
875 (text-properties-at (1- forms--iif-start)))
877 ;; Replace them.
878 (let ((inhibit-read-only t))
879 (set-text-properties
880 (1- forms--iif-start) forms--iif-start
881 (list 'face forms--rw-face 'front-sticky '(face))))
883 ;; Enable `post-command-hook' to restore the properties.
884 (setq post-command-hook
885 (append (list 'forms--iif-post-command-hook) post-command-hook)))
887 ;; No action needed. Clear marker.
888 (setq forms--iif-start nil)))
890 (defun forms--iif-post-command-hook ()
891 "`post-command-hook' function for read-only segments."
893 ;; Disable `post-command-hook'.
894 (setq post-command-hook
895 (delq 'forms--iif-hook-post-command-hook post-command-hook))
897 ;; Restore properties.
898 (if forms--iif-start
899 (let ((inhibit-read-only t))
900 (set-text-properties
901 (1- forms--iif-start) forms--iif-start
902 forms--iif-properties)))
904 ;; Cleanup.
905 (setq forms--iif-start nil))
907 (defvar forms--marker)
908 (defvar forms--dyntext)
910 (defun forms--make-format ()
911 "Generate `forms--format' using the information in `forms-format-list'."
913 ;; The real work is done using a mapcar of `forms--make-format-elt' on
914 ;; `forms-format-list'.
915 ;; This function sets up the necessary environment, and decides
916 ;; which function to mapcar.
918 (let ((forms--marker 0)
919 (forms--dyntext 0))
920 (setq
921 forms--format
922 (if forms-use-text-properties
923 (` (lambda (arg)
924 (let ((inhibit-read-only t))
925 (,@ (apply 'append
926 (mapcar 'forms--make-format-elt-using-text-properties
927 forms-format-list)))
928 ;; Prevent insertion before the first text.
929 (,@ (if (numberp (car forms-format-list))
931 '((add-text-properties (point-min) (1+ (point-min))
932 '(front-sticky (read-only intangible))))))
933 ;; Prevent insertion after the last text.
934 (remove-text-properties (1- (point)) (point)
935 '(rear-nonsticky)))
936 (setq forms--iif-start nil)))
937 (` (lambda (arg)
938 (,@ (apply 'append
939 (mapcar 'forms--make-format-elt forms-format-list)))))))
941 ;; We have tallied the number of markers and dynamic texts,
942 ;; so we can allocate the arrays now.
943 (setq forms--markers (make-vector forms--marker nil))
944 (setq forms--dyntexts (make-vector forms--dyntext nil)))
945 (forms--debug 'forms--format))
947 (defun forms--make-format-elt-using-text-properties (el)
948 "Helper routine to generate format function."
950 ;; The format routine `forms--format' will look like
952 ;; ;; preamble
953 ;; (lambda (arg)
954 ;; (let ((inhibit-read-only t))
956 ;; ;; A string, e.g. "text: ".
957 ;; (set-text-properties
958 ;; (point)
959 ;; (progn (insert "text: ") (point))
960 ;; (list 'face forms--ro-face
961 ;; 'read-only 1
962 ;; 'insert-in-front-hooks 'forms--iif-hook
963 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
965 ;; ;; A field, e.g. 6.
966 ;; (let ((here (point)))
967 ;; (aset forms--markers 0 (point-marker))
968 ;; (insert (elt arg 5))
969 ;; (or (= (point) here)
970 ;; (set-text-properties
971 ;; here (point)
972 ;; (list 'face forms--rw-face
973 ;; 'front-sticky '(face))))
975 ;; ;; Another string, e.g. "\nmore text: ".
976 ;; (set-text-properties
977 ;; (point)
978 ;; (progn (insert "\nmore text: ") (point))
979 ;; (list 'face forms--ro-face
980 ;; 'read-only 2
981 ;; 'insert-in-front-hooks 'forms--iif-hook
982 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
984 ;; ;; A function, e.g. (tocol 40).
985 ;; (set-text-properties
986 ;; (point)
987 ;; (progn
988 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
989 ;; (point))
990 ;; (list 'face forms--ro-face
991 ;; 'read-only 2
992 ;; 'insert-in-front-hooks 'forms--iif-hook
993 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
995 ;; ;; Prevent insertion before the first text.
996 ;; (add-text-properties (point-min) (1+ (point-min))
997 ;; '(front-sticky (read-only))))))
998 ;; ;; Prevent insertion after the last text.
999 ;; (remove-text-properties (1- (point)) (point)
1000 ;; '(rear-nonsticky)))
1002 ;; ;; wrap up
1003 ;; (setq forms--iif-start nil)
1004 ;; ))
1006 (cond
1007 ((stringp el)
1009 (` ((set-text-properties
1010 (point) ; start at point
1011 (progn ; until after insertion
1012 (insert (, el))
1013 (point))
1014 (list 'face forms--ro-face ; read-only appearance
1015 'read-only (,@ (list (1+ forms--marker)))
1016 'intangible t
1017 'insert-in-front-hooks '(forms--iif-hook)
1018 'rear-nonsticky '(face read-only insert-in-front-hooks
1019 intangible))))))
1021 ((numberp el)
1022 (` ((let ((here (point)))
1023 (aset forms--markers
1024 (, (prog1 forms--marker
1025 (setq forms--marker (1+ forms--marker))))
1026 (point-marker))
1027 (insert (elt arg (, (1- el))))
1028 (or (= (point) here)
1029 (set-text-properties
1030 here (point)
1031 (list 'face forms--rw-face
1032 'front-sticky '(face))))))))
1034 ((listp el)
1035 (` ((set-text-properties
1036 (point)
1037 (progn
1038 (insert (aset forms--dyntexts
1039 (, (prog1 forms--dyntext
1040 (setq forms--dyntext (1+ forms--dyntext))))
1041 (, el)))
1042 (point))
1043 (list 'face forms--ro-face
1044 'read-only (,@ (list (1+ forms--marker)))
1045 'intangible t
1046 'insert-in-front-hooks '(forms--iif-hook)
1047 'rear-nonsticky '(read-only face insert-in-front-hooks
1048 intangible))))))
1050 ;; end of cond
1053 (defun forms--make-format-elt (el)
1054 "Helper routine to generate format function."
1056 ;; If we're not using text properties, the format routine
1057 ;; `forms--format' will look like
1059 ;; (lambda (arg)
1060 ;; ;; a string, e.g. "text: "
1061 ;; (insert "text: ")
1062 ;; ;; a field, e.g. 6
1063 ;; (aset forms--markers 0 (point-marker))
1064 ;; (insert (elt arg 5))
1065 ;; ;; another string, e.g. "\nmore text: "
1066 ;; (insert "\nmore text: ")
1067 ;; ;; a function, e.g. (tocol 40)
1068 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
1069 ;; ... )
1071 (cond
1072 ((stringp el)
1073 (` ((insert (, el)))))
1074 ((numberp el)
1075 (prog1
1076 (` ((aset forms--markers (, forms--marker) (point-marker))
1077 (insert (elt arg (, (1- el))))))
1078 (setq forms--marker (1+ forms--marker))))
1079 ((listp el)
1080 (prog1
1081 (` ((insert (aset forms--dyntexts (, forms--dyntext) (, el)))))
1082 (setq forms--dyntext (1+ forms--dyntext))))))
1084 (defvar forms--field)
1085 (defvar forms--recordv)
1086 (defvar forms--seen-text)
1088 (defun forms--make-parser ()
1089 "Generate `forms--parser' from the information in `forms-format-list'."
1091 ;; If we can use text properties, we simply set it to
1092 ;; `forms--parser-using-text-properties'.
1093 ;; Otherwise, the function is constructed using a mapcar of
1094 ;; `forms--make-parser-elt on `forms-format-list'.
1096 (setq
1097 forms--parser
1098 (if forms-use-text-properties
1099 (function forms--parser-using-text-properties)
1100 (let ((forms--field nil)
1101 (forms--seen-text nil)
1102 (forms--dyntext 0))
1104 ;; Note: we add a nil element to the list passed to `mapcar',
1105 ;; see `forms--make-parser-elt' for details.
1106 (` (lambda nil
1107 (let (here)
1108 (goto-char (point-min))
1109 (,@ (apply 'append
1110 (mapcar
1111 'forms--make-parser-elt
1112 (append forms-format-list (list nil)))))))))))
1114 (forms--debug 'forms--parser))
1116 (defun forms--parser-using-text-properties ()
1117 "Extract field info from forms when using text properties."
1119 ;; Using text properties, we can simply jump to the markers, and
1120 ;; extract the information up to the following read-only segment.
1122 (let ((i 0)
1123 here there)
1124 (while (< i (length forms--markers))
1125 (goto-char (setq here (aref forms--markers i)))
1126 (if (get-text-property here 'read-only)
1127 (aset forms--recordv (aref forms--elements i) nil)
1128 (if (setq there
1129 (next-single-property-change here 'read-only))
1130 (aset forms--recordv (aref forms--elements i)
1131 (buffer-substring-no-properties here there))
1132 (aset forms--recordv (aref forms--elements i)
1133 (buffer-substring-no-properties here (point-max)))))
1134 (setq i (1+ i)))))
1136 (defun forms--make-parser-elt (el)
1137 "Helper routine to generate forms parser function."
1139 ;; The parse routine will look like:
1141 ;; (lambda nil
1142 ;; (let (here)
1143 ;; (goto-char (point-min))
1145 ;; ;; "text: "
1146 ;; (if (not (looking-at "text: "))
1147 ;; (error "Parse error: cannot find \"text: \""))
1148 ;; (forward-char 6) ; past "text: "
1150 ;; ;; 6
1151 ;; ;; "\nmore text: "
1152 ;; (setq here (point))
1153 ;; (if (not (search-forward "\nmore text: " nil t nil))
1154 ;; (error "Parse error: cannot find \"\\nmore text: \""))
1155 ;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12)))
1157 ;; ;; (tocol 40)
1158 ;; (let ((forms--dyntext (car-safe forms--dynamic-text)))
1159 ;; (if (not (looking-at (regexp-quote forms--dyntext)))
1160 ;; (error "Parse error: not looking at \"%s\"" forms--dyntext))
1161 ;; (forward-char (length forms--dyntext))
1162 ;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text)))
1163 ;; ...
1164 ;; ;; final flush (due to terminator sentinel, see below)
1165 ;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max)))
1167 (cond
1168 ((stringp el)
1169 (prog1
1170 (if forms--field
1171 (` ((setq here (point))
1172 (if (not (search-forward (, el) nil t nil))
1173 (error "Parse error: cannot find `%s'" (, el)))
1174 (aset forms--recordv (, (1- forms--field))
1175 (buffer-substring-no-properties here
1176 (- (point) (, (length el)))))))
1177 (` ((if (not (looking-at (, (regexp-quote el))))
1178 (error "Parse error: not looking at `%s'" (, el)))
1179 (forward-char (, (length el))))))
1180 (setq forms--seen-text t)
1181 (setq forms--field nil)))
1182 ((numberp el)
1183 (if forms--field
1184 (error "Cannot parse adjacent fields %d and %d"
1185 forms--field el)
1186 (setq forms--field el)
1187 nil))
1188 ((null el)
1189 (if forms--field
1190 (` ((aset forms--recordv (, (1- forms--field))
1191 (buffer-substring-no-properties (point) (point-max)))))))
1192 ((listp el)
1193 (prog1
1194 (if forms--field
1195 (` ((let ((here (point))
1196 (forms--dyntext (aref forms--dyntexts (, forms--dyntext))))
1197 (if (not (search-forward forms--dyntext nil t nil))
1198 (error "Parse error: cannot find `%s'" forms--dyntext))
1199 (aset forms--recordv (, (1- forms--field))
1200 (buffer-substring-no-properties here
1201 (- (point) (length forms--dyntext)))))))
1202 (` ((let ((forms--dyntext (aref forms--dyntexts (, forms--dyntext))))
1203 (if (not (looking-at (regexp-quote forms--dyntext)))
1204 (error "Parse error: not looking at `%s'" forms--dyntext))
1205 (forward-char (length forms--dyntext))))))
1206 (setq forms--dyntext (1+ forms--dyntext))
1207 (setq forms--seen-text t)
1208 (setq forms--field nil)))
1211 (defun forms--intuit-from-file ()
1212 "Get number of fields and a default form using the data file."
1214 ;; If `forms-number-of-fields' is not set, get it from the data file.
1215 (if (null forms-number-of-fields)
1217 ;; Need a file to do this.
1218 (if (not (file-exists-p forms-file))
1219 (error "Need existing file or explicit 'forms-number-of-records'.")
1221 ;; Visit the file and extract the first record.
1222 (setq forms--file-buffer (find-file-noselect forms-file))
1223 (let ((read-file-filter forms-read-file-filter)
1224 (the-record))
1225 (setq the-record
1226 (save-excursion
1227 (set-buffer forms--file-buffer)
1228 (let ((inhibit-read-only t))
1229 (run-hooks 'read-file-filter))
1230 (goto-char (point-min))
1231 (forms--get-record)))
1233 ;; This may be overkill, but try to avoid interference with
1234 ;; the normal processing.
1235 (kill-buffer forms--file-buffer)
1237 ;; Count the number of fields in `the-record'.
1238 (let (the-result
1239 (start-pos 0)
1240 found-pos
1241 (field-sep-length (length forms-field-sep)))
1242 (setq forms-number-of-fields 1)
1243 (while (setq found-pos
1244 (string-match forms-field-sep the-record start-pos))
1245 (progn
1246 (setq forms-number-of-fields (1+ forms-number-of-fields))
1247 (setq start-pos (+ field-sep-length found-pos))))))))
1249 ;; Construct default format list.
1250 (setq forms-format-list (list "Forms file \"" forms-file "\".\n\n"))
1251 (let ((i 0))
1252 (while (<= (setq i (1+ i)) forms-number-of-fields)
1253 (setq forms-format-list
1254 (append forms-format-list
1255 (list (format "%4d: " i) i "\n"))))))
1257 (defun forms--set-keymaps ()
1258 "Set the keymaps used in this mode."
1260 (use-local-map (if forms-read-only
1261 forms-mode-ro-map
1262 forms-mode-edit-map)))
1264 (defun forms--mode-commands ()
1265 "Fill the Forms mode keymaps."
1267 ;; `forms-mode-map' is always accessible via \C-c prefix.
1268 (setq forms-mode-map (make-keymap))
1269 (define-key forms-mode-map "\t" 'forms-next-field)
1270 (define-key forms-mode-map "\C-k" 'forms-delete-record)
1271 (define-key forms-mode-map "\C-q" 'forms-toggle-read-only)
1272 (define-key forms-mode-map "\C-o" 'forms-insert-record)
1273 (define-key forms-mode-map "\C-l" 'forms-jump-record)
1274 (define-key forms-mode-map "\C-n" 'forms-next-record)
1275 (define-key forms-mode-map "\C-p" 'forms-prev-record)
1276 (define-key forms-mode-map "\C-r" 'forms-search-backward)
1277 (define-key forms-mode-map "\C-s" 'forms-search-forward)
1278 (define-key forms-mode-map "\C-x" 'forms-exit)
1279 (define-key forms-mode-map "<" 'forms-first-record)
1280 (define-key forms-mode-map ">" 'forms-last-record)
1281 (define-key forms-mode-map "\C-?" 'forms-prev-record)
1283 ;; `forms-mode-ro-map' replaces the local map when in read-only mode.
1284 (setq forms-mode-ro-map (make-keymap))
1285 (suppress-keymap forms-mode-ro-map)
1286 (define-key forms-mode-ro-map "\C-c" forms-mode-map)
1287 (define-key forms-mode-ro-map "\t" 'forms-next-field)
1288 (define-key forms-mode-ro-map "q" 'forms-toggle-read-only)
1289 (define-key forms-mode-ro-map "l" 'forms-jump-record)
1290 (define-key forms-mode-ro-map "n" 'forms-next-record)
1291 (define-key forms-mode-ro-map "p" 'forms-prev-record)
1292 (define-key forms-mode-ro-map "r" 'forms-search-backward)
1293 (define-key forms-mode-ro-map "s" 'forms-search-forward)
1294 (define-key forms-mode-ro-map "x" 'forms-exit)
1295 (define-key forms-mode-ro-map "<" 'forms-first-record)
1296 (define-key forms-mode-ro-map ">" 'forms-last-record)
1297 (define-key forms-mode-ro-map "?" 'describe-mode)
1298 (define-key forms-mode-ro-map " " 'forms-next-record)
1299 (forms--mode-commands1 forms-mode-ro-map)
1300 (forms--mode-menu-ro forms-mode-ro-map)
1302 ;; This is the normal, local map.
1303 (setq forms-mode-edit-map (make-keymap))
1304 (define-key forms-mode-edit-map "\t" 'forms-next-field)
1305 (define-key forms-mode-edit-map "\C-c" forms-mode-map)
1306 (forms--mode-commands1 forms-mode-edit-map)
1307 (forms--mode-menu-edit forms-mode-edit-map)
1310 (defun forms--mode-menu-ro (map)
1311 ;;; Menu initialisation
1312 ; (define-key map [menu-bar] (make-sparse-keymap))
1313 (define-key map [menu-bar forms]
1314 (cons "Forms" (make-sparse-keymap "Forms")))
1315 (define-key map [menu-bar forms menu-forms-exit]
1316 '("Exit Forms Mode" . forms-exit))
1317 (define-key map [menu-bar forms menu-forms-sep1]
1318 '("----"))
1319 (define-key map [menu-bar forms menu-forms-save]
1320 '("Save Data" . forms-save-buffer))
1321 (define-key map [menu-bar forms menu-forms-print]
1322 '("Print Data" . forms-print))
1323 (define-key map [menu-bar forms menu-forms-describe]
1324 '("Describe Mode" . describe-mode))
1325 (define-key map [menu-bar forms menu-forms-toggle-ro]
1326 '("Toggle View/Edit" . forms-toggle-read-only))
1327 (define-key map [menu-bar forms menu-forms-jump-record]
1328 '("Jump" . forms-jump-record))
1329 (define-key map [menu-bar forms menu-forms-search-backward]
1330 '("Search Backward" . forms-search-backward))
1331 (define-key map [menu-bar forms menu-forms-search-forward]
1332 '("Search Forward" . forms-search-forward))
1333 (define-key map [menu-bar forms menu-forms-delete-record]
1334 '("Delete" . forms-delete-record))
1335 (define-key map [menu-bar forms menu-forms-insert-record]
1336 '("Insert" . forms-insert-record))
1337 (define-key map [menu-bar forms menu-forms-sep2]
1338 '("----"))
1339 (define-key map [menu-bar forms menu-forms-last-record]
1340 '("Last Record" . forms-last-record))
1341 (define-key map [menu-bar forms menu-forms-first-record]
1342 '("First Record" . forms-first-record))
1343 (define-key map [menu-bar forms menu-forms-prev-record]
1344 '("Previous Record" . forms-prev-record))
1345 (define-key map [menu-bar forms menu-forms-next-record]
1346 '("Next Record" . forms-next-record))
1347 (define-key map [menu-bar forms menu-forms-sep3]
1348 '("----"))
1349 (define-key map [menu-bar forms menu-forms-prev-field]
1350 '("Previous Field" . forms-prev-field))
1351 (define-key map [menu-bar forms menu-forms-next-field]
1352 '("Next Field" . forms-next-field))
1353 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
1354 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
1356 (defun forms--mode-menu-edit (map)
1357 ;;; Menu initialisation
1358 ; (define-key map [menu-bar] (make-sparse-keymap))
1359 (define-key map [menu-bar forms]
1360 (cons "Forms" (make-sparse-keymap "Forms")))
1361 (define-key map [menu-bar forms menu-forms-edit--exit]
1362 '("Exit" . forms-exit))
1363 (define-key map [menu-bar forms menu-forms-edit-sep1]
1364 '("----"))
1365 (define-key map [menu-bar forms menu-forms-edit-save]
1366 '("Save Data" . forms-save-buffer))
1367 (define-key map [menu-bar forms menu-forms-edit-print]
1368 '("Print Data" . forms-print))
1369 (define-key map [menu-bar forms menu-forms-edit-describe]
1370 '("Describe Mode" . describe-mode))
1371 (define-key map [menu-bar forms menu-forms-edit-toggle-ro]
1372 '("Toggle View/Edit" . forms-toggle-read-only))
1373 (define-key map [menu-bar forms menu-forms-edit-jump-record]
1374 '("Jump" . forms-jump-record))
1375 (define-key map [menu-bar forms menu-forms-edit-search-backward]
1376 '("Search Backward" . forms-search-backward))
1377 (define-key map [menu-bar forms menu-forms-edit-search-forward]
1378 '("Search Forward" . forms-search-forward))
1379 (define-key map [menu-bar forms menu-forms-edit-delete-record]
1380 '("Delete" . forms-delete-record))
1381 (define-key map [menu-bar forms menu-forms-edit-insert-record]
1382 '("Insert" . forms-insert-record))
1383 (define-key map [menu-bar forms menu-forms-edit-sep2]
1384 '("----"))
1385 (define-key map [menu-bar forms menu-forms-edit-last-record]
1386 '("Last Record" . forms-last-record))
1387 (define-key map [menu-bar forms menu-forms-edit-first-record]
1388 '("First Record" . forms-first-record))
1389 (define-key map [menu-bar forms menu-forms-edit-prev-record]
1390 '("Previous Record" . forms-prev-record))
1391 (define-key map [menu-bar forms menu-forms-edit-next-record]
1392 '("Next Record" . forms-next-record))
1393 (define-key map [menu-bar forms menu-forms-edit-sep3]
1394 '("----"))
1395 (define-key map [menu-bar forms menu-forms-edit-prev-field]
1396 '("Previous Field" . forms-prev-field))
1397 (define-key map [menu-bar forms menu-forms-edit-next-field]
1398 '("Next Field" . forms-next-field))
1399 (put 'forms-insert-record 'menu-enable '(not forms-read-only))
1400 (put 'forms-delete-record 'menu-enable '(not forms-read-only))
1403 (defun forms--mode-commands1 (map)
1404 "Helper routine to define keys."
1405 (define-key map [TAB] 'forms-next-field)
1406 (define-key map [S-tab] 'forms-prev-field)
1407 (define-key map [next] 'forms-next-record)
1408 (define-key map [prior] 'forms-prev-record)
1409 (define-key map [begin] 'forms-first-record)
1410 (define-key map [last] 'forms-last-record)
1411 (define-key map [backtab] 'forms-prev-field)
1414 ;;; Changed functions
1416 (defun forms--change-commands ()
1417 "Localize some commands for Forms mode."
1419 ;; scroll-down -> forms-prev-record
1420 ;; scroll-up -> forms-next-record
1421 (if forms-forms-scroll
1422 (progn
1423 (substitute-key-definition 'scroll-up 'forms-next-record
1424 (current-local-map)
1425 (current-global-map))
1426 (substitute-key-definition 'scroll-down 'forms-prev-record
1427 (current-local-map)
1428 (current-global-map))))
1430 ;; beginning-of-buffer -> forms-first-record
1431 ;; end-of-buffer -> forms-end-record
1432 (if forms-forms-jump
1433 (progn
1434 (substitute-key-definition 'beginning-of-buffer 'forms-first-record
1435 (current-local-map)
1436 (current-global-map))
1437 (substitute-key-definition 'end-of-buffer 'forms-last-record
1438 (current-local-map)
1439 (current-global-map))))
1441 ;; Save buffer
1442 (local-set-key "\C-x\C-s" 'forms-save-buffer)
1444 ;; We have our own revert function - use it.
1445 (make-local-variable 'revert-buffer-function)
1446 (setq revert-buffer-function 'forms--revert-buffer)
1450 (defun forms--help ()
1451 "Initial help for Forms mode."
1452 (message "%s" (substitute-command-keys (concat
1453 "\\[forms-next-record]:next"
1454 " \\[forms-prev-record]:prev"
1455 " \\[forms-first-record]:first"
1456 " \\[forms-last-record]:last"
1457 " \\[describe-mode]:help"))))
1459 (defun forms--trans (subj arg rep)
1460 "Translate in SUBJ all chars ARG into char REP. ARG and REP should
1461 be single-char strings."
1462 (let ((i 0)
1463 (x (length subj))
1464 (re (regexp-quote arg))
1465 (k (string-to-char rep)))
1466 (while (setq i (string-match re subj i))
1467 (aset subj i k)
1468 (setq i (1+ i)))))
1470 (defun forms--exit (query &optional save)
1471 "Internal exit from forms mode function."
1473 (let ((buf (buffer-name forms--file-buffer)))
1474 (forms--checkmod)
1475 (if (and save
1476 (buffer-modified-p forms--file-buffer))
1477 (forms-save-buffer))
1478 (save-excursion
1479 (set-buffer forms--file-buffer)
1480 (delete-auto-save-file-if-necessary)
1481 (kill-buffer (current-buffer)))
1482 (if (get-buffer buf) ; not killed???
1483 (if save
1484 (error "Problem saving buffer %s" (buffer-name buf)))
1485 (delete-auto-save-file-if-necessary)
1486 (kill-buffer (current-buffer)))))
1488 (defun forms--get-record ()
1489 "Fetch the current record from the file buffer."
1491 ;; This function is executed in the context of the `forms--file-buffer'.
1493 (or (bolp)
1494 (beginning-of-line nil))
1495 (let ((here (point)))
1496 (prog2
1497 (end-of-line)
1498 (buffer-substring-no-properties here (point))
1499 (goto-char here))))
1501 (defun forms--show-record (the-record)
1502 "Format THE-RECORD and display it in the current buffer."
1504 ;; Split the-record.
1505 (let (the-result
1506 (start-pos 0)
1507 found-pos
1508 (field-sep-length (length forms-field-sep)))
1509 (if forms-multi-line
1510 (forms--trans the-record forms-multi-line "\n"))
1511 ;; Add an extra separator (makes splitting easy).
1512 (setq the-record (concat the-record forms-field-sep))
1513 (while (setq found-pos (string-match forms-field-sep the-record start-pos))
1514 (let ((ent (substring the-record start-pos found-pos)))
1515 (setq the-result
1516 (append the-result (list ent)))
1517 (setq start-pos (+ field-sep-length found-pos))))
1518 (setq forms--the-record-list the-result))
1520 (setq buffer-read-only nil)
1521 (if forms-use-text-properties
1522 (let ((inhibit-read-only t))
1523 (set-text-properties (point-min) (point-max) nil)))
1524 (erase-buffer)
1526 ;; Verify the number of fields, extend forms--the-record-list if needed.
1527 (if (= (length forms--the-record-list) forms-number-of-fields)
1529 (if (null forms-check-number-of-fields)
1531 (message "Warning: this record has %d fields instead of %d"
1532 (length forms--the-record-list) forms-number-of-fields))
1533 (if (< (length forms--the-record-list) forms-number-of-fields)
1534 (setq forms--the-record-list
1535 (append forms--the-record-list
1536 (make-list
1537 (- forms-number-of-fields
1538 (length forms--the-record-list))
1539 "")))))
1541 ;; Call the formatter function.
1542 (setq forms-fields (append (list nil) forms--the-record-list nil))
1543 (funcall forms--format forms--the-record-list)
1545 ;; Prepare.
1546 (goto-char (point-min))
1547 (set-buffer-modified-p nil)
1548 (setq buffer-read-only forms-read-only)
1549 (setq mode-line-process
1550 (concat " " forms--current-record "/" forms--total-records)))
1552 (defun forms--parse-form ()
1553 "Parse contents of form into list of strings."
1554 ;; The contents of the form are parsed, and a new list of strings
1555 ;; is constructed.
1556 ;; A vector with the strings from the original record is
1557 ;; constructed, which is updated with the new contents. Therefore
1558 ;; fields which were not in the form are not modified.
1559 ;; Finally, the vector is transformed into a list for further processing.
1561 (let (forms--recordv)
1563 ;; Build the vector.
1564 (setq forms--recordv (vconcat forms--the-record-list))
1566 ;; Parse the form and update the vector.
1567 (let ((forms--dynamic-text forms--dynamic-text))
1568 (funcall forms--parser))
1570 (if forms-modified-record-filter
1571 ;; As a service to the user, we add a zeroth element so she
1572 ;; can use the same indices as in the forms definition.
1573 (let ((the-fields (vconcat [nil] forms--recordv)))
1574 (setq the-fields (funcall forms-modified-record-filter the-fields))
1575 (cdr (append the-fields nil)))
1577 ;; Transform to a list and return.
1578 (append forms--recordv nil))))
1580 (defun forms--update ()
1581 "Update current record with contents of form.
1582 As a side effect: sets `forms--the-record-list'."
1584 (if forms-read-only
1585 (error "Buffer is read-only"))
1587 (let (the-record)
1588 ;; Build new record.
1589 (setq forms--the-record-list (forms--parse-form))
1590 (setq the-record
1591 (mapconcat 'identity forms--the-record-list forms-field-sep))
1593 (if (string-match (regexp-quote forms-field-sep)
1594 (mapconcat 'identity forms--the-record-list ""))
1595 (error "Field separator occurs in record - update refused"))
1597 ;; Handle multi-line fields, if allowed.
1598 (if forms-multi-line
1599 (forms--trans the-record "\n" forms-multi-line))
1601 ;; A final sanity check before updating.
1602 (if (string-match "\n" the-record)
1603 (error "Multi-line fields in this record - update refused"))
1605 (save-excursion
1606 (set-buffer forms--file-buffer)
1607 ;; Use delete-region instead of kill-region, to avoid
1608 ;; adding junk to the kill-ring.
1609 (delete-region (save-excursion (beginning-of-line) (point))
1610 (save-excursion (end-of-line) (point)))
1611 (insert the-record)
1612 (beginning-of-line))))
1614 (defun forms--checkmod ()
1615 "Check if this form has been modified, and call forms--update if so."
1616 (if (buffer-modified-p nil)
1617 (let ((here (point)))
1618 (forms--update)
1619 (set-buffer-modified-p nil)
1620 (goto-char here))))
1622 ;;; Start and exit
1624 ;;;###autoload
1625 (defun forms-find-file (fn)
1626 "Visit a file in Forms mode."
1627 (interactive "fForms file: ")
1628 (let ((enable-local-eval t)
1629 (enable-local-variables t))
1630 (find-file-read-only fn)
1631 (or forms--mode-setup (forms-mode t))))
1633 ;;;###autoload
1634 (defun forms-find-file-other-window (fn)
1635 "Visit a file in Forms mode in other window."
1636 (interactive "fFbrowse file in other window: ")
1637 (let ((enable-local-eval t)
1638 (enable-local-variables t))
1639 (find-file-other-window fn)
1640 (or forms--mode-setup (forms-mode t))))
1642 (defun forms-exit (query)
1643 "Normal exit from Forms mode. Modified buffers are saved."
1644 (interactive "P")
1645 (forms--exit query t))
1647 (defun forms-exit-no-save (query)
1648 "Exit from Forms mode without saving buffers."
1649 (interactive "P")
1650 (forms--exit query nil))
1652 ;;; Navigating commands
1654 (defun forms-next-record (arg)
1655 "Advance to the ARGth following record."
1656 (interactive "P")
1657 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t))
1659 (defun forms-prev-record (arg)
1660 "Advance to the ARGth previous record."
1661 (interactive "P")
1662 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))
1664 (defun forms-jump-record (arg &optional relative)
1665 "Jump to a random record."
1666 (interactive "NRecord number: ")
1668 ;; Verify that the record number is within range.
1669 (if (or (> arg forms--total-records)
1670 (<= arg 0))
1671 (error
1672 ;; Don't give the message if just paging.
1673 (if (not relative)
1674 (message "Record number %d out of range 1..%d"
1675 arg forms--total-records)
1676 "")))
1678 ;; Flush.
1679 (forms--checkmod)
1681 ;; Calculate displacement.
1682 (let ((disp (- arg forms--current-record))
1683 (cur forms--current-record))
1685 ;; `forms--show-record' needs it now.
1686 (setq forms--current-record arg)
1688 ;; Get the record and show it.
1689 (forms--show-record
1690 (save-excursion
1691 (set-buffer forms--file-buffer)
1692 (beginning-of-line)
1694 ;; Move, and adjust the amount if needed (shouldn't happen).
1695 (if relative
1696 (if (zerop disp)
1698 (setq cur (+ cur disp (- (forward-line disp)))))
1699 (setq cur (+ cur disp (- (goto-line arg)))))
1701 (forms--get-record)))
1703 ;; This shouldn't happen.
1704 (if (/= forms--current-record cur)
1705 (progn
1706 (setq forms--current-record cur)
1707 (error "Stuck at record %d" cur)))))
1709 (defun forms-first-record ()
1710 "Jump to first record."
1711 (interactive)
1712 (forms-jump-record 1))
1714 (defun forms-last-record ()
1715 "Jump to last record.
1716 As a side effect: re-calculates the number of records in the data file."
1717 (interactive)
1718 (let
1719 ((numrec
1720 (save-excursion
1721 (set-buffer forms--file-buffer)
1722 (count-lines (point-min) (point-max)))))
1723 (if (= numrec forms--total-records)
1725 (setq forms--total-records numrec)
1726 (message "Warning: number of records changed to %d" forms--total-records)))
1727 (forms-jump-record forms--total-records))
1729 ;;; Other commands
1731 (defun forms-toggle-read-only (arg)
1732 "Toggles read-only mode of a forms mode buffer.
1733 With an argument, enables read-only mode if the argument is positive.
1734 Otherwise enables edit mode if the visited file is writable."
1736 (interactive "P")
1738 (if (if arg
1739 ;; Negative arg means switch it off.
1740 (<= (prefix-numeric-value arg) 0)
1741 ;; No arg means toggle.
1742 forms-read-only)
1744 ;; Enable edit mode, if possible.
1745 (let ((ro forms-read-only))
1746 (if (save-excursion
1747 (set-buffer forms--file-buffer)
1748 buffer-read-only)
1749 (progn
1750 (setq forms-read-only t)
1751 (message "No write access to `%s'" forms-file))
1752 (setq forms-read-only nil))
1753 (if (equal ro forms-read-only)
1755 (forms-mode)))
1757 ;; Enable view mode.
1758 (if forms-read-only
1760 (forms--checkmod) ; sync
1761 (setq forms-read-only t)
1762 (forms-mode))))
1764 ;; Sample:
1765 ;; (defun my-new-record-filter (the-fields)
1766 ;; ;; numbers are relative to 1
1767 ;; (aset the-fields 4 (current-time-string))
1768 ;; (aset the-fields 6 (user-login-name))
1769 ;; the-list)
1770 ;; (setq forms-new-record-filter 'my-new-record-filter)
1772 (defun forms-insert-record (arg)
1773 "Create a new record before the current one.
1774 With ARG: store the record after the current one.
1775 If `forms-new-record-filter' contains the name of a function,
1776 it is called to fill (some of) the fields with default values.
1777 If `forms-insert-after is non-nil, the default behavior is to insert
1778 after the current record."
1780 (interactive "P")
1782 (if forms-read-only
1783 (error ""))
1785 (let (ln the-list the-record)
1787 (if (or (and arg forms-insert-after)
1788 (and (not arg) (not forms-insert-after)))
1789 (setq ln forms--current-record)
1790 (setq ln (1+ forms--current-record)))
1792 (forms--checkmod)
1793 (if forms-new-record-filter
1794 ;; As a service to the user, we add a zeroth element so she
1795 ;; can use the same indices as in the forms definition.
1796 (let ((the-fields (make-vector (1+ forms-number-of-fields) "")))
1797 (setq the-fields (funcall forms-new-record-filter the-fields))
1798 (setq the-list (cdr (append the-fields nil))))
1799 (setq the-list (make-list forms-number-of-fields "")))
1801 (setq the-record
1802 (mapconcat
1803 'identity
1804 the-list
1805 forms-field-sep))
1807 (save-excursion
1808 (set-buffer forms--file-buffer)
1809 (goto-line ln)
1810 (open-line 1)
1811 (insert the-record)
1812 (beginning-of-line))
1814 (setq forms--current-record ln))
1816 (setq forms--total-records (1+ forms--total-records))
1817 (forms-jump-record forms--current-record))
1819 (defun forms-delete-record (arg)
1820 "Deletes a record. With a prefix argument: don't ask."
1821 (interactive "P")
1823 (if forms-read-only
1824 (error ""))
1826 (forms--checkmod)
1827 (if (or arg
1828 (y-or-n-p "Really delete this record? "))
1829 (let ((ln forms--current-record))
1830 (save-excursion
1831 (set-buffer forms--file-buffer)
1832 (goto-line ln)
1833 ;; Use delete-region instead of kill-region, to avoid
1834 ;; adding junk to the kill-ring.
1835 (delete-region (progn (beginning-of-line) (point))
1836 (progn (beginning-of-line 2) (point))))
1837 (setq forms--total-records (1- forms--total-records))
1838 (if (> forms--current-record forms--total-records)
1839 (setq forms--current-record forms--total-records))
1840 (forms-jump-record forms--current-record)))
1841 (message ""))
1843 (defun forms-search-forward (regexp)
1844 "Search forward for record containing REGEXP."
1845 (interactive
1846 (list (read-string (concat "Search forward for"
1847 (if forms--search-regexp
1848 (concat " ("
1849 forms--search-regexp
1850 ")"))
1851 ": "))))
1852 (if (equal "" regexp)
1853 (setq regexp forms--search-regexp))
1854 (forms--checkmod)
1856 (let (the-line the-record here
1857 (fld-sep forms-field-sep))
1858 (save-excursion
1859 (set-buffer forms--file-buffer)
1860 (end-of-line)
1861 (setq here (point))
1862 (if (or (re-search-forward regexp nil t)
1863 (and (> here (point-min))
1864 (progn
1865 (goto-char (point-min))
1866 (re-search-forward regexp here t))))
1867 (progn
1868 (setq the-record (forms--get-record))
1869 (setq the-line (1+ (count-lines (point-min) (point))))
1870 (if (< (point) here)
1871 (message "Wrapped")))
1872 (goto-char here)
1873 (error "Search failed: %s" regexp)))
1874 (setq forms--current-record the-line)
1875 (forms--show-record the-record))
1876 (re-search-forward regexp nil t)
1877 (setq forms--search-regexp regexp))
1879 (defun forms-search-backward (regexp)
1880 "Search backward for record containing REGEXP."
1881 (interactive
1882 (list (read-string (concat "Search backward for"
1883 (if forms--search-regexp
1884 (concat " ("
1885 forms--search-regexp
1886 ")"))
1887 ": "))))
1888 (if (equal "" regexp)
1889 (setq regexp forms--search-regexp))
1890 (forms--checkmod)
1892 (let (the-line the-record here
1893 (fld-sep forms-field-sep))
1894 (save-excursion
1895 (set-buffer forms--file-buffer)
1896 (beginning-of-line)
1897 (setq here (point))
1898 (if (or (re-search-backward regexp nil t)
1899 (and (< (point) (point-max))
1900 (progn
1901 (goto-char (point-max))
1902 (re-search-backward regexp here t))))
1903 (progn
1904 (setq the-record (forms--get-record))
1905 (setq the-line (1+ (count-lines (point-min) (point))))
1906 (if (> (point) here)
1907 (message "Wrapped")))
1908 (goto-char here)
1909 (error "Search failed: %s" regexp)))
1910 (setq forms--current-record the-line)
1911 (forms--show-record the-record))
1912 (re-search-forward regexp nil t)
1913 (setq forms--search-regexp regexp))
1915 (defun forms-save-buffer (&optional args)
1916 "Forms mode replacement for save-buffer.
1917 It saves the data buffer instead of the forms buffer.
1918 Calls `forms-write-file-filter' before, and `forms-read-file-filter'
1919 after writing out the data."
1920 (interactive "p")
1921 (forms--checkmod)
1922 (let ((write-file-filter forms-write-file-filter)
1923 (read-file-filter forms-read-file-filter))
1924 (save-excursion
1925 (set-buffer forms--file-buffer)
1926 (let ((inhibit-read-only t))
1927 ;; Write file hooks are run via local-write-file-hooks.
1928 ;; (if write-file-filter
1929 ;; (save-excursion
1930 ;; (run-hooks 'write-file-filter)))
1931 (save-buffer args)
1932 (if read-file-filter
1933 (save-excursion
1934 (run-hooks 'read-file-filter)))
1935 (set-buffer-modified-p nil))))
1938 (defun forms--revert-buffer (&optional arg noconfirm)
1939 "Reverts current form to un-modified."
1940 (interactive "P")
1941 (if (or noconfirm
1942 (yes-or-no-p "Revert form to unmodified? "))
1943 (progn
1944 (set-buffer-modified-p nil)
1945 (forms-jump-record forms--current-record))))
1947 (defun forms-next-field (arg)
1948 "Jump to ARG-th next field."
1949 (interactive "p")
1951 (let ((i 0)
1952 (here (point))
1953 there
1954 (cnt 0)
1955 (inhibit-point-motion-hooks t))
1957 (if (zerop arg)
1958 (setq cnt 1)
1959 (setq cnt (+ cnt arg)))
1961 (if (catch 'done
1962 (while (< i (length forms--markers))
1963 (if (or (null (setq there (aref forms--markers i)))
1964 (<= there here))
1966 (if (<= (setq cnt (1- cnt)) 0)
1967 (progn
1968 (goto-char there)
1969 (throw 'done t))))
1970 (setq i (1+ i))))
1972 (goto-char (aref forms--markers 0)))))
1974 (defun forms-prev-field (arg)
1975 "Jump to ARG-th previous field."
1976 (interactive "p")
1978 (let ((i (length forms--markers))
1979 (here (point))
1980 there
1981 (cnt 0)
1982 (inhibit-point-motion-hooks t))
1984 (if (zerop arg)
1985 (setq cnt 1)
1986 (setq cnt (+ cnt arg)))
1988 (if (catch 'done
1989 (while (> i 0)
1990 (setq i ( 1- i))
1991 (if (or (null (setq there (aref forms--markers i)))
1992 (>= there here))
1994 (if (<= (setq cnt (1- cnt)) 0)
1995 (progn
1996 (goto-char there)
1997 (throw 'done t))))))
1999 (goto-char (aref forms--markers (1- (length forms--markers)))))))
2001 (defun forms-print ()
2002 "Send the records to the printer with 'print-buffer', one record per page."
2003 (interactive)
2004 (let ((inhibit-read-only t)
2005 (save-record forms--current-record)
2006 (nb-record 1)
2007 (record nil))
2008 (while (<= nb-record forms--total-records)
2009 (forms-jump-record nb-record)
2010 (setq record (buffer-string))
2011 (save-excursion
2012 (set-buffer (get-buffer-create "*forms-print*"))
2013 (goto-char (buffer-end 1))
2014 (insert record)
2015 (setq buffer-read-only nil)
2016 (if (< nb-record forms--total-records)
2017 (insert "\n\f\n")))
2018 (setq nb-record (1+ nb-record)))
2019 (save-excursion
2020 (set-buffer "*forms-print*")
2021 (print-buffer)
2022 (set-buffer-modified-p nil)
2023 (kill-buffer (current-buffer)))
2024 (forms-jump-record save-record)))
2027 ;;; Special service
2029 (defun forms-enumerate (the-fields)
2030 "Take a quoted list of symbols, and set their values to sequential numbers.
2031 The first symbol gets number 1, the second 2 and so on.
2032 It returns the highest number.
2034 Usage: (setq forms-number-of-fields
2035 (forms-enumerate
2036 '(field1 field2 field2 ...)))"
2038 (let ((the-index 0))
2039 (while the-fields
2040 (setq the-index (1+ the-index))
2041 (let ((el (car-safe the-fields)))
2042 (setq the-fields (cdr-safe the-fields))
2043 (set el the-index)))
2044 the-index))
2046 ;;; Debugging
2048 (defvar forms--debug nil
2049 "*Enables forms-mode debugging if not nil.")
2051 (defun forms--debug (&rest args)
2052 "Internal debugging routine."
2053 (if forms--debug
2054 (let ((ret nil))
2055 (while args
2056 (let ((el (car-safe args)))
2057 (setq args (cdr-safe args))
2058 (if (stringp el)
2059 (setq ret (concat ret el))
2060 (setq ret (concat ret (prin1-to-string el) " = "))
2061 (if (boundp el)
2062 (let ((vel (eval el)))
2063 (setq ret (concat ret (prin1-to-string vel) "\n")))
2064 (setq ret (concat ret "<unbound>" "\n")))
2065 (if (fboundp el)
2066 (setq ret (concat ret (prin1-to-string (symbol-function el))
2067 "\n"))))))
2068 (save-excursion
2069 (set-buffer (get-buffer-create "*forms-mode debug*"))
2070 (if (zerop (buffer-size))
2071 (emacs-lisp-mode))
2072 (goto-char (point-max))
2073 (insert ret)))))
2075 ;;; forms.el ends here.