1 ;;; forms.el --- Forms mode: edit a file as a form to fill in
3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997, 2003 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)
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.
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
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
49 ;; Forms mode is a composite mode. It involves two files, and two
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
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.
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
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.
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.
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
116 ;; This variable denotes the separator string
117 ;; to be used for this purpose. Upon display, all
118 ;; occurrences of this string are translated
119 ;; to newlines. Upon storage they are translated
120 ;; back to the separator string.
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
129 ;; `beginning-of-buffer' and `end-of-buffer' to
130 ;; perform, respectively, `forms-first-record' and
131 ;; `forms-last-record' instead.
133 ;; forms-insert-after [bool, default nil]
134 ;; Non-nil means: insertions of new records go after
135 ;; current record, also initial position is at the
136 ;; last record. The default is to insert before the
137 ;; current record and the initial position is at the
140 ;; forms-read-file-filter [symbol, default nil]
141 ;; If not nil: this should be the name of a
142 ;; function that is called after the forms data file
143 ;; has been read. It can be used to transform
144 ;; the contents of the file into a format more suitable
145 ;; for forms-mode processing.
147 ;; forms-write-file-filter [symbol, default nil]
148 ;; If not nil: this should be the name of a
149 ;; function that is called before the forms data file
150 ;; is written (saved) to disk. It can be used to undo
151 ;; the effects of `forms-read-file-filter', if any.
153 ;; forms-new-record-filter [symbol, default nil]
154 ;; If not nil: this should be the name of a
155 ;; function that is called when a new
156 ;; record is created. It can be used to fill in
157 ;; the new record with default fields, for example.
159 ;; forms-modified-record-filter [symbol, default nil]
160 ;; If not nil: this should be the name of a
161 ;; function that is called when a record has
162 ;; been modified. It is called after the fields
163 ;; are parsed. It can be used to register
164 ;; modification dates, for example.
166 ;; forms-use-text-properties [bool, see text for default]
167 ;; This variable controls if forms mode should use
168 ;; text properties to protect the form text from being
169 ;; modified (using text-property `read-only').
170 ;; Also, the read-write fields are shown using a
171 ;; distinct face, if possible.
172 ;; As of emacs 19.29, the `intangible' text property
173 ;; is used to prevent moving into read-only fields.
174 ;; This variable defaults to t if running Emacs 19 or
175 ;; later with text properties.
176 ;; The default face to show read-write fields is
177 ;; copied from face `region'.
179 ;; forms-ro-face [symbol, default 'default]
180 ;; This is the face that is used to show
181 ;; read-only text on the screen. If used, this
182 ;; variable should be set to a symbol that is a
185 ;; (make-face 'my-face)
186 ;; (setq forms-ro-face 'my-face)
188 ;; forms-rw-face [symbol, default 'region]
189 ;; This is the face that is used to show
190 ;; read-write text on the screen.
192 ;; After evaluating the control file, its buffer is cleared and used
193 ;; for further processing.
194 ;; The data file (as designated by `forms-file') is visited in a buffer
195 ;; `forms--file-buffer' which normally will not be shown.
196 ;; Great malfunctioning may be expected if this file/buffer is modified
197 ;; outside of this package while it is being visited!
199 ;; Normal operation is to transfer one line (record) from the data file,
200 ;; split it into fields (into `forms--the-record-list'), and display it
201 ;; using the specs in `forms-format-list'.
202 ;; A format routine `forms--format' is built upon startup to format
203 ;; the records according to `forms-format-list'.
205 ;; When a form is changed the record is updated as soon as this form
206 ;; is left. The contents of the form are parsed using information
207 ;; obtained from `forms-format-list', and the fields which are
208 ;; deduced from the form are modified. Fields not shown on the forms
209 ;; retain their original values. The newly formed record then
210 ;; replaces the contents of the old record in `forms--file-buffer'.
211 ;; A parse routine `forms--parser' is built upon startup to parse
214 ;; Two exit functions exist: `forms-exit' and `forms-exit-no-save'.
215 ;; `forms-exit' saves the data to the file, if modified.
216 ;; `forms-exit-no-save' does not. However, if `forms-exit-no-save'
217 ;; is executed and the file buffer has been modified, Emacs will ask
220 ;; Other functions provided by forms mode are:
222 ;; paging (forward, backward) by record
223 ;; jumping (first, last, random number)
225 ;; creating and deleting records
226 ;; reverting the form (NOT the file buffer)
227 ;; switching edit <-> view mode v.v.
228 ;; jumping from field to field
230 ;; As a documented side-effect: jumping to the last record in the
231 ;; file (using forms-last-record) will adjust forms--total-records if
234 ;; The forms buffer can be in one of two modes: edit mode or view
235 ;; mode. View mode is a read-only mode, whereby you cannot modify the
236 ;; contents of the buffer.
238 ;; Edit mode commands:
240 ;; TAB forms-next-field
241 ;; \C-c TAB forms-next-field
242 ;; \C-c < forms-first-record
243 ;; \C-c > forms-last-record
244 ;; \C-c ? describe-mode
245 ;; \C-c \C-k forms-delete-record
246 ;; \C-c \C-q forms-toggle-read-only
247 ;; \C-c \C-o forms-insert-record
248 ;; \C-c \C-l forms-jump-record
249 ;; \C-c \C-n forms-next-record
250 ;; \C-c \C-p forms-prev-record
251 ;; \C-c \C-r forms-search-backward
252 ;; \C-c \C-s forms-search-forward
253 ;; \C-c \C-x forms-exit
255 ;; Read-only mode commands:
257 ;; SPC forms-next-record
258 ;; DEL forms-prev-record
260 ;; \C-q forms-toggle-read-only
261 ;; l forms-jump-record
262 ;; n forms-next-record
263 ;; p forms-prev-record
264 ;; r forms-search-backward
265 ;; s forms-search-forward
268 ;; Of course, it is also possible to use the \C-c prefix to obtain the
269 ;; same command keys as in edit mode.
271 ;; The following bindings are available, independent of the mode:
273 ;; [next] forms-next-record
274 ;; [prior] forms-prev-record
275 ;; [begin] forms-first-record
276 ;; [end] forms-last-record
277 ;; [S-TAB] forms-prev-field
278 ;; [backtab] forms-prev-field
280 ;; For convenience, TAB is always bound to `forms-next-field', so you
281 ;; don't need the C-c prefix for this command.
283 ;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump'),
284 ;; the bindings of standard functions `scroll-up', `scroll-down',
285 ;; `beginning-of-buffer' and `end-of-buffer' can be locally replaced with
286 ;; forms mode functions next/prev record and first/last
289 ;; `write-file-functions' is defined to save the actual data file
290 ;; instead of the buffer data, `revert-file-hook' is defined to
291 ;; revert a forms to original.
296 "Edit a file as a form to fill in."
299 ;;; Global variables and constants:
301 (provide 'forms
) ;;; official
302 (provide 'forms-mode
) ;;; for compatibility
304 (defconst forms-version
(substring "$Revision: 2.47 $" 11 -
2)
305 "The version number of forms-mode (as string). The complete RCS id is:
307 $Id: forms.el,v 2.47 2003/05/28 11:19:48 rms Exp $")
309 (defcustom forms-mode-hook nil
310 "Hook run upon entering Forms mode."
314 ;;; Mandatory variables - must be set by evaluating the control file.
316 (defvar forms-file nil
317 "Name of the file holding the data.")
319 (defvar forms-format-list nil
320 "List of formatting specifications.")
322 (defvar forms-number-of-fields nil
323 "Number of fields per record.")
325 ;;; Optional variables with default values.
327 (defcustom forms-check-number-of-fields t
328 "*If non-nil, warn about records with wrong number of fields."
332 (defvar forms-field-sep
"\t"
333 "Field separator character (default TAB).")
335 (defvar forms-read-only nil
336 "Non-nil means: visit the file in view (read-only) mode.
337 This is set automatically if the file permissions don't let you write it.")
339 (defvar forms-multi-line
"\C-k" "\
340 If not nil: use this character to separate multi-line fields (default C-k).")
342 (defcustom forms-forms-scroll nil
343 "*Non-nil means replace scroll-up/down commands in Forms mode.
344 The replacement commands performs forms-next/prev-record."
348 (defcustom forms-forms-jump nil
349 "*Non-nil means redefine beginning/end-of-buffer in Forms mode.
350 The replacement commands performs forms-first/last-record."
354 (defvar forms-read-file-filter nil
355 "The name of a function that is called after reading the data file.
356 This can be used to change the contents of the file to something more
357 suitable for forms processing.")
359 (defvar forms-write-file-filter nil
360 "The name of a function that is called before writing the data file.
361 This can be used to undo the effects of `form-read-file-hook'.")
363 (defvar forms-new-record-filter nil
364 "The name of a function that is called when a new record is created.")
366 (defvar forms-modified-record-filter nil
367 "The name of a function that is called when a record has been modified.")
369 (defvar forms-fields nil
370 "List with fields of the current forms. First field has number 1.
371 This variable is for use by the filter routines only.
372 The contents may NOT be modified.")
374 (defcustom forms-use-text-properties t
375 "*Non-nil means: use text properties.
376 Defaults to t if this Emacs is capable of handling text properties."
380 (defcustom forms-insert-after nil
381 "*Non-nil means: inserts of new records go after current record.
382 Also, initial position is at last record."
386 (defcustom forms-ro-face
'default
387 "The face (a symbol) that is used to display read-only text on the screen."
391 (defcustom forms-rw-face
'region
392 "The face (a symbol) that is used to display read-write text on the screen."
396 ;;; Internal variables.
398 (defvar forms--file-buffer nil
399 "Buffer which holds the file data")
401 (defvar forms--total-records
0
402 "Total number of records in the data file.")
404 (defvar forms--current-record
0
405 "Number of the record currently on the screen.")
407 (defvar forms-mode-map nil
408 "Keymap for form buffer.")
409 (defvar forms-mode-ro-map nil
410 "Keymap for form buffer in view mode.")
411 (defvar forms-mode-edit-map nil
412 "Keymap for form buffer in edit mode.")
414 (defvar forms--markers nil
415 "Field markers in the screen.")
417 (defvar forms--dyntexts nil
418 "Dynamic texts (resulting from function calls) on the screen.")
420 (defvar forms--the-record-list nil
421 "List of strings of the current record, as parsed from the file.")
423 (defvar forms--search-regexp nil
424 "Last regexp used by forms-search functions.")
426 (defvar forms--format nil
427 "Formatting routine.")
429 (defvar forms--parser nil
430 "Forms parser routine.")
432 (defvar forms--mode-setup nil
433 "To keep track of forms-mode being set-up.")
434 (make-variable-buffer-local 'forms--mode-setup
)
436 (defvar forms--dynamic-text nil
437 "Array that holds dynamic texts to insert between fields.")
439 (defvar forms--elements nil
440 "Array with the order in which the fields are displayed.")
442 (defvar forms--ro-face nil
443 "Face used to represent read-only data on the screen.")
445 (defvar forms--rw-face nil
446 "Face used to represent read-write data on the screen.")
449 (defun forms-mode (&optional primary
)
450 "Major mode to visit files in a field-structured manner using a form.
452 Commands: Equivalent keys in read-only mode:
453 TAB forms-next-field TAB
454 C-c TAB forms-next-field
455 C-c < forms-first-record <
456 C-c > forms-last-record >
457 C-c ? describe-mode ?
458 C-c C-k forms-delete-record
459 C-c C-q forms-toggle-read-only q
460 C-c C-o forms-insert-record
461 C-c C-l forms-jump-record l
462 C-c C-n forms-next-record n
463 C-c C-p forms-prev-record p
464 C-c C-r forms-search-reverse r
465 C-c C-s forms-search-forward s
470 ;; This is not a simple major mode, as usual. Therefore, forms-mode
471 ;; takes an optional argument `primary' which is used for the
472 ;; initial set-up. Normal use would leave `primary' to nil.
473 ;; A global buffer-local variable `forms--mode-setup' has the same
474 ;; effect but makes it possible to auto-invoke forms-mode using
476 ;; Note: although it seems logical to have `make-local-variable'
477 ;; executed where the variable is first needed, I have deliberately
478 ;; placed all calls in this function.
480 ;; Primary set-up: evaluate buffer and check if the mandatory
481 ;; variables have been set.
482 (if (or primary
(not forms--mode-setup
))
484 ;;(message "forms: setting up...")
485 (kill-all-local-variables)
487 ;; Make mandatory variables.
488 (make-local-variable 'forms-file
)
489 (make-local-variable 'forms-number-of-fields
)
490 (make-local-variable 'forms-format-list
)
492 ;; Make optional variables.
493 (make-local-variable 'forms-field-sep
)
494 (make-local-variable 'forms-read-only
)
495 (make-local-variable 'forms-multi-line
)
496 (make-local-variable 'forms-forms-scroll
)
497 (make-local-variable 'forms-forms-jump
)
498 (make-local-variable 'forms-insert-after
)
499 (make-local-variable 'forms-use-text-properties
)
502 (make-local-variable 'forms-read-file-filter
)
503 (make-local-variable 'forms-write-file-filter
)
504 (make-local-variable 'forms-new-record-filter
)
505 (make-local-variable 'forms-modified-record-filter
)
507 ;; Make sure no filters exist.
508 (setq forms-read-file-filter nil
)
509 (setq forms-write-file-filter nil
)
510 (setq forms-new-record-filter nil
)
511 (setq forms-modified-record-filter nil
)
513 ;; If running Emacs 19 under X, setup faces to show read-only and
514 ;; read-write fields.
515 (if (fboundp 'make-face
)
517 (make-local-variable 'forms-ro-face
)
518 (make-local-variable 'forms-rw-face
)))
520 ;; eval the buffer, should set variables
521 ;;(message "forms: processing control file...")
522 ;; If enable-local-eval is not set to t the user is asked first.
523 (if (or (eq enable-local-eval t
)
525 (concat "Evaluate lisp code in buffer "
526 (buffer-name) " to display forms ")))
527 (eval-current-buffer)
528 (error "`enable-local-eval' inhibits buffer evaluation"))
530 ;; Check if the mandatory variables make sense.
532 (error (concat "Forms control file error: "
533 "`forms-file' has not been set")))
535 ;; Check forms-field-sep first, since it can be needed to
536 ;; construct a default format list.
537 (or (stringp forms-field-sep
)
538 (error (concat "Forms control file error: "
539 "`forms-field-sep' is not a string")))
541 (if forms-number-of-fields
542 (or (and (numberp forms-number-of-fields
)
543 (> forms-number-of-fields
0))
544 (error (concat "Forms control file error: "
545 "`forms-number-of-fields' must be a number > 0")))
546 (or (null forms-format-list
)
547 (error (concat "Forms control file error: "
548 "`forms-number-of-fields' has not been set"))))
550 (or forms-format-list
551 (forms--intuit-from-file))
554 (if (and (stringp forms-multi-line
)
555 (eq (length forms-multi-line
) 1))
556 (if (string= forms-multi-line forms-field-sep
)
557 (error (concat "Forms control file error: "
558 "`forms-multi-line' is equal to 'forms-field-sep'")))
559 (error (concat "Forms control file error: "
560 "`forms-multi-line' must be nil or a one-character string"))))
561 (or (fboundp 'set-text-properties
)
562 (setq forms-use-text-properties nil
))
564 ;; Validate and process forms-format-list.
565 ;;(message "forms: pre-processing format list...")
566 (make-local-variable 'forms--elements
)
567 (forms--process-format-list)
569 ;; Build the formatter and parser.
570 ;;(message "forms: building formatter...")
571 (make-local-variable 'forms--format
)
572 (make-local-variable 'forms--markers
)
573 (make-local-variable 'forms--dyntexts
)
574 ;;(message "forms: building parser...")
576 (make-local-variable 'forms--parser
)
578 ;;(message "forms: building parser... done.")
580 ;; Check if record filters are defined.
581 (if (and forms-new-record-filter
582 (not (fboundp forms-new-record-filter
)))
583 (error (concat "Forms control file error: "
584 "`forms-new-record-filter' is not a function")))
586 (if (and forms-modified-record-filter
587 (not (fboundp forms-modified-record-filter
)))
588 (error (concat "Forms control file error: "
589 "`forms-modified-record-filter' is not a function")))
591 ;; The filters acces the contents of the forms using `forms-fields'.
592 (make-local-variable 'forms-fields
)
594 ;; Dynamic text support.
595 (make-local-variable 'forms--dynamic-text
)
597 ;; Prevent accidental overwrite of the control file and auto-save.
598 (set-visited-file-name nil
)
600 ;; Prepare this buffer for further processing.
601 (setq buffer-read-only nil
)
604 ;;(message "forms: setting up... done.")
607 ;; initialization done
608 (setq forms--mode-setup t
)
610 ;; Copy desired faces to the actual variables used by the forms formatter.
611 (if (fboundp 'make-face
)
613 (make-local-variable 'forms--ro-face
)
614 (make-local-variable 'forms--rw-face
)
617 (setq forms--ro-face forms-ro-face
)
618 (setq forms--rw-face forms-ro-face
))
619 (setq forms--ro-face forms-ro-face
)
620 (setq forms--rw-face forms-rw-face
))))
622 ;; Make more local variables.
623 (make-local-variable 'forms--file-buffer
)
624 (make-local-variable 'forms--total-records
)
625 (make-local-variable 'forms--current-record
)
626 (make-local-variable 'forms--the-record-list
)
627 (make-local-variable 'forms--search-regexp
)
629 ; The keymaps are global, so multiple forms mode buffers can share them.
630 ;(make-local-variable 'forms-mode-map)
631 ;(make-local-variable 'forms-mode-ro-map)
632 ;(make-local-variable 'forms-mode-edit-map)
633 (if forms-mode-map
; already defined
635 ;;(message "forms: building keymap...")
636 (forms--mode-commands)
637 ;;(message "forms: building keymap... done.")
640 ;; set the major mode indicator
641 (setq major-mode
'forms-mode
)
642 (setq mode-name
"Forms")
644 ;; find the data file
645 (setq forms--file-buffer
(find-file-noselect forms-file
))
648 (let ((read-file-filter forms-read-file-filter
)
649 (write-file-filter forms-write-file-filter
))
651 (with-current-buffer forms--file-buffer
652 (let ((inhibit-read-only t
)
653 (file-modified (buffer-modified-p)))
654 (run-hooks 'read-file-filter
)
655 (if (not file-modified
) (set-buffer-modified-p nil
)))
656 (if write-file-filter
657 (add-hook 'write-file-functions write-file-filter nil t
)))
658 (if write-file-filter
659 (with-current-buffer forms--file-buffer
660 (add-hook 'write-file-functions write-file-filter nil t
)))))
662 ;; count the number of records, and set see if it may be modified
664 (setq forms--total-records
665 (with-current-buffer forms--file-buffer
668 ;;(message "forms: counting records...")
669 (bury-buffer (current-buffer))
670 (setq ro buffer-read-only
)
671 (count-lines (point-min) (point-max)))
672 ;;(message "forms: counting records... done.")
675 (setq forms-read-only t
)))
677 ;;(message "forms: proceeding setup...")
679 ;; Since we aren't really implementing a minor mode, we hack the modeline
680 ;; directly to get the text " View " into forms-read-only form buffers. For
681 ;; that reason, this variable must be buffer only.
682 (make-local-variable 'minor-mode-alist
)
683 (setq minor-mode-alist
(list (list 'forms-read-only
" View")))
685 ;;(message "forms: proceeding setup (keymaps)...")
687 ;;(message "forms: proceeding setup (commands)...")
688 (forms--change-commands)
690 ;;(message "forms: proceeding setup (buffer)...")
691 (set-buffer-modified-p nil
)
693 (if (= forms--total-records
0)
694 ;;(message "forms: proceeding setup (new file)...")
697 "GNU Emacs Forms Mode version " forms-version
"\n\n"
698 (if (file-exists-p forms-file
)
699 (concat "No records available in file `" forms-file
"'\n\n")
700 (format "Creating new file `%s'\nwith %d field%s per record\n\n"
701 forms-file forms-number-of-fields
702 (if (= 1 forms-number-of-fields
) "" "s")))
703 "Use " (substitute-command-keys "\\[forms-insert-record]")
704 " to create new records.\n")
705 (setq forms--current-record
1)
706 (setq buffer-read-only t
)
707 (set-buffer-modified-p nil
))
709 ;; setup the first (or current) record to show
710 (if (< forms--current-record
1)
711 (setq forms--current-record
1))
712 (forms-jump-record forms--current-record
)
714 (if forms-insert-after
716 (forms-first-record))
720 ;;(message "forms: proceeding setup (user hooks)...")
721 (run-hooks 'forms-mode-hook
'forms-mode-hooks
)
722 ;;(message "forms: setting up... done.")
728 (defun forms--process-format-list ()
729 ;; Validate `forms-format-list' and set some global variables.
730 ;; Symbols in the list are evaluated, and consecutive strings are
732 ;; Array `forms--elements' is constructed that contains the order
733 ;; of the fields on the display. This array is used by
734 ;; `forms--parser-using-text-properties' to extract the fields data
735 ;; from the form on the screen.
736 ;; Upon completion, `forms-format-list' is guaranteed correct, so
737 ;; `forms--make-format' and `forms--make-parser' do not need to perform
740 ;; Verify that `forms-format-list' is not nil.
741 (or forms-format-list
742 (error (concat "Forms control file error: "
743 "`forms-format-list' has not been set")))
744 ;; It must be a list.
745 (or (listp forms-format-list
)
746 (error (concat "Forms control file error: "
747 "`forms-format-list' is not a list")))
749 ;; Assume every field is painted once.
750 ;; `forms--elements' will grow if needed.
751 (setq forms--elements
(make-vector forms-number-of-fields nil
))
753 (let ((the-list forms-format-list
) ; the list of format elements
755 (field-num 0)) ; highest field number
757 (setq forms-format-list nil
) ; gonna rebuild
761 (let ((el (car-safe the-list
))
762 (rem (cdr-safe the-list
)))
764 ;; If it is a symbol, eval it first.
765 (if (and (symbolp el
)
773 (if (stringp prev-item
) ; try to concatenate strings
774 (setq prev-item
(concat prev-item el
))
776 (setq forms-format-list
777 (append forms-format-list
(list prev-item
) nil
)))
778 (setq prev-item el
)))
785 (> el forms-number-of-fields
))
786 (error (concat "Forms format error: "
787 "field number %d out of range 1..%d")
788 el forms-number-of-fields
))
790 ;; Store forms order.
791 (if (>= field-num
(length forms--elements
))
792 (setq forms--elements
(vconcat forms--elements
(1- el
)))
793 (aset forms--elements field-num
(1- el
)))
794 (setq field-num
(1+ field-num
))
797 (setq forms-format-list
798 (append forms-format-list
(list prev-item
) nil
)))
805 (or (fboundp (car-safe el
))
806 (error (concat "Forms format error: "
807 "%S is not a function")
812 (setq forms-format-list
813 (append forms-format-list
(list prev-item
) nil
)))
818 (error (concat "Forms format error: "
819 "invalid element %S")
822 ;; Advance to next element of the list.
823 (setq the-list rem
)))
828 (setq forms-format-list
829 (append forms-format-list
(list prev-item
) nil
))
830 ;; Append a newline if the last item is a field.
831 ;; This prevents parsing problems.
832 ;; Also it makes it possible to insert an empty last field.
833 (if (numberp prev-item
)
834 (setq forms-format-list
835 (append forms-format-list
(list "\n") nil
))))))
837 (forms--debug 'forms-format-list
840 ;; Special treatment for read-only segments.
842 ;; If text is inserted between two read-only segments, there seems to
843 ;; be no way to give the newly inserted text the RW face.
844 ;; To solve this, read-only segments get the `insert-in-front-hooks'
845 ;; property set with a function that temporarily switches the
846 ;; properties of the first character of the segment to the RW face, so
847 ;; the new text gets the right face. The `post-command-hook' is
848 ;; used to restore the original properties.
850 (defvar forms--iif-start nil
851 "Record start of modification command.")
852 (defvar forms--iif-properties nil
853 "Original properties of the character being overridden.")
855 (defun forms--iif-hook (begin end
)
856 "`insert-in-front-hooks' function for read-only segments."
858 ;; Note start location. By making it a marker that points one
859 ;; character beyond the actual location, it is guaranteed to move
860 ;; correctly if text is inserted.
862 (setq forms--iif-start
(copy-marker (1+ (point)))))
864 ;; Check if there is special treatment required.
865 (if (or (<= forms--iif-start
2)
866 (get-text-property (- forms--iif-start
2)
869 ;; Fetch current properties.
870 (setq forms--iif-properties
871 (text-properties-at (1- forms--iif-start
)))
874 (let ((inhibit-read-only t
))
876 (1- forms--iif-start
) forms--iif-start
877 (list 'face forms--rw-face
'front-sticky
'(face))))
879 ;; Enable `post-command-hook' to restore the properties.
880 (setq post-command-hook
881 (append (list 'forms--iif-post-command-hook
) post-command-hook
)))
883 ;; No action needed. Clear marker.
884 (setq forms--iif-start nil
)))
886 (defun forms--iif-post-command-hook ()
887 "`post-command-hook' function for read-only segments."
889 ;; Disable `post-command-hook'.
890 (setq post-command-hook
891 (delq 'forms--iif-hook-post-command-hook post-command-hook
))
893 ;; Restore properties.
895 (let ((inhibit-read-only t
))
897 (1- forms--iif-start
) forms--iif-start
898 forms--iif-properties
)))
901 (setq forms--iif-start nil
))
903 (defvar forms--marker
)
904 (defvar forms--dyntext
)
906 (defun forms--make-format ()
907 "Generate `forms--format' using the information in `forms-format-list'."
909 ;; The real work is done using a mapcar of `forms--make-format-elt' on
910 ;; `forms-format-list'.
911 ;; This function sets up the necessary environment, and decides
912 ;; which function to mapcar.
914 (let ((forms--marker 0)
918 (if forms-use-text-properties
920 (let ((inhibit-read-only t
))
922 (mapcar 'forms--make-format-elt-using-text-properties
924 ;; Prevent insertion before the first text.
925 ,@(if (numberp (car forms-format-list
))
927 '((add-text-properties (point-min) (1+ (point-min))
928 '(front-sticky (read-only intangible
)))))
929 ;; Prevent insertion after the last text.
930 (remove-text-properties (1- (point)) (point)
932 (setq forms--iif-start nil
))
935 (mapcar 'forms--make-format-elt forms-format-list
)))))
937 ;; We have tallied the number of markers and dynamic texts,
938 ;; so we can allocate the arrays now.
939 (setq forms--markers
(make-vector forms--marker nil
))
940 (setq forms--dyntexts
(make-vector forms--dyntext nil
)))
941 (forms--debug 'forms--format
))
943 (defun forms--make-format-elt-using-text-properties (el)
944 "Helper routine to generate format function."
946 ;; The format routine `forms--format' will look like
950 ;; (let ((inhibit-read-only t))
952 ;; ;; A string, e.g. "text: ".
953 ;; (set-text-properties
955 ;; (progn (insert "text: ") (point))
956 ;; (list 'face forms--ro-face
958 ;; 'insert-in-front-hooks 'forms--iif-hook
959 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
961 ;; ;; A field, e.g. 6.
962 ;; (let ((here (point)))
963 ;; (aset forms--markers 0 (point-marker))
964 ;; (insert (elt arg 5))
965 ;; (or (= (point) here)
966 ;; (set-text-properties
968 ;; (list 'face forms--rw-face
969 ;; 'front-sticky '(face))))
971 ;; ;; Another string, e.g. "\nmore text: ".
972 ;; (set-text-properties
974 ;; (progn (insert "\nmore text: ") (point))
975 ;; (list 'face forms--ro-face
977 ;; 'insert-in-front-hooks 'forms--iif-hook
978 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
980 ;; ;; A function, e.g. (tocol 40).
981 ;; (set-text-properties
984 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
986 ;; (list 'face forms--ro-face
988 ;; 'insert-in-front-hooks 'forms--iif-hook
989 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
991 ;; ;; Prevent insertion before the first text.
992 ;; (add-text-properties (point-min) (1+ (point-min))
993 ;; '(front-sticky (read-only))))))
994 ;; ;; Prevent insertion after the last text.
995 ;; (remove-text-properties (1- (point)) (point)
996 ;; '(rear-nonsticky)))
999 ;; (setq forms--iif-start nil)
1005 `((set-text-properties
1006 (point) ; start at point
1007 (progn ; until after insertion
1010 (list 'face forms--ro-face
; read-only appearance
1011 'read-only
,@(list (1+ forms--marker
))
1012 'intangible
,@(list (1+ forms--marker
))
1013 'insert-in-front-hooks
'(forms--iif-hook)
1014 'rear-nonsticky
'(face read-only insert-in-front-hooks
1018 `((let ((here (point)))
1019 (aset forms--markers
1020 ,(prog1 forms--marker
1021 (setq forms--marker
(1+ forms--marker
)))
1023 (insert (elt arg
,(1- el
)))
1024 (or (= (point) here
)
1025 (set-text-properties
1027 (list 'face forms--rw-face
1028 'front-sticky
'(face)))))))
1031 `((set-text-properties
1034 (insert (aset forms--dyntexts
1035 ,(prog1 forms--dyntext
1036 (setq forms--dyntext
(1+ forms--dyntext
)))
1039 (list 'face forms--ro-face
1040 'read-only
,@(list (1+ forms--marker
))
1041 'intangible
,@(list (1+ forms--marker
))
1042 'insert-in-front-hooks
'(forms--iif-hook)
1043 'rear-nonsticky
'(read-only face insert-in-front-hooks
1049 (defun forms--make-format-elt (el)
1050 "Helper routine to generate format function."
1052 ;; If we're not using text properties, the format routine
1053 ;; `forms--format' will look like
1056 ;; ;; a string, e.g. "text: "
1057 ;; (insert "text: ")
1058 ;; ;; a field, e.g. 6
1059 ;; (aset forms--markers 0 (point-marker))
1060 ;; (insert (elt arg 5))
1061 ;; ;; another string, e.g. "\nmore text: "
1062 ;; (insert "\nmore text: ")
1063 ;; ;; a function, e.g. (tocol 40)
1064 ;; (insert (aset forms--dyntexts 0 (tocol 40)))
1072 `((aset forms--markers
,forms--marker
(point-marker))
1073 (insert (elt arg
,(1- el
))))
1074 (setq forms--marker
(1+ forms--marker
))))
1077 `((insert (aset forms--dyntexts
,forms--dyntext
,el
)))
1078 (setq forms--dyntext
(1+ forms--dyntext
))))))
1080 (defvar forms--field
)
1081 (defvar forms--recordv
)
1082 (defvar forms--seen-text
)
1084 (defun forms--make-parser ()
1085 "Generate `forms--parser' from the information in `forms-format-list'."
1087 ;; If we can use text properties, we simply set it to
1088 ;; `forms--parser-using-text-properties'.
1089 ;; Otherwise, the function is constructed using a mapcar of
1090 ;; `forms--make-parser-elt on `forms-format-list'.
1094 (if forms-use-text-properties
1095 (function forms--parser-using-text-properties
)
1096 (let ((forms--field nil
)
1097 (forms--seen-text nil
)
1100 ;; Note: we add a nil element to the list passed to `mapcar',
1101 ;; see `forms--make-parser-elt' for details.
1104 (goto-char (point-min))
1107 'forms--make-parser-elt
1108 (append forms-format-list
(list nil
)))))))))
1110 (forms--debug 'forms--parser
))
1112 (defun forms--parser-using-text-properties ()
1113 "Extract field info from forms when using text properties."
1115 ;; Using text properties, we can simply jump to the markers, and
1116 ;; extract the information up to the following read-only segment.
1120 (while (< i
(length forms--markers
))
1121 (goto-char (setq here
(aref forms--markers i
)))
1122 (if (get-text-property here
'read-only
)
1123 (aset forms--recordv
(aref forms--elements i
) nil
)
1125 (next-single-property-change here
'read-only
))
1126 (aset forms--recordv
(aref forms--elements i
)
1127 (buffer-substring-no-properties here there
))
1128 (aset forms--recordv
(aref forms--elements i
)
1129 (buffer-substring-no-properties here
(point-max)))))
1132 (defun forms--make-parser-elt (el)
1133 "Helper routine to generate forms parser function."
1135 ;; The parse routine will look like:
1139 ;; (goto-char (point-min))
1142 ;; (if (not (looking-at "text: "))
1143 ;; (error "Parse error: cannot find \"text: \""))
1144 ;; (forward-char 6) ; past "text: "
1147 ;; ;; "\nmore text: "
1148 ;; (setq here (point))
1149 ;; (if (not (search-forward "\nmore text: " nil t nil))
1150 ;; (error "Parse error: cannot find \"\\nmore text: \""))
1151 ;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12)))
1154 ;; (let ((forms--dyntext (car-safe forms--dynamic-text)))
1155 ;; (if (not (looking-at (regexp-quote forms--dyntext)))
1156 ;; (error "Parse error: not looking at \"%s\"" forms--dyntext))
1157 ;; (forward-char (length forms--dyntext))
1158 ;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text)))
1160 ;; ;; final flush (due to terminator sentinel, see below)
1161 ;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max)))
1167 `((setq here
(point))
1168 (if (not (search-forward ,el nil t nil
))
1169 (error "Parse error: cannot find `%s'" ,el
))
1170 (aset forms--recordv
,(1- forms--field
)
1171 (buffer-substring-no-properties here
1172 (- (point) ,(length el
)))))
1173 `((if (not (looking-at ,(regexp-quote el
)))
1174 (error "Parse error: not looking at `%s'" ,el
))
1175 (forward-char ,(length el
))))
1176 (setq forms--seen-text t
)
1177 (setq forms--field nil
)))
1180 (error "Cannot parse adjacent fields %d and %d"
1182 (setq forms--field el
)
1186 `((aset forms--recordv
,(1- forms--field
)
1187 (buffer-substring-no-properties (point) (point-max))))))
1191 `((let ((here (point))
1192 (forms--dyntext (aref forms--dyntexts
,forms--dyntext
)))
1193 (if (not (search-forward forms--dyntext nil t nil
))
1194 (error "Parse error: cannot find `%s'" forms--dyntext
))
1195 (aset forms--recordv
,(1- forms--field
)
1196 (buffer-substring-no-properties here
1197 (- (point) (length forms--dyntext
))))))
1198 `((let ((forms--dyntext (aref forms--dyntexts
,forms--dyntext
)))
1199 (if (not (looking-at (regexp-quote forms--dyntext
)))
1200 (error "Parse error: not looking at `%s'" forms--dyntext
))
1201 (forward-char (length forms--dyntext
)))))
1202 (setq forms--dyntext
(1+ forms--dyntext
))
1203 (setq forms--seen-text t
)
1204 (setq forms--field nil
)))
1207 (defun forms--intuit-from-file ()
1208 "Get number of fields and a default form using the data file."
1210 ;; If `forms-number-of-fields' is not set, get it from the data file.
1211 (if (null forms-number-of-fields
)
1213 ;; Need a file to do this.
1214 (if (not (file-exists-p forms-file
))
1215 (error "Need existing file or explicit 'forms-number-of-records'")
1217 ;; Visit the file and extract the first record.
1218 (setq forms--file-buffer
(find-file-noselect forms-file
))
1219 (let ((read-file-filter forms-read-file-filter
)
1222 (with-current-buffer forms--file-buffer
1223 (let ((inhibit-read-only t
))
1224 (run-hooks 'read-file-filter
))
1225 (goto-char (point-min))
1226 (forms--get-record)))
1228 ;; This may be overkill, but try to avoid interference with
1229 ;; the normal processing.
1230 (kill-buffer forms--file-buffer
)
1232 ;; Count the number of fields in `the-record'.
1235 (field-sep-length (length forms-field-sep
)))
1236 (setq forms-number-of-fields
1)
1237 (while (setq found-pos
1238 (string-match forms-field-sep the-record start-pos
))
1240 (setq forms-number-of-fields
(1+ forms-number-of-fields
))
1241 (setq start-pos
(+ field-sep-length found-pos
))))))))
1243 ;; Construct default format list.
1244 (setq forms-format-list
(list "Forms file \"" forms-file
"\".\n\n"))
1246 (while (<= (setq i
(1+ i
)) forms-number-of-fields
)
1247 (setq forms-format-list
1248 (append forms-format-list
1249 (list (format "%4d: " i
) i
"\n"))))))
1251 (defun forms--set-keymaps ()
1252 "Set the keymaps used in this mode."
1254 (use-local-map (if forms-read-only
1256 forms-mode-edit-map
)))
1258 (defun forms--mode-commands ()
1259 "Fill the Forms mode keymaps."
1261 ;; `forms-mode-map' is always accessible via \C-c prefix.
1262 (setq forms-mode-map
(make-keymap))
1263 (define-key forms-mode-map
"\t" 'forms-next-field
)
1264 (define-key forms-mode-map
"\C-k" 'forms-delete-record
)
1265 (define-key forms-mode-map
"\C-q" 'forms-toggle-read-only
)
1266 (define-key forms-mode-map
"\C-o" 'forms-insert-record
)
1267 (define-key forms-mode-map
"\C-l" 'forms-jump-record
)
1268 (define-key forms-mode-map
"\C-n" 'forms-next-record
)
1269 (define-key forms-mode-map
"\C-p" 'forms-prev-record
)
1270 (define-key forms-mode-map
"\C-r" 'forms-search-backward
)
1271 (define-key forms-mode-map
"\C-s" 'forms-search-forward
)
1272 (define-key forms-mode-map
"\C-x" 'forms-exit
)
1273 (define-key forms-mode-map
"<" 'forms-first-record
)
1274 (define-key forms-mode-map
">" 'forms-last-record
)
1275 (define-key forms-mode-map
"\C-?" 'forms-prev-record
)
1277 ;; `forms-mode-ro-map' replaces the local map when in read-only mode.
1278 (setq forms-mode-ro-map
(make-keymap))
1279 (suppress-keymap forms-mode-ro-map
)
1280 (define-key forms-mode-ro-map
"\C-c" forms-mode-map
)
1281 (define-key forms-mode-ro-map
"q" 'forms-toggle-read-only
)
1282 (define-key forms-mode-ro-map
"l" 'forms-jump-record
)
1283 (define-key forms-mode-ro-map
"n" 'forms-next-record
)
1284 (define-key forms-mode-ro-map
"p" 'forms-prev-record
)
1285 (define-key forms-mode-ro-map
"r" 'forms-search-backward
)
1286 (define-key forms-mode-ro-map
"s" 'forms-search-forward
)
1287 (define-key forms-mode-ro-map
"x" 'forms-exit
)
1288 (define-key forms-mode-ro-map
"<" 'forms-first-record
)
1289 (define-key forms-mode-ro-map
">" 'forms-last-record
)
1290 (define-key forms-mode-ro-map
"?" 'describe-mode
)
1291 (define-key forms-mode-ro-map
" " 'forms-next-record
)
1292 (forms--mode-commands1 forms-mode-ro-map
)
1293 (forms--mode-menu-ro forms-mode-ro-map
)
1295 ;; This is the normal, local map.
1296 (setq forms-mode-edit-map
(make-keymap))
1297 (define-key forms-mode-edit-map
"\C-c" forms-mode-map
)
1298 (forms--mode-commands1 forms-mode-edit-map
)
1299 (forms--mode-menu-edit forms-mode-edit-map
)
1302 (defun forms--mode-menu-ro (map)
1303 ;;; Menu initialisation
1304 ; (define-key map [menu-bar] (make-sparse-keymap))
1305 (define-key map
[menu-bar forms
]
1306 (cons "Forms" (make-sparse-keymap "Forms")))
1307 (define-key map
[menu-bar forms menu-forms-exit
]
1308 '("Exit Forms Mode" . forms-exit
))
1309 (define-key map
[menu-bar forms menu-forms-sep1
]
1311 (define-key map
[menu-bar forms menu-forms-save
]
1312 '("Save Data" . forms-save-buffer
))
1313 (define-key map
[menu-bar forms menu-forms-print
]
1314 '("Print Data" . forms-print
))
1315 (define-key map
[menu-bar forms menu-forms-describe
]
1316 '("Describe Mode" . describe-mode
))
1317 (define-key map
[menu-bar forms menu-forms-toggle-ro
]
1318 '("Toggle View/Edit" . forms-toggle-read-only
))
1319 (define-key map
[menu-bar forms menu-forms-jump-record
]
1320 '("Jump" . forms-jump-record
))
1321 (define-key map
[menu-bar forms menu-forms-search-backward
]
1322 '("Search Backward" . forms-search-backward
))
1323 (define-key map
[menu-bar forms menu-forms-search-forward
]
1324 '("Search Forward" . forms-search-forward
))
1325 (define-key map
[menu-bar forms menu-forms-delete-record
]
1326 '("Delete" . forms-delete-record
))
1327 (define-key map
[menu-bar forms menu-forms-insert-record
]
1328 '("Insert" . forms-insert-record
))
1329 (define-key map
[menu-bar forms menu-forms-sep2
]
1331 (define-key map
[menu-bar forms menu-forms-last-record
]
1332 '("Last Record" . forms-last-record
))
1333 (define-key map
[menu-bar forms menu-forms-first-record
]
1334 '("First Record" . forms-first-record
))
1335 (define-key map
[menu-bar forms menu-forms-prev-record
]
1336 '("Previous Record" . forms-prev-record
))
1337 (define-key map
[menu-bar forms menu-forms-next-record
]
1338 '("Next Record" . forms-next-record
))
1339 (define-key map
[menu-bar forms menu-forms-sep3
]
1341 (define-key map
[menu-bar forms menu-forms-prev-field
]
1342 '("Previous Field" . forms-prev-field
))
1343 (define-key map
[menu-bar forms menu-forms-next-field
]
1344 '("Next Field" . forms-next-field
))
1345 (put 'forms-insert-record
'menu-enable
'(not forms-read-only
))
1346 (put 'forms-delete-record
'menu-enable
'(not forms-read-only
))
1348 (defun forms--mode-menu-edit (map)
1349 ;;; Menu initialisation
1350 ; (define-key map [menu-bar] (make-sparse-keymap))
1351 (define-key map
[menu-bar forms
]
1352 (cons "Forms" (make-sparse-keymap "Forms")))
1353 (define-key map
[menu-bar forms menu-forms-edit--exit
]
1354 '("Exit" . forms-exit
))
1355 (define-key map
[menu-bar forms menu-forms-edit-sep1
]
1357 (define-key map
[menu-bar forms menu-forms-edit-save
]
1358 '("Save Data" . forms-save-buffer
))
1359 (define-key map
[menu-bar forms menu-forms-edit-print
]
1360 '("Print Data" . forms-print
))
1361 (define-key map
[menu-bar forms menu-forms-edit-describe
]
1362 '("Describe Mode" . describe-mode
))
1363 (define-key map
[menu-bar forms menu-forms-edit-toggle-ro
]
1364 '("Toggle View/Edit" . forms-toggle-read-only
))
1365 (define-key map
[menu-bar forms menu-forms-edit-jump-record
]
1366 '("Jump" . forms-jump-record
))
1367 (define-key map
[menu-bar forms menu-forms-edit-search-backward
]
1368 '("Search Backward" . forms-search-backward
))
1369 (define-key map
[menu-bar forms menu-forms-edit-search-forward
]
1370 '("Search Forward" . forms-search-forward
))
1371 (define-key map
[menu-bar forms menu-forms-edit-delete-record
]
1372 '("Delete" . forms-delete-record
))
1373 (define-key map
[menu-bar forms menu-forms-edit-insert-record
]
1374 '("Insert" . forms-insert-record
))
1375 (define-key map
[menu-bar forms menu-forms-edit-sep2
]
1377 (define-key map
[menu-bar forms menu-forms-edit-last-record
]
1378 '("Last Record" . forms-last-record
))
1379 (define-key map
[menu-bar forms menu-forms-edit-first-record
]
1380 '("First Record" . forms-first-record
))
1381 (define-key map
[menu-bar forms menu-forms-edit-prev-record
]
1382 '("Previous Record" . forms-prev-record
))
1383 (define-key map
[menu-bar forms menu-forms-edit-next-record
]
1384 '("Next Record" . forms-next-record
))
1385 (define-key map
[menu-bar forms menu-forms-edit-sep3
]
1387 (define-key map
[menu-bar forms menu-forms-edit-prev-field
]
1388 '("Previous Field" . forms-prev-field
))
1389 (define-key map
[menu-bar forms menu-forms-edit-next-field
]
1390 '("Next Field" . forms-next-field
))
1391 (put 'forms-insert-record
'menu-enable
'(not forms-read-only
))
1392 (put 'forms-delete-record
'menu-enable
'(not forms-read-only
))
1395 (defun forms--mode-commands1 (map)
1396 "Helper routine to define keys."
1397 (define-key map
"\t" 'forms-next-field
)
1398 (define-key map
[S-tab
] 'forms-prev-field
)
1399 (define-key map
[next] 'forms-next-record)
1400 (define-key map [prior] 'forms-prev-record)
1401 (define-key map [begin] 'forms-first-record)
1402 (define-key map [last] 'forms-last-record)
1403 (define-key map [backtab] 'forms-prev-field)
1406 ;;; Changed functions
1408 (defun forms--change-commands ()
1409 "Localize some commands for Forms mode."
1411 ;; scroll-down -> forms-prev-record
1412 ;; scroll-up -> forms-next-record
1413 (if forms-forms-scroll
1415 (local-set-key [remap scroll-up] 'forms-next-record)
1416 (local-set-key [remap scroll-down] 'forms-prev-record)))
1418 ;; beginning-of-buffer -> forms-first-record
1419 ;; end-of-buffer -> forms-end-record
1420 (if forms-forms-jump
1422 (local-set-key [remap beginning-of-buffer] 'forms-first-record)
1423 (local-set-key [remap end-of-buffer] 'forms-last-record)))
1426 (local-set-key "\C-x\C-s" 'forms-save-buffer)
1428 ;; We have our own revert function - use it.
1429 (make-local-variable 'revert-buffer-function)
1430 (setq revert-buffer-function 'forms--revert-buffer)
1434 (defun forms--help ()
1435 "Initial help for Forms mode."
1436 (message "%s" (substitute-command-keys (concat
1437 "\\[forms-next-record]:next"
1438 " \\[forms-prev-record]:prev"
1439 " \\[forms-first-record]:first"
1440 " \\[forms-last-record]:last"
1441 " \\[describe-mode]:help"))))
1443 (defun forms--trans (subj arg rep)
1444 "Translate in SUBJ all chars ARG into char REP. ARG and REP should
1445 be single-char strings."
1447 (re (regexp-quote arg))
1448 (k (string-to-char rep)))
1449 (while (setq i (string-match re subj i))
1453 (defun forms--exit (&optional save)
1454 "Internal exit from forms mode function."
1456 (let ((buf (buffer-name forms--file-buffer)))
1459 (buffer-modified-p forms--file-buffer))
1460 (forms-save-buffer))
1461 (with-current-buffer forms--file-buffer
1462 (delete-auto-save-file-if-necessary)
1463 (kill-buffer (current-buffer)))
1464 (if (get-buffer buf) ; not killed???
1466 (error "Problem saving buffer %s" (buffer-name buf)))
1467 (delete-auto-save-file-if-necessary)
1468 (kill-buffer (current-buffer)))))
1470 (defun forms--get-record ()
1471 "Fetch the current record from the file buffer."
1473 ;; This function is executed in the context of the `forms--file-buffer'.
1476 (beginning-of-line nil))
1477 (let ((here (point)))
1480 (buffer-substring-no-properties here (point))
1483 (defun forms--show-record (the-record)
1484 "Format THE-RECORD and display it in the current buffer."
1486 ;; Split the-record.
1490 (field-sep-length (length forms-field-sep)))
1491 (if forms-multi-line
1492 (forms--trans the-record forms-multi-line "\n"))
1493 ;; Add an extra separator (makes splitting easy).
1494 (setq the-record (concat the-record forms-field-sep))
1495 (while (setq found-pos (string-match forms-field-sep the-record start-pos))
1496 (let ((ent (substring the-record start-pos found-pos)))
1498 (append the-result (list ent)))
1499 (setq start-pos (+ field-sep-length found-pos))))
1500 (setq forms--the-record-list the-result))
1502 (setq buffer-read-only nil)
1503 (if forms-use-text-properties
1504 (let ((inhibit-read-only t))
1505 (set-text-properties (point-min) (point-max) nil)))
1508 ;; Verify the number of fields, extend forms--the-record-list if needed.
1509 (if (= (length forms--the-record-list) forms-number-of-fields)
1511 (if (null forms-check-number-of-fields)
1513 (message "Warning: this record has %d fields instead of %d"
1514 (length forms--the-record-list) forms-number-of-fields))
1515 (if (< (length forms--the-record-list) forms-number-of-fields)
1516 (setq forms--the-record-list
1517 (append forms--the-record-list
1519 (- forms-number-of-fields
1520 (length forms--the-record-list))
1523 ;; Call the formatter function.
1524 (setq forms-fields (append (list nil) forms--the-record-list nil))
1525 (funcall forms--format forms--the-record-list)
1528 (goto-char (point-min))
1529 (set-buffer-modified-p nil)
1530 (setq buffer-read-only forms-read-only)
1531 (setq mode-line-process
1532 (concat " " (int-to-string forms--current-record)
1533 "/" (int-to-string forms--total-records))))
1535 (defun forms--parse-form ()
1536 "Parse contents of form into list of strings."
1537 ;; The contents of the form are parsed, and a new list of strings
1539 ;; A vector with the strings from the original record is
1540 ;; constructed, which is updated with the new contents. Therefore
1541 ;; fields which were not in the form are not modified.
1542 ;; Finally, the vector is transformed into a list for further processing.
1544 (let (forms--recordv)
1546 ;; Build the vector.
1547 (setq forms--recordv (vconcat forms--the-record-list))
1549 ;; Parse the form and update the vector.
1550 (let ((forms--dynamic-text forms--dynamic-text))
1551 (funcall forms--parser))
1553 (if forms-modified-record-filter
1554 ;; As a service to the user, we add a zeroth element so she
1555 ;; can use the same indices as in the forms definition.
1556 (let ((the-fields (vconcat [nil] forms--recordv)))
1557 (setq the-fields (funcall forms-modified-record-filter the-fields))
1558 (cdr (append the-fields nil)))
1560 ;; Transform to a list and return.
1561 (append forms--recordv nil))))
1563 (defun forms--update ()
1564 "Update current record with contents of form.
1565 As a side effect: sets `forms--the-record-list'."
1568 (error "Buffer is read-only"))
1571 ;; Build new record.
1572 (setq forms--the-record-list (forms--parse-form))
1574 (mapconcat 'identity forms--the-record-list forms-field-sep))
1576 (if (string-match (regexp-quote forms-field-sep)
1577 (mapconcat 'identity forms--the-record-list ""))
1578 (error "Field separator occurs in record - update refused"))
1580 ;; Handle multi-line fields, if allowed.
1581 (if forms-multi-line
1582 (forms--trans the-record "\n" forms-multi-line))
1584 ;; A final sanity check before updating.
1585 (if (string-match "\n" the-record)
1586 (error "Multi-line fields in this record - update refused"))
1588 (with-current-buffer forms--file-buffer
1589 ;; Use delete-region instead of kill-region, to avoid
1590 ;; adding junk to the kill-ring.
1591 (delete-region (line-beginning-position) (line-end-position))
1593 (beginning-of-line))))
1595 (defun forms--checkmod ()
1596 "Check if this form has been modified, and call forms--update if so."
1597 (if (buffer-modified-p nil)
1598 (let ((here (point)))
1600 (set-buffer-modified-p nil)
1606 (defun forms-find-file (fn)
1607 "Visit a file in Forms mode."
1608 (interactive "fForms file: ")
1609 (let ((enable-local-eval t)
1610 (enable-local-variables t))
1611 (find-file-read-only fn)
1612 (or forms--mode-setup (forms-mode t))))
1615 (defun forms-find-file-other-window (fn)
1616 "Visit a file in Forms mode in other window."
1617 (interactive "fFbrowse file in other window: ")
1618 (let ((enable-local-eval t)
1619 (enable-local-variables t))
1620 (find-file-other-window fn)
1621 (or forms--mode-setup (forms-mode t))))
1623 (defun forms-exit ()
1624 "Normal exit from Forms mode. Modified buffers are saved."
1628 (defun forms-exit-no-save ()
1629 "Exit from Forms mode without saving buffers."
1633 ;;; Navigating commands
1635 (defun forms-next-record (arg)
1636 "Advance to the ARGth following record."
1638 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t))
1640 (defun forms-prev-record (arg)
1641 "Advance to the ARGth previous record."
1643 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))
1645 (defun forms--goto-record (rn &optional current)
1646 "Goto record number RN.
1647 If CURRENT is provided, it specifies the current record and can be used
1648 to speed up access to RN. Returns the number of records missing, if any."
1650 (forward-line (- rn current))
1651 ;; goto-line does not do what we want when the buffer is narrowed.
1652 (goto-char (point-min))
1653 (forward-line (1- rn))))
1655 (defun forms-jump-record (arg &optional relative)
1656 "Jump to a random record."
1657 (interactive "NRecord number: ")
1659 ;; Verify that the record number is within range.
1660 (if (or (> arg forms--total-records)
1663 ;; Don't give the message if just paging.
1665 (message "Record number %d out of range 1..%d"
1666 arg forms--total-records)
1672 ;; Calculate displacement.
1673 (let ((cur forms--current-record))
1675 ;; `forms--show-record' needs it now.
1676 (setq forms--current-record arg)
1678 ;; Get the record and show it.
1680 (with-current-buffer forms--file-buffer
1683 ;; Move, and adjust the amount if needed (shouldn't happen).
1684 (setq cur (- arg (forms--goto-record arg (if relative cur))))
1686 (forms--get-record)))
1688 ;; This shouldn't happen.
1689 (if (/= forms--current-record cur)
1691 (setq forms--current-record cur)
1692 (error "Stuck at record %d" cur)))))
1694 (defun forms-first-record ()
1695 "Jump to first record."
1697 (forms-jump-record 1))
1699 (defun forms-last-record ()
1700 "Jump to last record.
1701 As a side effect: re-calculates the number of records in the data file."
1705 (with-current-buffer forms--file-buffer
1706 (count-lines (point-min) (point-max)))))
1707 (if (= numrec forms--total-records)
1709 (setq forms--total-records numrec)
1710 (message "Warning: number of records changed to %d" forms--total-records)))
1711 (forms-jump-record forms--total-records))
1715 (defun forms-toggle-read-only (arg)
1716 "Toggles read-only mode of a forms mode buffer.
1717 With an argument, enables read-only mode if the argument is positive.
1718 Otherwise enables edit mode if the visited file is writable."
1723 ;; Negative arg means switch it off.
1724 (<= (prefix-numeric-value arg) 0)
1725 ;; No arg means toggle.
1728 ;; Enable edit mode, if possible.
1729 (let ((ro forms-read-only))
1730 (if (with-current-buffer forms--file-buffer
1733 (setq forms-read-only t)
1734 (message "No write access to `%s'" forms-file))
1735 (setq forms-read-only nil))
1736 (if (equal ro forms-read-only)
1740 ;; Enable view mode.
1743 (forms--checkmod) ; sync
1744 (setq forms-read-only t)
1748 ;; (defun my-new-record-filter (the-fields)
1749 ;; ;; numbers are relative to 1
1750 ;; (aset the-fields 4 (current-time-string))
1751 ;; (aset the-fields 6 (user-login-name))
1753 ;; (setq forms-new-record-filter 'my-new-record-filter)
1755 (defun forms-insert-record (arg)
1756 "Create a new record before the current one.
1757 With ARG: store the record after the current one.
1758 If `forms-new-record-filter' contains the name of a function,
1759 it is called to fill (some of) the fields with default values.
1760 If `forms-insert-after is non-nil, the default behavior is to insert
1761 after the current record."
1768 (let (ln the-list the-record)
1770 (if (or (and arg forms-insert-after)
1771 (and (not arg) (not forms-insert-after)))
1772 (setq ln forms--current-record)
1773 (setq ln (1+ forms--current-record)))
1776 (if forms-new-record-filter
1777 ;; As a service to the user, we add a zeroth element so she
1778 ;; can use the same indices as in the forms definition.
1779 (let ((the-fields (make-vector (1+ forms-number-of-fields) "")))
1780 (setq the-fields (funcall forms-new-record-filter the-fields))
1781 (setq the-list (cdr (append the-fields nil))))
1782 (setq the-list (make-list forms-number-of-fields "")))
1790 (with-current-buffer forms--file-buffer
1791 (forms--goto-record ln)
1794 (beginning-of-line))
1796 (setq forms--current-record ln))
1798 (setq forms--total-records (1+ forms--total-records))
1799 (forms-jump-record forms--current-record))
1801 (defun forms-delete-record (arg)
1802 "Deletes a record. With a prefix argument: don't ask."
1810 (y-or-n-p "Really delete this record? "))
1811 (let ((ln forms--current-record))
1812 (with-current-buffer forms--file-buffer
1813 (forms--goto-record ln)
1814 ;; Use delete-region instead of kill-region, to avoid
1815 ;; adding junk to the kill-ring.
1816 (delete-region (progn (beginning-of-line) (point))
1817 (progn (beginning-of-line 2) (point))))
1818 (setq forms--total-records (1- forms--total-records))
1819 (if (> forms--current-record forms--total-records)
1820 (setq forms--current-record forms--total-records))
1821 (forms-jump-record forms--current-record)))
1824 (defun forms-search-forward (regexp)
1825 "Search forward for record containing REGEXP."
1827 (list (read-string (concat "Search forward for"
1828 (if forms--search-regexp
1830 forms--search-regexp
1833 (if (equal "" regexp)
1834 (setq regexp forms--search-regexp))
1837 (let (the-line the-record here)
1838 (with-current-buffer forms--file-buffer
1841 (if (or (re-search-forward regexp nil t)
1842 (and (> here (point-min))
1844 (goto-char (point-min))
1845 (re-search-forward regexp here t))))
1847 (setq the-record (forms--get-record))
1848 (setq the-line (1+ (count-lines (point-min) (point))))
1849 (if (< (point) here)
1850 (message "Wrapped")))
1852 (error "Search failed: %s" regexp)))
1853 (setq forms--current-record the-line)
1854 (forms--show-record the-record))
1855 (re-search-forward regexp nil t)
1856 (setq forms--search-regexp regexp))
1858 (defun forms-search-backward (regexp)
1859 "Search backward for record containing REGEXP."
1861 (list (read-string (concat "Search backward for"
1862 (if forms--search-regexp
1864 forms--search-regexp
1867 (if (equal "" regexp)
1868 (setq regexp forms--search-regexp))
1871 (let (the-line the-record here)
1872 (with-current-buffer forms--file-buffer
1875 (if (or (re-search-backward regexp nil t)
1876 (and (< (point) (point-max))
1878 (goto-char (point-max))
1879 (re-search-backward regexp here t))))
1881 (setq the-record (forms--get-record))
1882 (setq the-line (1+ (count-lines (point-min) (point))))
1883 (if (> (point) here)
1884 (message "Wrapped")))
1886 (error "Search failed: %s" regexp)))
1887 (setq forms--current-record the-line)
1888 (forms--show-record the-record))
1889 (re-search-forward regexp nil t)
1890 (setq forms--search-regexp regexp))
1892 (defun forms-save-buffer (&optional args)
1893 "Forms mode replacement for save-buffer.
1894 It saves the data buffer instead of the forms buffer.
1895 Calls `forms-write-file-filter' before, and `forms-read-file-filter'
1896 after writing out the data."
1899 (let ((write-file-filter forms-write-file-filter)
1900 (read-file-filter forms-read-file-filter)
1901 (cur forms--current-record))
1902 (with-current-buffer forms--file-buffer
1903 (let ((inhibit-read-only t))
1904 ;; Write file hooks are run via write-file-functions.
1905 ;; (if write-file-filter
1907 ;; (run-hooks 'write-file-filter)))
1909 ;; If they have a write-file-filter, force the buffer to be
1910 ;; saved even if it doesn't seem to be changed. First, they
1911 ;; might have changed the write-file-filter; and second, if
1912 ;; save-buffer does nothing, write-file-filter won't get run,
1913 ;; and then read-file-filter will be mightily confused.
1914 (or (null write-file-filter)
1915 (set-buffer-modified-p t))
1917 (if read-file-filter
1919 (run-hooks 'read-file-filter)))
1920 (set-buffer-modified-p nil)))
1921 ;; Make sure we end up with the same record number as we started.
1922 ;; Since read-file-filter may perform arbitrary transformations on
1923 ;; the data buffer contents, save-excursion is not enough.
1924 (forms-jump-record cur))
1927 (defun forms--revert-buffer (&optional arg noconfirm)
1928 "Reverts current form to un-modified."
1931 (yes-or-no-p "Revert form to unmodified? "))
1933 (set-buffer-modified-p nil)
1934 (forms-jump-record forms--current-record))))
1936 (defun forms-next-field (arg)
1937 "Jump to ARG-th next field."
1944 (inhibit-point-motion-hooks t))
1948 (setq cnt (+ cnt arg)))
1951 (while (< i (length forms--markers))
1952 (if (or (null (setq there (aref forms--markers i)))
1955 (if (<= (setq cnt (1- cnt)) 0)
1961 (goto-char (aref forms--markers 0)))))
1963 (defun forms-prev-field (arg)
1964 "Jump to ARG-th previous field."
1967 (let ((i (length forms--markers))
1971 (inhibit-point-motion-hooks t))
1975 (setq cnt (+ cnt arg)))
1980 (if (or (null (setq there (aref forms--markers i)))
1983 (if (<= (setq cnt (1- cnt)) 0)
1986 (throw 'done t))))))
1988 (goto-char (aref forms--markers (1- (length forms--markers)))))))
1990 (defun forms-print ()
1991 "Send the records to the printer with 'print-buffer', one record per page."
1993 (let ((inhibit-read-only t)
1994 (save-record forms--current-record)
1995 (total-nb-records forms--total-records)
1998 (while (<= nb-record forms--total-records)
1999 (forms-jump-record nb-record)
2000 (setq record (buffer-string))
2001 (with-current-buffer (get-buffer-create "*forms-print*")
2002 (goto-char (buffer-end 1))
2004 (setq buffer-read-only nil)
2005 (if (< nb-record total-nb-records)
2007 (setq nb-record (1+ nb-record)))
2008 (with-current-buffer "*forms-print*"
2010 (set-buffer-modified-p nil)
2011 (kill-buffer (current-buffer)))
2012 (forms-jump-record save-record)))
2017 (defun forms-enumerate (the-fields)
2018 "Take a quoted list of symbols, and set their values to sequential numbers.
2019 The first symbol gets number 1, the second 2 and so on.
2020 It returns the highest number.
2022 Usage: (setq forms-number-of-fields
2024 '(field1 field2 field2 ...)))"
2026 (let ((the-index 0))
2028 (setq the-index (1+ the-index))
2029 (let ((el (car-safe the-fields)))
2030 (setq the-fields (cdr-safe the-fields))
2031 (set el the-index)))
2036 (defvar forms--debug nil
2037 "*Enables forms-mode debugging if not nil.")
2039 (defun forms--debug (&rest args)
2040 "Internal debugging routine."
2044 (let ((el (car-safe args)))
2045 (setq args (cdr-safe args))
2047 (setq ret (concat ret el))
2048 (setq ret (concat ret (prin1-to-string el) " = "))
2050 (let ((vel (eval el)))
2051 (setq ret (concat ret (prin1-to-string vel) "\n")))
2052 (setq ret (concat ret "<unbound>" "\n")))
2054 (setq ret (concat ret (prin1-to-string (symbol-function el))
2056 (with-current-buffer (get-buffer-create "*forms-mode debug*")
2057 (if (zerop (buffer-size))
2059 (goto-char (point-max))
2062 ;;; forms.el ends here