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-25 08:49:40 +02:00
|
|
|
def fmt(a,b,c,d):
|
|
|
|
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-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-25 08:49:40 +02:00
|
|
|
html = '<html><body>\n'
|
|
|
|
html += '<h1>Latest daca@home results</h1>'
|
2018-08-25 10:59:49 +02:00
|
|
|
html += '<pre>\n<b>' + fmt('Package','Date Time ','head','1.84') + '</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 = ''
|
|
|
|
cppcheck = 'cppcheck/cppcheck'
|
|
|
|
count = {'cppcheck/cppcheck':0, '1.84/cppcheck':0}
|
|
|
|
for line in open(filename,'rt'):
|
|
|
|
line = line.strip()
|
|
|
|
if line.startswith('2018-'):
|
|
|
|
datestr = line
|
|
|
|
elif line.startswith('cppcheck:'):
|
|
|
|
cppcheck = line[9:]
|
|
|
|
elif re.match(r'.*:[0-9]+:[0-9]+: [a-z]+: .*\]$', line):
|
|
|
|
count[cppcheck] += 1
|
|
|
|
|
|
|
|
html += fmt(package, datestr, str(count['cppcheck/cppcheck']), str(count['1.84/cppcheck'])) + '\n'
|
|
|
|
|
|
|
|
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-25 10:59:49 +02:00
|
|
|
resp = 'HTTP/1.1 200 OK\n'
|
|
|
|
resp += 'Connection: close\n'
|
|
|
|
resp += 'Content-length: ' + str(len(data)) + '\n'
|
|
|
|
resp += 'Content-type: ' + contentType + '\n\n'
|
|
|
|
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):
|
|
|
|
print('HTTP/1.1 404 Not Found\n\n')
|
|
|
|
connection.send('HTTP/1.1 404 Not Found\n\n')
|
|
|
|
else:
|
|
|
|
f = open(filename,'rt')
|
|
|
|
data = f.read()
|
|
|
|
f.close()
|
|
|
|
httpGetResponse(self.connection, data, 'text/plain')
|
|
|
|
print('HttpClientThread: sleep 30 seconds..')
|
|
|
|
time.sleep(30)
|
|
|
|
print('HttpClientThread: stopping')
|
|
|
|
self.connection.close()
|
|
|
|
except:
|
|
|
|
return
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
packageIndex = int(time.time()) % len(packages)
|
|
|
|
|
|
|
|
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)
|
|
|
|
except socket.error as e:
|
|
|
|
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 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]
|
|
|
|
print('[' + strDateTime() + '] write:'+url)
|
|
|
|
|
|
|
|
# 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')
|
|
|
|
f.write(strDateTime() + '\n' + data[pos+1:])
|
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()
|