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
|
# Integration with the oestats build statistics server, see:
#
# http://opensource.bolloretelecom.eu/projects/oestats
#
# To make use of this class, add to your local.conf:
#
# INHERIT += "oestats-client"
# OESTATS_SERVER = "some.server.org:8000"
# OESTATS_BUILDER = "some title"
def oestats_setid(d, val):
import bb
f = file(bb.data.getVar('TMPDIR', d, True) + '/oestats.id', 'w')
f.write(val)
def oestats_getid(d):
import bb
f = file(bb.data.getVar('TMPDIR', d, True) + '/oestats.id', 'r')
return f.read()
def oestats_send(server, action, vars = {}):
import httplib
# build body
output = []
bound = '----------ThIs_Is_tHe_bouNdaRY_$'
for key in vars:
assert vars[key]
output.append('--' + bound)
output.append('Content-Disposition: form-data; name="%s"' % key)
output.append('')
output.append(vars[key])
output.append('--' + bound + '--')
output.append('')
body = "\r\n".join(output)
# build headers
headers = {
"User-agent": "oestats-client/0.1",
"Content-type": "multipart/form-data; boundary=%s" % bound,
"Content-length": str(len(body))}
# send request
conn = httplib.HTTPConnection(server)
conn.request("POST", action, body, headers)
response = conn.getresponse()
data = response.read()
conn.close()
return data
def oestats_start(server, builder, d):
import bb
import os.path
import re
# send report
id = ""
try:
data = oestats_send(server, "/builds/start/", {
'builder': builder,
'revision': bb.data.getVar('METADATA_REVISION', d, True),
'machine': bb.data.getVar('MACHINE', d, True),
'distro': bb.data.getVar('DISTRO', d, True),
})
if re.match("^\d+$", data): id=data
except:
pass
# save the build id
if id:
bb.note("oestats: build %s" % id)
else:
bb.note("oestats: error starting build, disabling stats")
oestats_setid(d, id)
def oestats_stop(server, d, status):
import bb
# retrieve build id
id = oestats_getid(d)
if not id: return
# send report
try:
response = oestats_send(server, "/builds/stop/%s/" % id, {
'status': status,
})
except:
bb.note("oestats: error stopping build")
def oestats_task(server, d, task, status):
import bb
import time
# retrieve build id
id = oestats_getid(d)
if not id: return
# calculate build time
try:
elapsed = time.time() - float(bb.data.getVar('OESTATS_STAMP', d, True))
except:
elapsed = 0
# send report
try:
response = oestats_send(server, "/builds/task/%s/" % id, {
'package': bb.data.getVar('PN', d, True),
'version': bb.data.getVar('PV', d, True),
'revision': bb.data.getVar('PR', d, True),
'task': task,
'status': status,
'time': str(elapsed),
})
except:
bb.note("oestats: error sending task, disabling stats")
oestats_setid(d, "")
addhandler oestats_eventhandler
python oestats_eventhandler () {
from bb.event import getName
import bb
import time
if e.data is None or getName(e) == "MsgNote":
return NotHandled
server = bb.data.getVar('OESTATS_SERVER', e.data, True)
builder = bb.data.getVar('OESTATS_BUILDER', e.data, True)
if not server or not builder:
return NotHandled
if getName(e) == 'BuildStarted':
oestats_start(server, builder, e.data)
elif getName(e) == 'BuildCompleted':
oestats_stop(server, e.data, 'Completed')
elif getName(e) == 'TaskStarted':
bb.data.setVar('OESTATS_STAMP', repr(time.time()), e.data)
elif getName(e) == 'TaskSucceeded':
oestats_task(server, e.data, e.task, 'Succeeded')
elif getName(e) == 'TaskFailed':
oestats_task(server, e.data, e.task, 'Failed')
return NotHandled
}
|