@@ -15,7 +15,7 @@ use crate::{
15
15
request:: { GameRequest , Language , NormalGameRequest , PlayerCode , PvPGameRequest } ,
16
16
response:: GameStatus ,
17
17
runner:: { cpp, java, py, simulator, GameType , Runnable } ,
18
- utils:: { copy_files, send_initial_input, send_initial_pvp_input} ,
18
+ utils:: { copy_files, send_initial_input, send_initial_pvp_input} , create_final_pvp_response ,
19
19
} ;
20
20
21
21
pub trait Handler {
@@ -48,6 +48,7 @@ fn handle_event(
48
48
match entry {
49
49
EpollEntryType :: StdErr ( _) => unreachable ! ( ) ,
50
50
EpollEntryType :: Process ( mut p) => {
51
+ info ! ( "For process {}" , p. get_process( ) . id( ) ) ;
51
52
let exit_status = p. wait ( ) ?;
52
53
println ! ( "died: {}" , p. get_process( ) . id( ) ) ;
53
54
@@ -68,7 +69,6 @@ fn handle_event(
68
69
EpollEntryType :: StdErr ( _) => unreachable ! ( ) ,
69
70
}
70
71
} ) ;
71
- println ! ( "exit code after sim: {}" , exit_status) ;
72
72
return Err ( match exit_status. code ( ) {
73
73
// 137 => Stands for container killing itself (by SIGKILL)
74
74
// that will be due to contraint provided
@@ -96,23 +96,23 @@ fn get_runner(
96
96
player_code : & PlayerCode ,
97
97
game_id : & String ,
98
98
game_dir_handle : & GameDir ,
99
- file_name : & String ,
99
+ player_dir : & String ,
100
100
) -> Box < dyn Runnable > {
101
101
match player_code. language {
102
102
Language :: CPP => Box :: new ( cpp:: Runner :: new (
103
103
game_dir_handle. get_path ( ) . to_string ( ) ,
104
104
game_id. to_string ( ) ,
105
- file_name . to_owned ( ) ,
105
+ player_dir . to_owned ( ) ,
106
106
) ) ,
107
107
Language :: PYTHON => Box :: new ( py:: Runner :: new (
108
108
game_dir_handle. get_path ( ) . to_string ( ) ,
109
109
game_id. to_string ( ) ,
110
- file_name . to_owned ( ) ,
110
+ player_dir . to_owned ( ) ,
111
111
) ) ,
112
112
Language :: JAVA => Box :: new ( java:: Runner :: new (
113
113
game_dir_handle. get_path ( ) . to_string ( ) ,
114
114
game_id. to_string ( ) ,
115
- file_name . to_owned ( ) ,
115
+ player_dir . to_owned ( ) ,
116
116
) ) ,
117
117
}
118
118
}
@@ -133,15 +133,14 @@ impl Handler for NormalGameRequest {
133
133
}
134
134
135
135
let game_dir_handle = game_dir_handle. unwrap ( ) ;
136
- let game_type_dir = "normal_game" . to_string ( ) ;
137
- let file_name = "run" . to_string ( ) ;
136
+ let player_dir = "player" . to_string ( ) ;
138
137
139
138
if let Some ( resp) = copy_files (
140
139
& self . game_id ,
141
140
& self . player_code ,
142
141
& game_dir_handle,
143
- & game_type_dir ,
144
- & file_name ,
142
+ & player_dir ,
143
+ & GameType :: NormalGame ,
145
144
) {
146
145
return resp;
147
146
}
@@ -163,7 +162,7 @@ impl Handler for NormalGameRequest {
163
162
& self . player_code ,
164
163
& self . game_id ,
165
164
& game_dir_handle,
166
- & file_name ,
165
+ & player_dir ,
167
166
) ;
168
167
169
168
let initialize = || -> Result < _ , SimulatorError > {
@@ -225,8 +224,14 @@ impl Handler for NormalGameRequest {
225
224
let process2 = outputs. remove ( 0 ) ;
226
225
227
226
let ( player_process_out, sim_process_out) = match process1. process_type ( ) {
228
- ProcessType :: Runner => ( process1. output ( ) , process2. output ( ) ) ,
227
+ ProcessType :: Runner => ( process1. output ( ) , process2. output ( ) ) ,
229
228
ProcessType :: Simulator => ( process2. output ( ) , process1. output ( ) ) ,
229
+ _ => {
230
+ return create_error_response (
231
+ self . game_id . to_owned ( ) ,
232
+ SimulatorError :: UnidentifiedError ( "Failed to map outputs" . to_owned ( ) ) ,
233
+ ) ;
234
+ }
230
235
} ;
231
236
232
237
info ! ( "Successfully executed for game {}" , self . game_id) ;
@@ -249,10 +254,8 @@ impl Handler for PvPGameRequest {
249
254
"Starting pvp game execution for {} with languages player1: {:?} and player2: {:?}" ,
250
255
self . game_id, self . player1. language, self . player2. language
251
256
) ;
252
- info ! ( "Initial Parameters.coins: {}" , self . parameters. no_of_coins) ;
253
257
let game_dir_handle = GameDir :: new ( & self . game_id ) ;
254
258
255
- info ! ( "Game dir handle: {:?}" , game_dir_handle) ;
256
259
257
260
if game_dir_handle. is_none ( ) {
258
261
return create_error_response (
@@ -262,16 +265,18 @@ impl Handler for PvPGameRequest {
262
265
}
263
266
264
267
let game_dir_handle = game_dir_handle. unwrap ( ) ;
265
- let player1_game_type_dir = "pvp_game/player_1" . to_string ( ) ;
266
- let player2_game_type_dir = "pvp_game/player_2" . to_string ( ) ;
267
- let player_file_name = "run" . to_string ( ) ;
268
+ let player1_dir = "pvp_game/player_1" ;
269
+ let player2_dir = "pvp_game/player_2" ;
270
+
271
+ game_dir_handle. create_sub_dir ( player1_dir) ;
272
+ game_dir_handle. create_sub_dir ( player2_dir) ;
268
273
269
274
if let Some ( resp) = copy_files (
270
275
& self . game_id ,
271
276
& self . player1 ,
272
277
& game_dir_handle,
273
- & player1_game_type_dir ,
274
- & player_file_name ,
278
+ & player1_dir . to_string ( ) ,
279
+ & GameType :: PvPGame ,
275
280
) {
276
281
return resp;
277
282
}
@@ -280,8 +285,8 @@ impl Handler for PvPGameRequest {
280
285
& self . game_id ,
281
286
& self . player2 ,
282
287
& game_dir_handle,
283
- & player2_game_type_dir ,
284
- & player_file_name ,
288
+ & player2_dir . to_string ( ) ,
289
+ & GameType :: PvPGame ,
285
290
) {
286
291
return resp;
287
292
}
@@ -314,18 +319,18 @@ impl Handler for PvPGameRequest {
314
319
& self . player1 ,
315
320
& self . game_id ,
316
321
& game_dir_handle,
317
- & player_file_name ,
322
+ & player1_dir . to_string ( ) ,
318
323
) ;
319
324
let runner2 = get_runner (
320
325
& self . player2 ,
321
326
& self . game_id ,
322
327
& game_dir_handle,
323
- & player_file_name ,
328
+ & player2_dir . to_string ( ) ,
324
329
) ;
325
330
info ! ( "Got runners" ) ;
326
331
let initialize = || -> Result < _ , SimulatorError > {
327
332
let mut player1_process = runner1. run ( p1_r, p1_w, GameType :: PvPGame ) ?;
328
- let mut player2_process = runner2. run2 ( p2_r, p2_w, GameType :: PvPGame ) ?;
333
+ let mut player2_process = runner2. run ( p2_r, p2_w, GameType :: PvPGame ) ?;
329
334
let simulator = simulator:: Simulator :: new ( self . game_id . to_string ( ) ) ;
330
335
331
336
let mut sim_process = simulator. run_pvp (
@@ -351,12 +356,12 @@ impl Handler for PvPGameRequest {
351
356
352
357
let sim_stderr = sim_process. stderr . take ( ) . unwrap ( ) ;
353
358
354
- let player1_process = Process :: new ( player1_process, ProcessType :: Runner ) ;
355
- let player2_process = Process :: new ( player2_process, ProcessType :: Runner ) ;
359
+ let player1_process = Process :: new ( player1_process, ProcessType :: RunnerPlayer1 ) ;
360
+ let player2_process = Process :: new ( player2_process, ProcessType :: RunnerPlayer2 ) ;
356
361
let sim_process = Process :: new ( sim_process, ProcessType :: Simulator ) ;
357
362
358
- let player1_output = ProcessOutput :: new ( player1_stderr, ProcessType :: Runner ) ;
359
- let player2_output = ProcessOutput :: new ( player2_stderr, ProcessType :: Runner ) ;
363
+ let player1_output = ProcessOutput :: new ( player1_stderr, ProcessType :: RunnerPlayer1 ) ;
364
+ let player2_output = ProcessOutput :: new ( player2_stderr, ProcessType :: RunnerPlayer2 ) ;
360
365
let sim_output = ProcessOutput :: new ( sim_stderr, ProcessType :: Simulator ) ;
361
366
362
367
let player1 = EpollEntryType :: Process ( player1_process) ;
@@ -397,6 +402,8 @@ impl Handler for PvPGameRequest {
397
402
Err ( err) => return create_error_response ( self . game_id . to_owned ( ) , err) ,
398
403
} ;
399
404
405
+ info ! ( "Crossed first possib" ) ;
406
+
400
407
let mut outputs: Vec < ProcessOutput > = vec ! [ ] ;
401
408
402
409
while !event_handler. is_empty ( ) {
@@ -409,19 +416,45 @@ impl Handler for PvPGameRequest {
409
416
}
410
417
}
411
418
419
+ info ! ( "Crossed second possib" ) ;
420
+
412
421
let process1 = outputs. remove ( 0 ) ;
413
422
let process2 = outputs. remove ( 0 ) ;
414
-
415
- let ( player_process_out, sim_process_out) = match process1. process_type ( ) {
416
- ProcessType :: Runner => ( process1. output ( ) , process2. output ( ) ) ,
417
- ProcessType :: Simulator => ( process2. output ( ) , process1. output ( ) ) ,
423
+ let process3 = outputs. remove ( 0 ) ;
424
+
425
+ let ( player1_process_out, player2_process_out, sim_process_out) = match ( process1. process_type ( ) , process2. process_type ( ) , process3. process_type ( ) ) {
426
+ ( ProcessType :: RunnerPlayer1 , ProcessType :: RunnerPlayer2 , ProcessType :: Simulator ) => {
427
+ ( process1. output ( ) , process2. output ( ) , process3. output ( ) )
428
+ } ,
429
+ ( ProcessType :: RunnerPlayer2 , ProcessType :: RunnerPlayer1 , ProcessType :: Simulator ) => {
430
+ ( process2. output ( ) , process1. output ( ) , process3. output ( ) )
431
+ } ,
432
+ ( ProcessType :: RunnerPlayer1 , ProcessType :: Simulator , ProcessType :: RunnerPlayer2 ) => {
433
+ ( process1. output ( ) , process3. output ( ) , process2. output ( ) )
434
+ } ,
435
+ ( ProcessType :: RunnerPlayer2 , ProcessType :: Simulator , ProcessType :: RunnerPlayer1 ) => {
436
+ ( process2. output ( ) , process3. output ( ) , process1. output ( ) )
437
+ } ,
438
+ ( ProcessType :: Simulator , ProcessType :: RunnerPlayer1 , ProcessType :: RunnerPlayer2 ) => {
439
+ ( process3. output ( ) , process1. output ( ) , process2. output ( ) )
440
+ } ,
441
+ ( ProcessType :: Simulator , ProcessType :: RunnerPlayer2 , ProcessType :: RunnerPlayer1 ) => {
442
+ ( process3. output ( ) , process2. output ( ) , process1. output ( ) )
443
+ } ,
444
+ _ => {
445
+ return create_error_response (
446
+ self . game_id . to_owned ( ) ,
447
+ SimulatorError :: UnidentifiedError ( "Failed to map outputs" . to_owned ( ) ) ,
448
+ ) ;
449
+ }
418
450
} ;
419
-
451
+
420
452
info ! ( "Successfully executed for game {}" , self . game_id) ;
421
- create_final_response (
453
+ create_final_pvp_response (
422
454
self . parameters ,
423
455
self . game_id ,
424
- player_process_out,
456
+ player1_process_out,
457
+ player2_process_out,
425
458
sim_process_out,
426
459
)
427
460
}
0 commit comments