source: main/trunk/gli/gli.bat@ 31726

Last change on this file since 31726 was 31726, checked in by ak19, 7 years ago

Fix to previous commit. The path to using build.properties is now conditional, so we don't do it when launching GLI for GS2

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 9.0 KB
Line 
1@echo off
2setlocal enabledelayedexpansion
3
4color 0A
5set startdir=%CD%
6rem pushd "%CD%"
7CD /D "%~dp0"
8set GLILANG=en
9
10if "%GLIMODE%" == "" set GLIMODE=local
11
12:: -------- Run the Greenstone Librarian Interface --------
13
14:: This script must be run from within the directory in which it lives
15if exist gli.bat goto start
16 if "%GLILANG%" == "en" echo This script must be run from the directory in which it resides.
17 if "%GLILANG%" == "es" echo Este gui¢n deber  ejecutarse desde el directorio en el que reside.
18 if "%GLILANG%" == "fr" echo Ce script doit ˆtre ex‚cut‚ …
19 partir du r‚pertoire dans lequel il se trouve.
20 if "%GLILANG%" == "ru" echo â®â áªàš¯â €®«Š¥­ ¡ëâì ¢§ïâ š§ €šà¥ªâ®àšš, ¢ ª®â®à®© ®­ à á¯®«®Š¥­
21 goto exit
22
23:start
24if "%OS%" == "Windows_NT" goto progName
25 :: Invoke a new command processor to ensure there's enough environment space
26 if "%1" == "Second" goto progName
27 command /E:2048 /C %0 Second %1 %2 %3 %4 %5 %6 %7 %8 %9
28 shift
29 goto done
30
31:progName
32if not "%PROGNAME%" == "" goto findGSDL
33 :: otherwise PROGNAME was not set, so default to the Greenstone Librarian Interface (GLI) program
34 if "%GLILANG%" == "es" set PROGNAME=Biblioteca Digital Greenstone
35 if "%GLILANG%" == "fr" set PROGNAME=Bibliothécaire Greenstone
36 if "%GLILANG%" == "ru" set PROGNAME=ÉÎÔÅÒÆÅÊÓ Greenstone
37 :: if the PROGNAME is still not set, then set the language to English
38 if "%PROGNAME%" == "" set PROGNAME=Greenstone Librarian Interface
39
40
41if "%PROGABBR%" == "" set PROGABBR=GLI
42if "%PROGNAME_EN%" == "" set PROGNAME_EN=Greenstone Librarian Interface
43
44:: Now need to work out the _VERSION, GSDLHOME (and if GS3, then GSDL3SRCHOME and GSDL3HOME)
45:findGSDL
46call findgsdl.bat
47if "%GSDLHOME%" == "" goto exit
48
49:checkUserPermissions
50
51rem In a web-dispersed GS3 setup like in the labs, we don't require the Greenstone directory to be writable.
52rem If GS3, get the using.user.web property from build.properties and if set to true, we can skip to shiftElevated
53:: http://ss64.com/nt/syntax-substring.html
54 if "%_VERSION%" == "3" if exist "%GSDL3SRCHOME%\build.properties" for /F "usebackq tokens=1,2 delims==" %%G in ("%GSDL3SRCHOME%\build.properties") do (
55 if "%%G" == "using.user.web" if "%%H" == "true" goto :shiftElevated
56 )
57 echo.
58 echo Checking if the Greenstone collection directory is writable ...
59 (echo This is a temporary file. It is safe to delete it. > "!GSDLHOME!\collect\testing.tmp" ) 2>nul
60 if exist "%GSDLHOME%\collect\testing.tmp" goto deleteTempFile
61 if "%1" == "Elevated" goto printWarning
62 echo ... FAILED
63 echo The %PROGNAME% cannot write to the collection directory (!GSDLHOME!\collect)
64 echo Requesting elevated status to become admin user to continue.
65 "%GSDLHOME%\bin\windows\gstart.exe" %0 Elevated %1 %2 %3 %4 %5 %6 %7 %8 %9
66 goto done
67
68:printWarning
69 echo ... FAILED
70 echo The %PROGNAME% cannot write to the log directory (!GSDLHOME!\collect).
71 echo Attempting to continue without permissions.
72 goto shiftElevated
73
74:deleteTempFile
75 echo ... OK
76 del "%GSDLHOME%\collect\testing.tmp"
77
78:shiftElevated
79:: Shift "Elevated" (one of our own internal command words) out of the way if present
80:: so the command-line is as it was when the user initiated the command
81 if "%1" == "Elevated" shift
82
83:: Make sure we're in the GLI folder, even if located outside a GS installation
84CD /D "%~dp0"
85
86:findPerl
87:: Now need to find Perl. If found, PERLPATH will be set
88call findperl.bat
89if "%PERLPATH%" == "" goto exit
90
91:: Need to find Java. If found, JAVA_EXECUTABLE will be set
92call findjava.bat
93if "%JAVA_EXECUTABLE%" == "" goto exit
94
95
96:checkGLI
97:: ---- Check that the GLI has been compiled ----
98if exist "classes/org/greenstone/gatherer/Gatherer.class" goto runGLI
99if exist "GLI.jar" goto runGLI
100 echo.
101 if "%GLILANG%" == "en" echo You need to compile the Greenstone Librarian Interface (using makegli.bat)
102 if "%GLILANG%" == "en" echo before running this script.
103
104 if "%GLILANG%" == "es" echo Usted necesita compilar la Interfaz de la Biblioteca Digital Greenstone
105 if "%GLILANG%" == "es" echo (por medio de makegli.bat) antes de ejecutar este gui¢n.
106
107 if "%GLILANG%" == "fr" echo Vous devez compiler le Greenstone Interface (en utilisant makegli.bat)
108 if "%GLILANG%" == "fr" echo avant d'ex‚cuter ce script.
109
110 if "%GLILANG%" == "ru" echo ‚ë €®«Š­ë ª®¬¯š«šà®¢ âì ¡š¡«š®â¥ç­ë© š­â¥à䥩á Greenstone (šá¯®«ì§ãï makegli.bat)
111 if "%GLILANG%" == "ru" echo ¯¥à¥€ ¢¢®€®¬ í⮣® áªàš¯â 
112 goto exit
113
114
115:runGLI
116
117if not "%_VERSION%" == "" (
118 echo Greenstone Major Version :
119 echo %_VERSION%
120 echo.
121)
122
123if not "%GSDL3SRCHOME%" == "" (
124 echo GSDL3SRCHOME:
125 echo !GSDL3SRCHOME!
126 echo.
127)
128
129if not "%GSDL3HOME%" == "" (
130 echo GSDL3HOME:
131 echo !GSDL3HOME!
132 echo.
133)
134
135if not "%GSDLHOME%" == "" (
136 echo GSDLHOME:
137 echo !GSDLHOME!
138 echo.
139)
140
141:: ---- Explain how to bypass Imagemagick and Ghostscript bundled with Greenstone if needed ----
142echo.
143if exist "%GSDLHOME%\bin\windows\ghostscript\bin\*.*" echo GhostScript bundled with Greenstone will be used, if you wish to use the version installed on your system (if any) please go to %GSDLHOME%\bin\windows and rename the folder called ghostscript to something else.
144echo.
145echo.
146if exist "%GSDLHOME%\bin\windows\imagemagick\*.*" echo ImageMagick bundled with Greenstone will be used, if you wish to use the version installed on your system (if any) please go to %GSDLHOME%\bin\windows and rename the folder called imagemagick to something else.
147echo.
148echo.
149
150
151:: ---- Finally, run the GLI ----
152if "%GLILANG%" == "en" echo Running the %PROGNAME%...
153if "%GLILANG%" == "es" echo Ejecutando la %PROGNAME%...
154if "%GLILANG%" == "fr" echo Ex‚cution de %PROGNAME%
155if "%GLILANG%" == "ru" echo ’¥ªãéš© ¡š¡«š %PROGNAME%...
156
157:: -Xms32M To set minimum memory
158:: -Xmx32M To set maximum memory
159:: -verbose:gc To set garbage collection messages
160:: -Xincgc For incremental garbage collection
161:: -Xprof Function call profiling
162:: -Xloggc:<file> Write garbage collection log
163
164
165:: Run GS3 if version = 3
166:rungs3
167 rem In a web-dispersed GS3 set up like in the labs, gsdl3home.isreadonly would be true and
168 rem we need to run the web server in read-only mode. This section of code borrowed from gs3-server.bat.
169 if "%_VERSION%" == "3" for /F "usebackq tokens=1,2 delims==" %%G in ("%GSDL3SRCHOME%\build.properties") do (
170 if "%%G"=="gsdl3home.isreadonly" if "%%H" == "true" (
171 set gsdl3_writablehome=%TMP%\greenstone\web
172 :: not used
173 set opt_properties="-Dgsdl3home.isreadonly=true" -Dgsdl3.writablehome="%gsdl3_writablehome%"
174 echo Setting Greenstone3 web home writable area to be: %gsdl3_writablehome%
175 pushd "%GSDL3SRCHOME%"
176 :: passing opt_properties is no longer necessary because ant.bat is unmodified (doesn't make use of it)
177 :: and because build.xml already contains the properties with the correct values
178 cmd /c ant.bat %opt_properties% configure-web
179 popd
180 )
181 )
182
183 if "%_VERSION%" == "3" "%JAVA_EXECUTABLE%" -cp classes/;GLI.jar;lib/apache.jar;lib/jna.jar;lib/jna-platform.jar;lib/qfslib.jar;lib/rsyntaxtextarea.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -gsdl3 "%GSDL3HOME%" -gsdl3src "%GSDL3SRCHOME%" -perl "%PERLPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9
184 if ERRORLEVEL 2 (
185 goto rungs3
186 )
187 if "%_VERSION%" == "3" goto finRun
188
189:: Run GS2 since version is 2:
190:: if FLI is running, we don't want the local Greenstone library server running
191if "%PROGABBR%" == "FLI" goto webLib
192 :: Else we're running GLI, so we want the local Greenstone library server (if server.exe/gs2-web-server.bat exists, otherwise it will be webLib)
193 if not exist "%GSDLHOME%\server.exe" if not exist "%GSDLHOME%\gs2-web-server.bat" goto webLib
194
195:localLib
196 if exist "%GSDLHOME%\server.exe" (
197 set locallib=!GSDLHOME!\server.exe
198 ) else (
199 set locallib=!GSDLHOME!\gs2-web-server.bat
200 )
201
202 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.jar;lib/jna.jar;lib/jna-platform.jar;lib/qfslib.jar;lib/rsyntaxtextarea.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -perl "%PERLPATH%" -local_library "%locallib%" %1 %2 %3 %4 %5 %6 %7 %8 %9
203 if ERRORLEVEL 2 (
204 goto localLib
205 )
206 goto finRun
207
208:webLib
209 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.jar;lib/jna.jar;lib/jna-platform.jar;lib/qfslib.jar;lib/rsyntaxtextarea.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -perl "%PERLPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9
210 if ERRORLEVEL 2 (
211 goto webLib
212 )
213 goto finRun
214
215:finRun
216 if "%GLILANG%" == "en" echo Done.
217 if "%GLILANG%" == "es" echo Hecho.
218 if "%GLILANG%" == "fr" echo Termin‚.
219 if "%GLILANG%" == "ru" echo ‚믮«­¥­®.
220 goto done
221
222
223:exit
224echo.
225pause
226color 07
227rem popd
228
229:done
230:: ---- Clean up ----
231set PERLPATH=
232set JAVA_EXECUTABLE=
233set GLIMODE=
234set PROGNAME=
235set PROGNAME_EN=
236set PROGFULLNAME=
237set PROGABBR=
238color 07
239rem popd
240cd "%startdir%"
241set startdir=
242
243endlocal
Note: See TracBrowser for help on using the repository browser.