File size: 1,317 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
39
40
41
from pathlib import Path
from src.safe_subprocess import run
import subprocess

# return codes for coqc:
# 0: compilation goes through 
# 1: some sort of error (nondescript)

def eval_script(path: Path):
    cleanup_extensions = ['.vo', '.vok', '.vos']

    try:
        # sadly there seems to be no way to verify proofs in a coq file without compiling
        output = subprocess.run(["coqc", "-noglob", str(path)], capture_output=True, timeout=5)
        outmessage = str(output)

        if output.returncode == 0:
            status = "OK"
            # cleanup: remove files generated by coqc
            for ext in cleanup_extensions:
                file_to_remove = path.with_suffix(ext)
                if file_to_remove.exists():
                    file_to_remove.unlink()

        elif "Unable to unify" in outmessage:
            status = "AssertionError"
        else:
            status = "SyntaxError"
        returncode = output.returncode

    except subprocess.TimeoutExpired as exc:
        status = "Timeout"
        output = exc
        returncode = -1
    return {
        "status": status,
        "exit_code": returncode,
        "stdout": "" if output.stdout is None else output.stdout.decode("utf-8"),
        "stderr": "" if output.stderr is None else output.stderr.decode("utf-8"),
    }