#!/bin/sh
# rhdb	This is the init script for starting up the Red Hat Database server
#
# chkconfig: - 85 15
# description: Starts and stops the PostgreSQL backend daemon that handles \
#	       all Red Hat Database requests.
# processname: postmaster
# pidfile: /var/run/postmaster.pid

# This script is slightly unusual in that the name of the daemon (postmaster)
# is not the same as the name of the subsystem (rhdb)

# Version 6.5.3-2 Lamar Owen
# Added code to determine if PGDATA exists, whether it is current version
#     or not, and initdb if no PGDATA (initdb will not overwrite a database).

# Version 7.0 Lamar Owen
# Added logging code
# Changed PGDATA.
#

# Version 7.0.2 Trond Eivind Glomsrd <teg@redhat.com>
# use functions, add conditional restart
          
# Version 7.0.3 Lamar Owen <lamar@postgresql.org>
# Check for the existence of functions before blindly using them 
# in particular -- check for success () and failure () before using.
# More Cross-distribution support -- PGVERSION variable, and docdir checks.

# Version 7.1 Release Candidate Lamar Owen <lamar@postgresql.org>
# initdb parameters have changed.

# Version 7.1.2 Trond Eivind Glomsrd <teg@redhat.com>
# Specify shell for su
# Handle stop better - kill unwanted output, make it wait until the database is ready
# Handle locales slightly differently - always using "C" isn't a valid option 
# Kill output from database initialization 
# Mark messages for translation

# Version 7.1.2-2.PGDG Lamar Owen <lamar.owen@wgcr.org>
# sync up.
# Karl's fixes for some quoting issues.

# Version 7.2b2 Lamar Owen <lamar.owen@wgcr.org>
# version change.

# Version 7.2 final.  Lamar Owen <lamar.owen@wgcr.org>
# reload from Peter E.
# Eliminate the pidof postmaster test in stop -- we're using pg_ctl so we don't need pidof.
# Tested the $? return for the stop script -- it does in fact propagate.
# TODO: multiple postmasters.

# PGVERSION is:
PGVERSION=7.2.3

# Source function library.
INITD=/etc/rc.d/init.d
. $INITD/functions

# Get function listing for cross-distribution logic.
TYPESET=`typeset -f|grep "declare"`

# Check for older PGDATA location.
if [ -f /var/lib/pgsql/PG_VERSION ] && [ -d /var/lib/pgsql/base/template1 ]
then
	export PGDATA=/var/lib/pgsql
else
	export PGDATA=/var/lib/pgsql/data
fi

# Get config.
. /etc/sysconfig/network

# Check that networking is up.
# Pretty much need it for postmaster.
if [ "${NETWORKING}" = "no" ]
then
	echo $"Red Hat Database requires that networking be enabled."
	exit 0
fi

# Check for the actual postmaster executable
if [ ! -f /usr/bin/postmaster ]
then
	echo $"No postmaster executable found."
	exit 0
fi


# Check for an existing database.
# Returns 0 if no existing db, 1 if an existing db.
# If there is an existing db of an different version, exit with a return code of 1.
checkexisting() {
	# Check for the PGDATA structure
	if [ -f $PGDATA/PG_VERSION ] && [ -d $PGDATA/base ]
	then
	# Check version of existing PGDATA
		if [ `cat $PGDATA/PG_VERSION` != '7.2' ]
		then
			SYSDOCDIR="(Your system's documentation directory)"
			if [ -d /usr/doc/rh-postgresql-$PGVERSION ]
			then
				SYSDOCDIR=/usr/doc
			fi
			if [ -d /usr/share/doc/rh-postgresql-$PGVERSION ]
			then
				SYSDOCDIR=/usr/share/doc
			fi
			if [ -d /usr/doc/packages/rh-postgresql-$PGVERSION ]
			then
				SYSDOCDIR=/usr/doc/packages
			fi
			if [ -d /usr/share/doc/packages/rh-postgresql-$PGVERSION ]
			then
				SYSDOCDIR=/usr/share/doc/packages
			fi
			echo $"An old version of the database format was found."
			echo $"You need to upgrade the data format before using Red Hat Database."
			echo $"See $SYSDOCDIR/rh-postgresql-$PGVERSION/README.rpm-dist for more information."
			exit 1
		fi
	# No existing PGDATA! Should initdb.
	else
		return 0
 	fi

	return 1
}

init() {
	checkexisting
	if [ $? -eq 1 ]
	then
		echo $"An existing database was found; no initialization done."
		exit 0
	fi
    
	echo -n $"Initializing database: "
	if [ ! -d $PGDATA ]
	then
		mkdir -p $PGDATA
		chown postgres.postgres $PGDATA
	fi
	
	# Only locale supported is C (no locale)
	echo "export -n LANG LC_ALL LC_CTYPE LC_COLLATE LC_NUMERIC LC_CTYPE LC_TIME" > $PGDATA/../initdb.i18n
	echo "export LANG=C" >> $PGDATA/../initdb.i18n
	
	# Initialize the database
	su -l postgres -s /bin/sh -c "/usr/bin/initdb --pgdata=/var/lib/pgsql/data > /dev/null 2>&1" < /dev/null
	[ -f $PGDATA/PG_VERSION ] && echo_success

	if [ ! -f $PGDATA/PG_VERSION ]
	then
		echo_failure
		echo
		exit 1
	fi

	echo
}

start(){
	PSQL_START=$"Starting the Red Hat Database service: "

	checkexisting
	if [ $? -eq 0 ];
	then
		init
	fi

	# Check for postmaster already running...
	pid=`pidof -s postmaster`
	if [ $pid ]
	then
		echo $"A postmaster is already running."
	else
		#all systems go -- remove any stale lock files
		rm -f /tmp/.s.PGSQL.* > /dev/null
		echo -n "$PSQL_START"
		su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl  -D $PGDATA -p /usr/bin/postmaster start  > /dev/null 2>&1" < /dev/null
 		sleep 1
 		pid=`pidof -s postmaster`
 		if [ $pid ]
		then
			success "$PSQL_START"
			touch /var/lock/subsys/postgresql
			echo $pid > /var/run/postmaster.pid
			echo
		else
			failure "$PSQL_START"
			echo
		fi
	fi
}

stop(){
	echo -n $"Stopping the Red Hat Database service: "

	su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl stop -D $PGDATA -s -m fast" > /dev/null 2>&1
	ret=$? 
	if [ $ret -eq 0 ]; then
		echo_success
	else
		echo_failure
	fi
	echo
	rm -f /var/run/postmaster.pid
	rm -f /var/lock/subsys/postgresql
}

restart(){
    stop
    start
}

condrestart(){
    [ -e /var/lock/subsys/postgresql ] && restart || :
}

reload(){
    su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl reload -D $PGDATA -s" > /dev/null 2>&1
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  status)
	status postmaster
	;;
  restart)
	restart
	;;
  condrestart)
	condrestart
	;;
  reload|force-reload)
	reload
	;;
  init)
	init
	;;
  *)
	echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload|init}"
	exit 1
esac

exit 0
