2018-08-23 21:31:02 +02:00
|
|
|
|
|
|
|
# Server for 'donate-cpu.py'
|
|
|
|
|
2018-08-25 08:49:40 +02:00
|
|
|
import glob
|
2018-08-23 21:31:02 +02:00
|
|
|
import os
|
|
|
|
import socket
|
|
|
|
import re
|
2018-08-24 13:04:25 +02:00
|
|
|
import datetime
|
2018-08-25 08:49:40 +02:00
|
|
|
import time
|
2018-08-25 18:38:51 +02:00
|
|
|
from threading import Thread
|
2018-08-24 13:04:25 +02:00
|
|
|
|
|
|
|
def strDateTime():
|
|
|
|
d = datetime.date.strftime(datetime.datetime.now().date(), '%Y-%m-%d')
|
|
|
|
t = datetime.time.strftime(datetime.datetime.now().time(), '%H:%M')
|
|
|
|
return d + ' ' + t
|
|
|
|
|
2018-08-26 16:47:20 +02:00
|
|
|
def fmt(a,b,c,d,e):
|
2018-08-25 08:49:40 +02:00
|
|
|
ret = a + ' '
|
|
|
|
while len(ret)<10:
|
|
|
|
ret += ' '
|
|
|
|
if len(ret) == 10:
|
|
|
|
ret += b[:10] + ' '
|
|
|
|
while len(ret)<21:
|
|
|
|
ret += ' '
|
|
|
|
ret += b[-5:] + ' '
|
|
|
|
while len(ret) < 32-len(c):
|
|
|
|
ret += ' '
|
|
|
|
ret += c + ' '
|
|
|
|
while len(ret) < 37-len(d):
|
|
|
|
ret += ' '
|
|
|
|
ret += d
|
2018-08-26 16:47:20 +02:00
|
|
|
ret += ' ' + e
|
2018-08-25 10:59:49 +02:00
|
|
|
if a != 'Package':
|
|
|
|
pos = ret.find(' ')
|
|
|
|
ret = '<a href="' + a + '">' + a + '</a>' + ret[pos:]
|
2018-08-25 08:49:40 +02:00
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2018-08-25 09:06:15 +02:00
|
|
|
def latestReport(latestResults):
|
2018-08-26 16:47:20 +02:00
|
|
|
html = '<html><head><title>Latest daca@home results</title></head><body>\n'
|
2018-08-25 08:49:40 +02:00
|
|
|
html += '<h1>Latest daca@home results</h1>'
|
2018-08-26 16:57:09 +02:00
|
|
|
html += '<pre>\n<b>' + fmt('Package','Date Time ','1.84','Head','Diff') + '</b>\n'
|
2018-08-25 08:49:40 +02:00
|
|
|
|
|
|
|
# Write report for latest results
|
2018-08-25 09:06:15 +02:00
|
|
|
for filename in latestResults:
|
2018-08-25 08:49:40 +02:00
|
|
|
package = filename[filename.rfind('/')+1:]
|
|
|
|
|
|
|
|
datestr = ''
|
2018-08-26 16:47:20 +02:00
|
|
|
count = ['0','0']
|
|
|
|
lost = 0
|
|
|
|
added = 0
|
2018-08-25 08:49:40 +02:00
|
|
|
for line in open(filename,'rt'):
|
|
|
|
line = line.strip()
|
|
|
|
if line.startswith('2018-'):
|
|
|
|
datestr = line
|
2018-08-26 16:47:20 +02:00
|
|
|
#elif line.startswith('cppcheck:'):
|
|
|
|
# cppcheck = line[9:]
|
|
|
|
elif line.startswith('count: '):
|
|
|
|
count = line.split(' ')[1:]
|
|
|
|
elif line.startswith('head '):
|
|
|
|
added += 1
|
2018-08-26 16:57:09 +02:00
|
|
|
elif line.startswith('1.84 '):
|
|
|
|
lost += 1
|
2018-08-26 16:47:20 +02:00
|
|
|
diff = ''
|
|
|
|
if lost > 0:
|
|
|
|
diff += '-' + str(lost)
|
|
|
|
if added > 0:
|
2018-08-26 16:57:09 +02:00
|
|
|
diff += '+' + str(added)
|
|
|
|
html += fmt(package, datestr, count[1], count[0], diff) + '\n'
|
2018-08-25 08:49:40 +02:00
|
|
|
|
|
|
|
html += '</pre></body></html>\n'
|
|
|
|
return html
|
|
|
|
|
2018-08-25 18:38:51 +02:00
|
|
|
|
2018-08-25 10:25:05 +02:00
|
|
|
def sendAll(connection, data):
|
|
|
|
while data:
|
2018-08-25 18:38:51 +02:00
|
|
|
num = connection.send(data)
|
|
|
|
if num < len(data):
|
|
|
|
data = data[num:]
|
2018-08-25 10:25:05 +02:00
|
|
|
else:
|
|
|
|
data = None
|
2018-08-23 21:31:02 +02:00
|
|
|
|
2018-08-25 18:38:51 +02:00
|
|
|
|
|
|
|
def httpGetResponse(connection, data, contentType):
|
2018-08-26 11:17:18 +02:00
|
|
|
resp = 'HTTP/1.1 200 OK\r\n'
|
|
|
|
resp += 'Connection: close\r\n'
|
|
|
|
resp += 'Content-length: ' + str(len(data)) + '\r\n'
|
|
|
|
resp += 'Content-type: ' + contentType + '\r\n\r\n'
|
2018-08-25 10:59:49 +02:00
|
|
|
resp += data
|
|
|
|
sendAll(connection, resp)
|
|
|
|
|
2018-08-23 21:31:02 +02:00
|
|
|
|
2018-08-25 18:38:51 +02:00
|
|
|
class HttpClientThread(Thread):
|
|
|
|
def __init__(self, connection, cmd, latestResults):
|
|
|
|
Thread.__init__(self)
|
|
|
|
self.connection = connection
|
|
|
|
self.cmd = cmd[:cmd.find('\n')]
|
|
|
|
self.latestResults = latestResults
|
2018-08-23 21:31:02 +02:00
|
|
|
|
2018-08-25 18:38:51 +02:00
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
cmd = self.cmd
|
|
|
|
print('[' + strDateTime() + '] ' + cmd)
|
|
|
|
if cmd.startswith('GET /latest.html '):
|
|
|
|
html = latestReport(self.latestResults)
|
|
|
|
httpGetResponse(self.connection, html, 'text/html')
|
|
|
|
else:
|
|
|
|
package = cmd[5:]
|
|
|
|
if package.find(' ') > 0:
|
|
|
|
package = package[:package.find(' ')]
|
|
|
|
filename = os.path.expanduser('~/donated-results/') + package
|
|
|
|
if not os.path.isfile(filename):
|
2018-08-25 20:58:31 +02:00
|
|
|
print('HTTP/1.1 404 Not Found')
|
2018-08-26 11:17:18 +02:00
|
|
|
connection.send('HTTP/1.1 404 Not Found\r\n\r\n')
|
2018-08-25 18:38:51 +02:00
|
|
|
else:
|
|
|
|
f = open(filename,'rt')
|
|
|
|
data = f.read()
|
|
|
|
f.close()
|
|
|
|
httpGetResponse(self.connection, data, 'text/plain')
|
2018-08-26 11:17:18 +02:00
|
|
|
finally:
|
2018-08-25 20:58:31 +02:00
|
|
|
time.sleep(1)
|
2018-08-25 18:38:51 +02:00
|
|
|
self.connection.close()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
resultPath = os.path.expanduser('~/donated-results')
|
|
|
|
|
|
|
|
f = open('packages.txt', 'rt')
|
|
|
|
packages = f.readlines()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
print('packages: ' + str(len(packages)))
|
|
|
|
|
|
|
|
if len(packages) == 0:
|
|
|
|
print('fatal: there are no packages')
|
|
|
|
sys.exit(1)
|
|
|
|
|
2018-08-25 20:58:31 +02:00
|
|
|
packageIndex = 0
|
|
|
|
if os.path.isfile('package-index.txt'):
|
|
|
|
f = open('package-index.txt', 'rt')
|
|
|
|
packageIndex = int(f.read())
|
|
|
|
if packageIndex < 0 or packageIndex >= len(packages):
|
|
|
|
packageIndex = 0
|
|
|
|
f.close()
|
2018-08-25 18:38:51 +02:00
|
|
|
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
|
|
server_address = ('', 8000)
|
|
|
|
sock.bind(server_address)
|
|
|
|
|
|
|
|
sock.listen(1)
|
|
|
|
|
|
|
|
latestResults = []
|
|
|
|
|
|
|
|
while True:
|
|
|
|
# wait for a connection
|
|
|
|
print('[' + strDateTime() + '] waiting for a connection')
|
|
|
|
connection, client_address = sock.accept()
|
2018-08-25 20:00:04 +02:00
|
|
|
try:
|
|
|
|
cmd = connection.recv(128)
|
2018-08-25 20:43:20 +02:00
|
|
|
except socket.error:
|
2018-08-25 20:00:04 +02:00
|
|
|
continue
|
2018-08-25 18:38:51 +02:00
|
|
|
if cmd.find('\n') < 1:
|
|
|
|
continue
|
|
|
|
firstLine = cmd[:cmd.find('\n')]
|
|
|
|
if re.match('[a-zA-Z0-9./ ]+',firstLine) is None:
|
|
|
|
connection.close()
|
|
|
|
continue;
|
|
|
|
if cmd.startswith('GET /'):
|
|
|
|
newThread = HttpClientThread(connection, cmd, latestResults)
|
|
|
|
newThread.start()
|
|
|
|
elif cmd=='get\n':
|
2018-08-23 22:13:53 +02:00
|
|
|
packages[packageIndex] = packages[packageIndex].strip()
|
2018-08-24 13:04:25 +02:00
|
|
|
print('[' + strDateTime() + '] get:' + packages[packageIndex])
|
2018-08-25 18:38:51 +02:00
|
|
|
connection.send(packages[packageIndex])
|
2018-08-23 21:31:02 +02:00
|
|
|
packageIndex += 1
|
|
|
|
if packageIndex >= len(packages):
|
|
|
|
packageIndex = 0
|
2018-08-25 20:58:31 +02:00
|
|
|
f = open('package-index.txt', 'wt')
|
|
|
|
f.write(str(packageIndex) + '\n')
|
|
|
|
f.close()
|
2018-08-25 18:38:51 +02:00
|
|
|
connection.close()
|
|
|
|
elif cmd.startswith('write\nftp://'):
|
|
|
|
# read data
|
2018-08-23 21:31:02 +02:00
|
|
|
data = cmd[6:]
|
2018-08-25 18:38:51 +02:00
|
|
|
try:
|
|
|
|
t = 0
|
|
|
|
while (len(data) < 1024 * 1024) and (not data.endswith('\nDONE')) and (t < 10):
|
|
|
|
d = connection.recv(1024)
|
|
|
|
if d:
|
|
|
|
t = 0
|
|
|
|
data += d
|
|
|
|
else:
|
|
|
|
time.sleep(0.2)
|
|
|
|
t += 0.2
|
|
|
|
connection.close()
|
|
|
|
except socket.error as e:
|
|
|
|
pass
|
|
|
|
|
2018-08-23 21:31:02 +02:00
|
|
|
pos = data.find('\n')
|
2018-08-25 18:38:51 +02:00
|
|
|
if pos < 10:
|
|
|
|
continue
|
|
|
|
url = data[:pos]
|
2018-08-26 16:47:20 +02:00
|
|
|
print('[' + strDateTime() + '] write:' + url)
|
2018-08-25 18:38:51 +02:00
|
|
|
|
|
|
|
# save data
|
|
|
|
res = re.match(r'ftp://.*pool/main/[^/]+/([^/]+)/[^/]*tar.gz',url)
|
|
|
|
if res and url in packages:
|
|
|
|
print('results added for package ' + res.group(1))
|
|
|
|
filename = resultPath + '/' + res.group(1)
|
|
|
|
f = open(filename, 'wt')
|
2018-08-26 16:47:20 +02:00
|
|
|
f.write(strDateTime() + '\n' + data)
|
2018-08-25 10:59:49 +02:00
|
|
|
f.close()
|
2018-08-25 18:38:51 +02:00
|
|
|
# track latest added results..
|
|
|
|
if len(latestResults) >= 20:
|
|
|
|
latestResults = latestResults[1:]
|
|
|
|
latestResults.append(filename)
|
2018-08-23 22:13:53 +02:00
|
|
|
else:
|
2018-08-25 18:38:51 +02:00
|
|
|
print('[' + strDateTime() + '] invalid command: ' + firstLine)
|
|
|
|
connection.close()
|