OnlineJudge/judge/judger/run.py

107 lines
3.1 KiB
Python
Raw Normal View History

2015-08-12 02:24:06 +00:00
# coding=utf-8
import sys
2015-08-17 04:48:10 +00:00
import json
import MySQLdb
2015-09-05 13:09:02 +00:00
import os
# 判断判题模式
judge_model = os.environ.get("judge_model", "default")
if judge_model == "default":
from client import JudgeClient
elif judge_model == "loose":
from loose_client import JudgeClient
2015-08-12 02:24:06 +00:00
from language import languages
from compiler import compile_
from result import result
2015-08-15 06:50:22 +00:00
from settings import judger_workspace
2015-08-17 04:48:10 +00:00
from settings import submission_db
2015-08-12 02:24:06 +00:00
# 简单的解析命令行参数
2015-08-12 06:56:18 +00:00
# 参数有 -solution_id -time_limit -memory_limit -test_case_id
# 获取到的值是['xxx.py', '-solution_id', '1111', '-time_limit', '1000', '-memory_limit', '100', '-test_case_id', 'aaaa']
2015-08-12 02:24:06 +00:00
args = sys.argv
2015-08-13 10:15:00 +00:00
submission_id = args[2]
2015-08-12 06:56:18 +00:00
time_limit = args[4]
memory_limit = args[6]
2015-08-12 02:24:06 +00:00
test_case_id = args[8]
2015-08-17 04:48:10 +00:00
def db_conn():
return MySQLdb.connect(db=submission_db["db"],
user=submission_db["user"],
passwd=submission_db["password"],
host=submission_db["host"],
port=submission_db["port"], charset="utf8")
conn = db_conn()
cur = conn.cursor()
cur.execute("select language, code from submission where id = %s", (submission_id,))
data = cur.fetchall()
if not data:
exit()
2015-08-17 04:48:10 +00:00
language_code = data[0][0]
code = data[0][1]
conn.close()
# 将代码写入文件
2015-08-17 04:48:10 +00:00
language = languages[language_code]
src_path = judger_workspace + "run/" + language["src_name"]
2015-08-12 02:24:06 +00:00
f = open(src_path, "w")
2015-08-17 04:48:10 +00:00
f.write(code.encode("utf8"))
2015-08-12 02:24:06 +00:00
f.close()
# 编译
2015-08-12 02:24:06 +00:00
try:
exe_path = compile_(language, src_path, judger_workspace + "run/")
2015-08-12 02:24:06 +00:00
except Exception as e:
2015-08-13 10:15:00 +00:00
print e
2015-08-17 04:48:10 +00:00
conn = db_conn()
cur = conn.cursor()
cur.execute("update submission set result=%s, info=%s where id=%s",
(result["compile_error"], str(e), submission_id))
conn.commit()
2015-08-12 02:24:06 +00:00
exit()
2015-08-13 10:15:00 +00:00
print "Compile successfully"
# 运行
2015-08-12 08:49:25 +00:00
try:
2015-08-17 04:48:10 +00:00
client = JudgeClient(language_code=language_code,
2015-08-12 08:49:25 +00:00
exe_path=exe_path,
max_cpu_time=int(time_limit),
max_real_time=int(time_limit) * 2,
max_memory=int(memory_limit),
2015-08-13 10:15:00 +00:00
test_case_dir=judger_workspace + "test_case/" + test_case_id + "/")
2015-08-17 04:48:10 +00:00
judge_result = {"result": result["accepted"], "info": client.run(), "accepted_answer_time": None}
2015-08-13 10:15:00 +00:00
for item in judge_result["info"]:
if item["result"]:
judge_result["result"] = item["result"]
break
2015-08-13 12:28:23 +00:00
else:
l = sorted(judge_result["info"], key=lambda k: k["cpu_time"])
2015-08-17 04:48:10 +00:00
judge_result["accepted_answer_time"] = l[-1]["cpu_time"]
2015-08-13 10:15:00 +00:00
2015-08-12 08:49:25 +00:00
except Exception as e:
print e
2015-08-17 04:48:10 +00:00
conn = db_conn()
cur = conn.cursor()
cur.execute("update submission set result=%s, info=%s where id=%s", (result["system_error"], str(e), submission_id))
conn.commit()
exit()
2015-08-13 10:15:00 +00:00
print "Run successfully"
print judge_result
2015-08-17 04:48:10 +00:00
conn = db_conn()
cur = conn.cursor()
cur.execute("update submission set result=%s, info=%s, accepted_answer_time=%s where id=%s",
(judge_result["result"], json.dumps(judge_result["info"]), judge_result["accepted_answer_time"],
submission_id))
conn.commit()
conn.close()