text
stringlengths
0
834k
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an ""AS IS"" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
rem ---------------------------------------------------------------------------
rem Main Script for WSO2 Carbon
rem
rem Environment Variable Prequisites
rem
rem CARBON_HOME Home of CARBON installation. If not set I will try
rem to figure it out.
rem
rem
rem JAVA_HOME Must point at your Java Development Kit installation.
rem
rem JAVA_OPTS (Optional) Java runtime options used when the commands
rem is executed.
rem ---------------------------------------------------------------------------
rem ----- if JAVA_HOME is not set we're not happy ------------------------------
:checkJava
if ""%JAVA_HOME%"" == """" goto noJavaHome
if not exist ""%JAVA_HOME%\bin\java.exe"" goto noJavaHome
goto checkServer
:noJavaHome
echo ""You must set the JAVA_HOME variable before running CARBON.""
goto end
rem ----- Only set CARBON_HOME if not already set ----------------------------
:checkServer
rem %~sdp0 is expanded pathname of the current script under NT with spaces in the path removed
set CARBON_HOME=%~sdp0..
SET curDrive=%cd:~0,1%
SET wsasDrive=%CARBON_HOME:~0,1%
if not ""%curDrive%"" == ""%wsasDrive%"" %wsasDrive%:
rem find CARBON_HOME if it does not exist due to either an invalid value passed
rem by the user or the %0 problem on Windows 9x
if not exist ""%CARBON_HOME%\bin\version.txt"" goto noServerHome
set AXIS2_HOME=%CARBON_HOME%
goto updateClasspath
:noServerHome
echo CARBON_HOME is set incorrectly or CARBON could not be located. Please set CARBON_HOME.
goto end
rem ----- update classpath -----------------------------------------------------
:updateClasspath
setlocal EnableDelayedExpansion
cd %CARBON_HOME%
set CARBON_CLASSPATH=
FOR %%C in (""%CARBON_HOME%\bin\*.jar"") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;"".\bin\%%~nC%%~xC""
set CARBON_CLASSPATH=""%JAVA_HOME%\lib\tools.jar"";%CARBON_CLASSPATH%;
FOR %%D in (""%CARBON_HOME%\..\lib\commons-lang*.jar"") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;"".\lib\%%~nD%%~xD""
rem ----- Process the input command -------------------------------------------
rem Slurp the command line arguments. This loop allows for an unlimited number
rem of arguments (up to the command line limit, anyway).
:setupArgs
if """"%1""""=="""""""" goto doneStart
if """"%1""""==""""-run"""" goto commandLifecycle
if """"%1""""==""""--run"""" goto commandLifecycle
if """"%1""""==""""run"""" goto commandLifecycle
if """"%1""""==""""-restart"""" goto commandLifecycle
if """"%1""""==""""--restart"""" goto commandLifecycle
if """"%1""""==""""restart"""" goto commandLifecycle
if """"%1""""==""""debug"""" goto commandDebug
if """"%1""""==""""-debug"""" goto commandDebug
if """"%1""""==""""--debug"""" goto commandDebug
if """"%1""""==""""version"""" goto commandVersion
if """"%1""""==""""-version"""" goto commandVersion
if """"%1""""==""""--version"""" goto commandVersion
shift
goto setupArgs
rem ----- commandVersion -------------------------------------------------------
:commandVersion
shift
type ""%CARBON_HOME%\bin\version.txt""
type ""%CARBON_HOME%\bin\wso2carbon-version.txt""
goto end