#!/bin/sh

prg=`basename "$0"`
dir=`dirname "$0"`/..

usage() {
  polyglot -h
  cat <<EOF
  -j <jvm-options>         pass options to the Java VM
  -J <jvm>                 use a different Java VM (default java in path)
  -V                       echo the java command
EOF
}

fixclasspath() {
  windows=0

  if [ `uname | grep -c CYGWIN` -ne 0 ]; then
    windows=1
  fi

  cp="$1"
  if [ "$windows" = 1 ]; then 
    cygpath -pw "$cp"
  else
    echo "$cp"
  fi
}

extra_cp=
args=
vmargs=
classpath=
java=java

polyglot() {
  eval "$java" "$vmargs" -classpath "'$classpath'" -jar "'$emmajar'" -r html -raw -merge yes -sp "'$sourcepath'" -cp "'$classpath'" polyglot.pth.Main -classpath "'$classpath'""$@"
}

while true; do
    case "$1" in
        "")
            break
            ;;
        -V)
            verbose=1
            shift
            ;;
        -classpath)
            shift
            extra_cp="$extra_cp:$1"
            shift
            ;;
        -j)
            shift
            vmargs="$vmargs '$1'"
            shift
            ;;
        -J)
            shift
            java="'$1'"
            shift
            ;;
        -h)
            usage=1
            break
            ;;
        *)
            args="$args '$1'"
            shift
            ;;
    esac
done

classpath="$dir/classes:$dir/lib/polyglot.jar:$dir/lib/java_cup.jar"
classpath="$classpath:$dir/tools/pth/classes:$dir/tools/lib/pth.jar"
classpath="$classpath:$extra_cp"
classpath=`fixclasspath "$classpath"`

emmajar=`fixclasspath "$dir/lib/emma.jar"`
sourcepath=`fixclasspath "$dir/src"`

if [ "$usage" = 1 ]; then
  usage
  exit 0
fi

polyglot "$args"
