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

Last change on this file since 31584 was 30592, checked in by ak19, 8 years ago

Further changes to make sure recent updates to batch scripts still protect spaces in filepath

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 8.9 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
168 rem In a web-dispersed GS3 set up like in the labs, gsdl3home.isreadonly would be true and
169 rem we need to run the web server in read-only mode. This section of code borrowed from gs3-server.bat.
170 for /F "usebackq tokens=1,2 delims==" %%G in ("%GSDL3SRCHOME%\build.properties") do (
171 if "%%G"=="gsdl3home.isreadonly" if "%%H" == "true" (
172 set gsdl3_writablehome=%TMP%\greenstone\web
173 :: not used
174 set opt_properties="-Dgsdl3home.isreadonly=true" -Dgsdl3.writablehome="%gsdl3_writablehome%"
175 echo Setting Greenstone3 web home writable area to be: %gsdl3_writablehome%
176 pushd "%GSDL3SRCHOME%"
177 :: passing opt_properties is no longer necessary because ant.bat is unmodified (doesn't make use of it)
178 :: and because build.xml already contains the properties with the correct values
179 cmd /c ant.bat %opt_properties% configure-web
180 popd
181 )
182 )
183
184 if "%_VERSION%" == "3" "%JAVA_EXECUTABLE%" -cp classes/;GLI.jar;lib/apache.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
185 if ERRORLEVEL 2 (
186 goto rungs3
187 )
188 if "%_VERSION%" == "3" goto finRun
189
190:: Run GS2 since version is 2:
191:: if FLI is running, we don't want the local Greenstone library server running
192if "%PROGABBR%" == "FLI" goto webLib
193 :: 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)
194 if not exist "%GSDLHOME%\server.exe" if not exist "%GSDLHOME%\gs2-web-server.bat" goto webLib
195
196:localLib
197 if exist "%GSDLHOME%\server.exe" (
198 set locallib=!GSDLHOME!\server.exe
199 ) else (
200 set locallib=!GSDLHOME!\gs2-web-server.bat
201 )
202
203 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.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
204 if ERRORLEVEL 2 (
205 goto localLib
206 )
207 goto finRun
208
209:webLib
210 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.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
211 if ERRORLEVEL 2 (
212 goto webLib
213 )
214 goto finRun
215
216:finRun
217 if "%GLILANG%" == "en" echo Done.
218 if "%GLILANG%" == "es" echo Hecho.
219 if "%GLILANG%" == "fr" echo Termin‚.
220 if "%GLILANG%" == "ru" echo ‚믮«­¥­®.
221 goto done
222
223
224:exit
225echo.
226pause
227color 07
228rem popd
229
230:done
231:: ---- Clean up ----
232set PERLPATH=
233set JAVA_EXECUTABLE=
234set GLIMODE=
235set PROGNAME=
236set PROGNAME_EN=
237set PROGFULLNAME=
238set PROGABBR=
239color 07
240rem popd
241cd "%startdir%"
242set startdir=
243
244endlocal
Note: See TracBrowser for help on using the repository browser.