This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / bin / ed / ed.h
CommitLineData
54a7a3ed
AM
1/* ed.h: type and constant definitions for the ed editor. */
2/*
3 * Copyright (c) 1993 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Andrew Moore, Talke Studio.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)ed.h 5.5 (Berkeley) 3/28/93
38 */
39
40#include <unistd.h>
41#include <errno.h>
42#if defined(BSD) && BSD >= 199103 || defined(__386BSD__)
43# include <sys/param.h> /* for MAXPATHLEN */
44#endif
45#include <regex.h>
46#include <signal.h>
47
48#define BITSPERBYTE 8
49#define BITS(type) (BITSPERBYTE * (int)sizeof(type))
50#define CHARBITS BITS(char)
51#define INTBITS BITS(int)
78ed81a3 52#define INTHIBIT (unsigned) (1 << (INTBITS - 1))
54a7a3ed
AM
53
54#define ERR (-2)
55#define EMOD (-3)
56#define FATAL (-4)
57
58#ifndef MAXPATHLEN
59# define MAXPATHLEN 255 /* _POSIX_PATH_MAX */
60#endif
61
62#define MAXFNAME MAXPATHLEN /* max file name size */
63#define MINBUFSZ 512 /* minimum buffer size - must be > 0 */
64#define LINECHARS (INTHIBIT - 1) /* max chars per line */
65#define SE_MAX 30 /* max subexpressions in a regular expression */
66
67typedef regex_t pattern_t;
68
69/* Line node */
70typedef struct line {
71 struct line *next;
72 struct line *prev;
73 off_t seek; /* address of line in scratch buffer */
74
75#define ACTV INTHIBIT /* active bit: high bit of len */
76
77 int len; /* length of line */
78} line_t;
79
80
81typedef struct undo {
82
83/* type of undo nodes */
84#define UADD 0
85#define UDEL 1
86#define UMOV 2
87#define VMOV 3
88
89 int type; /* command type */
90 line_t *h; /* head of list */
91 line_t *t; /* tail of list */
92} undo_t;
93
94#ifndef max
95# define max(a,b) ((a) > (b) ? (a) : (b))
96#endif
97#ifndef min
98# define min(a,b) ((a) < (b) ? (a) : (b))
99#endif
100
101/* nextln: return line after l mod k */
102#define nextln(l,k) ((l)+1 > (k) ? 0 : (l)+1)
103
104/* nextln: return line before l mod k */
105#define prevln(l,k) ((l)-1 < 0 ? (k) : (l)-1)
106
107#define skipblanks() while (isspace(*ibufp) && *ibufp != '\n') ibufp++
108
109/* spl1: disable some interrupts (requires reliable signals) */
110#define spl1() mutex++
111
112/* spl0: enable all interrupts; check sigflags (requires reliable signals) */
113#define spl0() \
114if (--mutex == 0) { \
115 if (sigflags & (1 << SIGHUP)) dohup(SIGHUP); \
116 if (sigflags & (1 << SIGINT)) dointr(SIGINT); \
117}
118
119#if defined(sun) || defined(NO_REALLOC_NULL)
120/* CKBUF: assure at least a minimum size for buffer b */
121#define CKBUF(b,n,i,err) \
122if ((i) > (n)) { \
123 int ti = (n); \
124 char *ts; \
125 spl1(); \
126 if ((b) != NULL) { \
127 if ((ts = (char *) realloc((b), ti += max((i), MINBUFSZ))) == NULL) { \
128 fprintf(stderr, "%s\n", strerror(errno)); \
129 sprintf(errmsg, "out of memory"); \
130 spl0(); \
131 return err; \
132 } \
133 } else { \
134 if ((ts = (char *) malloc(ti += max((i), MINBUFSZ))) == NULL) { \
135 fprintf(stderr, "%s\n", strerror(errno)); \
136 sprintf(errmsg, "out of memory"); \
137 spl0(); \
138 return err; \
139 } \
140 } \
141 (n) = ti; \
142 (b) = ts; \
143 spl0(); \
144}
145#else /* NO_REALLOC_NULL */
146/* CKBUF: assure at least a minimum size for buffer b */
147#define CKBUF(b,n,i,err) \
148if ((i) > (n)) { \
149 int ti = (n); \
150 char *ts; \
151 spl1(); \
152 if ((ts = (char *) realloc((b), ti += max((i), MINBUFSZ))) == NULL) { \
153 fprintf(stderr, "%s\n", strerror(errno)); \
154 sprintf(errmsg, "out of memory"); \
155 spl0(); \
156 return err; \
157 } \
158 (n) = ti; \
159 (b) = ts; \
160 spl0(); \
161}
162#endif /* NO_REALLOC_NULL */
163
164/* requeue: link pred before succ */
165#define requeue(pred, succ) (pred)->next = (succ), (succ)->prev = (pred)
166
167/* insqueue: insert elem in circular queue after pred */
168#define insqueue(elem, pred) \
169{ \
170 requeue((elem), (pred)->next); \
171 requeue((pred), elem); \
172}
173
174/* remqueue: remove elem from circular queue */
175#define remqueue(elem) requeue((elem)->prev, (elem)->next);
176
177/* nultonl: overwrite ASCII NULs with newlines */
178#define nultonl(s, l) translit(s, l, '\0', '\n')
179
180/* nltonul: overwrite newlines with ASCII NULs */
181#define nltonul(s, l) translit(s, l, '\n', '\0')
182
183#ifndef strerror
184# define strerror(n) sys_errlist[n]
185#endif
186
187#ifndef __P
188# ifndef __STDC__
189# define __P(proto) ()
190# else
191# define __P(proto) proto
192# endif
193#endif
194
195/* local function declarations */
196int append __P((long, int));
197int cbcdec __P((char *, FILE *));
198int cbcenc __P((char *, int, FILE *));
199char *ckfn __P((char *));
200int ckglob __P((void));
201int ckrange __P((long, long));
202int desflush __P((FILE *));
203int desgetc __P((FILE *));
204void desinit __P((void));
205int desputc __P((int, FILE *));
206int docmd __P((int));
207void err __P((char *));
208char *ccl __P((char *));
78ed81a3 209void clrmark __P((line_t *));
54a7a3ed
AM
210void cvtkey __P((char *, char *));
211long doglob __P((int));
212void dohup __P((int));
213void dointr __P((int));
214void dowinch __P((int));
215int doprint __P((long, long, int));
216long doread __P((long, char *));
217long dowrite __P((long, long, char *, char *));
218char *esctos __P((char *));
219long patscan __P((pattern_t *, int));
220long getaddr __P((line_t *));
221char *getcmdv __P((int *, int));
222char *getfn __P((void));
223int getkey __P((void));
224char *getlhs __P((int));
225int getline __P((void));
226int getlist __P((void));
78ed81a3 227long getmark __P((int));
54a7a3ed
AM
228long getnum __P((int));
229long getone __P((void));
230line_t *getlp __P((long));
231int getrhs __P((int));
232int getshcmd __P((void));
233char *gettxt __P((line_t *));
234void init_buf __P((void));
235int join __P((long, long));
236int lndelete __P((long, long));
237line_t *lpdup __P((line_t *));
238void lpqueue __P((line_t *));
239void makekey __P((char *));
240char *makesub __P((int));
78ed81a3 241int move __P((long, int));
54a7a3ed
AM
242int oddesc __P((char *, char *));
243void onhup __P((int));
244void onintr __P((int));
245pattern_t *optpat __P((void));
78ed81a3 246int putmark __P((int, line_t *));
54a7a3ed
AM
247void putstr __P((char *, int, long, int));
248char *puttxt __P((char *));
249void quit __P((int));
250int regsub __P((pattern_t *, line_t *, int));
251int sbclose __P((void));
252int sbopen __P((void));
253int sgetline __P((FILE *));
254int catsub __P((char *, regmatch_t *, int));
255int subst __P((pattern_t *, int));
256int tobinhex __P((int, int));
257int transfer __P((long));
78ed81a3 258char *translit __P((char *, int, int, int));
259int undo __P((int));
54a7a3ed
AM
260undo_t *upush __P((int, long, long));
261void ureset __P((void));
262
263
264extern char *sys_errlist[];
265extern int mutex;
266extern int sigflags;