-
Notifications
You must be signed in to change notification settings - Fork 7
/
su.inc
463 lines (427 loc) · 13.3 KB
/
su.inc
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2017 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
// SU web utility functions
require_once("../inc/host.inc");
require_once("../inc/su_db.inc");
require_once("../inc/su_util.inc");
require_once("../inc/su_project_infos.inc");
require_once("../inc/keywords.inc");
// are we logged in as this user?
//
function is_logged_in($user) {
if (!isset($_COOKIE['auth'])) return false;
return $_COOKIE['auth'] == $user->authenticator;
}
function admin_only() {
$user = get_logged_in_user();
BoincForumPrefs::lookup($user);
if (!is_admin($user)) {
error_page("Not admin");
}
}
function project_status_string($status) {
switch ($status) {
case PROJECT_STATUS_HIDE: return "<font color=red>hidden</font>";
case PROJECT_STATUS_AUTO: return "<font color=green>normal</font>";
}
return "unknown: $status";
}
// convert list of project keywords to human-readable string
//
function project_keyword_array_to_string($arr) {
$x = "";
foreach ($arr as $y) {
$pkw = $y[0];
$wd = $y[1];
if ($x) {
$x .= "<br>";
}
$x .= $wd;
$frac = $pkw->fraction;
if ($frac < 1) {
$pct = $frac*100;
$x .= " ($pct%)";
}
}
return $x;
}
// get a project's platform list, as a string
//
function get_platforms_string($project_id) {
global $project_infos;
$p = $project_infos[$project_id];
$x = $p->avs;
$s = "";
foreach ($x as $y) {
$s .= "$y->platform";
if ($y->gpu) $s .= " + $y->gpu ";
if ($y->vbox) $s .= " + VirtualBox";
$s .= "<br>\n";
}
return $s;
}
// show percentage as a colored bar
//
function show_pct_bar($color, $width, $frac, $ndigits=0) {
$w = $width*$frac;
$w = $w."px";
$num = number_format($frac*100, $ndigits)."%";
return "<p style=\"background-color: $color; width: $w\">$num</p>\n";
}
// show number as a colored bar
//
function show_num_bar($color, $width, $num, $max, $ndigits=0) {
$frac = $num/$max;
$w = $width*$frac;
$w = $w."px";
if ($ndigits < 0) {
$num = sprintf("%.2e", $num);
} else {
$num = number_format($num, $ndigits);
}
return "<p style=\"background-color: $color; width: $w\">$num</p>\n";
}
function show_num($x) {
return number_format($x, 2);
}
function show_days($dt) {
return show_num($dt/86400.);
}
function show_gflops($ec, $dt) {
$x = ec_to_flops($ec);
return show_num($x/($dt*1e9));
}
////////////// UI INVOLVING KEYWORDS ////////////////
// look up the given keyword ID in the user KW list
//
function ukw_lookup($ukws, $id) {
foreach ($ukws as $uwk) {
if ($uwk->keyword_id == $id) {
return $uwk;
}
}
return null;
}
// return comma-separated list of KWs
//
function user_keyword_string($ukws, $kws, $category, $type) {
$first = true;
$x = '';
foreach ($kws as $kw) {
if ($kw->category != $category) continue;
$ukw = ukw_lookup($ukws, $kw->id);
if (($ukw && ($ukw->type == $type)) || (!$ukw && $type==KW_MAYBE)) {
if (!$first) $x .= ", ";
$first = false;
$x .= $kw->word;
}
}
if ($first) {
$x .= "---";
}
return $x;
}
function prefs_show($user) {
$ukws = SUUserKeyword::enum("user_id=$user->id");
$kws = SUKeyword::enum();
start_table();
row_heading('Types of science');
row2(tra('Yes'), user_keyword_string($ukws, $kws, SCIENCE, KW_YES));
row2(tra('No'), user_keyword_string($ukws, $kws, SCIENCE, KW_NO));
row2(tra('Maybe'), user_keyword_string($ukws, $kws, SCIENCE, KW_MAYBE));
row_heading('Locations');
row2(tra('Yes'), user_keyword_string($ukws, $kws, LOCATION, KW_YES));
row2(tra('No'), user_keyword_string($ukws, $kws, LOCATION, KW_NO));
row2(tra('Maybe'), user_keyword_string($ukws, $kws, LOCATION, KW_MAYBE));
end_table();
echo '<p><a class="btn btn-success" href="su_prefs.php?action=prefs_edit_form">'.tra("Edit preferences").'</a>
';
}
function project_kw_string($project_id, $category) {
global $job_keywords;
global $project_infos;
$x = "";
if (array_key_exists($project_id, $project_infos)) {
$pkws = $project_infos[$project_id]->kws;
$first = true;
foreach ($pkws as $pkw) {
$kw = $job_keywords[$pkw->keyword_id];
if ($kw->category != $category) continue;
if (!$first) $x .= ', ';
$first = false;
$x .= $kw->name;
}
}
return $x;
}
///////////// UI INVOLVING PROJECTS /////////////
function account_status_string($i) {
switch ($i) {
case ACCT_INIT:
return tra("Initial");
case ACCT_SUCCESS:
return tra("Established");
case ACCT_TRANSIENT_ERROR:
return tra("Transient error");
}
return "Unknown";
}
function show_user_projects($user) {
$accounts = SUAccount::enum("user_id=$user->id");
if (count($accounts) == 0) {
echo tra("No accounts yet");
return;
}
start_table('table-striped');
row_heading_array(array(
tra("Name"),
tra("Status"),
tra("CPU time"),
tra("CPU FLOPS"),
tra("GPU time"),
tra("GPU FLOPS"),
tra("# jobs success"),
tra("# jobs fail")
));
foreach ($accounts as $a) {
$project = SUProject::lookup_id($a->project_id);
row_array(array(
$project->name,
account_status_string($a->state),
$a->cpu_time,
$a->cpu_ec,
$a->gpu_time,
$a->gpu_ec,
$a->njobs_success,
$a->njobs_fail
));
}
end_table();
}
///////////// UI INVOLVING HOSTS /////////////
// show SU-specific info about a host
//
function show_host_detail($host) {
if ($host->product_name) {
row2(tra("Product name"), $host->product_name);
}
$x = $host->timezone/3600;
if ($x >= 0) $x="+$x";
row2(tra("Local Standard Time"), tra("UTC %1 hours", $x));
row2(tra("Created"), time_str($host->create_time));
row2(tra("Number of times contacted Science United"), $host->rpc_seqno);
row2(tra("Last time contacted Science United"), sched_log_link($host->rpc_time));
row2(tra("Fraction of time BOINC is running"), number_format(100*$host->on_frac, 2)."%");
if ($host->connected_frac > 0) {
row2(tra("While BOINC is running, fraction of time computer has an Internet connection"), number_format(100*$host->connected_frac, 2)."%");
}
row2(tra("While BOINC is running, fraction of time computing is allowed"), number_format(100*$host->active_frac, 2)."%");
row2(tra("While is BOINC running, fraction of time GPU computing is allowed"), number_format(100*$host->gpu_active_frac, 2)."%");
}
// show info about a host's HW and SW
//
function show_host_hw_sw($host) {
row2("Name", $host->domain_name);
row2(tra("CPU type"), "$host->p_vendor <br> $host->p_model");
row2(tra("Number of processors"), $host->p_ncpus);
if ($host->serialnum) {
row2(tra("Coprocessors"), gpu_desc($host->serialnum));
}
row2(tra("Operating System"), "$host->os_name <br> $host->os_version");
$v = boinc_version($host->serialnum);
if ($v) {
row2(tra("BOINC version"), $v);
}
$x = $host->m_nbytes/GIGA;
$y = round($x, 2);
row2(tra("Memory"), tra("%1 GB", $y));
if ($host->m_cache > 0) {
$x = $host->m_cache/MEGA;
$y = round($x, 2);
row2(tra("Cache"), tra("%1 MB", $y));
}
$x = $host->m_swap/GIGA;
$y = round($x, 2);
row2(tra("Swap space"), tra("%1 GB", $y));
$x = $host->d_total/GIGA;
$y = round($x, 2);
row2(tra("Total disk space"), tra("%1 GB", $y));
$x = $host->d_free/GIGA;
$y = round($x, 2);
row2(tra("Free Disk Space"), tra("%1 GB", $y));
$x = $host->p_fpops/1e9;
$y = round($x, 2);
row2(tra("Measured floating point speed"), tra("%1 billion ops/sec", $y));
$x = $host->p_iops/1e9;
$y = round($x, 2);
row2(tra("Measured integer speed"), tra("%1 billion ops/sec", $y));
$x = $host->n_bwup/MEGA;
$y = round($x, 2);
if ($y > 0) {
row2(tra("Average upload rate"), tra("%1 MB/sec", $y));
} else {
row2(tra("Average upload rate"), tra("Unknown"));
}
$x = $host->n_bwdown/MEGA;
$y = round($x, 2);
if ($y > 0) {
row2(tra("Average download rate"), tra("%1 MB/sec", $y));
} else {
row2(tra("Average download rate"), tra("Unknown"));
}
row2("CPU features", $host->p_features);
row2("VM extensions disabled?", $host->p_vm_extensions_disabled?"yes":"no");
row2("VirtualBox version", $host->virtualbox_version);
}
// show list of projects a host has computed for
//
function show_host_projects($host) {
$hps = SUHostProject::enum("host_id=$host->id");
if (count($hps) == 0) {
echo "no projects";
return;
}
start_table();
row_heading_array(array(
"Name",
"Last contact",
"CPU time",
"CPU FLOPs",
"GPU time",
"GPU FLOPs",
"# jobs success",
"# jobs fail",
));
foreach ($hps as $hp) {
$project = SUProject::lookup_id($hp->project_id);
row_array(array(
$project->name,
date_str($hp->last_rpc),
$hp->cpu_time,
$hp->cpu_ec,
$hp->gpu_time,
$hp->gpu_ec,
$hp->njobs_success,
$hp->njobs_fail,
));
}
end_table();
}
///////////// UI INVOLVING ACCOUNTING ////////////////
// Design philosophy:
// use only the following accounting units:
// - device time in days
// - GFLOPS/TFLOPS/PFLOPS as appropriate
// generic function to show accounting totals
//
function show_accounting_totals($a) {
if (!$a) {
echo tra("No accounting records yet");
return;
}
start_table();
row2(tra("CPU days"), show_days($a->cpu_time_total));
row2(tra("GPU days"), show_days($a->gpu_time_total));
row2(tra("Successful jobs"), number_format($a->njobs_success_total));
row2(tra("Failed jobs"), number_format($a->njobs_fail_total));
end_table();
}
function show_accounting_deltas($a, $active=false) {
start_table();
row2(tra("CPU days"), show_days($a->cpu_time_delta));
row2(tra("GPU days"), show_days($a->gpu_time_delta));
row2(tra("Successful jobs"), number_format($a->njobs_success_delta));
row2(tra("Failed jobs"), number_format($a->njobs_fail_delta));
if ($active) {
row2("Active volunteers", number_format($a->nactive_users));
row2("Active computers", number_format($a->nactive_hosts));
row2("Active computers with GPU", number_format($a->nactive_hosts_gpu));
}
end_table();
}
// function to show accounting history
//
function show_accounting_history($as) {
if (count($as) == 0) {
echo "No records yet";
return;
}
start_table('table-striped');
row_heading_array(array(
"Start",
"CPU days",
"CPU GFLOPS",
"GPU days",
"GPU GFLOPS",
"Jobs succeeded",
"Jobs failed",
));
for ($i=0; $i<count($as); $i++) {
$a = $as[$i];
if ($i == 0) {
row_array(array(
"Totals",
show_days($a->cpu_time_total),
"",
show_days($a->gpu_time_total),
"",
$a->njobs_success_total,
$a->njobs_fail_total,
));
$dt = time() - $a->create_time;
} else {
$dt = $as[$i-1]->create_time - $a->create_time ;
}
row_array(array(
time_str($a->create_time),
show_days($a->cpu_time_delta),
//$a->cpu_time_delta,
show_gflops($a->cpu_ec_delta, $dt),
show_days($a->gpu_time_delta),
//$a->gpu_time_delta,
show_gflops($a->gpu_ec_delta, $dt),
$a->njobs_success_delta,
$a->njobs_fail_delta,
));
}
end_table();
}
// return an object with fields ec_avg, ec_total, time_avg, time_total
// or null if no info
//
function get_work_info($user_id) {
$acs = SUAccountingUser::enum("user_id=$user_id", "order by id desc limit 7");
if (!$acs) {
return null;
}
$ec_sum = 0;
$time_sum = 0;
foreach ($acs as $ac) {
$ec_sum += $ac->cpu_ec_delta + $ac->gpu_ec_delta;
$time_sum += $ac->cpu_time_delta + $ac->gpu_time_delta;
}
$a = new StdClass;
$n = count($acs);
$a->ec_avg = $ec_sum/$n;
$a->time_avg = $time_sum/$n;
$ac = $acs[0];
$a->ec_total = $ac->cpu_ec_total + $ac->gpu_ec_total;
$a->time_total = $ac->cpu_time_total + $ac->gpu_time_total;
return $a;
}
?>