:: :: Licensed to the Apache Software Foundation (ASF) under one or more :: contributor license agreements. See the NOTICE file distributed with :: this work for additional information regarding copyright ownership. :: The ASF licenses this file to You 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. :: :: :: Ignite database connector. :: @echo off Setlocal EnableDelayedExpansion if "%OS%" == "Windows_NT" setlocal :: Check JAVA_HOME. if defined JAVA_HOME goto checkJdk echo %0, ERROR: echo JAVA_HOME environment variable is not found. echo Please point JAVA_HOME variable to location of JDK 1.8 or later. echo You can also download latest JDK at http://java.com/download. goto error_finish :checkJdk :: Check that JDK is where it should be. if exist "%JAVA_HOME%\bin\java.exe" goto checkJdkVersion echo %0, ERROR: echo JAVA is not found in JAVA_HOME=%JAVA_HOME%. echo Please point JAVA_HOME variable to installation of JDK 1.8 or later. echo You can also download latest JDK at http://java.com/download. goto error_finish :checkJdkVersion set cmd="%JAVA_HOME%\bin\java.exe" for /f "tokens=* USEBACKQ" %%f in (`%cmd% -version 2^>^&1`) do ( set var=%%f goto :LoopEscape ) :LoopEscape :: Check IGNITE_HOME. :checkIgniteHome1 if defined IGNITE_HOME goto checkIgniteHome2 pushd "%~dp0"/.. set IGNITE_HOME=%CD% popd :checkIgniteHome2 :: Strip double quotes from IGNITE_HOME set IGNITE_HOME=%IGNITE_HOME:"=% :: remove all trailing slashes from IGNITE_HOME. if %IGNITE_HOME:~-1,1% == \ goto removeTrailingSlash if %IGNITE_HOME:~-1,1% == / goto removeTrailingSlash goto checkIgniteHome3 :removeTrailingSlash set IGNITE_HOME=%IGNITE_HOME:~0,-1% goto checkIgniteHome2 :checkIgniteHome3 if exist "%IGNITE_HOME%\config" goto checkIgniteHome4 echo %0, ERROR: Ignite installation folder is not found or IGNITE_HOME environment variable is not valid. echo Please create IGNITE_HOME environment variable pointing to location of Ignite installation folder. goto error_finish :checkIgniteHome4 :: :: Set SCRIPTS_HOME - base path to scripts. :: set SCRIPTS_HOME=%IGNITE_HOME%\bin :: Remove trailing spaces for /l %%a in (1,1,31) do if /i "%SCRIPTS_HOME:~-1%" == " " set SCRIPTS_HOME=%SCRIPTS_HOME:~0,-1% if /i "%SCRIPTS_HOME%\" == "%~dp0" goto setProgName echo %0, WARN: IGNITE_HOME environment variable may be pointing to wrong folder: %IGNITE_HOME% :setProgName :: :: Set program name. :: set PROG_NAME=sqlline.bat if "%OS%" == "Windows_NT" set PROG_NAME=%~nx0% :run :: :: Set IGNITE_LIBS :: call "%SCRIPTS_HOME%\include\setenv.bat" for /f "tokens=1-3 delims= " %%a in ("%var%") do set JAVA_VER_STR=%%c set JAVA_VER_STR=%JAVA_VER_STR:"=% for /f "tokens=1,2 delims=." %%a in ("%JAVA_VER_STR%.x") do set MAJOR_JAVA_VER=%%a& set MINOR_JAVA_VER=%%b if %MAJOR_JAVA_VER% == 8 ( set JVM_OPTS= ^ -XX:+AggressiveOpts ^ %JVM_OPTS% ) if %MAJOR_JAVA_VER% GEQ 9 if %MAJOR_JAVA_VER% LSS 11 ( set JVM_OPTS= ^ -XX:+AggressiveOpts ^ --add-exports=java.base/jdk.internal.misc=ALL-UNNAMED ^ --add-exports=java.base/sun.nio.ch=ALL-UNNAMED ^ --add-exports=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED ^ --add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED ^ --add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED ^ --illegal-access=permit ^ --add-modules=java.xml.bind ^ %JVM_OPTS% ) if %MAJOR_JAVA_VER% GEQ 11 ( set JVM_OPTS= ^ --add-exports=java.base/jdk.internal.misc=ALL-UNNAMED ^ --add-exports=java.base/sun.nio.ch=ALL-UNNAMED ^ --add-exports=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED ^ --add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED ^ --add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED ^ --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED ^ --illegal-access=permit ^ %JVM_OPTS% ) set CP=%IGNITE_LIBS% set CP=%CP%;%IGNITE_HOME%\bin\include\sqlline\* :: Between version 2 and 3, jline changed the format of its history file. After this change, :: the Ignite provides --historyfile argument to SQLLine usage set SQLLINE_HISTORY=%HOMEPATH%\.sqlline\ignite_history "%JAVA_HOME%\bin\java.exe" %JVM_OPTS% -cp "%CP%" sqlline.SqlLine --historyFile=%SQLLINE_HISTORY% %* :error_finish