Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ghost #11

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added tests/spider/ghost/__init__.py
Empty file.
Empty file.
30 changes: 30 additions & 0 deletions tests/spider/ghost/v1/ghost_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import os

from xcpcio_board_spider import Contest, utils
from xcpcio_board_spider.spider.ghost.v1 import Ghost

current_file_path = os.path.abspath(__file__)
current_dir_path = os.path.dirname(current_file_path)


def test_spider_ghost_v1_2022_ec_final(snapshot):
test_prefix = "2022_ec_final"

c = Contest()
c.start_time = utils.get_timestamp_second("2023-03-25 09:00:00")
c.end_time = utils.get_timestamp_second("2023-03-25 14:00:00")

d = Ghost()
d.contest = c
d.fetch_uri = os.path.join(
current_dir_path, "test_data", test_prefix, "contest.dat")

d.fetch()
d.parse_teams()
d.parse_runs()

assert len(d.teams) == 314
assert len(d.runs) == 4842

snapshot.assert_match(d.teams.get_json, "teams")
snapshot.assert_match(d.runs.get_json, "runs")

Large diffs are not rendered by default.

Large diffs are not rendered by default.

5,174 changes: 5,174 additions & 0 deletions tests/spider/ghost/v1/test_data/2022_ec_final/contest.dat

Large diffs are not rendered by default.

Empty file.
1 change: 1 addition & 0 deletions xcpcio_board_spider/spider/ghost/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .ghost import *
135 changes: 135 additions & 0 deletions xcpcio_board_spider/spider/ghost/v1/ghost.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
import os
import requests

from xcpcio_board_spider.core import utils
from xcpcio_board_spider.type import Contest, Team, Teams, Submission, Submissions, constants

'''
For CodeForces Ghost
'''


class Ghost:
def __init__(self,
contest: Contest = None,
fetch_uri: str = None):
self.contest = contest
self.fetch_uri = fetch_uri

self.ghost_content = ""

self.teams = Teams()
self.runs = Submissions()

def fetch(self):
ghost_content = ""

if os.path.exists(self.fetch_uri):
with open(self.fetch_uri, 'r') as f:
ghost_content = f.read()
else:
params = {
'__timestamp__': utils.get_now_timestamp_second()
}
headers = {
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
}

resp = requests.get(self.fetch_uri, params=params,
headers=headers, timeout=5)

if resp.status_code == 200:
content_type = resp.headers.get("Content-Type")

if "charset" in content_type:
charset = content_type.split("charset=")[1]
ghost_content = resp.content.decode(charset)
else:
ghost_content = resp.content.decode()
else:
raise RuntimeError(
"fetch failed. [status_code=%s]" % resp.status_code)

self.ghost_content = ghost_content.split("\n")

return self

def parse_result(self, result: str):
if result == "OK":
return constants.RESULT_ACCEPTED

if result == "WA":
return constants.RESULT_WRONG_ANSWER

if result == "RJ":
return constants.RESULT_REJECTED

if result == "PE":
return constants.RESULT_PRESENTATION_ERROR

if result == "ML":
return constants.RESULT_MEMORY_LIMIT_EXCEEDED

if result == "OL":
return constants.RESULT_OUTPUT_LIMIT_EXCEEDED

if result == "RT":
return constants.RESULT_RUNTIME_ERROR

if result == "TL":
return constants.RESULT_TIME_LIMIT_EXCEEDED

return constants.RESULT_UNKNOWN

def parse_teams(self):
self.teams = Teams()

for line in self.ghost_content:
if not line.startswith("@t "):
continue

team = Team()

line = line[3:]
line = line.split(',')

team_id = str(line[0])
name = str(line[-1][1:-1])

team.team_id = team_id
team.name = name

self.teams[team_id] = team

return self

def parse_runs(self):
self.runs = Submissions()

index = 0
for line in self.ghost_content:
if not line.startswith("@s "):
continue

submission = Submission()

index += 1

line = line[3:]
line = line.split(',')

team_id = str(line[0])
submission_id = str(index)
problem_id = ord(str(line[1])) - ord('A')
timestamp = int(line[3])
result = str(line[4])

submission.team_id = team_id
submission.submission_id = submission_id
submission.problem_id = problem_id
submission.timestamp = timestamp
submission.status = self.parse_result(result)

self.runs.append(submission)

return self