Go to file
David Poeschl 79fd96e1d3
Sandbox: Ensure runs are serialized, add detailed logging (#9)
Specific fixes to ensure runs are serialized:

- Added missing await when starting clone/run
- The runJava method now has a single exit path that can only execute when the process has guaranteed been 'close'd. The timeout detection previously sent SIGKILL and assumed it worked, but it was not working on my machine and the student code would continue to run indefinitely after returning.
- To get the SIGKILL to kill the submitted app's process, I added end/destroy calls to the process stdin/stdout/stderr streams.

Added lots of logging while diagnosing these issues, and it seems useful to keep. As part of this, the contest/team names are now included in the 'submissions' web api.

Also, I've structured the result data in more detail within the Sandbox, tracking whether a run succeeded or the way in which it failed. I'm collapsing these back down to just a string "output" with the preexisting failure markers (e.g. "[Timeout after 30 seconds]"), but would like to pass this over to the site/DB in a structured form eventually.
2023-12-17 11:30:16 -05:00
docs Add architecture docs 2023-09-14 11:31:30 -04:00
extension [extension] Add CSharp runner 2023-11-15 21:01:12 -05:00
sandbox Sandbox: Ensure runs are serialized, add detailed logging (#9) 2023-12-17 11:30:16 -05:00
web Sandbox: Ensure runs are serialized, add detailed logging (#9) 2023-12-17 11:30:16 -05:00
.gitignore gitignore entry for ".idea" (#7) 2023-11-05 11:06:45 -05:00
README.md Add READMEs 2023-09-14 11:16:11 -04:00

BW High School Programming Contest Environment

This is a mono-repo comprised of 3 components: web, sandbox, and extension.

Each directory contains instructions for building, development, and deployment.