#!/bin/sh

# ----------------------------------------------------------------------------
# Copyright 2012 Red Hat, Inc. and/or its affiliates.
#
# Licensed under the Eclipse Public License version 1.0, available at
# http://www.eclipse.org/legal/epl-v10.html
# ----------------------------------------------------------------------------



# ----------------------------------------------------------------------
# Forge Startup script
#
# Required Environment vars:
# ------------------
#   JAVA_HOME - location of a JRE home directory
#
# Optional Environment Variables
# ------------------
#   FORGE_HOME - location of Forge's installed home dir
#   FORGE_OPTS - parameters passed to the Java VM when running Forge
# -----------------------------------------------------------------------

PLUGIN_DIR=""
FORGE_DEBUG_ARGS=""
QUOTED_ARGS=""
while [ "$1" != "" ] ; do

  if [ "$PLUGIN_DIR" = "-pluginDir" ] ; then
    PLUGIN_DIR="$1"
  fi

  if [ "$1" = "-pluginDir" ] ; then
    PLUGIN_DIR="-pluginDir"
  fi

  if [ "$1" = "--debug" ] ; then
    FORGE_DEBUG_ARGS="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
  fi

  QUOTED_ARGS="$QUOTED_ARGS \"$1\""
  shift

done

if [ -f /etc/forgerc ] ; then
  . /etc/forgerc
fi

if [ -f "$HOME/.forgerc" ] ; then
  . "$HOME/.forgerc"
fi

# OS specific support.  $var _must_ be set to either true or false.
cygwin=false;
darwin=false;
mingw=false
case "`uname`" in
  CYGWIN*) cygwin=true ;;
  MINGW*) mingw=true;;
  Darwin*) darwin=true
           if [ -z "$JAVA_VERSION" ] ; then
             JAVA_VERSION="CurrentJDK"
           fi
           if [ -z "$JAVA_HOME" ] ; then
             JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
           fi
           ;;
esac

if [ -z "$JAVA_HOME" ] ; then
  if [ -r /etc/gentoo-release ] ; then
    JAVA_HOME=`java-config --jre-home`
  fi
fi

if [ -z "$FORGE_HOME" ] ; then
  ## resolve links - $0 may be a link to Forge's home
  PRG="$0"

  # need this for relative symlinks
  while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
      PRG="$link"
    else
      PRG="`dirname "$PRG"`/$link"
    fi
  done

  saveddir=`pwd`

  FORGE_HOME=`dirname "$PRG"`/..

  # make it fully qualified
  FORGE_HOME=`cd "$FORGE_HOME" && pwd`

  cd "$saveddir"
  echo Using Forge at $FORGE_HOME
fi

# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
  [ -n "$FORGE_HOME" ] &&
    FORGE_HOME=`cygpath --unix "$FORGE_HOME"`
  [ -n "$JAVA_HOME" ] &&
    JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
  [ -n "$CLASSPATH" ] &&
    CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
fi

# For Migwn, ensure paths are in UNIX format before anything is touched
if $mingw ; then
  [ -n "$FORGE_HOME" ] &&
    FORGE_HOME="`(cd "$FORGE_HOME"; pwd)`"
  [ -n "$JAVA_HOME" ] &&
    JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
  # TODO classpath?
fi

if [ -z "$JAVACMD" ] ; then
  if [ -n "$JAVA_HOME"  ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
      # IBM's JDK on AIX uses strange locations for the executables
      JAVACMD="$JAVA_HOME/jre/sh/java"
    else
      JAVACMD="$JAVA_HOME/bin/java"
    fi
  else
    JAVACMD="`which java`"
  fi
fi

if [ ! -x "$JAVACMD" ] ; then
  echo "Error: JAVA_HOME is not defined correctly."
  echo "  We cannot execute $JAVACMD"
  exit 1
fi

JAVAVER=`"$JAVACMD" -version 2>&1`
case $JAVAVER in
*1.[6-9]*) ;;
*1.[1-5]*)
	echo " Error: a Java 1.6 or higher JRE is required to run Forge; found [$JAVACMD -version == $JAVAVER]."
	exit 1
 ;;
esac


if [ -z "$JAVA_HOME" ] ; then
  echo "Warning: JAVA_HOME environment variable is not set."
fi

FORGE_MAIN_CLASS=org.jboss.forge.shell.Bootstrap

MODULE_PATH="${FORGE_HOME}/modules:${HOME}/.forge/plugins:$PLUGIN_DIR"

# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
  [ -n "$FORGE_HOME" ] &&
    FORGE_HOME=`cygpath --windows "$FORGE_HOME"`
  [ -n "$JAVA_HOME" ] &&
    JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
  [ -n "$HOME" ] &&
    HOME=`cygpath --windows "$HOME"`

  MODULE_PATH=`cygpath --windows --path "$MODULE_PATH"`
fi

forge_exec_cmd="\"$JAVACMD\" $FORGE_DEBUG_ARGS $FORGE_OPTS \"-Dforge.home=${FORGE_HOME}\" \"-Dforge.shell.colorEnabled=true\" -jar \"${FORGE_HOME}/jboss-modules.jar\" -modulepath \"$MODULE_PATH\" org.jboss.forge"

eval $forge_exec_cmd "$QUOTED_ARGS"

if [ -d "$FORGE_HOME/.update" ] ; then
	rm -rf "$FORGE_HOME/modules"
	cp -r "$FORGE_HOME/.update/." "$FORGE_HOME/"
	rm -rf "$FORGE_HOME/.update"
	eval $forge_exec_cmd "$QUOTED_ARGS"
fi

