-
Notifications
You must be signed in to change notification settings - Fork 28
/
rust.py
29 lines (25 loc) · 816 Bytes
/
rust.py
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
from execute import execute, livecode
import requests
import re
from typing import Optional
from collections.abc import Callable
def create_comment(msg: str) -> str:
return f"/* {msg} */"
def calculate_code_score_with_err(v: str, code_maybe_incomplete: Callable[[int],bool]) -> (Optional[float], Optional[str]):
if v == "":
return None, None
r = check_code(v)
if r["status"] == 0:
return 1.0, None
log = r["log"]
print(log)
first = log[log.rindex("ex.rs:") + 6 :]
num_line_first = int(first[0 : first.index(":")])
if code_maybe_incomplete(num_line_first):
return None, None
else:
err = log
return -1.0, err
re_code_lang = "```([Rr]ust)?(.*?)```"
def check_code(v: str) -> dict:
return execute("rustc --crate-type lib", "rs", v)