-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.bat
565 lines (476 loc) · 18.3 KB
/
setup.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
@ECHO off
:: ---------------------------------------------------------------------------------------
:: This source file is part of SWG:ANH (Star Wars Galaxies - A New Hope - Server Emulator)
::
:: For more information, visit http://www.swganh.com
::
:: Copyright (c) 2006 - 2010 The SWG:ANH Team
:: ---------------------------------------------------------------------------------------
:: This library is free software; you can redistribute it and/or
:: modIFy it under the terms of the GNU Lesser General Public
:: License as published by the Free Software Foundation; either
:: version 2.1 of the License, or (at your option) any later version.
::
:: This library is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
:: Lesser General Public License for more details.
::
:: You should have received a copy of the GNU Lesser General Public
:: License along with this library; IF not, write to the Free Software
:: Foundation, Inc., 51 Franklin Street, FIFth Floor, Boston, MA 02110-1301 USA
:: ---------------------------------------------------------------------------------------
:: -- Prepare the Command Processor
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ENABLEDELAYEDEXPANSION
MODE con:cols=80 lines=58
:: Set initial VARS
CALL :SET_DEFAULTS
REM --
REM Main
REM --
GOTO :PROCESS_ARGS
:CONTINUE_FROM_PROCESS_ARGUMENTS
ECHO. Project Base: %PROJECT_BASE%
ECHO. Install Type Selected: %INSTALL_TYPE%
ECHO. Backup Type Selected: %BACKUP_TYPE%
ECHO.
ECHO. User: %db_user%
ECHO. Password: %db_pass%
ECHO. IP: %db_host%
::ECHO.
::ECHO.
::ECHO. We're Done!
GOTO :EOF
REM --
REM Functions
REM --
:SET_DEFAULTS
SET INSTALL_TYPE=full
SET BACKUP_TYPE=full
SET "PROJECT_BASE=%~dp0"
CALL :READ_CFG
GOTO :eof
:PROCESS_ARGS
IF "%~0" == "" GOTO :CONTINUE_FROM_PROCESS_ARGUMENTS
IF "%~0" == "-h" (
ECHO SWG:ANH Database Installer Help
ECHO.
ECHO.
ECHO. /install [option] Install the SWG:ANH Database Schema
ECHO. all Install the full Database
ECHO. swganh Install the swganh Database
ECHO. config Install the Config Database
ECHO. logging Install the Logging Database
ECHO. astromech Install the AstroMech Database
ECHO. archive Install the Archive Database
ECHO.
ECHO. /backup [option] Backup the SWG:ANH Database Schema
ECHO. all Backup the full suite of SWG:ANH Databases
ECHO. swganh Backup the swganh Database
ECHO. config Backup the Config Database
ECHO. logging Backup the Logging Database
ECHO. astromech Backup the AstroMech Database
ECHO. archive Backup the Archive Databse
ECHO.
ECHO. /update Update the database
ECHO.
ECHO. /checkdbversion Check the database version
ECHO.
ECHO. /checkscriptversion Check the script version
ECHO.
ECHO. /clean Clean the Databases
ECHO.
ECHO. /generateresources Generate the initial resource spawn
ECHO.
ECHO. /shiftresourcespawn ShIFt the current resource spawn
ECHO.
ECHO. /resetglobaltimer Reset the Global Server Timer
ECHO.
ECHO. /checkconfig Check the config file values
)
::
:: Check for Install Options
::
IF "%~0" == "/install" (
set INSTALL_TYPE=%~1
CALL :INSTALL_DB
shift
)
::
:: Check for Backup Options
::
IF "%~0" == "/backup" (
set BACKUP_TYPE=%~1
CALL :BACKUP_DB
)
::
:: Check for Update
::
IF "%~0" == "/update" (
CALL :UPDATE_DB
GOTO :eof
)
::
:: Check for DB Version
::
IF "%~0" == "/checkdbversion" (
CALL :CHECK_DB_VERSION
)
::
:: Check for Script Version
::
IF "%~0" == "/checkscriptversion" (
CALL :CHECK_SCRIPT_VERSION
)
::
:: Check for Clean
::
IF "%~0" == "/clean" (
CALL :CLEAN_DB
GOTO :eof
)
::
:: Check for Generate Resources
::
IF "%~0" == "/generateresources" (
CALL :GENERATE_RESOURCES
GOTO :EOF
)
::
:: Check for Shift Resources
::
IF "%~0" == "/shiftresourcespawn" (
CALL :SHIFT_RESOURCES
)
::
:: Check for Reset Global Timer
::
IF "%~0" == "/resetglobaltimer" (
CALL :RESET_GLOBAL_TIMER
GOTO :eof
)
::
:: Check Config File Values
::
IF "%~0" == "/checkconfig" (
CALL :RESET_GLOBAL_TIMER
GOTO :eof
)
SHIFT
GOTO :PROCESS_ARGS
:READ_CFG
FOR /F "tokens=2 delims==" %%a IN ('find "username" ^< setup.cfg') DO SET db_user=%%a
FOR /F "tokens=2 delims==" %%a IN ('find "password" ^< setup.cfg') DO SET db_pass=%%a
FOR /F "tokens=2 delims==" %%a IN ('find "host" ^< setup.cfg') DO SET db_host=%%a
GOTO :EOF
:CLEAN_DB
ECHO.
ECHO. CLEAN DB CALLED
GOTO :EOF
:GENERATE_RESOURCES
ECHO.
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 --database=swganh --execute="CALL sp_ResourceInitialSpawn()"
ECHO.
ECHO. Intial Resources Spawn generated.
GOTO :EOF
:RESET_GLOBAL_TIMER
ECHO.
ECHO. RESET GLOBAL TIMER CALLED
ECHO.
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 --database=swganh --execute="UPDATE galaxy SET Global_Tick_Count = 0;"
GOTO :EOF
:INSTALL_DB
ECHO.
ECHO. INSTALL DB CALLED
:: Install ALL Databases
IF "%INSTALL_TYPE%" == "all" (
cd "%PROJECT_BASE%swganh"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create_users.sql"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_archive"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_astromech"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_config"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_logs"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%"
cd "%PROJECT_BASE%swganh"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh\functions"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh\procedures"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_archive"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_archive\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_archive\functions"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_archive\procedures"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_astromech"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_astromech\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_astromech\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_astromech\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_config"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_config\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_config\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_config\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_logs"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_logs\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_logs\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_logs\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
)
::
:: Install swganh Database
::
IF "%INSTALL_TYPE%" == "swganh" (
cd "%PROJECT_BASE%swganh"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create_users.sql"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh\functions"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh\procedures"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%"
)
::
:: Install swganh_archive Database
::
IF "%INSTALL_TYPE%" == "archive" (
cd "%PROJECT_BASE%swganh_archive"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_archive\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_archive\functions"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_archive\procedures"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%"
)
::
:: Install swganh_astromech Database
::
IF "%INSTALL_TYPE%" == "astromech" (
cd "%PROJECT_BASE%swganh_astromech"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_astromech\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_astromech\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_astromech\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%"
)
::
:: Install swganh_config Database
::
IF "%INSTALL_TYPE%" == "config" (
cd "%PROJECT_BASE%swganh_config"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_config\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_config\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_config\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%"
)
::
:: Install swganh_config Database
::
IF "%INSTALL_TYPE%" == "logging" (
cd "%PROJECT_BASE%swganh_logs"
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "create.sql"
cd "%PROJECT_BASE%swganh_logs\scripts"
for /F %%A IN ('dir /b "*.sql" ^| sort') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_logs\functions"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%swganh_logs\procedures"
for /F %%A IN ('dir /b "*.sql"') do (
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 < "%%A"
ECHO. Installing %%A [Done]
)
cd "%PROJECT_BASE%"
)
GOTO :EOF
:BACKUP_DB
ECHO.
ECHO. BAKCUP DB CALLED
ECHO. %BACKUP_TYPE%
IF "%BACKUP_TYPE%" == "swganh" (
mkdir backup
cd backup
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_config.bak
cd ..
goto :eof
)
IF "%BACKUP_TYPE%" == "config" (
mkdir backup
cd backup
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_config --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_config.bak
cd ..
goto :eof
)
IF "%BACKUP_TYPE%" == "astromech" (
mkdir backup
cd backup
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_astromech --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_astromech.bak
cd ..
goto :eof
)
IF "%BACKUP_TYPE%" == "logging" (
mkdir backup
cd backup
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_astromech --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_logging.bak
cd ..
goto :eof
)
IF "%BACKUP_TYPE%" == "archive" (
mkdir backup
cd backup
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_astromech --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_archive.bak
cd ..
goto :eof
)
IF "%BACKUP_TYPE%" == "all" (
mkdir backup
cd backup
ECHO. Backing up the swganh database
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh --create-options --extended-insert --routines --dump-date --triggers --comments > swganh.bak
ECHO. Backing up the config database
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_config --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_config.bak
ECHO. Backing up the logs database
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_logs --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_logs.bak
ECHO. Backing up the AstroMech database
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_astromech --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_astromech.bak
ECHO. Backing up the archive database
mysqldump --password=%db_pass% --host=%db_host% --user=%db_user% --databases swganh_archive --create-options --extended-insert --routines --dump-date --triggers --comments > swganh_archive.bak
cd ..
goto :eof
)
GOTO :EOF
:CHECKDBVERSION
ECHO.
SET db_rev_major=0
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 --database=swganh_config --execute="SELECT revisionMajor FROM swganh_config.swganh_version" >> output.log
FOR /f "tokens=1,2,3 delims= " %%G IN (output.log) DO SET db_rev_major=%%G
DEL output.log
SET db_rev_minor=0
mysql --password=%db_pass% --host=%db_host% --user=%db_user% --default-character-set=utf8 --database=swganh_config --execute="SELECT revisionMinor FROM swganh_config.swganh_version" >> output.log
FOR /f "tokens=1,2,3 delims= " %%G IN (output.log) DO SET db_rev_minor=%%G
DEL output.log
ECHO. Server Database - Major Revision is %db_rev_major%
ECHO. Server Database - Minor Revision is %db_rev_minor%
GOTO :EOF
:SHIFT_RESOURCES
ECHO.
ECHO. SHIFT RESOURCES CALLED
GOTO :EOF
ENDLOCAL