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