remove CPGEN from Windows batch files

(classpath for all needed libraries is defined in manifest  of yacycore.jar)
pull/1/head
reger 12 years ago
parent 594ed63f2a
commit 1951ba61ae

@ -256,7 +256,7 @@
<jar destfile="${lib}/yacycore.jar" basedir="${build}/"> <jar destfile="${lib}/yacycore.jar" basedir="${build}/">
<manifest> <manifest>
<attribute name="Main-Class" value="net.yacy.yacy"/> <attribute name="Main-Class" value="net.yacy.yacy"/>
<attribute name="Class-Path" value="../htroot ${manifest.classpath}"/> <attribute name="Class-Path" value="${manifest.classpath}"/>
</manifest> </manifest>
</jar> </jar>

@ -1,73 +1,66 @@
@Echo Off @Echo Off
title YaCy title YaCy
REM setting startup type for proper restart REM setting startup type for proper restart
if not exist DATA md DATA if not exist DATA md DATA
echo . >DATA\yacy.noconsole echo . >DATA\yacy.noconsole
If %1.==CPGEN. GoTo :CPGEN Rem Setting the classpath
Set CLASSPATH=lib\yacycore.jar;htroot
Rem Generating the proper classpath unsing loops and labels
Set CLASSPATH=htroot REM Please change the "javastart" settings in the web-interface "Basic Configuration" -> "Advanced"
For %%X in (lib/*.jar) Do Call %0 CPGEN lib\%%X set jmx=
set jms=
REM Please change the "javastart" settings in the web-interface "Basic Configuration" -> "Advanced" set javacmd=-Xmx600m -Xms180m
set jmx= set priolvl=10
set jms= set priority=/BELOWNORMAL
set javacmd=-Xmx600m -Xms180m if exist DATA\SETTINGS\httpProxy.conf GoTo :RENAMEINDEX
set priolvl=10 if exist DATA\SETTINGS\yacy.conf GoTo :GETSTARTOPTS
set priority=/BELOWNORMAL
if exist DATA\SETTINGS\httpProxy.conf GoTo :RENAMEINDEX :STARTJAVA
if exist DATA\SETTINGS\yacy.conf GoTo :GETSTARTOPTS set javacmd=%javacmd% -Xss256k -XX:MaxPermSize=256m -XX:-UseGCOverheadLimit -XX:+UseAdaptiveSizePolicy -Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dfile.encoding=UTF-8
Rem Starting YaCy
:STARTJAVA Echo Generated classpath:%CLASSPATH%
set javacmd=%javacmd% -Xss256k -XX:MaxPermSize=256m -XX:-UseGCOverheadLimit -XX:+UseAdaptiveSizePolicy -Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dfile.encoding=UTF-8 Echo JRE Parameters:%javacmd%
Rem Starting YaCy Echo Priority:%priority%
Echo Generated classpath:%CLASSPATH% Echo ***************************************************************************
Echo JRE Parameters:%javacmd% Echo.
Echo Priority:%priority% Echo If you see a message like "javaw" not found, you probably have to install Java.
Echo *************************************************************************** Echo.
Echo. Echo You can download Java at http://java.com/
Echo If you see a message like "javaw" not found, you probably have to install Java. Echo.
Echo. Echo ***************************************************************************
Echo You can download Java at http://java.com/ start %priority% javaw %javacmd% -classpath %CLASSPATH% net.yacy.yacy
Echo. Echo You can close the console safely now.
Echo ***************************************************************************
start %priority% javaw %javacmd% -classpath %CLASSPATH% net.yacy.yacy GoTo :END
Echo You can close the console safely now.
Rem PUBLIC is now freeworld (r4575)
GoTo :END :RENAMEINDEX
for /F "tokens=1,2 delims==" %%i in (DATA\SETTINGS\httpProxy.conf) do (
Rem PUBLIC is now freeworld (r4575) if "%%i"=="network.unit.name" set networkname=%%j
:RENAMEINDEX )
for /F "tokens=1,2 delims==" %%i in (DATA\SETTINGS\httpProxy.conf) do ( if not defined networkname set networkname=PUBLIC
if "%%i"=="network.unit.name" set networkname=%%j cd DATA\INDEX
) ren PUBLIC %networkname%
if not defined networkname set networkname=PUBLIC cd ..
cd DATA\INDEX cd ..
ren PUBLIC %networkname%
cd .. Rem This target is used to read java runtime parameters out of the yacy config file
cd .. :GETSTARTOPTS
for /F "tokens=1,2 delims==" %%i in (DATA\SETTINGS\yacy.conf) do (
Rem This target is used to read java runtime parameters out of the yacy config file if "%%i"=="javastart_Xmx" set jmx=%%j
:GETSTARTOPTS if "%%i"=="javastart_Xms" set jms=%%j
for /F "tokens=1,2 delims==" %%i in (DATA\SETTINGS\yacy.conf) do ( if "%%i"=="javastart_priority" set priolvl=%%j
if "%%i"=="javastart_Xmx" set jmx=%%j )
if "%%i"=="javastart_Xms" set jms=%%j if defined jmx set javacmd=-%jmx%
if "%%i"=="javastart_priority" set priolvl=%%j if defined jms set javacmd=-%jms% %javacmd%
) if defined priolvl (
if defined jmx set javacmd=-%jmx% if %priolvl% == 20 set priority=/LOW
if defined jms set javacmd=-%jms% %javacmd% if %priolvl% == 10 set priority=/BELOWNORMAL
if defined priolvl ( )
if %priolvl% == 20 set priority=/LOW
if %priolvl% == 10 set priority=/BELOWNORMAL GoTo :STARTJAVA
)
Rem Target needed to jump to the end of the file
GoTo :STARTJAVA :END
Rem This target is used to concatenate the classpath parts
:CPGEN
Set CLASSPATH=%CLASSPATH%;%2
Rem Target needed to jump to the end of the file
:END

@ -1,21 +1,10 @@
@Echo Off @Echo Off
title YaCy title YaCy
If %1.==CPGEN. GoTo :CPGEN
Rem Setting the classpath
Rem Generating the proper classpath unsing loops and labels Set CLASSPATH=classes;lib\yacycore.jar;htroot
Set CLASSPATH=classes;htroot
For %%X in (lib/*.jar) Do Call %0 CPGEN lib\%%X Rem Stopping yacy
For %%X in (libx/*.jar) Do Call %0 CPGEN libx\%%X Echo Generated Classpath:%CLASSPATH%
java -classpath %CLASSPATH% net.yacy.yacy -shutdown
Rem Stopping yacy
Echo Generated Classpath:%CLASSPATH%
java -classpath %CLASSPATH% net.yacy.yacy -shutdown
GoTo :END
Rem This target is used to concatenate the classpath parts
:CPGEN
Set CLASSPATH=%CLASSPATH%;%2
Rem Target needed to jump to the end of the file
:END

Loading…
Cancel
Save