blob: abcafaf4b386fd504a6b12558918c463d3c4046d [file] [log] [blame]
jianfeng.jia@gmail.com8b059c02013-03-05 01:46:42 +00001@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
22set ERROR_CODE=0
23
24:init
25@REM Decide how to startup depending on the version of windows
26
27@REM -- Win98ME
28if NOT "%OS%"=="Windows_NT" goto Win9xArg
29
30@REM set local scope for the variables with windows NT shell
31if "%OS%"=="Windows_NT" @setlocal
32
33@REM -- 4NT shell
34if "%eval[2+2]" == "4" goto 4NTArgs
35
36@REM -- Regular WinNT shell
37set CMD_LINE_ARGS=%*
38goto WinNTGetScriptDir
39
40@REM The 4NT Shell from jp software
41:4NTArgs
42set CMD_LINE_ARGS=%$
43goto 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).
48set CMD_LINE_ARGS=
49:Win9xApp
50if %1a==a goto Win9xGetScriptDir
51set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
52shift
53goto Win9xApp
54
55:Win9xGetScriptDir
56set SAVEDIR=%CD%
57%0\
58cd %0\..\..
59set BASEDIR=%CD%
60cd %SAVEDIR%
61set SAVE_DIR=
62goto repoSetup
63
64:WinNTGetScriptDir
65set BASEDIR=%~dp0\..
66
67:repoSetup
68
69
70if "%JAVACMD%"=="" set JAVACMD=java
71
72if "%REPO%"=="" set REPO=%BASEDIR%\lib
73
jianfeng.jia@gmail.com722dbb12013-03-11 23:44:44 +000074set 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%"\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%"\hadoop-core-0.20.2.jar;"%REPO%"\commons-cli-1.2.jar;"%REPO%"\xmlenc-0.52.jar;"%REPO%"\commons-httpclient-3.0.1.jar;"%REPO%"\commons-codec-1.3.jar;"%REPO%"\commons-net-1.4.1.jar;"%REPO%"\jetty-6.1.14.jar;"%REPO%"\jetty-util-6.1.14.jar;"%REPO%"\jasper-runtime-5.5.12.jar;"%REPO%"\jasper-compiler-5.5.12.jar;"%REPO%"\jsp-api-2.1-6.1.14.jar;"%REPO%"\jsp-2.1-6.1.14.jar;"%REPO%"\ant-1.6.5.jar;"%REPO%"\commons-el-1.0.jar;"%REPO%"\jets3t-0.7.1.jar;"%REPO%"\servlet-api-2.5-6.1.14.jar;"%REPO%"\kfs-0.3.jar;"%REPO%"\hsqldb-1.8.0.10.jar;"%REPO%"\oro-2.0.8.jar;"%REPO%"\core-3.1.1.jar;"%REPO%"\hadoop-test-0.20.2.jar;"%REPO%"\ftplet-api-1.0.0.jar;"%REPO%"\mina-core-2.0.0-M5.jar;"%REPO%"\ftpserver-core-1.0.0.jar;"%REPO%"\ftpserver-deprecated-1.0.0-M2.jar;"%REPO%"\hyracks-hdfs-core-0.2.3-SNAPSHOT.jar;"%REPO%"\hyracks-hdfs-0.20.2-0.2.3-SNAPSHOT.jar;"%REPO%"\genomix-data-0.2.3-SNAPSHOT.jar;"%REPO%"\genomix-hyracks-0.2.3-SNAPSHOT.jar
jianfeng.jia@gmail.com8b059c02013-03-05 01:46:42 +000075goto endInit
76
77@REM Reaching here means variables are defined and arguments have been captured
78:endInit
79
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%
81if ERRORLEVEL 1 goto error
82goto end
83
84:error
85if "%OS%"=="Windows_NT" @endlocal
86set ERROR_CODE=%ERRORLEVEL%
87
88:end
89@REM set local scope for the variables with windows NT shell
90if "%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
94set CMD_LINE_ARGS=
95goto postExec
96
97:endNT
98@REM If error code is set to 1 then the endlocal was done already in :error.
99if %ERROR_CODE% EQU 0 @endlocal
100
101
102:postExec
103
104if "%FORCE_EXIT_ON_ERROR%" == "on" (
105 if %ERROR_CODE% NEQ 0 exit %ERROR_CODE%
106)
107
108exit /B %ERROR_CODE%