Blame SOURCES/hsqldb-wrapper

8e2a7f
#!/bin/sh
8e2a7f
8e2a7f
# This file was created with portions of the original SysV init script shipped 
8e2a7f
# with hsqldb
8e2a7f
8e2a7f
# Copyright (c) 2001-2004, The HSQL Development Group
8e2a7f
# All rights reserved.
8e2a7f
#
8e2a7f
# Redistribution and use in source and binary forms, with or without
8e2a7f
# modification, are permitted provided that the following conditions are met:
8e2a7f
#
8e2a7f
# Redistributions of source code must retain the above copyright notice, this
8e2a7f
# list of conditions and the following disclaimer.
8e2a7f
#
8e2a7f
# Redistributions in binary form must reproduce the above copyright notice,
8e2a7f
# this list of conditions and the following disclaimer in the documentation
8e2a7f
# and/or other materials provided with the distribution.
8e2a7f
#
8e2a7f
# Neither the name of the HSQL Development Group nor the names of its
8e2a7f
# contributors may be used to endorse or promote products derived from this
8e2a7f
# software without specific prior written permission.
8e2a7f
#
8e2a7f
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
8e2a7f
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
8e2a7f
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
8e2a7f
# ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
8e2a7f
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
8e2a7f
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
8e2a7f
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
8e2a7f
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
8e2a7f
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
8e2a7f
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
8e2a7f
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8e2a7f
8e2a7f
8e2a7f
# Class in the org.hsqldb package to start.
8e2a7f
# At this time, only the values "Server" or "WebServer" will work.
8e2a7f
TARGET_CLASS=Server
8e2a7f
8e2a7f
. /etc/sysconfig/hsqldb
8e2a7f
8e2a7f
# Suffix delimiter to $SERVER_ADDL_CLASSPATH, if it is set.
8e2a7f
[ -n "$SERVER_ADDL_CLASSPATH" ] &&
8e2a7f
SERVER_ADDL_CLASSPATH="${SERVER_ADDL_CLASSPATH}:"
8e2a7f
# Validate that config file sets all required variables.
8e2a7f
[ -n "$JAVA_EXECUTABLE" ] && [ -n "$HSQLDB_JAR_PATH" ] &&
8e2a7f
[ -n "$SERVER_HOME" ] || {
8e2a7f
    echo "Config file '$CFGFILE' does not set one or more of following variables
8e2a7f
    JAVA_EXECUTABLE, HSQLDB_JAR_PATH, SERVER_HOME" 1>&2
8e2a7f
    exit 2
8e2a7f
}
8e2a7f
[ -d "$SERVER_HOME" ] || {
8e2a7f
    echo "SERVER_HOME variable in '$CFGFILE' is set to a non-directory." 1>&2
8e2a7f
    exit 2
8e2a7f
}
8e2a7f
[ -f "$JAVA_EXECUTABLE" ] && [ -f "$HSQLDB_JAR_PATH" ] || {
8e2a7f
    echo "JAVA_EXECUTABLE or HSQLDB_JAR_PATH in '$CFGFILE' is set to a non-file." 1>&2
8e2a7f
    exit 2
8e2a7f
}
8e2a7f
[ -r "$HSQLDB_JAR_PATH" ] || {
8e2a7f
    echo "'$HSQLDB_JAR_PATH' isn't readable" 1>&2
8e2a7f
    exit 2
8e2a7f
}
8e2a7f
[ -x "$JAVA_EXECUTABLE" ] || {
8e2a7f
    echo "No Java executable found at '$JAVA_EXECUTABLE'" 1>&2
8e2a7f
    exit 2
8e2a7f
}
8e2a7f
8e2a7f
# Make a good effort (but not bullet-proof) check on permissions of the
8e2a7f
# auth file.  Unfortunately, if auth-file is not specified, this depends
8e2a7f
# upon both (a) $HOME being set; and (b) SqlToolSprayer and SqlTool defaults.
8e2a7f
# On the other hand, it works great if AUTH_FILE is set explicitly by user.
8e2a7f
if [ -z "$AUTH_FILE" ] && [ -z "$HOME" ]; then
8e2a7f
    : # Lousy init environment didn't set $HOME, so can't find dflt cfg file.
8e2a7f
else
8e2a7f
    _AUTH_TEST_PATH="$AUTH_FILE"
8e2a7f
    [ -n "${_AUTH_TEST_PATH}" ] || _AUTH_TEST_PATH="$HOME/sqltool.rc"
8e2a7f
    [ -f "$_AUTH_TEST_PATH" ] || {
8e2a7f
        echo "No auth file found at '$_AUTH_TEST_PATH'" 1>&2
8e2a7f
        exit 2
8e2a7f
    }
8e2a7f
    [ -r "$_AUTH_TEST_PATH" ] || {
8e2a7f
        echo "Auth file '$_AUTH_TEST_PATH' not readable" 1>&2
8e2a7f
        exit 2
8e2a7f
    }
8e2a7f
    ls -ld "$_AUTH_TEST_PATH" | grep '^-..------' > /dev/null 2>&1 || {
8e2a7f
        echo "Fix permissions on '$_AUTH_TEST_PATH' like 'chmod 600 $_AUTH_TEST_PATH'" 1>&2
8e2a7f
        exit 2
8e2a7f
    }
8e2a7f
fi
8e2a7f
8e2a7f
TLS_SWITCHES=
8e2a7f
[ -n "$TLS_KEYSTORE" ] &&
8e2a7f
TLS_SWITCHES="-Djavax.net.ssl.keyStore=$TLS_KEYSTORE -Djavax.net.ssl.keyStorePassword=$TLS_PASSWORD"
8e2a7f
8e2a7f
cd "$SERVER_HOME" &&
8e2a7f
exec "$JAVA_EXECUTABLE" $SERVER_JVMARGS $TLS_SWITCHES -classpath "${SERVER_ADDL_CLASSPATH}${HSQLDB_JAR_PATH}" org.hsqldb.util.MainInvoker org.hsqldb.$TARGET_CLASS $INVOC_ADDL_ARGS