File size: 1,304 Bytes
41e79e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from pathlib import Path
import tempfile
from src.safe_subprocess import run

LANG_NAME = "Scala"
LANG_EXT = ".scala"

def eval_script(path: Path):
    with tempfile.TemporaryDirectory() as outdir:
        # Each Scala file contains the class with same name `JAVA_CLASS_NAME`
        # Hence, scalac will same JAVA_CLASS_NAME.class file for each problem
        # Write class for each problem to a different temp dir
        build = run(["scalac", "-d", outdir, path], timeout_seconds=45)
        if build.exit_code != 0:
            # Well, it's a compile error. May be a type error or
            # something. But, why break the set convention
            return {
                "status": "SyntaxError",
                "exit_code": build.exit_code,
                "stdout": build.stdout,
                "stderr": build.stderr,
            }
        # "Problem" is the name of the class we emit.
        r = run(["scala", "-cp", f"{outdir}", "Problem"])
        if r.timeout:
            status = "Timeout"
        elif r.exit_code == 0 and r.stderr == "":
            status = "OK"
        else:
            # Well, it's a panic
            status = "Exception"
    return {
        "status": status,
        "exit_code": r.exit_code,
        "stdout": r.stdout,
        "stderr": r.stderr,
    }