* Unify submission execution implementations into submissionRunner
* Unify contestMonitorTypes definitions between extension & web
* Make line separator in entry use LF
* Add entry.sh for sandbox
* Fix web imports
* Sandbox read from .env
---------
Co-authored-by: orosmatthew <orosmatthew@pm.me>
* Send detailed submission run result info to site/database
* Show SubmissionStateReason on site
* Mark Build/TLE errors as graded immediately
* Remove superfluous log
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.