genbki.sh

来自「PostgreSQL7.4.6 for Linux」· Shell 代码 · 共 438 行

SH
438
字号
#! /bin/sh#-------------------------------------------------------------------------## genbki.sh--#    shell script which generates .bki files from specially formatted .h#    files.  These .bki files are used to initialize the postgres template#    database.## Copyright (c) 1994, Regents of the University of California### IDENTIFICATION#    $Header: /cvsroot/pgsql/src/backend/catalog/genbki.sh,v 1.30 2003/07/29 14:12:50 tgl Exp $## NOTES#    non-essential whitespace is removed from the generated file.#    if this is ever a problem, then the sed script at the very#    end can be changed into another awk script or something smarter.##-------------------------------------------------------------------------: ${AWK='awk'}: ${CPP='cc -E'}CMDNAME=`basename $0`BKIOPTS=INCLUDE_DIRS=OUTPUT_PREFIX=INFILES=major_version=## Process command line switches.#while [ $# -gt 0 ]do    case $1 in	-D)            BKIOPTS="$BKIOPTS -D$2"            shift;;	-D*)            BKIOPTS="$BKIOPTS $1"            ;;        -I)            INCLUDE_DIRS="$INCLUDE_DIRS $2"            shift;;        -I*)            arg=`echo $1 | sed -e 's/^-I//'`            INCLUDE_DIRS="$INCLUDE_DIRS $arg"            ;;        -o)            OUTPUT_PREFIX="$2"            shift;;        -o*)            OUTPUT_PREFIX=`echo $1 | sed -e 's/^-o//'`            ;;        --set-version=*)            arg=`expr x"$1" : x"--set-version=\(.*\)"`            major_version=`expr x"$arg" : x'\([0-9][0-9]*\.[0-9][0-9]*\)'`            ;;        --help)            echo "$CMDNAME generates system catalog bootstrapping files."            echo            echo "Usage:"            echo "  $CMDNAME [ -D define [...] ] [ -I dir ] --set-version=VERSION -o prefix files..."            echo            echo "Options:"            echo "  -I  path to postgres_ext.h and pg_config_manual.h files"            echo "  -o  prefix of output files"            echo "  --set-version  PostgreSQL version number for initdb cross-check"            echo            echo "The environment variables CPP and AWK determine which C"            echo "preprocessor and Awk program to use. The defaults are"            echo "\`cc -E' and \`awk'."            echo            echo "Report bugs to <pgsql-bugs@postgresql.org>."            exit 0            ;;	-*)            echo "$CMDNAME: invalid option: $1"            exit 1            ;;        *)            INFILES="$INFILES $1"            ;;    esac    shiftdoneif [ x"$INFILES" = x"" ] ; then    echo "$CMDNAME: no input files" 1>&2    exit 1fiif [ x"$OUTPUT_PREFIX" = x"" ] ; then    echo "$CMDNAME: no output prefix specified" 1>&2    exit 1fiif [ x"$INCLUDE_DIRS" = x"" ] ; then    echo "$CMDNAME: path to include directory unknown" 1>&2    exit 1fiif [ x"$major_version" = x"" ] ; then    echo "$CMDNAME: invalid or no version number specified" 1>&2    exit 1fiif [ x"$TMPDIR" = x"" ] ; then    TMPDIR=/tmpfiTMPFILE="$TMPDIR/genbkitmp$$.c"trap "rm -f $TMPFILE ${OUTPUT_PREFIX}.bki.$$ ${OUTPUT_PREFIX}.description.$$" 0 1 2 3 15# Get NAMEDATALEN from postgres_ext.hfor dir in $INCLUDE_DIRS; do    if [ -f "$dir/postgres_ext.h" ]; then        NAMEDATALEN=`grep '^#define[ 	]*NAMEDATALEN' $dir/postgres_ext.h | $AWK '{ print $3 }'`        break    fidone# Get INDEX_MAX_KEYS from pg_config_manual.h# (who needs consistency?)for dir in $INCLUDE_DIRS; do    if [ -f "$dir/pg_config_manual.h" ]; then        INDEXMAXKEYS=`grep '^#define[ 	]*INDEX_MAX_KEYS' $dir/pg_config_manual.h | $AWK '{ print $3 }'`        break    fidone# Get PG_CATALOG_NAMESPACE from catalog/pg_namespace.hfor dir in $INCLUDE_DIRS; do    if [ -f "$dir/catalog/pg_namespace.h" ]; then        PG_CATALOG_NAMESPACE=`grep '^#define[ 	]*PG_CATALOG_NAMESPACE' $dir/catalog/pg_namespace.h | $AWK '{ print $3 }'`        break    fidone# Get FirstGenBKIObjectId from access/transam.hfor dir in $INCLUDE_DIRS; do    if [ -f "$dir/access/transam.h" ]; then        BKIOBJECTID=`grep '^#define[ 	]*FirstGenBKIObjectId' $dir/access/transam.h | $AWK '{ print $3 }'`        break    fidoneexport BKIOBJECTID# NOTE: we assume here that FUNC_MAX_ARGS has the same value as# INDEX_MAX_KEYS, and don't read it separately from# pg_config_manual.h.  This is OK because both of them must be equal# to the length of oidvector.INDEXMAXKEYS2=`expr $INDEXMAXKEYS '*' 2` || exitINDEXMAXKEYS4=`expr $INDEXMAXKEYS '*' 4` || exittouch ${OUTPUT_PREFIX}.description.$$# ----------------# 	Strip comments and other trash from .h##	Put multi-line start/end comments on a separate line##	Rename datatypes that have different names in .h files than in SQL##	Substitute values of configuration constants# ----------------#cat $INFILES | \sed -e 's;/\*.*\*/;;g' \    -e 's;/\*;\/*\;g' \    -e 's;\*/;\*/\;g' | # we must run a new sed here to see the newlines we addedsed -e "s/;[ 	]*$//g" \    -e "s/^[ 	]*//" \    -e "s/[ 	]Oid/ oid/g" \    -e "s/^Oid/oid/g" \    -e "s/(Oid/(oid/g" \    -e "s/[ 	]NameData/ name/g" \    -e "s/^NameData/name/g" \    -e "s/(NameData/(name/g" \    -e "s/[ 	]TransactionId/ xid/g" \    -e "s/^TransactionId/xid/g" \    -e "s/(TransactionId/(xid/g" \    -e "s/PGUID/1/g" \    -e "s/NAMEDATALEN/$NAMEDATALEN/g" \    -e "s/PGNSP/$PG_CATALOG_NAMESPACE/g" \    -e "s/INDEX_MAX_KEYS\*2/$INDEXMAXKEYS2/g" \    -e "s/INDEX_MAX_KEYS\*4/$INDEXMAXKEYS4/g" \    -e "s/INDEX_MAX_KEYS/$INDEXMAXKEYS/g" \    -e "s/FUNC_MAX_ARGS\*2/$INDEXMAXKEYS2/g" \    -e "s/FUNC_MAX_ARGS\*4/$INDEXMAXKEYS4/g" \    -e "s/FUNC_MAX_ARGS/$INDEXMAXKEYS/g" \| $AWK '# ----------------#	now use awk to process remaining .h file..##	nc is the number of catalogs#	inside is a variable set to 1 when we are scanning the#	   contents of a catalog definition.#	reln_open is a flag indicating when we are processing DATA lines.#	   (i.e. have a relation open and need to close it)#	nextbkioid is the next OID available for automatic assignment.#	oid is the most recently seen or assigned oid.# ----------------BEGIN {	inside = 0;	raw = 0;	bootstrap = "";	shared_relation = "";	without_oids = "";	nc = 0;	reln_open = 0;	comment_level = 0;	nextbkioid = ENVIRON["BKIOBJECTID"];	oid = 0;}# ----------------# Anything in a /* .. */ block should be ignored.# Blank lines also go.# Note that any /* */ comment on a line by itself was removed from the line# by the sed above.# ----------------/^\/\*/           { comment_level += 1; next; }/^\*\//           { comment_level -= 1; next; }comment_level > 0 { next; }/^[ 	]*$/      { next; }# ----------------#	anything in a BKI_BEGIN .. BKI_END block should be passed#	along without interpretation.# ----------------/^BKI_BEGIN/ 	{ raw = 1; next; }/^BKI_END/ 	{ raw = 0; next; }raw == 1 	{ print; next; }# ----------------#	DATA() statements are basically passed right through after#	stripping off the DATA( and the ) on the end.  However,#	if we see "OID = 0" then we should assign an oid from nextbkioid.#	Remember any explicit or assigned OID for use by DESCR().# ----------------/^DATA\(/ {	data = substr($0, 6, length($0) - 6);	oid = 0;	nf = split(data, datafields);	if (nf >= 4 && datafields[1] == "insert" && datafields[2] == "OID" && datafields[3] == "=")	{		oid = datafields[4];		if (oid == 0)		{			oid = nextbkioid;			nextbkioid++;			sub("OID *= *0", "OID = " oid, data);		}	}	print data;	next;}/^DESCR\(/ {	if (oid != 0)	{		data = substr($0, 8, length($0) - 9);		if (data != "")			printf "%d\t%s\t0\t%s\n", oid, catalog, data >>descriptionfile;	}	next;}/^DECLARE_INDEX\(/ {# ----#  end any prior catalog data insertions before starting a define index# ----	if (reln_open == 1) {#		print "show";		print "close " catalog;		reln_open = 0;	}	data = substr($0, 15, length($0) - 15);	print "declare index " data}/^DECLARE_UNIQUE_INDEX\(/ {# ----#  end any prior catalog data insertions before starting a define unique index# ----	if (reln_open == 1) {#		print "show";		print "close " catalog;		reln_open = 0;	}	data = substr($0, 22, length($0) - 22);	print "declare unique index " data}/^BUILD_INDICES/	{ print "build indices"; }	# ----------------#	CATALOG() definitions take some more work.# ----------------/^CATALOG\(/ { # ----#  end any prior catalog data insertions before starting a new one..# ----	if (reln_open == 1) {#		print "show";		print "close " catalog;		reln_open = 0;	}# ----#  get the name and properties of the new catalog# ----	pos = index($1,")");	catalog = substr($1,9,pos-9); 	if ($0 ~ /BOOTSTRAP/) {		bootstrap = "bootstrap ";	}	if ($0 ~ /BKI_SHARED_RELATION/) {		shared_relation = "shared_relation ";	}	if ($0 ~ /BKI_WITHOUT_OIDS/) {		without_oids = "without_oids ";	}        i = 1;	inside = 1;        nc++;	next;}# ----------------#	process the contents of the catalog definition##	attname[ x ] contains the attribute name for attribute x#	atttype[ x ] contains the attribute type fot attribute x# ----------------inside == 1 {# ----#  ignore a leading brace line..# ----        if ($1 ~ /\{/)		next;# ----#  if this is the last line, then output the bki catalog stuff.# ----	if ($1 ~ /}/) {		print "create " bootstrap shared_relation without_oids catalog;		print "\t(";		for (j=1; j<i-1; j++) {			print "\t " attname[ j ] " = " atttype[ j ] " ,";		}		print "\t " attname[ j ] " = " atttype[ j ] ;		print "\t)";		if (bootstrap == "") {			print "open " catalog;		}		i = 1;		reln_open = 1;		inside = 0;		bootstrap = "";		shared_relation = "";		without_oids = "";		next;	}# ----#  if we are inside the catalog definition, then keep sucking up#  attribute names and types# ----	if ($2 ~ /\[.*\]/) {			# array attribute		idlen = index($2,"[") - 1;		atttype[ i ] = $1 "[]";		# variable-length only..		attname[ i ] = substr($2,1,idlen);	} else {		atttype[ i ] = $1;		attname[ i ] = $2;	}	i++;	next;}END {	if (reln_open == 1) {#		print "show";		print "close " catalog;		reln_open = 0;	}}' "descriptionfile=${OUTPUT_PREFIX}.description.$$" > $TMPFILE || exitecho "# PostgreSQL $major_version" >${OUTPUT_PREFIX}.bki.$$$CPP $BKIOPTS $TMPFILE | \sed -e '/^[ 	]*$/d' \    -e 's/[ 	][ 	]*/ /g' >>${OUTPUT_PREFIX}.bki.$$ || exit## Sanity check: if one of the sed/awk/etc commands fails, we'll probably# end up with a .bki file that is empty or just a few lines.  Cross-check# that the files are of reasonable size.  The numbers here are arbitrary,# but are much smaller than the actual expected sizes as of Postgres 7.2.#if [ `wc -c < ${OUTPUT_PREFIX}.bki.$$` -lt 100000 ]; then    echo "$CMDNAME: something seems to be wrong with the .bki file" >&2    exit 1fiif [ `wc -c < ${OUTPUT_PREFIX}.description.$$` -lt 10000 ]; then    echo "$CMDNAME: something seems to be wrong with the .description file" >&2    exit 1fi# Looks good, commit ...mv ${OUTPUT_PREFIX}.bki.$$ ${OUTPUT_PREFIX}.bki || exitmv ${OUTPUT_PREFIX}.description.$$ ${OUTPUT_PREFIX}.description || exitexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?