1#!/bin/sh -
2# @configure_input@
3#
4#	$NetBSD: makelist.in,v 1.2 2005/01/05 04:40:05 lukem Exp $
5#
6# Copyright (c) 1992, 1993
7#	The Regents of the University of California.  All rights reserved.
8#
9# This code is derived from software contributed to Berkeley by
10# Christos Zoulas of Cornell University.
11#
12# Redistribution and use in source and binary forms, with or without
13# modification, are permitted provided that the following conditions
14# are met:
15# 1. Redistributions of source code must retain the above copyright
16#    notice, this list of conditions and the following disclaimer.
17# 2. Redistributions in binary form must reproduce the above copyright
18#    notice, this list of conditions and the following disclaimer in the
19#    documentation and/or other materials provided with the distribution.
20# 3. All advertising materials mentioning features or use of this software
21#    must display the following acknowledgement:
22#	This product includes software developed by the University of
23#	California, Berkeley and its contributors.
24# 4. Neither the name of the University nor the names of its contributors
25#    may be used to endorse or promote products derived from this software
26#    without specific prior written permission.
27#
28# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38# SUCH DAMAGE.
39#
40#	@(#)makelist	5.3 (Berkeley) 6/4/93
41
42# makelist.sh: Automatically generate header files...
43
44AWK=@AWK@
45USAGE="Usage: $0 -h|-e|-fc|-fh|-bc|-bh|-m <filenames>"
46
47LC_ALL="C"
48export LC_ALL
49
50if [ "x$1" = "x" ]
51then
52    echo $USAGE 1>&2
53    exit 1
54fi
55
56FLAG="$1"
57shift
58
59FILES="$@"
60
61case $FLAG in
62
63#	generate foo.h file from foo.c
64#
65-h)
66    set - `echo $FILES | sed -e 's/\\./_/g'`
67    hdr="_h_`basename $1`"
68    cat $FILES | $AWK '
69	BEGIN {
70	    printf("/* Automatically generated file, do not edit */\n");
71	    printf("#ifndef %s\n#define %s\n", "'$hdr'", "'$hdr'");
72	}
73	/\(\):/ {
74	    pr = substr($2, 1, 2);
75	    if (pr == "vi" || pr == "em" || pr == "ed") {
76		name = substr($2, 1, length($2) - 3);
77#
78# XXX:	need a space between name and prototype so that -fc and -fh
79#	parsing is much easier
80#
81		printf("protected el_action_t\t%s (EditLine *, int);\n", name);
82	    }
83	}
84	END {
85	    printf("#endif /* %s */\n", "'$hdr'");
86	}'
87	;;
88
89#	generate help.c from various .c files
90#
91-bc)
92    cat $FILES | $AWK '
93	BEGIN {
94	    printf("/* Automatically generated file, do not edit */\n");
95	    printf("#include \"sys.h\"\n#include \"el.h\"\n");
96	    printf("private const struct el_bindings_t el_func_help[] = {\n");
97	    low = "abcdefghijklmnopqrstuvwxyz_";
98	    high = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_";
99	    for (i = 1; i <= length(low); i++)
100		tr[substr(low, i, 1)] = substr(high, i, 1);
101	}
102	/\(\):/ {
103	    pr = substr($2, 1, 2);
104	    if (pr == "vi" || pr == "em" || pr == "ed") {
105		name = substr($2, 1, length($2) - 3);
106		uname = "";
107		fname = "";
108		for (i = 1; i <= length(name); i++) {
109		    s = substr(name, i, 1);
110		    uname = uname tr[s];
111		    if (s == "_")
112			s = "-";
113		    fname = fname s;
114		}
115
116		printf("    { %-30.30s %-30.30s\n","\"" fname "\",", uname ",");
117		ok = 1;
118	    }
119	}
120	/^ \*/ {
121	    if (ok) {
122		printf("      \"");
123		for (i = 2; i < NF; i++)
124		    printf("%s ", $i);
125		printf("%s\" },\n", $i);
126		ok = 0;
127	    }
128	}
129	END {
130	    printf("    { NULL, 0, NULL }\n");
131	    printf("};\n");
132	    printf("\nprotected const el_bindings_t* help__get()");
133	    printf("{ return el_func_help; }\n");
134	}'
135	;;
136
137#	generate help.h from various .c files
138#
139-bh)
140    $AWK '
141	BEGIN {
142	    printf("/* Automatically generated file, do not edit */\n");
143	    printf("#ifndef _h_help_c\n#define _h_help_c\n");
144	    printf("protected const el_bindings_t *help__get(void);\n");
145	    printf("#endif /* _h_help_c */\n");
146	}' /dev/null
147	;;
148
149#	generate fcns.h from various .h files
150#
151-fh)
152    cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
153    sort | tr '[a-z]' '[A-Z]' | $AWK '
154	BEGIN {
155	    printf("/* Automatically generated file, do not edit */\n");
156	    printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
157	    count = 0;
158	}
159	{
160	    printf("#define\t%-30.30s\t%3d\n", $1, count++);
161	}
162	END {
163	    printf("#define\t%-30.30s\t%3d\n", "EL_NUM_FCNS", count);
164
165	    printf("typedef el_action_t (*el_func_t)(EditLine *, int);");
166	    printf("\nprotected const el_func_t* func__get(void);\n");
167	    printf("#endif /* _h_fcns_c */\n");
168	}'
169	;;
170
171#	generate fcns.c from various .h files
172#
173-fc)
174    cat $FILES | $AWK '/el_action_t/ { print $3 }' | sort | $AWK '
175	BEGIN {
176	    printf("/* Automatically generated file, do not edit */\n");
177	    printf("#include \"sys.h\"\n#include \"el.h\"\n");
178	    printf("private const el_func_t el_func[] = {");
179	    maxlen = 80;
180	    needn = 1;
181	    len = 0;
182	}
183	{
184	    clen = 25 + 2;
185	    len += clen;
186	    if (len >= maxlen)
187		needn = 1;
188	    if (needn) {
189		printf("\n    ");
190		needn = 0;
191		len = 4 + clen;
192	    }
193	    s = $1 ",";
194	    printf("%-26.26s ", s);
195	}
196	END {
197	    printf("\n};\n");
198	    printf("\nprotected const el_func_t* func__get() { return el_func; }\n");
199	}'
200	;;
201
202#	generate editline.c from various .c files
203#
204-e)
205	echo "$FILES" | tr ' ' '\012' | $AWK '
206	BEGIN {
207	    printf("/* Automatically generated file, do not edit */\n");
208	    printf("#define protected static\n");
209	    printf("#define SCCSID\n");
210	}
211	{
212	    printf("#include \"%s\"\n", $1);
213	}'
214	;;
215
216#	generate man page fragment from various .c files
217#
218-m)
219    cat $FILES | $AWK '
220	BEGIN {
221	    printf(".\\\" Section automatically generated with makelist\n");
222	    printf(".Bl -tag -width 4n\n");
223	}
224	/\(\):/ {
225	    pr = substr($2, 1, 2);
226	    if (pr == "vi" || pr == "em" || pr == "ed") {
227		name = substr($2, 1, length($2) - 3);
228		fname = "";
229		for (i = 1; i <= length(name); i++) {
230		    s = substr(name, i, 1);
231		    if (s == "_")
232			s = "-";
233		    fname = fname s;
234		}
235
236		printf(".It Ic %s\n", fname);
237		ok = 1;
238	    }
239	}
240	/^ \*/ {
241	    if (ok) {
242		for (i = 2; i < NF; i++)
243		    printf("%s ", $i);
244		printf("%s.\n", $i);
245		ok = 0;
246	    }
247	}
248	END {
249	    printf(".El\n");
250	    printf(".\\\" End of section automatically generated with makelist\n");
251	}'
252	;;
253
254*)
255    echo $USAGE 1>&2
256    exit 1
257    ;;
258
259esac
260