mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2024-12-28 04:51:44 +00:00
25 lines
635 B
Python
25 lines
635 B
Python
import os
|
|
import pwd
|
|
|
|
import grp
|
|
|
|
JUDGER_WORKSPACE_BASE = "/judger/run"
|
|
LOG_BASE = "/log"
|
|
|
|
COMPILER_LOG_PATH = os.path.join(LOG_BASE, "compile.log")
|
|
JUDGER_RUN_LOG_PATH = os.path.join(LOG_BASE, "judger.log")
|
|
SERVER_LOG_PATH = os.path.join(LOG_BASE, "judge_server.log")
|
|
|
|
RUN_USER_UID = pwd.getpwnam("code").pw_uid
|
|
RUN_GROUP_GID = grp.getgrnam("code").gr_gid
|
|
|
|
COMPILER_USER_UID = pwd.getpwnam("compiler").pw_uid
|
|
COMPILER_GROUP_GID = grp.getgrnam("compiler").gr_gid
|
|
|
|
SPJ_USER_UID = pwd.getpwnam("spj").pw_uid
|
|
SPJ_GROUP_GID = grp.getgrnam("spj").gr_gid
|
|
|
|
TEST_CASE_DIR = "/test_case"
|
|
SPJ_SRC_DIR = "/judger/spj"
|
|
SPJ_EXE_DIR = "/judger/spj"
|