-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawler.py
192 lines (167 loc) · 5.43 KB
/
crawler.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# -*- coding:utf-8 -*-
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import absolute_import
import redis
import traceback
import datetime
import time
import gc
import signal
import sys
import pickle
from selenium import webdriver
if sys.version_info[0] < 3:
raise Exception("need python3")
import parser
def dumpRatings(ratingList):
out = open('rating.pkl', 'wb')
pickle.dump(ratingList, out, pickle.HIGHEST_PROTOCOL)
out.close()
def tryLoadRatings():
ret = []
try:
pklfile = open('rating.pkl', 'rb')
try:
ret = pickle.load(pklfile)
except:
pass
finally:
pklfile.close()
except:
pass
return ret
firstTime = True
prevRatings = tryLoadRatings()
if len(prevRatings) > 0:
firstTime = False
r_server = redis.StrictRedis(host='localhost',port=6379,db=1)
redisListName = 'irc-write'
# ircChannel = input('irc channel name? ')
ircChannel = '#icpc'
# WebDriver init
driver = webdriver.PhantomJS('phantomjs', service_args=['--disk-cache=false', '--max-disk-cache-size=0'])
# end of WebDriver
def GetPageSource(desiredUrl):
failed = False
# WebDriver
print("launching phantomjs for checking " + desiredUrl)
try:
for trial in range(0,3):
# phantomjs freezes randomly, hack to fix the issue
timelimit = 30
def timeout_handler():
raise Exception('timeout')
handler = signal.signal(signal.SIGALRM, timeout_handler)
try:
signal.alarm(timelimit)
driver.delete_all_cookies()
driver.get('javascript:localStorage.clear();')
time.sleep(1)
driver.get(desiredUrl)
if desiredUrl == driver.current_url:
break
except:
pass
finally:
signal.alarm(0)
signal.signal(signal.SIGALRM, handler)
if desiredUrl != driver.current_url:
failed = True
print("can't open url %s (now %s)" % (desiredUrl,driver.current_url))
return None
source = driver.page_source
except Exception as e:
failed = True
print("Exception: %s" % e)
traceback.print_exc()
#end of WebDriver
if failed:
return None
return source
def GetRatings(page):
url = 'http://codeforces.com/ratings/country/Korea,%20Republic%20of/page/' + str(page)
source = GetPageSource(url)
return parser.ParseRatingsPage(source)
while True:
print("[{0}] collect!".format(datetime.datetime.now()))
ratingList = []
lastPage = 1
i = 1
handleSet = set()
retry = False
while i <= lastPage and i <= 10:
print("[{0}] processing page {1}...".format(datetime.datetime.now(), i))
try:
parsed = GetRatings(i)
print(parsed)
except Exception as e:
retry = True
print("Exception: %s" % e)
traceback.print_exc()
break
for (_, handle, _, _) in parsed['ratings']:
if handle in handleSet:
retry = True
break
handleSet.add(handle)
if retry:
break
ratingList += parsed['ratings']
lastPage = parsed['lastpage']
i += 1
if retry:
print("retrying: duplicated handle")
time.sleep(60)
continue
if not firstTime:
msg = "JOIN {}".format(ircChannel)
print(msg)
r_server.rpush(redisListName, msg)
prevMap={}
for (rank, handle, num_compete, rating) in prevRatings:
prevMap[handle] = (rank, handle, num_compete, rating)
for idx, (rank, handle, num_compete, rating) in enumerate(list(ratingList)):
if handle not in prevMap:
irc_message = "[Codeforces]\x0303 {0} at #{1} with {2}. (count: {3})".format(handle, rank, rating, num_compete)
else:
if int(num_compete) <= int(prevMap[handle][2]):
# do not trust the server
ratingList[idx] = prevMap[handle]
continue
prevRating = int(prevMap[handle][3])
newRating = int(rating)
if prevRating <= newRating:
sign = "\x0307+"
else:
sign = "\x0304-"
irc_message = "[Codeforces] {0} at #{6} -> #{1} with {4} -> \x0303 {2}\x0f ({5}). (count: {3})".format(
handle, # id {0}
rank, # rank {1}
rating, # rating {2}
num_compete, # count {3}
prevRating, # {4}
"{0}{1}\x0f".format(sign, abs(newRating - prevRating)), # {5}
prevMap[handle][0] #{6}
)
irc_channel = ircChannel
msg = "PRIVMSG {} :{}".format(irc_channel, irc_message)
print(msg)
r_server.rpush(redisListName, msg)
# end of firstTime check
print ("finished")
prevRatings = ratingList
dumpRatings(ratingList)
print ("dumped")
firstTime = False
if driver is not None:
driver.quit()
driver=None
gc.collect()
time.sleep(60*10)
while driver is None:
try:
driver = webdriver.PhantomJS('phantomjs')
except:
time.sleep(5*1000)
pass