-
Notifications
You must be signed in to change notification settings - Fork 0
/
01 Build And Run Menu.bat
415 lines (389 loc) · 12 KB
/
01 Build And Run Menu.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
@echo off
set JAVA_HOME=C:\PROGRA~1\JAVA\JDK-21
set M2_HOME=c:\\tools\\apache-maven-3.9.5
set JARFILE=target\Miscellany.jar
set MVN_BLD_SWITCH=ON
:menu
set KEY=
set LABEL=
echo TIME[%TIME%], MVN Building [%MVN_BLD_SWITCH%]
echo - - - - - - - - - - - - - - -
echo [A] Basics
echo [B] Collections
echo [C] Dates And Times
echo - - - - - - - - - - - - - - -
echo [D] Files
echo [E] Methods
echo [F] Processes
echo - - - - - - - - - - - - - - -
echo [G] Reactive Streams
echo [H] Records
echo [I] Regex
echo - - - - - - - - - - - - - - -
echo [J] Sorting
echo [K] Streams Collecting
echo [L] Streams Fragmentation
echo - - - - - - - - - - - - - - -
echo [M] Streams Teeing
echo [N] Synchronizers
echo [O] Tasks
echo - - - - - - - - - - - - - - -
echo [P] Web Client
echo [Q] Web Server
echo [R] Web Sockets
echo - - - - - - - - - - - - - - -
echo.
echo - - - - - - - - - - - - - - -
echo [X] 'mvn clean install'
echo [Y] Build and Run All Together
echo [Z] Switch MVN Building OFF/ON
echo - - - - - - - - - - - - - - -
echo any other key quits
set /P KEY="Select the key: "
if /i "%KEY:~0,1%"=="A" (
set LABEL=[A] Basics
call :Basics
) else if /i "%KEY:~0,1%"=="B" (
set LABEL=[B] Collections
call :Collections
) else if /i "%KEY:~0,1%"=="C" (
set LABEL=[C] Dates And Times
call :DatesAndTimes
) else if /i "%KEY:~0,1%"=="D" (
set LABEL=[D] Files
call :Files
) else if /i "%KEY:~0,1%"=="E" (
set LABEL=[E] Methods
call :Methods
) else if /i "%KEY:~0,1%"=="F" (
set LABEL=[F] Processes
call :Processes
) else if /i "%KEY:~0,1%"=="G" (
set LABEL=[G] Reactive Streams
call :ReactiveStreams
) else if /i "%KEY:~0,1%"=="H" (
set LABEL=[H] Records
call :Records
) else if /i "%KEY:~0,1%"=="I" (
set LABEL=[I] Regex
call :Regex
) else if /i "%KEY:~0,1%"=="J" (
set LABEL=[J] Sorting
call :Sorting
) else if /i "%KEY:~0,1%"=="K" (
set LABEL=[K] Streams Collecting
call :StreamsCollecting
) else if /i "%KEY:~0,1%"=="L" (
set LABEL=[L] Streams Fragmentation
call :StreamsFragmentation
) else if /i "%KEY:~0,1%"=="M" (
set LABEL=[M] Streams Teeing
call :StreamsTeeing
) else if /i "%KEY:~0,1%"=="N" (
set LABEL=[N] Synchronizers
call :Synchronizers
) else if /i "%KEY:~0,1%"=="O" (
set LABEL=[O] Tasks
call :Tasks
) else if /i "%KEY:~0,1%"=="P" (
set LABEL=[P] Web Client
call :WebClient
) else if /i "%KEY:~0,1%"=="Q" (
set LABEL=[Q] Web Server
call :WebServer
) else if /i "%KEY:~0,1%"=="R" (
set LABEL=[R] Web Sockets
call :WebSockets
) else if /i "%KEY:~0,1%"=="X" (
set LABEL=[X] mvn clean install
call :OnlyMavenBuild
) else if /i "%KEY:~0,1%"=="Y" (
set LABEL=[Y] Build and Run All Together
call :AllTogether
) else if /i "%KEY:~0,1%"=="Z" (
set LABEL=[Z] Switch MVN Building Off/On
call :MavenBuildSwitching
) else (
goto :eof
)
goto menu
REM =================================================================================================================================================
:Basics
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.about.basics.ApplicationForBasics
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Collections
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.collections.ApplicationForCollections
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:DatesAndTimes
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.dates.ApplicationForDatesAndTimes
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Files
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.files.ApplicationForFiles
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Methods
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.methods.ApplicationForMethods
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Processes
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.processes.ApplicationForProcesses
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:ReactiveStreams
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.reactive.streams.ApplicationForReactiveStreams
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Records
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.records.ApplicationForRecords
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Regex
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.regex.ApplicationForRegex
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Sorting
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.sorting.ApplicationForSorting
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:StreamsCollecting
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.streams.collecting.ApplicationForStreamsCollecting
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:StreamsFragmentation
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.streams.fragmentation.ApplicationForStreamsFragmentation
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:StreamsTeeing
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.streams.teeing.ApplicationForCollectorsTeeing
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Synchronizers
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.synchronizers.ApplicationForSynchronizers
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:Tasks
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.tasks.ApplicationForTasks
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:WebClient
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.web.httpclient.ApplicationForWebClient
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:WebServer
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
pushd %cd%
cd ..
start %JAVA_HOME%\bin\java -Dfile.encoding=UTF-8 -cp %JARFILE% kp.web.httpserver.ApplicationForWebServer
popd
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:WebSockets
cls
if "%MVN_BLD_SWITCH%"=="ON" (
call :MvnCleanInstall
)
set MAINCLASS=kp.web.sockets.ApplicationForSockets
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:OnlyMavenBuild
cls
call :MvnCleanInstall
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:AllTogether
cls
call :MvnCleanInstall
set MAINCLASS=kp.about.basics.ApplicationForBasics
call :RunApplication
set MAINCLASS=kp.collections.ApplicationForCollections
call :RunApplication
set MAINCLASS=kp.dates.ApplicationForDatesAndTimes
call :RunApplication
set MAINCLASS=kp.files.ApplicationForFiles
call :RunApplication
set MAINCLASS=kp.methods.ApplicationForMethods
call :RunApplication
set MAINCLASS=kp.processes.ApplicationForProcesses
call :RunApplication
set MAINCLASS=kp.reactive.streams.ApplicationForReactiveStreams
call :RunApplication
set MAINCLASS=kp.records.ApplicationForRecords
call :RunApplication
set MAINCLASS=kp.regex.ApplicationForRegex
call :RunApplication
set MAINCLASS=kp.sorting.ApplicationForSorting
call :RunApplication
set MAINCLASS=kp.streams.collecting.ApplicationForStreamsCollecting
call :RunApplication
set MAINCLASS=kp.streams.fragmentation.ApplicationForStreamsFragmentation
call :RunApplication
set MAINCLASS=kp.streams.teeing.ApplicationForCollectorsTeeing
call :RunApplication
set MAINCLASS=kp.synchronizers.ApplicationForSynchronizers
call :RunApplication
set MAINCLASS=kp.tasks.ApplicationForTasks
call :RunApplication
set MAINCLASS=kp.web.httpclient.ApplicationForWebClient
call :RunApplication
set MAINCLASS=kp.web.sockets.ApplicationForSockets
call :RunApplication
call :RedLabelAndPause
cls
goto :eof
REM =================================================================================================================================================
:MavenBuildSwitching
if "%MVN_BLD_SWITCH%"=="ON" (
set MVN_BLD_SWITCH=OFF
) else (
set MVN_BLD_SWITCH=ON
)
cls
goto :eof
REM =================================================================================================================================================
:MvnCleanInstall
pushd %cd%
cd ..
call %M2_HOME%\bin\mvn clean install
popd
goto :eof
REM =================================================================================================================================================
:RunApplication
pushd %cd%
cd ..
chcp 65001 > nul 2>&1
%JAVA_HOME%\bin\java -Dfile.encoding=UTF-8 -cp %JARFILE% %MAINCLASS%
popd
goto :eof
REM =================================================================================================================================================
:RedLabelAndPause
powershell -Command Write-Host "FINISH %LABEL%" -foreground "Red"
pause
goto :eof
REM =================================================================================================================================================
:quit
echo.&pause