1995-10-30 17:35:01 +00:00
|
|
|
|
;;; forms.el --- Forms mode: edit a file as a form to fill in
|
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; Copyright (C) 1991, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1995-10-28 16:21:33 +00:00
|
|
|
|
;; Author: Johan Vromans <jvromans@squirrel.nl>
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-06-12 20:53:59 +00:00
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; Visit a file using a form.
|
|
|
|
|
;;
|
|
|
|
|
;; === Naming conventions
|
|
|
|
|
;;
|
|
|
|
|
;; The names of all variables and functions start with 'forms-'.
|
|
|
|
|
;; Names which start with 'forms--' are intended for internal use, and
|
|
|
|
|
;; should *NOT* be used from the outside.
|
|
|
|
|
;;
|
|
|
|
|
;; All variables are buffer-local, to enable multiple forms visits
|
|
|
|
|
;; simultaneously.
|
|
|
|
|
;; Variable `forms--mode-setup' is local to *ALL* buffers, for it
|
|
|
|
|
;; controls if forms-mode has been enabled in a buffer.
|
|
|
|
|
;;
|
|
|
|
|
;; === How it works ===
|
|
|
|
|
;;
|
|
|
|
|
;; Forms mode means visiting a data file which is supposed to consist
|
|
|
|
|
;; of records each containing a number of fields. The records are
|
|
|
|
|
;; separated by a newline, the fields are separated by a user-defined
|
|
|
|
|
;; field separator (default: TAB).
|
|
|
|
|
;; When shown, a record is transferred to an Emacs buffer and
|
|
|
|
|
;; presented using a user-defined form. One record is shown at a
|
|
|
|
|
;; time.
|
|
|
|
|
;;
|
|
|
|
|
;; Forms mode is a composite mode. It involves two files, and two
|
|
|
|
|
;; buffers.
|
|
|
|
|
;; The first file, called the control file, defines the name of the
|
|
|
|
|
;; data file and the forms format. This file buffer will be used to
|
|
|
|
|
;; present the forms.
|
|
|
|
|
;; The second file holds the actual data. The buffer of this file
|
|
|
|
|
;; will be buried, for it is never accessed directly.
|
|
|
|
|
;;
|
|
|
|
|
;; Forms mode is invoked using M-x forms-find-file control-file .
|
|
|
|
|
;; Alternatively `forms-find-file-other-window' can be used.
|
|
|
|
|
;;
|
|
|
|
|
;; You may also visit the control file, and switch to forms mode by hand
|
|
|
|
|
;; with M-x forms-mode .
|
|
|
|
|
;;
|
|
|
|
|
;; Automatic mode switching is supported if you specify
|
|
|
|
|
;; "-*- forms -*-" in the first line of the control file.
|
|
|
|
|
;;
|
|
|
|
|
;; The control file is visited, evaluated using `eval-current-buffer',
|
|
|
|
|
;; and should set at least the following variables:
|
|
|
|
|
;;
|
|
|
|
|
;; forms-file [string]
|
|
|
|
|
;; The name of the data file.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-number-of-fields [integer]
|
|
|
|
|
;; The number of fields in each record.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-format-list [list]
|
|
|
|
|
;; Formatting instructions.
|
|
|
|
|
;;
|
|
|
|
|
;; `forms-format-list' should be a list, each element containing
|
|
|
|
|
;;
|
|
|
|
|
;; - a string, e.g. "hello". The string is inserted in the forms
|
|
|
|
|
;; "as is".
|
|
|
|
|
;;
|
|
|
|
|
;; - an integer, denoting a field number.
|
|
|
|
|
;; The contents of this field are inserted at this point.
|
|
|
|
|
;; Fields are numbered starting with number one.
|
|
|
|
|
;;
|
|
|
|
|
;; - a function call, e.g. (insert "text").
|
|
|
|
|
;; This function call is dynamically evaluated and should return a
|
|
|
|
|
;; string. It should *NOT* have side-effects on the forms being
|
|
|
|
|
;; constructed. The current fields are available to the function
|
|
|
|
|
;; in the variable `forms-fields', they should *NOT* be modified.
|
|
|
|
|
;;
|
|
|
|
|
;; - a lisp symbol, that must evaluate to one of the above.
|
|
|
|
|
;;
|
|
|
|
|
;; Optional variables which may be set in the control file:
|
|
|
|
|
;;
|
|
|
|
|
;; forms-field-sep [string, default TAB]
|
|
|
|
|
;; The field separator used to separate the
|
|
|
|
|
;; fields in the data file. It may be a string.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-read-only [bool, default nil]
|
|
|
|
|
;; Non-nil means that the data file is visited
|
|
|
|
|
;; read-only (view mode) as opposed to edit mode.
|
|
|
|
|
;; If no write access to the data file is
|
|
|
|
|
;; possible, view mode is enforced.
|
|
|
|
|
;;
|
1996-03-01 21:13:01 +00:00
|
|
|
|
;; forms-check-number-of-fields [bool, default t]
|
|
|
|
|
;; If non-nil, a warning will be issued whenever
|
|
|
|
|
;; a record is found that does not have the number
|
|
|
|
|
;; of fields specified by `forms-number-of-fields'.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;;
|
|
|
|
|
;; forms-multi-line [string, default "^K"]
|
|
|
|
|
;; If non-null the records of the data file may
|
|
|
|
|
;; contain fields that can span multiple lines in
|
|
|
|
|
;; the form.
|
|
|
|
|
;; This variable denotes the separator character
|
|
|
|
|
;; to be used for this purpose. Upon display, all
|
|
|
|
|
;; occurrences of this character are translated
|
|
|
|
|
;; to newlines. Upon storage they are translated
|
|
|
|
|
;; back to the separator character.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-forms-scroll [bool, default nil]
|
|
|
|
|
;; Non-nil means: rebind locally the commands that
|
|
|
|
|
;; perform `scroll-up' or `scroll-down' to use
|
|
|
|
|
;; `forms-next-field' resp. `forms-prev-field'.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-forms-jump [bool, default nil]
|
|
|
|
|
;; Non-nil means: rebind locally the commands that
|
1996-03-01 21:13:01 +00:00
|
|
|
|
;;
|
|
|
|
|
;; forms-insert-after [bool, default nil]
|
|
|
|
|
;; Non-nil means: inserts of new records go after
|
|
|
|
|
;; current record, also initial position is at last
|
|
|
|
|
;; record.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;;
|
|
|
|
|
;; forms-read-file-filter [symbol, default nil]
|
|
|
|
|
;; If not nil: this should be the name of a
|
|
|
|
|
;; function that is called after the forms data file
|
|
|
|
|
;; has been read. It can be used to transform
|
|
|
|
|
;; the contents of the file into a format more suitable
|
|
|
|
|
;; for forms-mode processing.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-write-file-filter [symbol, default nil]
|
|
|
|
|
;; If not nil: this should be the name of a
|
|
|
|
|
;; function that is called before the forms data file
|
|
|
|
|
;; is written (saved) to disk. It can be used to undo
|
|
|
|
|
;; the effects of `forms-read-file-filter', if any.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-new-record-filter [symbol, default nil]
|
|
|
|
|
;; If not nil: this should be the name of a
|
|
|
|
|
;; function that is called when a new
|
|
|
|
|
;; record is created. It can be used to fill in
|
|
|
|
|
;; the new record with default fields, for example.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-modified-record-filter [symbol, default nil]
|
|
|
|
|
;; If not nil: this should be the name of a
|
|
|
|
|
;; function that is called when a record has
|
|
|
|
|
;; been modified. It is called after the fields
|
|
|
|
|
;; are parsed. It can be used to register
|
|
|
|
|
;; modification dates, for example.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-use-text-properties [bool, see text for default]
|
|
|
|
|
;; This variable controls if forms mode should use
|
|
|
|
|
;; text properties to protect the form text from being
|
|
|
|
|
;; modified (using text-property `read-only').
|
|
|
|
|
;; Also, the read-write fields are shown using a
|
|
|
|
|
;; distinct face, if possible.
|
|
|
|
|
;; As of emacs 19.29, the `intangible' text property
|
|
|
|
|
;; is used to prevent moving into read-only fields.
|
|
|
|
|
;; This variable defaults to t if running Emacs 19
|
|
|
|
|
;; with text properties.
|
|
|
|
|
;; The default face to show read-write fields is
|
|
|
|
|
;; copied from face `region'.
|
|
|
|
|
;;
|
|
|
|
|
;; forms-ro-face [symbol, default 'default]
|
|
|
|
|
;; This is the face that is used to show
|
|
|
|
|
;; read-only text on the screen.If used, this
|
|
|
|
|
;; variable should be set to a symbol that is a
|
|
|
|
|
;; valid face.
|
|
|
|
|
;; E.g.
|
|
|
|
|
;; (make-face 'my-face)
|
|
|
|
|
;; (setq forms-ro-face 'my-face)
|
|
|
|
|
;;
|
|
|
|
|
;; forms-rw-face [symbol, default 'region]
|
|
|
|
|
;; This is the face that is used to show
|
|
|
|
|
;; read-write text on the screen.
|
|
|
|
|
;;
|
|
|
|
|
;; After evaluating the control file, its buffer is cleared and used
|
|
|
|
|
;; for further processing.
|
|
|
|
|
;; The data file (as designated by `forms-file') is visited in a buffer
|
|
|
|
|
;; `forms--file-buffer' which will not normally be shown.
|
|
|
|
|
;; Great malfunctioning may be expected if this file/buffer is modified
|
|
|
|
|
;; outside of this package while it is being visited!
|
|
|
|
|
;;
|
|
|
|
|
;; Normal operation is to transfer one line (record) from the data file,
|
|
|
|
|
;; split it into fields (into `forms--the-record-list'), and display it
|
|
|
|
|
;; using the specs in `forms-format-list'.
|
|
|
|
|
;; A format routine `forms--format' is built upon startup to format
|
|
|
|
|
;; the records according to `forms-format-list'.
|
|
|
|
|
;;
|
|
|
|
|
;; When a form is changed the record is updated as soon as this form
|
|
|
|
|
;; is left. The contents of the form are parsed using information
|
|
|
|
|
;; obtained from `forms-format-list', and the fields which are
|
|
|
|
|
;; deduced from the form are modified. Fields not shown on the forms
|
|
|
|
|
;; retain their original values. The newly formed record then
|
|
|
|
|
;; replaces the contents of the old record in `forms--file-buffer'.
|
|
|
|
|
;; A parse routine `forms--parser' is built upon startup to parse
|
|
|
|
|
;; the records.
|
|
|
|
|
;;
|
|
|
|
|
;; Two exit functions exist: `forms-exit' and `forms-exit-no-save'.
|
|
|
|
|
;; `forms-exit' saves the data to the file, if modified.
|
|
|
|
|
;; `forms-exit-no-save` does not. However, if `forms-exit-no-save'
|
|
|
|
|
;; is executed and the file buffer has been modified, Emacs will ask
|
|
|
|
|
;; questions anyway.
|
|
|
|
|
;;
|
|
|
|
|
;; Other functions provided by forms mode are:
|
|
|
|
|
;;
|
|
|
|
|
;; paging (forward, backward) by record
|
|
|
|
|
;; jumping (first, last, random number)
|
|
|
|
|
;; searching
|
|
|
|
|
;; creating and deleting records
|
|
|
|
|
;; reverting the form (NOT the file buffer)
|
|
|
|
|
;; switching edit <-> view mode v.v.
|
|
|
|
|
;; jumping from field to field
|
|
|
|
|
;;
|
|
|
|
|
;; As an documented side-effect: jumping to the last record in the
|
|
|
|
|
;; file (using forms-last-record) will adjust forms--total-records if
|
|
|
|
|
;; needed.
|
|
|
|
|
;;
|
|
|
|
|
;; The forms buffer can be in on eof two modes: edit mode or view
|
|
|
|
|
;; mode. View mode is a read-only mode, you cannot modify the
|
|
|
|
|
;; contents of the buffer.
|
|
|
|
|
;;
|
|
|
|
|
;; Edit mode commands:
|
|
|
|
|
;;
|
|
|
|
|
;; TAB forms-next-field
|
|
|
|
|
;; \C-c TAB forms-next-field
|
|
|
|
|
;; \C-c < forms-first-record
|
|
|
|
|
;; \C-c > forms-last-record
|
|
|
|
|
;; \C-c ? describe-mode
|
|
|
|
|
;; \C-c \C-k forms-delete-record
|
|
|
|
|
;; \C-c \C-q forms-toggle-read-only
|
|
|
|
|
;; \C-c \C-o forms-insert-record
|
|
|
|
|
;; \C-c \C-l forms-jump-record
|
|
|
|
|
;; \C-c \C-n forms-next-record
|
|
|
|
|
;; \C-c \C-p forms-prev-record
|
|
|
|
|
;; \C-c \C-r forms-search-backward
|
|
|
|
|
;; \C-c \C-s forms-search-forward
|
|
|
|
|
;; \C-c \C-x forms-exit
|
|
|
|
|
;;
|
|
|
|
|
;; Read-only mode commands:
|
|
|
|
|
;;
|
|
|
|
|
;; SPC forms-next-record
|
|
|
|
|
;; DEL forms-prev-record
|
|
|
|
|
;; ? describe-mode
|
|
|
|
|
;; \C-q forms-toggle-read-only
|
|
|
|
|
;; l forms-jump-record
|
|
|
|
|
;; n forms-next-record
|
|
|
|
|
;; p forms-prev-record
|
|
|
|
|
;; r forms-search-backward
|
|
|
|
|
;; s forms-search-forward
|
|
|
|
|
;; x forms-exit
|
|
|
|
|
;;
|
|
|
|
|
;; Of course, it is also possible to use the \C-c prefix to obtain the
|
|
|
|
|
;; same command keys as in edit mode.
|
|
|
|
|
;;
|
|
|
|
|
;; The following bindings are available, independent of the mode:
|
|
|
|
|
;;
|
|
|
|
|
;; [next] forms-next-record
|
|
|
|
|
;; [prior] forms-prev-record
|
|
|
|
|
;; [begin] forms-first-record
|
|
|
|
|
;; [end] forms-last-record
|
|
|
|
|
;; [S-TAB] forms-prev-field
|
|
|
|
|
;; [backtab] forms-prev-field
|
|
|
|
|
;;
|
|
|
|
|
;; For convenience, TAB is always bound to `forms-next-field', so you
|
|
|
|
|
;; don't need the C-c prefix for this command.
|
|
|
|
|
;;
|
|
|
|
|
;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump')
|
|
|
|
|
;; the bindings of standard functions `scroll-up', `scroll-down',
|
|
|
|
|
;; `beginning-of-buffer' and `end-of-buffer' can be locally replaced with
|
|
|
|
|
;; forms mode functions next/prev record and first/last
|
|
|
|
|
;; record.
|
|
|
|
|
;;
|
|
|
|
|
;; `local-write-file hook' is defined to save the actual data file
|
|
|
|
|
;; instead of the buffer data, `revert-file-hook' is defined to
|
|
|
|
|
;; revert a forms to original.
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defgroup forms nil
|
|
|
|
|
"Edit a file as a form to fill in."
|
|
|
|
|
:group 'data)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;; Global variables and constants:
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-06-12 20:53:59 +00:00
|
|
|
|
(provide 'forms) ;;; official
|
|
|
|
|
(provide 'forms-mode) ;;; for compatibility
|
|
|
|
|
|
1999-01-15 16:19:53 +00:00
|
|
|
|
(defconst forms-version (substring "$Revision: 2.36 $" 11 -2)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
"The version number of forms-mode (as string). The complete RCS id is:
|
|
|
|
|
|
1999-01-15 16:19:53 +00:00
|
|
|
|
$Id: forms.el,v 2.36 1998/10/06 23:19:46 kwzh Exp rms $")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-mode-hooks nil
|
|
|
|
|
"Hook functions to be run upon entering Forms mode."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'function)
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;; Mandatory variables - must be set by evaluating the control file.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms-file nil
|
1991-07-01 18:06:13 +00:00
|
|
|
|
"Name of the file holding the data.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms-format-list nil
|
1991-07-01 18:06:13 +00:00
|
|
|
|
"List of formatting specifications.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms-number-of-fields nil
|
|
|
|
|
"Number of fields per record.")
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;; Optional variables with default values.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-check-number-of-fields t
|
|
|
|
|
"*If non-nil, warn about records with wrong number of fields."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'boolean)
|
1995-08-14 06:45:37 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defvar forms-field-sep "\t"
|
1993-06-12 20:53:59 +00:00
|
|
|
|
"Field separator character (default TAB).")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-27 06:47:51 +00:00
|
|
|
|
(defvar forms-read-only nil
|
|
|
|
|
"Non-nil means: visit the file in view (read-only) mode.
|
1997-08-27 23:10:59 +00:00
|
|
|
|
This is set automatically if the file permissions don't let you write it.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defvar forms-multi-line "\C-k" "\
|
|
|
|
|
If not nil: use this character to separate multi-line fields (default C-k).")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-forms-scroll nil
|
1993-06-19 00:15:32 +00:00
|
|
|
|
"*Non-nil means replace scroll-up/down commands in Forms mode.
|
1997-08-19 04:55:58 +00:00
|
|
|
|
The replacement commands performs forms-next/prev-record."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'boolean)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-forms-jump nil
|
1993-06-19 00:15:32 +00:00
|
|
|
|
"*Non-nil means redefine beginning/end-of-buffer in Forms mode.
|
1997-08-19 04:55:58 +00:00
|
|
|
|
The replacement commands performs forms-first/last-record."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'boolean)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(defvar forms-read-file-filter nil
|
|
|
|
|
"The name of a function that is called after reading the data file.
|
|
|
|
|
This can be used to change the contents of the file to something more
|
|
|
|
|
suitable for forms processing.")
|
|
|
|
|
|
|
|
|
|
(defvar forms-write-file-filter nil
|
|
|
|
|
"The name of a function that is called before writing the data file.
|
1997-08-19 04:55:58 +00:00
|
|
|
|
This can be used to undo the effects of `form-read-file-hook'.")
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms-new-record-filter nil
|
|
|
|
|
"The name of a function that is called when a new record is created.")
|
|
|
|
|
|
|
|
|
|
(defvar forms-modified-record-filter nil
|
|
|
|
|
"The name of a function that is called when a record has been modified.")
|
|
|
|
|
|
|
|
|
|
(defvar forms-fields nil
|
|
|
|
|
"List with fields of the current forms. First field has number 1.
|
|
|
|
|
This variable is for use by the filter routines only.
|
|
|
|
|
The contents may NOT be modified.")
|
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-use-text-properties t
|
|
|
|
|
"*Non-nil means: use text properties.
|
|
|
|
|
Defaults to t if this Emacs is capable of handling text properties."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'boolean)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1997-08-19 04:55:58 +00:00
|
|
|
|
(defcustom forms-insert-after nil
|
1996-03-01 21:13:01 +00:00
|
|
|
|
"*Non-nil means: inserts of new records go after current record.
|
1997-08-19 04:55:58 +00:00
|
|
|
|
Also, initial position is at last record."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'boolean)
|
|
|
|
|
|
|
|
|
|
(defcustom forms-ro-face 'default
|
|
|
|
|
"The face (a symbol) that is used to display read-only text on the screen."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'face)
|
|
|
|
|
|
|
|
|
|
(defcustom forms-rw-face 'region
|
|
|
|
|
"The face (a symbol) that is used to display read-write text on the screen."
|
|
|
|
|
:group 'forms
|
|
|
|
|
:type 'face)
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;; Internal variables.
|
|
|
|
|
|
|
|
|
|
(defvar forms--file-buffer nil
|
|
|
|
|
"Buffer which holds the file data")
|
|
|
|
|
|
|
|
|
|
(defvar forms--total-records 0
|
|
|
|
|
"Total number of records in the data file.")
|
|
|
|
|
|
|
|
|
|
(defvar forms--current-record 0
|
|
|
|
|
"Number of the record currently on the screen.")
|
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(defvar forms-mode-map nil
|
1991-05-20 20:35:19 +00:00
|
|
|
|
"Keymap for form buffer.")
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(defvar forms-mode-ro-map nil
|
|
|
|
|
"Keymap for form buffer in view mode.")
|
|
|
|
|
(defvar forms-mode-edit-map nil
|
|
|
|
|
"Keymap for form buffer in edit mode.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms--markers nil
|
|
|
|
|
"Field markers in the screen.")
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms--dyntexts nil
|
|
|
|
|
"Dynamic texts (resulting from function calls) on the screen.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms--the-record-list nil
|
|
|
|
|
"List of strings of the current record, as parsed from the file.")
|
|
|
|
|
|
|
|
|
|
(defvar forms--search-regexp nil
|
1995-01-05 11:54:18 +00:00
|
|
|
|
"Last regexp used by forms-search functions.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms--format nil
|
|
|
|
|
"Formatting routine.")
|
|
|
|
|
|
|
|
|
|
(defvar forms--parser nil
|
|
|
|
|
"Forms parser routine.")
|
|
|
|
|
|
|
|
|
|
(defvar forms--mode-setup nil
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"To keep track of forms-mode being set-up.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(make-variable-buffer-local 'forms--mode-setup)
|
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(defvar forms--dynamic-text nil
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Array that holds dynamic texts to insert between fields.")
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms--elements nil
|
|
|
|
|
"Array with the order in which the fields are displayed.")
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms--ro-face nil
|
|
|
|
|
"Face used to represent read-only data on the screen.")
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms--rw-face nil
|
|
|
|
|
"Face used to represent read-write data on the screen.")
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-06-30 22:37:30 +00:00
|
|
|
|
;;;###autoload
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defun forms-mode (&optional primary)
|
|
|
|
|
"Major mode to visit files in a field-structured manner using a form.
|
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
Commands: Equivalent keys in read-only mode:
|
|
|
|
|
TAB forms-next-field TAB
|
1998-07-17 14:01:15 +00:00
|
|
|
|
C-c TAB forms-next-field
|
|
|
|
|
C-c < forms-first-record <
|
|
|
|
|
C-c > forms-last-record >
|
|
|
|
|
C-c ? describe-mode ?
|
|
|
|
|
C-c C-k forms-delete-record
|
|
|
|
|
C-c C-q forms-toggle-read-only q
|
|
|
|
|
C-c C-o forms-insert-record
|
|
|
|
|
C-c C-l forms-jump-record l
|
|
|
|
|
C-c C-n forms-next-record n
|
|
|
|
|
C-c C-p forms-prev-record p
|
|
|
|
|
C-c C-r forms-search-reverse r
|
|
|
|
|
C-c C-s forms-search-forward s
|
|
|
|
|
C-c C-x forms-exit x
|
1993-09-27 02:19:46 +00:00
|
|
|
|
"
|
|
|
|
|
(interactive)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; This is not a simple major mode, as usual. Therefore, forms-mode
|
|
|
|
|
;; takes an optional argument `primary' which is used for the
|
|
|
|
|
;; initial set-up. Normal use would leave `primary' to nil.
|
|
|
|
|
;; A global buffer-local variable `forms--mode-setup' has the same
|
|
|
|
|
;; effect but makes it possible to auto-invoke forms-mode using
|
|
|
|
|
;; `find-file'.
|
|
|
|
|
;; Note: although it seems logical to have `make-local-variable'
|
|
|
|
|
;; executed where the variable is first needed, I have deliberately
|
|
|
|
|
;; placed all calls in this function.
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; Primary set-up: evaluate buffer and check if the mandatory
|
|
|
|
|
;; variables have been set.
|
|
|
|
|
(if (or primary (not forms--mode-setup))
|
|
|
|
|
(progn
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: setting up...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(kill-all-local-variables)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Make mandatory variables.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(make-local-variable 'forms-file)
|
|
|
|
|
(make-local-variable 'forms-number-of-fields)
|
|
|
|
|
(make-local-variable 'forms-format-list)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Make optional variables.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(make-local-variable 'forms-field-sep)
|
|
|
|
|
(make-local-variable 'forms-read-only)
|
|
|
|
|
(make-local-variable 'forms-multi-line)
|
|
|
|
|
(make-local-variable 'forms-forms-scroll)
|
|
|
|
|
(make-local-variable 'forms-forms-jump)
|
1996-03-01 21:13:01 +00:00
|
|
|
|
(make-local-variable 'forms-insert-after)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(make-local-variable 'forms-use-text-properties)
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
|
|
|
|
;; Filter functions.
|
|
|
|
|
(make-local-variable 'forms-read-file-filter)
|
|
|
|
|
(make-local-variable 'forms-write-file-filter)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(make-local-variable 'forms-new-record-filter)
|
|
|
|
|
(make-local-variable 'forms-modified-record-filter)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Make sure no filters exist.
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(setq forms-read-file-filter nil)
|
|
|
|
|
(setq forms-write-file-filter nil)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(setq forms-new-record-filter nil)
|
|
|
|
|
(setq forms-modified-record-filter nil)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; If running Emacs 19 under X, setup faces to show read-only and
|
|
|
|
|
;; read-write fields.
|
|
|
|
|
(if (fboundp 'make-face)
|
|
|
|
|
(progn
|
|
|
|
|
(make-local-variable 'forms-ro-face)
|
|
|
|
|
(make-local-variable 'forms-rw-face)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
;; eval the buffer, should set variables
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: processing control file...")
|
1994-06-13 12:07:44 +00:00
|
|
|
|
;; If enable-local-eval is not set to t the user is asked first.
|
|
|
|
|
(if (or (eq enable-local-eval t)
|
|
|
|
|
(yes-or-no-p
|
|
|
|
|
(concat "Evaluate lisp code in buffer "
|
|
|
|
|
(buffer-name) " to display forms ")))
|
|
|
|
|
(eval-current-buffer)
|
|
|
|
|
(error "`enable-local-eval' inhibits buffer evaluation"))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
;; Check if the mandatory variables make sense.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(or forms-file
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-file' has not been set")))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
|
|
|
|
;; Check forms-field-sep first, since it can be needed to
|
|
|
|
|
;; construct a default format list.
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(or (stringp forms-field-sep)
|
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-field-sep' is not a string")))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
|
|
|
|
(if forms-number-of-fields
|
|
|
|
|
(or (and (numberp forms-number-of-fields)
|
|
|
|
|
(> forms-number-of-fields 0))
|
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-number-of-fields' must be a number > 0")))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(or (null forms-format-list)
|
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-number-of-fields' has not been set"))))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
|
|
|
|
(or forms-format-list
|
|
|
|
|
(forms--intuit-from-file))
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if forms-multi-line
|
|
|
|
|
(if (and (stringp forms-multi-line)
|
|
|
|
|
(eq (length forms-multi-line) 1))
|
|
|
|
|
(if (string= forms-multi-line forms-field-sep)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-multi-line' is equal to 'forms-field-sep'")))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-multi-line' must be nil or a one-character string"))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(or (fboundp 'set-text-properties)
|
|
|
|
|
(setq forms-use-text-properties nil))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Validate and process forms-format-list.
|
|
|
|
|
;;(message "forms: pre-processing format list...")
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(make-local-variable 'forms--elements)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms--process-format-list)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Build the formatter and parser.
|
|
|
|
|
;;(message "forms: building formatter...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(make-local-variable 'forms--format)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(make-local-variable 'forms--markers)
|
|
|
|
|
(make-local-variable 'forms--dyntexts)
|
|
|
|
|
;;(message "forms: building parser...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms--make-format)
|
|
|
|
|
(make-local-variable 'forms--parser)
|
|
|
|
|
(forms--make-parser)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: building parser... done.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Check if record filters are defined.
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(if (and forms-new-record-filter
|
|
|
|
|
(not (fboundp forms-new-record-filter)))
|
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-new-record-filter' is not a function")))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
|
|
|
|
|
(if (and forms-modified-record-filter
|
|
|
|
|
(not (fboundp forms-modified-record-filter)))
|
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-modified-record-filter' is not a function")))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; The filters acces the contents of the forms using `forms-fields'.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(make-local-variable 'forms-fields)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Dynamic text support.
|
|
|
|
|
(make-local-variable 'forms--dynamic-text)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1998-10-06 23:22:48 +00:00
|
|
|
|
;; Prevent accidental overwrite of the control file and auto-save.
|
1994-05-07 01:52:42 +00:00
|
|
|
|
(set-visited-file-name nil)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Prepare this buffer for further processing.
|
|
|
|
|
(setq buffer-read-only nil)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
|
|
|
|
|
;;(message "forms: setting up... done.")
|
|
|
|
|
))
|
|
|
|
|
|
1994-06-13 12:07:44 +00:00
|
|
|
|
;; initialization done
|
|
|
|
|
(setq forms--mode-setup t)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Copy desired faces to the actual variables used by the forms formatter.
|
|
|
|
|
(if (fboundp 'make-face)
|
|
|
|
|
(progn
|
|
|
|
|
(make-local-variable 'forms--ro-face)
|
|
|
|
|
(make-local-variable 'forms--rw-face)
|
|
|
|
|
(if forms-read-only
|
|
|
|
|
(progn
|
|
|
|
|
(setq forms--ro-face forms-ro-face)
|
|
|
|
|
(setq forms--rw-face forms-ro-face))
|
|
|
|
|
(setq forms--ro-face forms-ro-face)
|
|
|
|
|
(setq forms--rw-face forms-rw-face))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-06-30 22:37:30 +00:00
|
|
|
|
;; Make more local variables.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(make-local-variable 'forms--file-buffer)
|
|
|
|
|
(make-local-variable 'forms--total-records)
|
|
|
|
|
(make-local-variable 'forms--current-record)
|
|
|
|
|
(make-local-variable 'forms--the-record-list)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(make-local-variable 'forms--search-regexp)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
; The keymaps are global, so multiple forms mode buffers can share them.
|
|
|
|
|
;(make-local-variable 'forms-mode-map)
|
|
|
|
|
;(make-local-variable 'forms-mode-ro-map)
|
|
|
|
|
;(make-local-variable 'forms-mode-edit-map)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if forms-mode-map ; already defined
|
|
|
|
|
nil
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: building keymap...")
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(forms--mode-commands)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: building keymap... done.")
|
|
|
|
|
)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1994-03-28 23:13:07 +00:00
|
|
|
|
;; set the major mode indicator
|
|
|
|
|
(setq major-mode 'forms-mode)
|
|
|
|
|
(setq mode-name "Forms")
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; find the data file
|
|
|
|
|
(setq forms--file-buffer (find-file-noselect forms-file))
|
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
;; Pre-transform.
|
|
|
|
|
(let ((read-file-filter forms-read-file-filter)
|
|
|
|
|
(write-file-filter forms-write-file-filter))
|
|
|
|
|
(if read-file-filter
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(file-modified (buffer-modified-p)))
|
|
|
|
|
(run-hooks 'read-file-filter)
|
|
|
|
|
(if (not file-modified) (set-buffer-modified-p nil)))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(if write-file-filter
|
|
|
|
|
(progn
|
|
|
|
|
(make-variable-buffer-local 'local-write-file-hooks)
|
|
|
|
|
(setq local-write-file-hooks (list write-file-filter)))))
|
|
|
|
|
(if write-file-filter
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(make-variable-buffer-local 'local-write-file-hooks)
|
1995-07-08 13:16:54 +00:00
|
|
|
|
(setq local-write-file-hooks (list write-file-filter))))))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; count the number of records, and set see if it may be modified
|
|
|
|
|
(let (ro)
|
|
|
|
|
(setq forms--total-records
|
|
|
|
|
(save-excursion
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(prog1
|
|
|
|
|
(progn
|
|
|
|
|
;;(message "forms: counting records...")
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(bury-buffer (current-buffer))
|
|
|
|
|
(setq ro buffer-read-only)
|
|
|
|
|
(count-lines (point-min) (point-max)))
|
|
|
|
|
;;(message "forms: counting records... done.")
|
|
|
|
|
)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if ro
|
|
|
|
|
(setq forms-read-only t)))
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: proceeding setup...")
|
1993-10-21 00:43:51 +00:00
|
|
|
|
|
|
|
|
|
;; Since we aren't really implementing a minor mode, we hack the modeline
|
|
|
|
|
;; directly to get the text " View " into forms-read-only form buffers. For
|
|
|
|
|
;; that reason, this variable must be buffer only.
|
|
|
|
|
(make-local-variable 'minor-mode-alist)
|
|
|
|
|
(setq minor-mode-alist (list (list 'forms-read-only " View")))
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: proceeding setup (keymaps)...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms--set-keymaps)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: proceeding setup (commands)...")
|
1993-06-19 00:08:24 +00:00
|
|
|
|
(forms--change-commands)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: proceeding setup (buffer)...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(if (= forms--total-records 0)
|
|
|
|
|
;;(message "forms: proceeding setup (new file)...")
|
|
|
|
|
(progn
|
|
|
|
|
(insert
|
|
|
|
|
"GNU Emacs Forms Mode version " forms-version "\n\n"
|
|
|
|
|
(if (file-exists-p forms-file)
|
1996-01-25 06:16:34 +00:00
|
|
|
|
(concat "No records available in file `" forms-file "'\n\n")
|
|
|
|
|
(format "Creating new file `%s'\nwith %d field%s per record\n\n"
|
1994-07-26 19:47:39 +00:00
|
|
|
|
forms-file forms-number-of-fields
|
|
|
|
|
(if (= 1 forms-number-of-fields) "" "s")))
|
|
|
|
|
"Use " (substitute-command-keys "\\[forms-insert-record]")
|
|
|
|
|
" to create new records.\n")
|
|
|
|
|
(setq forms--current-record 1)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil))
|
|
|
|
|
|
|
|
|
|
;; setup the first (or current) record to show
|
|
|
|
|
(if (< forms--current-record 1)
|
|
|
|
|
(setq forms--current-record 1))
|
|
|
|
|
(forms-jump-record forms--current-record)
|
|
|
|
|
)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1996-03-01 21:13:01 +00:00
|
|
|
|
(if forms-insert-after
|
|
|
|
|
(forms-last-record)
|
|
|
|
|
(forms-first-record))
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; user customising
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: proceeding setup (user hooks)...")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(run-hooks 'forms-mode-hooks)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;(message "forms: setting up... done.")
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
;; be helpful
|
|
|
|
|
(forms--help)
|
1994-06-13 12:07:44 +00:00
|
|
|
|
)
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defun forms--process-format-list ()
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Validate `forms-format-list' and set some global variables.
|
|
|
|
|
;; Symbols in the list are evaluated, and consecutive strings are
|
|
|
|
|
;; concatenated.
|
|
|
|
|
;; Array `forms--elements' is constructed that contains the order
|
|
|
|
|
;; of the fields on the display. This array is used by
|
|
|
|
|
;; `forms--parser-using-text-properties' to extract the fields data
|
|
|
|
|
;; from the form on the screen.
|
1996-01-04 23:38:16 +00:00
|
|
|
|
;; Upon completion, `forms-format-list' is guaranteed correct, so
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; `forms--make-format' and `forms--make-parser' do not need to perform
|
|
|
|
|
;; any checks.
|
|
|
|
|
|
|
|
|
|
;; Verify that `forms-format-list' is not nil.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(or forms-format-list
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-format-list' has not been set")))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; It must be a list.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(or (listp forms-format-list)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms control file error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"`forms-format-list' is not a list")))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Assume every field is painted once.
|
|
|
|
|
;; `forms--elements' will grow if needed.
|
|
|
|
|
(setq forms--elements (make-vector forms-number-of-fields nil))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(let ((the-list forms-format-list) ; the list of format elements
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(this-item 0) ; element in list
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(prev-item nil)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(field-num 0)) ; highest field number
|
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(setq forms-format-list nil) ; gonna rebuild
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(while the-list
|
|
|
|
|
|
|
|
|
|
(let ((el (car-safe the-list))
|
|
|
|
|
(rem (cdr-safe the-list)))
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; If it is a symbol, eval it first.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(if (and (symbolp el)
|
|
|
|
|
(boundp el))
|
|
|
|
|
(setq el (eval el)))
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(cond
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Try string ...
|
|
|
|
|
((stringp el)
|
|
|
|
|
(if (stringp prev-item) ; try to concatenate strings
|
|
|
|
|
(setq prev-item (concat prev-item el))
|
|
|
|
|
(if prev-item
|
|
|
|
|
(setq forms-format-list
|
|
|
|
|
(append forms-format-list (list prev-item) nil)))
|
|
|
|
|
(setq prev-item el)))
|
|
|
|
|
|
|
|
|
|
;; Try numeric ...
|
1991-07-01 18:06:13 +00:00
|
|
|
|
((numberp el)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Validate range.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (or (<= el 0)
|
|
|
|
|
(> el forms-number-of-fields))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms format error: "
|
|
|
|
|
"field number %d out of range 1..%d")
|
|
|
|
|
el forms-number-of-fields))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Store forms order.
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(if (>= field-num (length forms--elements))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(setq forms--elements (vconcat forms--elements (1- el)))
|
|
|
|
|
(aset forms--elements field-num (1- el)))
|
|
|
|
|
(setq field-num (1+ field-num))
|
|
|
|
|
|
|
|
|
|
(if prev-item
|
|
|
|
|
(setq forms-format-list
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(append forms-format-list (list prev-item) nil)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(setq prev-item el))
|
|
|
|
|
|
|
|
|
|
;; Try function ...
|
1991-07-01 18:06:13 +00:00
|
|
|
|
((listp el)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Validate.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(or (fboundp (car-safe el))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms format error: "
|
1997-06-11 21:07:22 +00:00
|
|
|
|
"%S is not a function")
|
1996-01-29 23:15:25 +00:00
|
|
|
|
(car-safe el)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Shift.
|
|
|
|
|
(if prev-item
|
|
|
|
|
(setq forms-format-list
|
|
|
|
|
(append forms-format-list (list prev-item) nil)))
|
|
|
|
|
(setq prev-item el))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; else
|
|
|
|
|
(t
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(error (concat "Forms format error: "
|
1996-01-29 23:15:25 +00:00
|
|
|
|
"invalid element %S")
|
|
|
|
|
el)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Advance to next element of the list.
|
|
|
|
|
(setq the-list rem)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Append last item.
|
|
|
|
|
(if prev-item
|
|
|
|
|
(progn
|
|
|
|
|
(setq forms-format-list
|
|
|
|
|
(append forms-format-list (list prev-item) nil))
|
|
|
|
|
;; Append a newline if the last item is a field.
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; This prevents parsing problems.
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Also it makes it possible to insert an empty last field.
|
|
|
|
|
(if (numberp prev-item)
|
|
|
|
|
(setq forms-format-list
|
|
|
|
|
(append forms-format-list (list "\n") nil))))))
|
|
|
|
|
|
|
|
|
|
(forms--debug 'forms-format-list
|
|
|
|
|
'forms--elements))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Special treatment for read-only segments.
|
|
|
|
|
;;
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; If text is inserted between two read-only segments, there seems to
|
|
|
|
|
;; be no way to give the newly inserted text the RW face.
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; To solve this, read-only segments get the `insert-in-front-hooks'
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; property set with a function that temporarily switches the
|
|
|
|
|
;; properties of the first character of the segment to the RW face, so
|
|
|
|
|
;; the new text gets the right face. The `post-command-hook' is
|
|
|
|
|
;; used to restore the original properties.
|
1993-09-15 05:25:16 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms--iif-start nil
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Record start of modification command.")
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(defvar forms--iif-properties nil
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Original properties of the character being overridden.")
|
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(defun forms--iif-hook (begin end)
|
|
|
|
|
"`insert-in-front-hooks' function for read-only segments."
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Note start location. By making it a marker that points one
|
|
|
|
|
;; character beyond the actual location, it is guaranteed to move
|
|
|
|
|
;; correctly if text is inserted.
|
|
|
|
|
(or forms--iif-start
|
|
|
|
|
(setq forms--iif-start (copy-marker (1+ (point)))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Check if there is special treatment required.
|
|
|
|
|
(if (or (<= forms--iif-start 2)
|
|
|
|
|
(get-text-property (- forms--iif-start 2)
|
|
|
|
|
'read-only))
|
|
|
|
|
(progn
|
|
|
|
|
;; Fetch current properties.
|
|
|
|
|
(setq forms--iif-properties
|
|
|
|
|
(text-properties-at (1- forms--iif-start)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Replace them.
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(set-text-properties
|
|
|
|
|
(1- forms--iif-start) forms--iif-start
|
|
|
|
|
(list 'face forms--rw-face 'front-sticky '(face))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Enable `post-command-hook' to restore the properties.
|
|
|
|
|
(setq post-command-hook
|
|
|
|
|
(append (list 'forms--iif-post-command-hook) post-command-hook)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; No action needed. Clear marker.
|
|
|
|
|
(setq forms--iif-start nil)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(defun forms--iif-post-command-hook ()
|
|
|
|
|
"`post-command-hook' function for read-only segments."
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Disable `post-command-hook'.
|
|
|
|
|
(setq post-command-hook
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(delq 'forms--iif-hook-post-command-hook post-command-hook))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Restore properties.
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(if forms--iif-start
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(set-text-properties
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(1- forms--iif-start) forms--iif-start
|
|
|
|
|
forms--iif-properties)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; Cleanup.
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(setq forms--iif-start nil))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
(defvar forms--marker)
|
|
|
|
|
(defvar forms--dyntext)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--make-format ()
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Generate `forms--format' using the information in `forms-format-list'."
|
|
|
|
|
|
|
|
|
|
;; The real work is done using a mapcar of `forms--make-format-elt' on
|
|
|
|
|
;; `forms-format-list'.
|
|
|
|
|
;; This function sets up the necessary environment, and decides
|
|
|
|
|
;; which function to mapcar.
|
|
|
|
|
|
|
|
|
|
(let ((forms--marker 0)
|
|
|
|
|
(forms--dyntext 0))
|
|
|
|
|
(setq
|
|
|
|
|
forms--format
|
|
|
|
|
(if forms-use-text-properties
|
|
|
|
|
(` (lambda (arg)
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(,@ (apply 'append
|
|
|
|
|
(mapcar 'forms--make-format-elt-using-text-properties
|
1993-09-15 05:25:16 +00:00
|
|
|
|
forms-format-list)))
|
|
|
|
|
;; Prevent insertion before the first text.
|
|
|
|
|
(,@ (if (numberp (car forms-format-list))
|
|
|
|
|
nil
|
|
|
|
|
'((add-text-properties (point-min) (1+ (point-min))
|
1995-04-25 17:44:28 +00:00
|
|
|
|
'(front-sticky (read-only intangible))))))
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Prevent insertion after the last text.
|
|
|
|
|
(remove-text-properties (1- (point)) (point)
|
|
|
|
|
'(rear-nonsticky)))
|
|
|
|
|
(setq forms--iif-start nil)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(` (lambda (arg)
|
|
|
|
|
(,@ (apply 'append
|
|
|
|
|
(mapcar 'forms--make-format-elt forms-format-list)))))))
|
|
|
|
|
|
|
|
|
|
;; We have tallied the number of markers and dynamic texts,
|
|
|
|
|
;; so we can allocate the arrays now.
|
|
|
|
|
(setq forms--markers (make-vector forms--marker nil))
|
|
|
|
|
(setq forms--dyntexts (make-vector forms--dyntext nil)))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(forms--debug 'forms--format))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defun forms--make-format-elt-using-text-properties (el)
|
|
|
|
|
"Helper routine to generate format function."
|
|
|
|
|
|
|
|
|
|
;; The format routine `forms--format' will look like
|
|
|
|
|
;;
|
|
|
|
|
;; ;; preamble
|
|
|
|
|
;; (lambda (arg)
|
|
|
|
|
;; (let ((inhibit-read-only t))
|
|
|
|
|
;;
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; ;; A string, e.g. "text: ".
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; (set-text-properties
|
|
|
|
|
;; (point)
|
|
|
|
|
;; (progn (insert "text: ") (point))
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; (list 'face forms--ro-face
|
|
|
|
|
;; 'read-only 1
|
|
|
|
|
;; 'insert-in-front-hooks 'forms--iif-hook
|
|
|
|
|
;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; ;; A field, e.g. 6.
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; (let ((here (point)))
|
|
|
|
|
;; (aset forms--markers 0 (point-marker))
|
|
|
|
|
;; (insert (elt arg 5))
|
|
|
|
|
;; (or (= (point) here)
|
|
|
|
|
;; (set-text-properties
|
|
|
|
|
;; here (point)
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; (list 'face forms--rw-face
|
|
|
|
|
;; 'front-sticky '(face))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; ;; Another string, e.g. "\nmore text: ".
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; (set-text-properties
|
|
|
|
|
;; (point)
|
|
|
|
|
;; (progn (insert "\nmore text: ") (point))
|
|
|
|
|
;; (list 'face forms--ro-face
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; 'read-only 2
|
|
|
|
|
;; 'insert-in-front-hooks 'forms--iif-hook
|
|
|
|
|
;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; ;; A function, e.g. (tocol 40).
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; (set-text-properties
|
|
|
|
|
;; (point)
|
|
|
|
|
;; (progn
|
|
|
|
|
;; (insert (aset forms--dyntexts 0 (tocol 40)))
|
|
|
|
|
;; (point))
|
|
|
|
|
;; (list 'face forms--ro-face
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; 'read-only 2
|
|
|
|
|
;; 'insert-in-front-hooks 'forms--iif-hook
|
|
|
|
|
;; 'rear-nonsticky '(read-only face insert-in-front-hooks)))
|
|
|
|
|
;;
|
|
|
|
|
;; ;; Prevent insertion before the first text.
|
|
|
|
|
;; (add-text-properties (point-min) (1+ (point-min))
|
|
|
|
|
;; '(front-sticky (read-only))))))
|
|
|
|
|
;; ;; Prevent insertion after the last text.
|
|
|
|
|
;; (remove-text-properties (1- (point)) (point)
|
|
|
|
|
;; '(rear-nonsticky)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;
|
|
|
|
|
;; ;; wrap up
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; (setq forms--iif-start nil)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; ))
|
|
|
|
|
|
|
|
|
|
(cond
|
|
|
|
|
((stringp el)
|
|
|
|
|
|
|
|
|
|
(` ((set-text-properties
|
|
|
|
|
(point) ; start at point
|
|
|
|
|
(progn ; until after insertion
|
|
|
|
|
(insert (, el))
|
|
|
|
|
(point))
|
|
|
|
|
(list 'face forms--ro-face ; read-only appearance
|
1993-09-15 05:25:16 +00:00
|
|
|
|
'read-only (,@ (list (1+ forms--marker)))
|
1995-04-25 17:44:28 +00:00
|
|
|
|
'intangible t
|
1993-09-15 05:25:16 +00:00
|
|
|
|
'insert-in-front-hooks '(forms--iif-hook)
|
1995-04-25 17:44:28 +00:00
|
|
|
|
'rear-nonsticky '(face read-only insert-in-front-hooks
|
|
|
|
|
intangible))))))
|
1993-09-15 05:25:16 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
((numberp el)
|
|
|
|
|
(` ((let ((here (point)))
|
|
|
|
|
(aset forms--markers
|
|
|
|
|
(, (prog1 forms--marker
|
|
|
|
|
(setq forms--marker (1+ forms--marker))))
|
|
|
|
|
(point-marker))
|
|
|
|
|
(insert (elt arg (, (1- el))))
|
|
|
|
|
(or (= (point) here)
|
|
|
|
|
(set-text-properties
|
|
|
|
|
here (point)
|
1993-09-15 05:25:16 +00:00
|
|
|
|
(list 'face forms--rw-face
|
|
|
|
|
'front-sticky '(face))))))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
((listp el)
|
|
|
|
|
(` ((set-text-properties
|
|
|
|
|
(point)
|
|
|
|
|
(progn
|
|
|
|
|
(insert (aset forms--dyntexts
|
|
|
|
|
(, (prog1 forms--dyntext
|
|
|
|
|
(setq forms--dyntext (1+ forms--dyntext))))
|
|
|
|
|
(, el)))
|
|
|
|
|
(point))
|
|
|
|
|
(list 'face forms--ro-face
|
1993-09-15 05:25:16 +00:00
|
|
|
|
'read-only (,@ (list (1+ forms--marker)))
|
1995-04-25 17:44:28 +00:00
|
|
|
|
'intangible t
|
1993-09-15 05:25:16 +00:00
|
|
|
|
'insert-in-front-hooks '(forms--iif-hook)
|
1995-04-25 17:44:28 +00:00
|
|
|
|
'rear-nonsticky '(read-only face insert-in-front-hooks
|
|
|
|
|
intangible))))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; end of cond
|
|
|
|
|
))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--make-format-elt (el)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Helper routine to generate format function."
|
|
|
|
|
|
|
|
|
|
;; If we're not using text properties, the format routine
|
|
|
|
|
;; `forms--format' will look like
|
|
|
|
|
;;
|
|
|
|
|
;; (lambda (arg)
|
|
|
|
|
;; ;; a string, e.g. "text: "
|
|
|
|
|
;; (insert "text: ")
|
|
|
|
|
;; ;; a field, e.g. 6
|
|
|
|
|
;; (aset forms--markers 0 (point-marker))
|
|
|
|
|
;; (insert (elt arg 5))
|
|
|
|
|
;; ;; another string, e.g. "\nmore text: "
|
|
|
|
|
;; (insert "\nmore text: ")
|
|
|
|
|
;; ;; a function, e.g. (tocol 40)
|
|
|
|
|
;; (insert (aset forms--dyntexts 0 (tocol 40)))
|
|
|
|
|
;; ... )
|
|
|
|
|
|
1993-06-12 20:53:59 +00:00
|
|
|
|
(cond
|
|
|
|
|
((stringp el)
|
|
|
|
|
(` ((insert (, el)))))
|
|
|
|
|
((numberp el)
|
|
|
|
|
(prog1
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(` ((aset forms--markers (, forms--marker) (point-marker))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
(insert (elt arg (, (1- el))))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(setq forms--marker (1+ forms--marker))))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
((listp el)
|
|
|
|
|
(prog1
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(` ((insert (aset forms--dyntexts (, forms--dyntext) (, el)))))
|
|
|
|
|
(setq forms--dyntext (1+ forms--dyntext))))))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defvar forms--field)
|
|
|
|
|
(defvar forms--recordv)
|
|
|
|
|
(defvar forms--seen-text)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--make-parser ()
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Generate `forms--parser' from the information in `forms-format-list'."
|
|
|
|
|
|
|
|
|
|
;; If we can use text properties, we simply set it to
|
|
|
|
|
;; `forms--parser-using-text-properties'.
|
|
|
|
|
;; Otherwise, the function is constructed using a mapcar of
|
|
|
|
|
;; `forms--make-parser-elt on `forms-format-list'.
|
|
|
|
|
|
|
|
|
|
(setq
|
|
|
|
|
forms--parser
|
|
|
|
|
(if forms-use-text-properties
|
|
|
|
|
(function forms--parser-using-text-properties)
|
|
|
|
|
(let ((forms--field nil)
|
|
|
|
|
(forms--seen-text nil)
|
|
|
|
|
(forms--dyntext 0))
|
|
|
|
|
|
|
|
|
|
;; Note: we add a nil element to the list passed to `mapcar',
|
|
|
|
|
;; see `forms--make-parser-elt' for details.
|
|
|
|
|
(` (lambda nil
|
|
|
|
|
(let (here)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(,@ (apply 'append
|
|
|
|
|
(mapcar
|
|
|
|
|
'forms--make-parser-elt
|
|
|
|
|
(append forms-format-list (list nil)))))))))))
|
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(forms--debug 'forms--parser))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(defun forms--parser-using-text-properties ()
|
|
|
|
|
"Extract field info from forms when using text properties."
|
|
|
|
|
|
|
|
|
|
;; Using text properties, we can simply jump to the markers, and
|
|
|
|
|
;; extract the information up to the following read-only segment.
|
|
|
|
|
|
|
|
|
|
(let ((i 0)
|
|
|
|
|
here there)
|
|
|
|
|
(while (< i (length forms--markers))
|
|
|
|
|
(goto-char (setq here (aref forms--markers i)))
|
|
|
|
|
(if (get-text-property here 'read-only)
|
|
|
|
|
(aset forms--recordv (aref forms--elements i) nil)
|
|
|
|
|
(if (setq there
|
|
|
|
|
(next-single-property-change here 'read-only))
|
|
|
|
|
(aset forms--recordv (aref forms--elements i)
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties here there))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(aset forms--recordv (aref forms--elements i)
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties here (point-max)))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(setq i (1+ i)))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--make-parser-elt (el)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Helper routine to generate forms parser function."
|
|
|
|
|
|
|
|
|
|
;; The parse routine will look like:
|
|
|
|
|
;;
|
|
|
|
|
;; (lambda nil
|
|
|
|
|
;; (let (here)
|
|
|
|
|
;; (goto-char (point-min))
|
|
|
|
|
;;
|
|
|
|
|
;; ;; "text: "
|
|
|
|
|
;; (if (not (looking-at "text: "))
|
|
|
|
|
;; (error "Parse error: cannot find \"text: \""))
|
|
|
|
|
;; (forward-char 6) ; past "text: "
|
|
|
|
|
;;
|
|
|
|
|
;; ;; 6
|
|
|
|
|
;; ;; "\nmore text: "
|
|
|
|
|
;; (setq here (point))
|
|
|
|
|
;; (if (not (search-forward "\nmore text: " nil t nil))
|
|
|
|
|
;; (error "Parse error: cannot find \"\\nmore text: \""))
|
1995-11-16 20:04:57 +00:00
|
|
|
|
;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;;
|
|
|
|
|
;; ;; (tocol 40)
|
|
|
|
|
;; (let ((forms--dyntext (car-safe forms--dynamic-text)))
|
|
|
|
|
;; (if (not (looking-at (regexp-quote forms--dyntext)))
|
|
|
|
|
;; (error "Parse error: not looking at \"%s\"" forms--dyntext))
|
|
|
|
|
;; (forward-char (length forms--dyntext))
|
|
|
|
|
;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text)))
|
|
|
|
|
;; ...
|
|
|
|
|
;; ;; final flush (due to terminator sentinel, see below)
|
1995-11-16 20:04:57 +00:00
|
|
|
|
;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(cond
|
|
|
|
|
((stringp el)
|
|
|
|
|
(prog1
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if forms--field
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(` ((setq here (point))
|
|
|
|
|
(if (not (search-forward (, el) nil t nil))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(error "Parse error: cannot find `%s'" (, el)))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(aset forms--recordv (, (1- forms--field))
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties here
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(- (point) (, (length el)))))))
|
|
|
|
|
(` ((if (not (looking-at (, (regexp-quote el))))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(error "Parse error: not looking at `%s'" (, el)))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(forward-char (, (length el))))))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(setq forms--seen-text t)
|
|
|
|
|
(setq forms--field nil)))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
((numberp el)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if forms--field
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(error "Cannot parse adjacent fields %d and %d"
|
1993-07-17 19:15:19 +00:00
|
|
|
|
forms--field el)
|
|
|
|
|
(setq forms--field el)
|
1991-07-01 18:06:13 +00:00
|
|
|
|
nil))
|
|
|
|
|
((null el)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if forms--field
|
|
|
|
|
(` ((aset forms--recordv (, (1- forms--field))
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
((listp el)
|
|
|
|
|
(prog1
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if forms--field
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(` ((let ((here (point))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(forms--dyntext (aref forms--dyntexts (, forms--dyntext))))
|
|
|
|
|
(if (not (search-forward forms--dyntext nil t nil))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(error "Parse error: cannot find `%s'" forms--dyntext))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(aset forms--recordv (, (1- forms--field))
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties here
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(- (point) (length forms--dyntext)))))))
|
|
|
|
|
(` ((let ((forms--dyntext (aref forms--dyntexts (, forms--dyntext))))
|
|
|
|
|
(if (not (looking-at (regexp-quote forms--dyntext)))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(error "Parse error: not looking at `%s'" forms--dyntext))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(forward-char (length forms--dyntext))))))
|
|
|
|
|
(setq forms--dyntext (1+ forms--dyntext))
|
|
|
|
|
(setq forms--seen-text t)
|
|
|
|
|
(setq forms--field nil)))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(defun forms--intuit-from-file ()
|
|
|
|
|
"Get number of fields and a default form using the data file."
|
|
|
|
|
|
|
|
|
|
;; If `forms-number-of-fields' is not set, get it from the data file.
|
|
|
|
|
(if (null forms-number-of-fields)
|
|
|
|
|
|
|
|
|
|
;; Need a file to do this.
|
|
|
|
|
(if (not (file-exists-p forms-file))
|
|
|
|
|
(error "Need existing file or explicit 'forms-number-of-records'.")
|
|
|
|
|
|
|
|
|
|
;; Visit the file and extract the first record.
|
|
|
|
|
(setq forms--file-buffer (find-file-noselect forms-file))
|
|
|
|
|
(let ((read-file-filter forms-read-file-filter)
|
|
|
|
|
(the-record))
|
|
|
|
|
(setq the-record
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(run-hooks 'read-file-filter))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forms--get-record)))
|
|
|
|
|
|
|
|
|
|
;; This may be overkill, but try to avoid interference with
|
|
|
|
|
;; the normal processing.
|
|
|
|
|
(kill-buffer forms--file-buffer)
|
|
|
|
|
|
|
|
|
|
;; Count the number of fields in `the-record'.
|
|
|
|
|
(let (the-result
|
|
|
|
|
(start-pos 0)
|
|
|
|
|
found-pos
|
|
|
|
|
(field-sep-length (length forms-field-sep)))
|
|
|
|
|
(setq forms-number-of-fields 1)
|
|
|
|
|
(while (setq found-pos
|
|
|
|
|
(string-match forms-field-sep the-record start-pos))
|
|
|
|
|
(progn
|
|
|
|
|
(setq forms-number-of-fields (1+ forms-number-of-fields))
|
|
|
|
|
(setq start-pos (+ field-sep-length found-pos))))))))
|
|
|
|
|
|
|
|
|
|
;; Construct default format list.
|
|
|
|
|
(setq forms-format-list (list "Forms file \"" forms-file "\".\n\n"))
|
|
|
|
|
(let ((i 0))
|
|
|
|
|
(while (<= (setq i (1+ i)) forms-number-of-fields)
|
|
|
|
|
(setq forms-format-list
|
|
|
|
|
(append forms-format-list
|
|
|
|
|
(list (format "%4d: " i) i "\n"))))))
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defun forms--set-keymaps ()
|
|
|
|
|
"Set the keymaps used in this mode."
|
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(use-local-map (if forms-read-only
|
|
|
|
|
forms-mode-ro-map
|
|
|
|
|
forms-mode-edit-map)))
|
|
|
|
|
|
|
|
|
|
(defun forms--mode-commands ()
|
|
|
|
|
"Fill the Forms mode keymaps."
|
|
|
|
|
|
|
|
|
|
;; `forms-mode-map' is always accessible via \C-c prefix.
|
|
|
|
|
(setq forms-mode-map (make-keymap))
|
|
|
|
|
(define-key forms-mode-map "\t" 'forms-next-field)
|
|
|
|
|
(define-key forms-mode-map "\C-k" 'forms-delete-record)
|
|
|
|
|
(define-key forms-mode-map "\C-q" 'forms-toggle-read-only)
|
|
|
|
|
(define-key forms-mode-map "\C-o" 'forms-insert-record)
|
|
|
|
|
(define-key forms-mode-map "\C-l" 'forms-jump-record)
|
|
|
|
|
(define-key forms-mode-map "\C-n" 'forms-next-record)
|
|
|
|
|
(define-key forms-mode-map "\C-p" 'forms-prev-record)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key forms-mode-map "\C-r" 'forms-search-backward)
|
|
|
|
|
(define-key forms-mode-map "\C-s" 'forms-search-forward)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(define-key forms-mode-map "\C-x" 'forms-exit)
|
|
|
|
|
(define-key forms-mode-map "<" 'forms-first-record)
|
|
|
|
|
(define-key forms-mode-map ">" 'forms-last-record)
|
|
|
|
|
(define-key forms-mode-map "\C-?" 'forms-prev-record)
|
|
|
|
|
|
|
|
|
|
;; `forms-mode-ro-map' replaces the local map when in read-only mode.
|
|
|
|
|
(setq forms-mode-ro-map (make-keymap))
|
|
|
|
|
(suppress-keymap forms-mode-ro-map)
|
|
|
|
|
(define-key forms-mode-ro-map "\C-c" forms-mode-map)
|
|
|
|
|
(define-key forms-mode-ro-map "\t" 'forms-next-field)
|
|
|
|
|
(define-key forms-mode-ro-map "q" 'forms-toggle-read-only)
|
|
|
|
|
(define-key forms-mode-ro-map "l" 'forms-jump-record)
|
|
|
|
|
(define-key forms-mode-ro-map "n" 'forms-next-record)
|
|
|
|
|
(define-key forms-mode-ro-map "p" 'forms-prev-record)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key forms-mode-ro-map "r" 'forms-search-backward)
|
|
|
|
|
(define-key forms-mode-ro-map "s" 'forms-search-forward)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(define-key forms-mode-ro-map "x" 'forms-exit)
|
|
|
|
|
(define-key forms-mode-ro-map "<" 'forms-first-record)
|
|
|
|
|
(define-key forms-mode-ro-map ">" 'forms-last-record)
|
|
|
|
|
(define-key forms-mode-ro-map "?" 'describe-mode)
|
|
|
|
|
(define-key forms-mode-ro-map " " 'forms-next-record)
|
|
|
|
|
(forms--mode-commands1 forms-mode-ro-map)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(forms--mode-menu-ro forms-mode-ro-map)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
|
|
|
|
|
;; This is the normal, local map.
|
|
|
|
|
(setq forms-mode-edit-map (make-keymap))
|
|
|
|
|
(define-key forms-mode-edit-map "\t" 'forms-next-field)
|
|
|
|
|
(define-key forms-mode-edit-map "\C-c" forms-mode-map)
|
|
|
|
|
(forms--mode-commands1 forms-mode-edit-map)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(forms--mode-menu-edit forms-mode-edit-map)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
)
|
|
|
|
|
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(defun forms--mode-menu-ro (map)
|
|
|
|
|
;;; Menu initialisation
|
|
|
|
|
; (define-key map [menu-bar] (make-sparse-keymap))
|
|
|
|
|
(define-key map [menu-bar forms]
|
|
|
|
|
(cons "Forms" (make-sparse-keymap "Forms")))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-exit]
|
1996-03-01 21:13:01 +00:00
|
|
|
|
'("Exit Forms Mode" . forms-exit))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-sep1]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-save]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Save Data" . forms-save-buffer))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-print]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Print Data" . forms-print))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-describe]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Describe Mode" . describe-mode))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-toggle-ro]
|
|
|
|
|
'("Toggle View/Edit" . forms-toggle-read-only))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-jump-record]
|
|
|
|
|
'("Jump" . forms-jump-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-search-backward]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Search Backward" . forms-search-backward))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-search-forward]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Search Forward" . forms-search-forward))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-delete-record]
|
|
|
|
|
'("Delete" . forms-delete-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-insert-record]
|
|
|
|
|
'("Insert" . forms-insert-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-sep2]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-last-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Last Record" . forms-last-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-first-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("First Record" . forms-first-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-prev-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Previous Record" . forms-prev-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-next-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Next Record" . forms-next-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-sep3]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-prev-field]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Previous Field" . forms-prev-field))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-next-field]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Next Field" . forms-next-field))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(put 'forms-insert-record 'menu-enable '(not forms-read-only))
|
|
|
|
|
(put 'forms-delete-record 'menu-enable '(not forms-read-only))
|
|
|
|
|
)
|
|
|
|
|
(defun forms--mode-menu-edit (map)
|
|
|
|
|
;;; Menu initialisation
|
|
|
|
|
; (define-key map [menu-bar] (make-sparse-keymap))
|
|
|
|
|
(define-key map [menu-bar forms]
|
|
|
|
|
(cons "Forms" (make-sparse-keymap "Forms")))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit--exit]
|
|
|
|
|
'("Exit" . forms-exit))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-sep1]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-save]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Save Data" . forms-save-buffer))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-print]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Print Data" . forms-print))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-describe]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Describe Mode" . describe-mode))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-toggle-ro]
|
|
|
|
|
'("Toggle View/Edit" . forms-toggle-read-only))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-jump-record]
|
|
|
|
|
'("Jump" . forms-jump-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-search-backward]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Search Backward" . forms-search-backward))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-search-forward]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Search Forward" . forms-search-forward))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-delete-record]
|
|
|
|
|
'("Delete" . forms-delete-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-insert-record]
|
|
|
|
|
'("Insert" . forms-insert-record))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-sep2]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-last-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Last Record" . forms-last-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-first-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("First Record" . forms-first-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-prev-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Previous Record" . forms-prev-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-next-record]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Next Record" . forms-next-record))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-sep3]
|
|
|
|
|
'("----"))
|
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-prev-field]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Previous Field" . forms-prev-field))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(define-key map [menu-bar forms menu-forms-edit-next-field]
|
1995-05-30 22:54:53 +00:00
|
|
|
|
'("Next Field" . forms-next-field))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(put 'forms-insert-record 'menu-enable '(not forms-read-only))
|
|
|
|
|
(put 'forms-delete-record 'menu-enable '(not forms-read-only))
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(defun forms--mode-commands1 (map)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
"Helper routine to define keys."
|
|
|
|
|
(define-key map [TAB] 'forms-next-field)
|
|
|
|
|
(define-key map [S-tab] 'forms-prev-field)
|
|
|
|
|
(define-key map [next] 'forms-next-record)
|
|
|
|
|
(define-key map [prior] 'forms-prev-record)
|
|
|
|
|
(define-key map [begin] 'forms-first-record)
|
|
|
|
|
(define-key map [last] 'forms-last-record)
|
|
|
|
|
(define-key map [backtab] 'forms-prev-field)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
)
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;; Changed functions
|
|
|
|
|
|
|
|
|
|
(defun forms--change-commands ()
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Localize some commands for Forms mode."
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; scroll-down -> forms-prev-record
|
|
|
|
|
;; scroll-up -> forms-next-record
|
1993-06-19 00:15:32 +00:00
|
|
|
|
(if forms-forms-scroll
|
|
|
|
|
(progn
|
|
|
|
|
(substitute-key-definition 'scroll-up 'forms-next-record
|
|
|
|
|
(current-local-map)
|
|
|
|
|
(current-global-map))
|
|
|
|
|
(substitute-key-definition 'scroll-down 'forms-prev-record
|
|
|
|
|
(current-local-map)
|
|
|
|
|
(current-global-map))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;
|
|
|
|
|
;; beginning-of-buffer -> forms-first-record
|
|
|
|
|
;; end-of-buffer -> forms-end-record
|
1993-06-19 00:15:32 +00:00
|
|
|
|
(if forms-forms-jump
|
|
|
|
|
(progn
|
|
|
|
|
(substitute-key-definition 'beginning-of-buffer 'forms-first-record
|
|
|
|
|
(current-local-map)
|
|
|
|
|
(current-global-map))
|
|
|
|
|
(substitute-key-definition 'end-of-buffer 'forms-last-record
|
|
|
|
|
(current-local-map)
|
|
|
|
|
(current-global-map))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;
|
1994-07-26 19:47:39 +00:00
|
|
|
|
;; Save buffer
|
|
|
|
|
(local-set-key "\C-x\C-s" 'forms-save-buffer)
|
|
|
|
|
;;
|
1994-06-13 12:07:44 +00:00
|
|
|
|
;; We have our own revert function - use it.
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(make-local-variable 'revert-buffer-function)
|
1994-06-13 12:07:44 +00:00
|
|
|
|
(setq revert-buffer-function 'forms--revert-buffer)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
|
|
|
|
|
t)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--help ()
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Initial help for Forms mode."
|
1996-01-25 00:54:17 +00:00
|
|
|
|
(message "%s" (substitute-command-keys (concat
|
1993-09-27 02:19:46 +00:00
|
|
|
|
"\\[forms-next-record]:next"
|
|
|
|
|
" \\[forms-prev-record]:prev"
|
|
|
|
|
" \\[forms-first-record]:first"
|
|
|
|
|
" \\[forms-last-record]:last"
|
|
|
|
|
" \\[describe-mode]:help"))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--trans (subj arg rep)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Translate in SUBJ all chars ARG into char REP. ARG and REP should
|
1991-05-20 20:35:19 +00:00
|
|
|
|
be single-char strings."
|
|
|
|
|
(let ((i 0)
|
|
|
|
|
(x (length subj))
|
|
|
|
|
(re (regexp-quote arg))
|
|
|
|
|
(k (string-to-char rep)))
|
|
|
|
|
(while (setq i (string-match re subj i))
|
|
|
|
|
(aset subj i k)
|
|
|
|
|
(setq i (1+ i)))))
|
|
|
|
|
|
|
|
|
|
(defun forms--exit (query &optional save)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
"Internal exit from forms mode function."
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(let ((buf (buffer-name forms--file-buffer)))
|
|
|
|
|
(forms--checkmod)
|
|
|
|
|
(if (and save
|
|
|
|
|
(buffer-modified-p forms--file-buffer))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(forms-save-buffer))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(delete-auto-save-file-if-necessary)
|
|
|
|
|
(kill-buffer (current-buffer)))
|
|
|
|
|
(if (get-buffer buf) ; not killed???
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(if save
|
|
|
|
|
(error "Problem saving buffer %s" (buffer-name buf)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(delete-auto-save-file-if-necessary)
|
|
|
|
|
(kill-buffer (current-buffer)))))
|
|
|
|
|
|
|
|
|
|
(defun forms--get-record ()
|
|
|
|
|
"Fetch the current record from the file buffer."
|
1993-07-17 19:15:19 +00:00
|
|
|
|
|
|
|
|
|
;; This function is executed in the context of the `forms--file-buffer'.
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(or (bolp)
|
|
|
|
|
(beginning-of-line nil))
|
|
|
|
|
(let ((here (point)))
|
|
|
|
|
(prog2
|
|
|
|
|
(end-of-line)
|
1995-11-16 20:04:57 +00:00
|
|
|
|
(buffer-substring-no-properties here (point))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(goto-char here))))
|
|
|
|
|
|
|
|
|
|
(defun forms--show-record (the-record)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Format THE-RECORD and display it in the current buffer."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Split the-record.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(let (the-result
|
|
|
|
|
(start-pos 0)
|
|
|
|
|
found-pos
|
|
|
|
|
(field-sep-length (length forms-field-sep)))
|
|
|
|
|
(if forms-multi-line
|
|
|
|
|
(forms--trans the-record forms-multi-line "\n"))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Add an extra separator (makes splitting easy).
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(setq the-record (concat the-record forms-field-sep))
|
|
|
|
|
(while (setq found-pos (string-match forms-field-sep the-record start-pos))
|
|
|
|
|
(let ((ent (substring the-record start-pos found-pos)))
|
|
|
|
|
(setq the-result
|
|
|
|
|
(append the-result (list ent)))
|
|
|
|
|
(setq start-pos (+ field-sep-length found-pos))))
|
|
|
|
|
(setq forms--the-record-list the-result))
|
|
|
|
|
|
|
|
|
|
(setq buffer-read-only nil)
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if forms-use-text-properties
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(set-text-properties (point-min) (point-max) nil)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Verify the number of fields, extend forms--the-record-list if needed.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (= (length forms--the-record-list) forms-number-of-fields)
|
|
|
|
|
nil
|
1995-08-14 06:45:37 +00:00
|
|
|
|
(if (null forms-check-number-of-fields)
|
|
|
|
|
nil
|
|
|
|
|
(message "Warning: this record has %d fields instead of %d"
|
|
|
|
|
(length forms--the-record-list) forms-number-of-fields))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (< (length forms--the-record-list) forms-number-of-fields)
|
|
|
|
|
(setq forms--the-record-list
|
|
|
|
|
(append forms--the-record-list
|
|
|
|
|
(make-list
|
|
|
|
|
(- forms-number-of-fields
|
|
|
|
|
(length forms--the-record-list))
|
|
|
|
|
"")))))
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Call the formatter function.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(setq forms-fields (append (list nil) forms--the-record-list nil))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(funcall forms--format forms--the-record-list)
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Prepare.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(setq buffer-read-only forms-read-only)
|
|
|
|
|
(setq mode-line-process
|
1999-01-15 16:19:53 +00:00
|
|
|
|
(concat " " (int-to-string forms--current-record)
|
|
|
|
|
"/" (int-to-string forms--total-records))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--parse-form ()
|
|
|
|
|
"Parse contents of form into list of strings."
|
|
|
|
|
;; The contents of the form are parsed, and a new list of strings
|
|
|
|
|
;; is constructed.
|
|
|
|
|
;; A vector with the strings from the original record is
|
1993-06-30 22:37:30 +00:00
|
|
|
|
;; constructed, which is updated with the new contents. Therefore
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; fields which were not in the form are not modified.
|
|
|
|
|
;; Finally, the vector is transformed into a list for further processing.
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(let (forms--recordv)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Build the vector.
|
|
|
|
|
(setq forms--recordv (vconcat forms--the-record-list))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Parse the form and update the vector.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(let ((forms--dynamic-text forms--dynamic-text))
|
|
|
|
|
(funcall forms--parser))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(if forms-modified-record-filter
|
1991-07-01 18:06:13 +00:00
|
|
|
|
;; As a service to the user, we add a zeroth element so she
|
|
|
|
|
;; can use the same indices as in the forms definition.
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(let ((the-fields (vconcat [nil] forms--recordv)))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(setq the-fields (funcall forms-modified-record-filter the-fields))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(cdr (append the-fields nil)))
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Transform to a list and return.
|
|
|
|
|
(append forms--recordv nil))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--update ()
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Update current record with contents of form.
|
1993-07-17 19:15:19 +00:00
|
|
|
|
As a side effect: sets `forms--the-record-list'."
|
1993-06-30 22:37:30 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if forms-read-only
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(error "Buffer is read-only"))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(let (the-record)
|
|
|
|
|
;; Build new record.
|
|
|
|
|
(setq forms--the-record-list (forms--parse-form))
|
|
|
|
|
(setq the-record
|
|
|
|
|
(mapconcat 'identity forms--the-record-list forms-field-sep))
|
|
|
|
|
|
|
|
|
|
(if (string-match (regexp-quote forms-field-sep)
|
|
|
|
|
(mapconcat 'identity forms--the-record-list ""))
|
|
|
|
|
(error "Field separator occurs in record - update refused"))
|
|
|
|
|
|
|
|
|
|
;; Handle multi-line fields, if allowed.
|
|
|
|
|
(if forms-multi-line
|
|
|
|
|
(forms--trans the-record "\n" forms-multi-line))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; A final sanity check before updating.
|
|
|
|
|
(if (string-match "\n" the-record)
|
|
|
|
|
(error "Multi-line fields in this record - update refused"))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
;; Use delete-region instead of kill-region, to avoid
|
|
|
|
|
;; adding junk to the kill-ring.
|
|
|
|
|
(delete-region (save-excursion (beginning-of-line) (point))
|
|
|
|
|
(save-excursion (end-of-line) (point)))
|
|
|
|
|
(insert the-record)
|
|
|
|
|
(beginning-of-line))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms--checkmod ()
|
|
|
|
|
"Check if this form has been modified, and call forms--update if so."
|
|
|
|
|
(if (buffer-modified-p nil)
|
|
|
|
|
(let ((here (point)))
|
|
|
|
|
(forms--update)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(goto-char here))))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;; Start and exit
|
1993-06-30 22:37:30 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defun forms-find-file (fn)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Visit a file in Forms mode."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive "fForms file: ")
|
1994-06-13 12:07:44 +00:00
|
|
|
|
(let ((enable-local-eval t)
|
|
|
|
|
(enable-local-variables t))
|
|
|
|
|
(find-file-read-only fn)
|
|
|
|
|
(or forms--mode-setup (forms-mode t))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-06-30 22:37:30 +00:00
|
|
|
|
;;;###autoload
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(defun forms-find-file-other-window (fn)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Visit a file in Forms mode in other window."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive "fFbrowse file in other window: ")
|
1994-06-13 12:07:44 +00:00
|
|
|
|
(let ((enable-local-eval t)
|
|
|
|
|
(enable-local-variables t))
|
|
|
|
|
(find-file-other-window fn)
|
|
|
|
|
(or forms--mode-setup (forms-mode t))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms-exit (query)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Normal exit from Forms mode. Modified buffers are saved."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(forms--exit query t))
|
|
|
|
|
|
|
|
|
|
(defun forms-exit-no-save (query)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Exit from Forms mode without saving buffers."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(forms--exit query nil))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;; Navigating commands
|
|
|
|
|
|
|
|
|
|
(defun forms-next-record (arg)
|
|
|
|
|
"Advance to the ARGth following record."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t))
|
|
|
|
|
|
|
|
|
|
(defun forms-prev-record (arg)
|
|
|
|
|
"Advance to the ARGth previous record."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t))
|
|
|
|
|
|
|
|
|
|
(defun forms-jump-record (arg &optional relative)
|
|
|
|
|
"Jump to a random record."
|
|
|
|
|
(interactive "NRecord number: ")
|
|
|
|
|
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Verify that the record number is within range.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (or (> arg forms--total-records)
|
|
|
|
|
(<= arg 0))
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(error
|
1993-07-17 19:15:19 +00:00
|
|
|
|
;; Don't give the message if just paging.
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (not relative)
|
|
|
|
|
(message "Record number %d out of range 1..%d"
|
1997-06-10 18:32:33 +00:00
|
|
|
|
arg forms--total-records)
|
|
|
|
|
"")))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; Flush.
|
|
|
|
|
(forms--checkmod)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; Calculate displacement.
|
|
|
|
|
(let ((disp (- arg forms--current-record))
|
|
|
|
|
(cur forms--current-record))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; `forms--show-record' needs it now.
|
|
|
|
|
(setq forms--current-record arg)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; Get the record and show it.
|
|
|
|
|
(forms--show-record
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(beginning-of-line)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; Move, and adjust the amount if needed (shouldn't happen).
|
|
|
|
|
(if relative
|
|
|
|
|
(if (zerop disp)
|
|
|
|
|
nil
|
|
|
|
|
(setq cur (+ cur disp (- (forward-line disp)))))
|
|
|
|
|
(setq cur (+ cur disp (- (goto-line arg)))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(forms--get-record)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1997-06-10 18:32:33 +00:00
|
|
|
|
;; This shouldn't happen.
|
|
|
|
|
(if (/= forms--current-record cur)
|
|
|
|
|
(progn
|
|
|
|
|
(setq forms--current-record cur)
|
|
|
|
|
(error "Stuck at record %d" cur)))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms-first-record ()
|
|
|
|
|
"Jump to first record."
|
|
|
|
|
(interactive)
|
|
|
|
|
(forms-jump-record 1))
|
|
|
|
|
|
|
|
|
|
(defun forms-last-record ()
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Jump to last record.
|
|
|
|
|
As a side effect: re-calculates the number of records in the data file."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let
|
|
|
|
|
((numrec
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(count-lines (point-min) (point-max)))))
|
|
|
|
|
(if (= numrec forms--total-records)
|
|
|
|
|
nil
|
|
|
|
|
(setq forms--total-records numrec)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(message "Warning: number of records changed to %d" forms--total-records)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms-jump-record forms--total-records))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;;; Other commands
|
1993-06-30 22:37:30 +00:00
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(defun forms-toggle-read-only (arg)
|
|
|
|
|
"Toggles read-only mode of a forms mode buffer.
|
|
|
|
|
With an argument, enables read-only mode if the argument is positive.
|
1996-01-04 23:38:16 +00:00
|
|
|
|
Otherwise enables edit mode if the visited file is writable."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
|
|
|
|
|
(if (if arg
|
|
|
|
|
;; Negative arg means switch it off.
|
|
|
|
|
(<= (prefix-numeric-value arg) 0)
|
|
|
|
|
;; No arg means toggle.
|
|
|
|
|
forms-read-only)
|
|
|
|
|
|
|
|
|
|
;; Enable edit mode, if possible.
|
|
|
|
|
(let ((ro forms-read-only))
|
|
|
|
|
(if (save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
buffer-read-only)
|
|
|
|
|
(progn
|
|
|
|
|
(setq forms-read-only t)
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(message "No write access to `%s'" forms-file))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(setq forms-read-only nil))
|
|
|
|
|
(if (equal ro forms-read-only)
|
|
|
|
|
nil
|
|
|
|
|
(forms-mode)))
|
|
|
|
|
|
|
|
|
|
;; Enable view mode.
|
|
|
|
|
(if forms-read-only
|
1991-05-20 20:35:19 +00:00
|
|
|
|
nil
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(forms--checkmod) ; sync
|
|
|
|
|
(setq forms-read-only t)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms-mode))))
|
|
|
|
|
|
|
|
|
|
;; Sample:
|
1991-07-01 18:06:13 +00:00
|
|
|
|
;; (defun my-new-record-filter (the-fields)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; ;; numbers are relative to 1
|
|
|
|
|
;; (aset the-fields 4 (current-time-string))
|
|
|
|
|
;; (aset the-fields 6 (user-login-name))
|
|
|
|
|
;; the-list)
|
1991-07-01 18:06:13 +00:00
|
|
|
|
;; (setq forms-new-record-filter 'my-new-record-filter)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(defun forms-insert-record (arg)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Create a new record before the current one.
|
|
|
|
|
With ARG: store the record after the current one.
|
1993-09-27 02:19:46 +00:00
|
|
|
|
If `forms-new-record-filter' contains the name of a function,
|
1996-03-01 21:13:01 +00:00
|
|
|
|
it is called to fill (some of) the fields with default values.
|
|
|
|
|
If `forms-insert-after is non-nil, the default behavior is to insert
|
|
|
|
|
after the current record."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(interactive "P")
|
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(if forms-read-only
|
|
|
|
|
(error ""))
|
|
|
|
|
|
1996-03-01 21:13:01 +00:00
|
|
|
|
(let (ln the-list the-record)
|
|
|
|
|
|
|
|
|
|
(if (or (and arg forms-insert-after)
|
|
|
|
|
(and (not arg) (not forms-insert-after)))
|
|
|
|
|
(setq ln forms--current-record)
|
|
|
|
|
(setq ln (1+ forms--current-record)))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(forms--checkmod)
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(if forms-new-record-filter
|
1991-05-20 20:35:19 +00:00
|
|
|
|
;; As a service to the user, we add a zeroth element so she
|
|
|
|
|
;; can use the same indices as in the forms definition.
|
|
|
|
|
(let ((the-fields (make-vector (1+ forms-number-of-fields) "")))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(setq the-fields (funcall forms-new-record-filter the-fields))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(setq the-list (cdr (append the-fields nil))))
|
|
|
|
|
(setq the-list (make-list forms-number-of-fields "")))
|
|
|
|
|
|
|
|
|
|
(setq the-record
|
|
|
|
|
(mapconcat
|
|
|
|
|
'identity
|
|
|
|
|
the-list
|
|
|
|
|
forms-field-sep))
|
|
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(goto-line ln)
|
|
|
|
|
(open-line 1)
|
|
|
|
|
(insert the-record)
|
|
|
|
|
(beginning-of-line))
|
|
|
|
|
|
|
|
|
|
(setq forms--current-record ln))
|
|
|
|
|
|
|
|
|
|
(setq forms--total-records (1+ forms--total-records))
|
|
|
|
|
(forms-jump-record forms--current-record))
|
|
|
|
|
|
|
|
|
|
(defun forms-delete-record (arg)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Deletes a record. With a prefix argument: don't ask."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive "P")
|
1993-09-27 02:19:46 +00:00
|
|
|
|
|
|
|
|
|
(if forms-read-only
|
|
|
|
|
(error ""))
|
|
|
|
|
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(forms--checkmod)
|
|
|
|
|
(if (or arg
|
|
|
|
|
(y-or-n-p "Really delete this record? "))
|
|
|
|
|
(let ((ln forms--current-record))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(goto-line ln)
|
1993-09-15 05:25:16 +00:00
|
|
|
|
;; Use delete-region instead of kill-region, to avoid
|
|
|
|
|
;; adding junk to the kill-ring.
|
1994-07-17 23:56:09 +00:00
|
|
|
|
(delete-region (progn (beginning-of-line) (point))
|
|
|
|
|
(progn (beginning-of-line 2) (point))))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(setq forms--total-records (1- forms--total-records))
|
|
|
|
|
(if (> forms--current-record forms--total-records)
|
|
|
|
|
(setq forms--current-record forms--total-records))
|
|
|
|
|
(forms-jump-record forms--current-record)))
|
|
|
|
|
(message ""))
|
|
|
|
|
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(defun forms-search-forward (regexp)
|
|
|
|
|
"Search forward for record containing REGEXP."
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(interactive
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(list (read-string (concat "Search forward for"
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if forms--search-regexp
|
|
|
|
|
(concat " ("
|
|
|
|
|
forms--search-regexp
|
|
|
|
|
")"))
|
|
|
|
|
": "))))
|
|
|
|
|
(if (equal "" regexp)
|
|
|
|
|
(setq regexp forms--search-regexp))
|
|
|
|
|
(forms--checkmod)
|
|
|
|
|
|
|
|
|
|
(let (the-line the-record here
|
|
|
|
|
(fld-sep forms-field-sep))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(setq here (point))
|
|
|
|
|
(if (or (re-search-forward regexp nil t)
|
|
|
|
|
(and (> here (point-min))
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(re-search-forward regexp here t))))
|
|
|
|
|
(progn
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(setq the-record (forms--get-record))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(setq the-line (1+ (count-lines (point-min) (point))))
|
|
|
|
|
(if (< (point) here)
|
|
|
|
|
(message "Wrapped")))
|
|
|
|
|
(goto-char here)
|
|
|
|
|
(error "Search failed: %s" regexp)))
|
|
|
|
|
(setq forms--current-record the-line)
|
|
|
|
|
(forms--show-record the-record))
|
|
|
|
|
(re-search-forward regexp nil t)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(setq forms--search-regexp regexp))
|
|
|
|
|
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(defun forms-search-backward (regexp)
|
|
|
|
|
"Search backward for record containing REGEXP."
|
|
|
|
|
(interactive
|
|
|
|
|
(list (read-string (concat "Search backward for"
|
|
|
|
|
(if forms--search-regexp
|
|
|
|
|
(concat " ("
|
|
|
|
|
forms--search-regexp
|
|
|
|
|
")"))
|
|
|
|
|
": "))))
|
|
|
|
|
(if (equal "" regexp)
|
|
|
|
|
(setq regexp forms--search-regexp))
|
|
|
|
|
(forms--checkmod)
|
|
|
|
|
|
|
|
|
|
(let (the-line the-record here
|
|
|
|
|
(fld-sep forms-field-sep))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq here (point))
|
|
|
|
|
(if (or (re-search-backward regexp nil t)
|
|
|
|
|
(and (< (point) (point-max))
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(re-search-backward regexp here t))))
|
|
|
|
|
(progn
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(setq the-record (forms--get-record))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
(setq the-line (1+ (count-lines (point-min) (point))))
|
|
|
|
|
(if (> (point) here)
|
|
|
|
|
(message "Wrapped")))
|
|
|
|
|
(goto-char here)
|
|
|
|
|
(error "Search failed: %s" regexp)))
|
|
|
|
|
(setq forms--current-record the-line)
|
|
|
|
|
(forms--show-record the-record))
|
|
|
|
|
(re-search-forward regexp nil t)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(setq forms--search-regexp regexp))
|
|
|
|
|
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(defun forms-save-buffer (&optional args)
|
|
|
|
|
"Forms mode replacement for save-buffer.
|
|
|
|
|
It saves the data buffer instead of the forms buffer.
|
1997-06-10 18:32:33 +00:00
|
|
|
|
Calls `forms-write-file-filter' before, and `forms-read-file-filter'
|
|
|
|
|
after writing out the data."
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(interactive "p")
|
1994-06-13 12:07:44 +00:00
|
|
|
|
(forms--checkmod)
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(let ((write-file-filter forms-write-file-filter)
|
|
|
|
|
(read-file-filter forms-read-file-filter))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer forms--file-buffer)
|
|
|
|
|
(let ((inhibit-read-only t))
|
1997-06-11 21:07:22 +00:00
|
|
|
|
;; Write file hooks are run via local-write-file-hooks.
|
|
|
|
|
;; (if write-file-filter
|
|
|
|
|
;; (save-excursion
|
|
|
|
|
;; (run-hooks 'write-file-filter)))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(save-buffer args)
|
|
|
|
|
(if read-file-filter
|
1997-06-10 18:32:33 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(run-hooks 'read-file-filter)))
|
1994-07-26 19:47:39 +00:00
|
|
|
|
(set-buffer-modified-p nil))))
|
1994-06-13 12:07:44 +00:00
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(defun forms--revert-buffer (&optional arg noconfirm)
|
1991-05-20 20:35:19 +00:00
|
|
|
|
"Reverts current form to un-modified."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(if (or noconfirm
|
|
|
|
|
(yes-or-no-p "Revert form to unmodified? "))
|
|
|
|
|
(progn
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(forms-jump-record forms--current-record))))
|
|
|
|
|
|
|
|
|
|
(defun forms-next-field (arg)
|
|
|
|
|
"Jump to ARG-th next field."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
|
|
|
|
|
(let ((i 0)
|
|
|
|
|
(here (point))
|
|
|
|
|
there
|
1995-04-25 17:44:28 +00:00
|
|
|
|
(cnt 0)
|
|
|
|
|
(inhibit-point-motion-hooks t))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
|
|
|
|
|
(if (zerop arg)
|
|
|
|
|
(setq cnt 1)
|
|
|
|
|
(setq cnt (+ cnt arg)))
|
|
|
|
|
|
|
|
|
|
(if (catch 'done
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(while (< i (length forms--markers))
|
1991-05-20 20:35:19 +00:00
|
|
|
|
(if (or (null (setq there (aref forms--markers i)))
|
|
|
|
|
(<= there here))
|
|
|
|
|
nil
|
|
|
|
|
(if (<= (setq cnt (1- cnt)) 0)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char there)
|
|
|
|
|
(throw 'done t))))
|
|
|
|
|
(setq i (1+ i))))
|
|
|
|
|
nil
|
|
|
|
|
(goto-char (aref forms--markers 0)))))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
1993-09-27 02:19:46 +00:00
|
|
|
|
(defun forms-prev-field (arg)
|
|
|
|
|
"Jump to ARG-th previous field."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
|
|
|
|
|
(let ((i (length forms--markers))
|
|
|
|
|
(here (point))
|
|
|
|
|
there
|
1995-04-25 17:44:28 +00:00
|
|
|
|
(cnt 0)
|
|
|
|
|
(inhibit-point-motion-hooks t))
|
1993-09-27 02:19:46 +00:00
|
|
|
|
|
|
|
|
|
(if (zerop arg)
|
|
|
|
|
(setq cnt 1)
|
|
|
|
|
(setq cnt (+ cnt arg)))
|
|
|
|
|
|
|
|
|
|
(if (catch 'done
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(setq i ( 1- i))
|
|
|
|
|
(if (or (null (setq there (aref forms--markers i)))
|
|
|
|
|
(>= there here))
|
|
|
|
|
nil
|
|
|
|
|
(if (<= (setq cnt (1- cnt)) 0)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char there)
|
|
|
|
|
(throw 'done t))))))
|
|
|
|
|
nil
|
|
|
|
|
(goto-char (aref forms--markers (1- (length forms--markers)))))))
|
1995-01-05 11:54:18 +00:00
|
|
|
|
|
|
|
|
|
(defun forms-print ()
|
|
|
|
|
"Send the records to the printer with 'print-buffer', one record per page."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(save-record forms--current-record)
|
1999-01-15 16:19:53 +00:00
|
|
|
|
(total-nb-records forms--total-records)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(nb-record 1)
|
|
|
|
|
(record nil))
|
|
|
|
|
(while (<= nb-record forms--total-records)
|
|
|
|
|
(forms-jump-record nb-record)
|
|
|
|
|
(setq record (buffer-string))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (get-buffer-create "*forms-print*"))
|
|
|
|
|
(goto-char (buffer-end 1))
|
|
|
|
|
(insert record)
|
|
|
|
|
(setq buffer-read-only nil)
|
1999-01-15 16:19:53 +00:00
|
|
|
|
(if (< nb-record total-nb-records)
|
1995-01-05 11:54:18 +00:00
|
|
|
|
(insert "\n\n")))
|
|
|
|
|
(setq nb-record (1+ nb-record)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer "*forms-print*")
|
|
|
|
|
(print-buffer)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(kill-buffer (current-buffer)))
|
|
|
|
|
(forms-jump-record save-record)))
|
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; Special service
|
|
|
|
|
;;;
|
|
|
|
|
(defun forms-enumerate (the-fields)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Take a quoted list of symbols, and set their values to sequential numbers.
|
|
|
|
|
The first symbol gets number 1, the second 2 and so on.
|
1996-01-04 23:38:16 +00:00
|
|
|
|
It returns the highest number.
|
1991-07-01 18:06:13 +00:00
|
|
|
|
|
|
|
|
|
Usage: (setq forms-number-of-fields
|
|
|
|
|
(forms-enumerate
|
|
|
|
|
'(field1 field2 field2 ...)))"
|
|
|
|
|
|
|
|
|
|
(let ((the-index 0))
|
|
|
|
|
(while the-fields
|
|
|
|
|
(setq the-index (1+ the-index))
|
|
|
|
|
(let ((el (car-safe the-fields)))
|
|
|
|
|
(setq the-fields (cdr-safe the-fields))
|
|
|
|
|
(set el the-index)))
|
|
|
|
|
the-index))
|
1993-06-12 20:53:59 +00:00
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
;;; Debugging
|
1993-06-30 22:37:30 +00:00
|
|
|
|
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(defvar forms--debug nil
|
|
|
|
|
"*Enables forms-mode debugging if not nil.")
|
|
|
|
|
|
|
|
|
|
(defun forms--debug (&rest args)
|
1993-06-30 22:37:30 +00:00
|
|
|
|
"Internal debugging routine."
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(if forms--debug
|
|
|
|
|
(let ((ret nil))
|
|
|
|
|
(while args
|
|
|
|
|
(let ((el (car-safe args)))
|
|
|
|
|
(setq args (cdr-safe args))
|
|
|
|
|
(if (stringp el)
|
|
|
|
|
(setq ret (concat ret el))
|
|
|
|
|
(setq ret (concat ret (prin1-to-string el) " = "))
|
|
|
|
|
(if (boundp el)
|
|
|
|
|
(let ((vel (eval el)))
|
|
|
|
|
(setq ret (concat ret (prin1-to-string vel) "\n")))
|
|
|
|
|
(setq ret (concat ret "<unbound>" "\n")))
|
|
|
|
|
(if (fboundp el)
|
|
|
|
|
(setq ret (concat ret (prin1-to-string (symbol-function el))
|
|
|
|
|
"\n"))))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (get-buffer-create "*forms-mode debug*"))
|
1993-07-17 19:15:19 +00:00
|
|
|
|
(if (zerop (buffer-size))
|
|
|
|
|
(emacs-lisp-mode))
|
1991-07-01 18:06:13 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert ret)))))
|
|
|
|
|
|
1993-06-12 20:53:59 +00:00
|
|
|
|
;;; forms.el ends here.
|