jianfeng.jia@gmail.com | 71e4fce | 2013-01-10 03:20:55 +0000 | [diff] [blame] | 1 | @REM ----------------------------------------------------------------------------
|
| 2 | @REM Copyright 2001-2006 The Apache Software Foundation.
|
| 3 | @REM
|
| 4 | @REM Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 | @REM you may not use this file except in compliance with the License.
|
| 6 | @REM You may obtain a copy of the License at
|
| 7 | @REM
|
| 8 | @REM http://www.apache.org/licenses/LICENSE-2.0
|
| 9 | @REM
|
| 10 | @REM Unless required by applicable law or agreed to in writing, software
|
| 11 | @REM distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 | @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 | @REM See the License for the specific language governing permissions and
|
| 14 | @REM limitations under the License.
|
| 15 | @REM ----------------------------------------------------------------------------
|
| 16 | @REM
|
| 17 | @REM Copyright (c) 2001-2006 The Apache Software Foundation. All rights
|
| 18 | @REM reserved.
|
| 19 |
|
| 20 | @echo off
|
| 21 |
|
| 22 | set ERROR_CODE=0
|
| 23 |
|
| 24 | :init
|
| 25 | @REM Decide how to startup depending on the version of windows
|
| 26 |
|
| 27 | @REM -- Win98ME
|
| 28 | if NOT "%OS%"=="Windows_NT" goto Win9xArg
|
| 29 |
|
| 30 | @REM set local scope for the variables with windows NT shell
|
| 31 | if "%OS%"=="Windows_NT" @setlocal
|
| 32 |
|
| 33 | @REM -- 4NT shell
|
| 34 | if "%eval[2+2]" == "4" goto 4NTArgs
|
| 35 |
|
| 36 | @REM -- Regular WinNT shell
|
| 37 | set CMD_LINE_ARGS=%*
|
| 38 | goto WinNTGetScriptDir
|
| 39 |
|
| 40 | @REM The 4NT Shell from jp software
|
| 41 | :4NTArgs
|
| 42 | set CMD_LINE_ARGS=%$
|
| 43 | goto WinNTGetScriptDir
|
| 44 |
|
| 45 | :Win9xArg
|
| 46 | @REM Slurp the command line arguments. This loop allows for an unlimited number
|
| 47 | @REM of arguments (up to the command line limit, anyway).
|
| 48 | set CMD_LINE_ARGS=
|
| 49 | :Win9xApp
|
| 50 | if %1a==a goto Win9xGetScriptDir
|
| 51 | set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
|
| 52 | shift
|
| 53 | goto Win9xApp
|
| 54 |
|
| 55 | :Win9xGetScriptDir
|
| 56 | set SAVEDIR=%CD%
|
| 57 | %0\
|
| 58 | cd %0\..\..
|
| 59 | set BASEDIR=%CD%
|
| 60 | cd %SAVEDIR%
|
| 61 | set SAVE_DIR=
|
| 62 | goto repoSetup
|
| 63 |
|
| 64 | :WinNTGetScriptDir
|
| 65 | set BASEDIR=%~dp0\..
|
| 66 |
|
| 67 | :repoSetup
|
| 68 |
|
| 69 |
|
| 70 | if "%JAVACMD%"=="" set JAVACMD=java
|
| 71 |
|
| 72 | if "%REPO%"=="" set REPO=%BASEDIR%\lib
|
| 73 |
|
| 74 | set CLASSPATH="%BASEDIR%"\etc;"%REPO%"\hyracks-dataflow-std-0.2.3-SNAPSHOT.jar;"%REPO%"\hyracks-api-0.2.3-SNAPSHOT.jar;"%REPO%"\json-20090211.jar;"%REPO%"\httpclient-4.1-alpha2.jar;"%REPO%"\httpcore-4.1-beta1.jar;"%REPO%"\commons-logging-1.1.1.jar;"%REPO%"\commons-codec-1.4.jar;"%REPO%"\args4j-2.0.12.jar;"%REPO%"\commons-lang3-3.1.jar;"%REPO%"\hyracks-dataflow-common-0.2.3-SNAPSHOT.jar;"%REPO%"\hyracks-data-std-0.2.3-SNAPSHOT.jar;"%REPO%"\hyracks-control-cc-0.2.3-SNAPSHOT.jar;"%REPO%"\hyracks-control-common-0.2.3-SNAPSHOT.jar;"%REPO%"\jetty-server-8.0.0.RC0.jar;"%REPO%"\servlet-api-3.0.20100224.jar;"%REPO%"\jetty-continuation-8.0.0.RC0.jar;"%REPO%"\jetty-http-8.0.0.RC0.jar;"%REPO%"\jetty-io-8.0.0.RC0.jar;"%REPO%"\jetty-webapp-8.0.0.RC0.jar;"%REPO%"\jetty-xml-8.0.0.RC0.jar;"%REPO%"\jetty-util-8.0.0.RC0.jar;"%REPO%"\jetty-servlet-8.0.0.RC0.jar;"%REPO%"\jetty-security-8.0.0.RC0.jar;"%REPO%"\wicket-core-1.5.2.jar;"%REPO%"\wicket-util-1.5.2.jar;"%REPO%"\wicket-request-1.5.2.jar;"%REPO%"\slf4j-api-1.6.1.jar;"%REPO%"\slf4j-jcl-1.6.3.jar;"%REPO%"\hyracks-control-nc-0.2.3-SNAPSHOT.jar;"%REPO%"\dcache-client-0.0.1.jar;"%REPO%"\jetty-client-8.0.0.M0.jar;"%REPO%"\hyracks-net-0.2.3-SNAPSHOT.jar;"%REPO%"\commons-io-1.3.1.jar;"%REPO%"\hyracks-ipc-0.2.3-SNAPSHOT.jar;"%REPO%"\genomix-0.2.3-SNAPSHOT.pom
|
| 75 | goto endInit
|
| 76 |
|
| 77 | @REM Reaching here means variables are defined and arguments have been captured
|
| 78 | :endInit
|
| 79 |
|
jianfeng.jia@gmail.com | 117233a | 2013-02-09 02:17:44 +0000 | [diff] [blame] | 80 | %JAVACMD% %JAVA_OPTS% -classpath %CLASSPATH_PREFIX%;%CLASSPATH% -Dapp.name="genomix" -Dapp.repo="%REPO%" -Dapp.home="%BASEDIR%" -Dbasedir="%BASEDIR%" edu.uci.ics.genomix.driver.Driver %CMD_LINE_ARGS%
|
jianfeng.jia@gmail.com | 71e4fce | 2013-01-10 03:20:55 +0000 | [diff] [blame] | 81 | if ERRORLEVEL 1 goto error
|
| 82 | goto end
|
| 83 |
|
| 84 | :error
|
| 85 | if "%OS%"=="Windows_NT" @endlocal
|
| 86 | set ERROR_CODE=%ERRORLEVEL%
|
| 87 |
|
| 88 | :end
|
| 89 | @REM set local scope for the variables with windows NT shell
|
| 90 | if "%OS%"=="Windows_NT" goto endNT
|
| 91 |
|
| 92 | @REM For old DOS remove the set variables from ENV - we assume they were not set
|
| 93 | @REM before we started - at least we don't leave any baggage around
|
| 94 | set CMD_LINE_ARGS=
|
| 95 | goto postExec
|
| 96 |
|
| 97 | :endNT
|
| 98 | @REM If error code is set to 1 then the endlocal was done already in :error.
|
| 99 | if %ERROR_CODE% EQU 0 @endlocal
|
| 100 |
|
| 101 |
|
| 102 | :postExec
|
| 103 |
|
| 104 | if "%FORCE_EXIT_ON_ERROR%" == "on" (
|
| 105 | if %ERROR_CODE% NEQ 0 exit %ERROR_CODE%
|
| 106 | )
|
| 107 |
|
| 108 | exit /B %ERROR_CODE%
|