#!/bin/sh
#
# init script for XmlRpcWorkflowManager
#
# chkconfig: 345 88 22
# description: CAS Workflow Manager
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE.txt file distributed with
# this work for additional information regarding copyright ownership.  The ASF
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
# License for the specific language governing permissions and limitations
# under the License.    


[ -f /etc/sysconfig/java ] && . /etc/sysconfig/java
#[ -f /etc/sysconfig/cas-filemgr] && . /etc/sysconfig/cas-filemgr

SERVER_PORT=9001
export SERVER_PORT

if [ -z $JAVA_HOME ] ; then
	JAVA_HOME=/path/to/java/home
else
	JAVA_HOME=${JAVA_HOME}
fi

export JAVA_HOME
CAS_WORKFLOW_HOME=..
export CAS_WORKFLOW_HOME
RUN_HOME=${CAS_WORKFLOW_HOME}/../run
export RUN_HOME
CAS_WORKFLOW_PROPS=../etc/workflow.properties
export CAS_WORKFLOW_PROPS

PATH=${JAVA_HOME}/bin:${CAS_WORKFLOW_HOME}/bin:/usr/bin:/bin:/usr/sbin:/sbin
export PATH

# See how we were called.
case "$1" in
  start)
        echo -n "Starting cas workflow manager: "
        $JAVA_HOME/bin/java -Djava.ext.dirs=${CAS_WORKFLOW_HOME}/lib \
        -Dlog4j.configurationFile=${CAS_WORKFLOW_HOME}/etc/log4j2.xml \
        -Djava.util.logging.config.file=${CAS_WORKFLOW_HOME}/etc/logging.properties \
        -Dorg.apache.oodt.cas.workflow.properties=${CAS_WORKFLOW_PROPS} \
        -Dorg.apache.oodt.cas.pge.task.metkeys.legacyMode="true" \
        -Dorg.apache.oodt.cas.pge.task.status.legacyMode="true" \
        org.apache.oodt.cas.workflow.system.WorkflowManagerStarter --portNum $SERVER_PORT &
        echo $! >${RUN_HOME}/cas.workflow.pid 
        echo "OK"
        sleep 5
        ;;
  stop)
        echo -n "Shutting down cas workflow manager: "
        kill `cat ${RUN_HOME}/cas.workflow.pid`
        rm -f ${RUN_HOME}/cas.workflow.pid
        echo "OK"
        ;;
  restart)
        $0 stop
        $0 start
        ;;
  *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
esac

exit 0
