mktokens revision 1.14
11.1Scgd#!/bin/sh -
21.14Skre#	$NetBSD: mktokens,v 1.14 2017/07/26 03:46:54 kre Exp $
31.1Scgd#
41.4Sjtc# Copyright (c) 1991, 1993
51.4Sjtc#	The Regents of the University of California.  All rights reserved.
61.1Scgd#
71.1Scgd# This code is derived from software contributed to Berkeley by
81.1Scgd# Kenneth Almquist.
91.1Scgd#
101.1Scgd# Redistribution and use in source and binary forms, with or without
111.1Scgd# modification, are permitted provided that the following conditions
121.1Scgd# are met:
131.1Scgd# 1. Redistributions of source code must retain the above copyright
141.1Scgd#    notice, this list of conditions and the following disclaimer.
151.1Scgd# 2. Redistributions in binary form must reproduce the above copyright
161.1Scgd#    notice, this list of conditions and the following disclaimer in the
171.1Scgd#    documentation and/or other materials provided with the distribution.
181.10Sagc# 3. Neither the name of the University nor the names of its contributors
191.1Scgd#    may be used to endorse or promote products derived from this software
201.1Scgd#    without specific prior written permission.
211.1Scgd#
221.1Scgd# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231.1Scgd# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241.1Scgd# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251.1Scgd# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261.1Scgd# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271.1Scgd# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281.1Scgd# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291.1Scgd# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301.1Scgd# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311.1Scgd# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321.1Scgd# SUCH DAMAGE.
331.1Scgd#
341.6Scgd#	@(#)mktokens	8.1 (Berkeley) 5/31/93
351.1Scgd
361.11Sapb: ${AWK:=awk}
371.12Sapb: ${SED:=sed}
381.11Sapb
391.1Scgd# The following is a list of tokens.  The second column is nonzero if the
401.1Scgd# token marks the end of a list.  The third column is the name to print in
411.1Scgd# error messages.
421.1Scgd
431.14Skre# Note that all the keyword tokens come after TWORD, and all the others
441.14Skre# come before it.   We rely upon that relationship - keep it!
451.14Skre
461.1Scgdcat > /tmp/ka$$ <<\!
471.1ScgdTEOF	1	end of file
481.1ScgdTNL	0	newline
491.1ScgdTSEMI	0	";"
501.1ScgdTBACKGND 0	"&"
511.1ScgdTAND	0	"&&"
521.1ScgdTOR	0	"||"
531.1ScgdTPIPE	0	"|"
541.1ScgdTLP	0	"("
551.1ScgdTRP	1	")"
561.1ScgdTENDCASE 1	";;"
571.13SkreTCASEFALL 1	";&"
581.1ScgdTENDBQUOTE 1	"`"
591.1ScgdTREDIR	0	redirection
601.1ScgdTWORD	0	word
611.1ScgdTIF	0	"if"
621.1ScgdTTHEN	1	"then"
631.1ScgdTELSE	1	"else"
641.1ScgdTELIF	1	"elif"
651.1ScgdTFI	1	"fi"
661.1ScgdTWHILE	0	"while"
671.1ScgdTUNTIL	0	"until"
681.1ScgdTFOR	0	"for"
691.1ScgdTDO	1	"do"
701.1ScgdTDONE	1	"done"
711.1ScgdTBEGIN	0	"{"
721.1ScgdTEND	1	"}"
731.1ScgdTCASE	0	"case"
741.1ScgdTESAC	1	"esac"
751.4SjtcTNOT	0	"!"
761.1Scgd!
771.1Scgdnl=`wc -l /tmp/ka$$`
781.8Schristosexec > token.h
791.11Sapb${AWK} '{print "#define " $1 " " NR-1}' /tmp/ka$$
801.1Scgdecho '
811.1Scgd/* Array indicating which tokens mark the end of a list */
821.1Scgdconst char tokendlist[] = {'
831.11Sapb${AWK} '{print "\t" $2 ","}' /tmp/ka$$
841.1Scgdecho '};
851.1Scgd
861.9Schristosconst char *const tokname[] = {'
871.12Sapb${SED} -e 's/"/\\"/g' \
881.1Scgd    -e 's/[^	 ]*[	 ][	 ]*[^	 ]*[	 ][	 ]*\(.*\)/	"\1",/' \
891.1Scgd    /tmp/ka$$
901.1Scgdecho '};
911.1Scgd'
921.12Sapb${SED} 's/"//g' /tmp/ka$$ | ${AWK} '
931.14Skre/TWORD/{print "#define KWDOFFSET " NR; print ""; 
941.9Schristos      print "const char *const parsekwd[] = {"}
951.1Scgd/TIF/,/neverfound/{print "	\"" $3 "\","}'
961.1Scgdecho '	0
971.1Scgd};'
981.1Scgd
991.1Scgdrm /tmp/ka$$
100