mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
128 lines
4.0 KiB
Bash
Executable File
128 lines
4.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# ----------------------------------------------------------------------------
|
|
# Copyright 2017 WSO2, Inc. (http://wso2.com)
|
|
# Licensed 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.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# ciphertool script for generating stub, skeleton and other required classes
|
|
#
|
|
# Environment Variable Prequisites
|
|
#
|
|
# CARBON_HOME Home of CARBON installation. If not set I will try
|
|
# to figure it out.
|
|
#
|
|
# JAVA_HOME Must point at your Java Development Kit installation.
|
|
#
|
|
# NOTE: Borrowed generously from Apache Tomcat startup scripts.
|
|
|
|
# if JAVA_HOME is not set we're not happy
|
|
if [ -z "$JAVA_HOME" ]; then
|
|
echo "You must set the JAVA_HOME variable before running CARBON."
|
|
exit 1
|
|
fi
|
|
|
|
# OS specific support. $var _must_ be set to either true or false.
|
|
cygwin=false;
|
|
darwin=false;
|
|
os400=false;
|
|
mingw=false;
|
|
case "`uname`" in
|
|
CYGWIN*) cygwin=true;;
|
|
MINGW*) mingw=true;;
|
|
OS400*) os400=true;;
|
|
Darwin*) darwin=true
|
|
if [ -z "$JAVA_VERSION" ] ; then
|
|
JAVA_VERSION="CurrentJDK"
|
|
else
|
|
echo "Using Java version: $JAVA_VERSION"
|
|
fi
|
|
if [ -z "$JAVA_HOME" ] ; then
|
|
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
# resolve links - $0 may be a softlink
|
|
PRG="$0"
|
|
|
|
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
|
|
|
|
# Get standard environment variables
|
|
PRGDIR=`dirname "$PRG"`
|
|
|
|
# Only set CARBON_HOME if not already set
|
|
[ -z "$CARBON_HOME" ] && CARBON_HOME=`cd "$PRGDIR/.." ; pwd`
|
|
|
|
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
|
if $cygwin; then
|
|
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
|
[ -n "$CARBON_HOME" ] && CARBON_HOME=`cygpath --unix "$CARBON_HOME"`
|
|
[ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
|
fi
|
|
|
|
# For OS400
|
|
if $os400; then
|
|
# Set job priority to standard for interactive (interactive - 6) by using
|
|
# the interactive priority - 6, the helper threads that respond to requests
|
|
# will be running at the same priority as interactive jobs.
|
|
COMMAND='chgjob job('$JOBNAME') runpty(6)'
|
|
system $COMMAND
|
|
|
|
# Enable multi threading
|
|
QIBM_MULTI_THREADED=Y
|
|
export QIBM_MULTI_THREADED
|
|
fi
|
|
|
|
# For Migwn, ensure paths are in UNIX format before anything is touched
|
|
if $mingw ; then
|
|
[ -n "$CARBON_HOME" ] &&
|
|
CARBON_HOME="`(cd "$CARBON_HOME"; pwd)`"
|
|
[ -n "$JAVA_HOME" ] &&
|
|
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
|
[ -n "$AXIS2_HOME" ] &&
|
|
CARBON_HOME="`(cd "$CARBON_HOME"; pwd)`"
|
|
# TODO classpath?
|
|
fi
|
|
|
|
# update classpath
|
|
CARBON_CLASSPATH=""
|
|
for f in "$CARBON_HOME"/../lib/org.wso2.ciphertool*.jar
|
|
do
|
|
CARBON_CLASSPATH=$CARBON_CLASSPATH:$f
|
|
done
|
|
for h in "$CARBON_HOME"/../components/plugins/*.jar
|
|
do
|
|
CARBON_CLASSPATH=$CARBON_CLASSPATH:$h
|
|
done
|
|
CARBON_CLASSPATH=$CARBON_CLASSPATH:$CLASSPATH
|
|
|
|
# For Cygwin, switch paths to Windows format before running java
|
|
if $cygwin; then
|
|
JAVA_HOME=`cygpath --absolute --windows "$JAVA_HOME"`
|
|
CARBON_HOME=`cygpath --absolute --windows "$CARBON_HOME"`
|
|
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
|
JAVA_ENDORSED_DIRS=`cygpath --path --windows "$JAVA_ENDORSED_DIRS"`
|
|
fi
|
|
|
|
# ----- Execute The Requested Command -----------------------------------------
|
|
|
|
$JAVA_HOME/bin/java -Dcarbon.home="$CARBON_HOME" -classpath "$CARBON_CLASSPATH" org.wso2.ciphertool.CipherTool $*
|