mirror of https://github.com/BOINC/boinc.git
113 lines
2.9 KiB
PHP
113 lines
2.9 KiB
PHP
<?php
|
|
|
|
// The contents of this file are subject to the BOINC Public License
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
|
//
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing rights and limitations
|
|
// under the License.
|
|
//
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
//
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
//
|
|
// Contributor(s):
|
|
//
|
|
|
|
|
|
require_once("../inc/util_ops.inc");
|
|
|
|
db_init();
|
|
page_head("Result Failure Summary by Platform");
|
|
|
|
|
|
$_GET['table'] = 'result';
|
|
$_GET['sort_by'] = ''; // ignore sort
|
|
|
|
$query_appid = $_GET['appid'];
|
|
$query_received_time = time() - $_GET['nsecs'];
|
|
|
|
$q = new SqlQueryString();
|
|
$q->process_form_items();
|
|
|
|
$main_query = "
|
|
SELECT
|
|
app_version_num AS App_Version,
|
|
case
|
|
when INSTR(host.os_name, 'Darwin') then 'Darwin'
|
|
when INSTR(host.os_name, 'Linux') then 'Linux'
|
|
when INSTR(host.os_name, 'Windows') then 'Windows'
|
|
when INSTR(host.os_name, 'SunOS') then 'SunOS'
|
|
else 'Unknown'
|
|
end AS OS_Name,
|
|
case
|
|
when INSTR(host.os_name, 'Linux') then
|
|
case
|
|
when INSTR(LEFT(host.os_version, 6), '-') then LEFT(host.os_version, (INSTR(LEFT(host.os_version, 6), '-') - 1))
|
|
else LEFT(host.os_version, 6)
|
|
end
|
|
else host.os_version
|
|
end AS OS_Version,
|
|
exit_status,
|
|
COUNT(*) AS error_count
|
|
FROM result
|
|
left join host on result.hostid = host.id
|
|
WHERE
|
|
appid = '$query_appid' and
|
|
server_state = '5' and
|
|
outcome = '3' and
|
|
received_time > '$query_received_time'
|
|
GROUP BY
|
|
app_version_num DESC,
|
|
OS_Name,
|
|
OS_Version,
|
|
exit_status
|
|
";
|
|
|
|
$urlquery = $q->urlquery;
|
|
$result = mysql_query($main_query);
|
|
|
|
echo "<table>\n";
|
|
echo "<tr><th>App Version</th><th>OS Name</th><th>OS Version</th><th>Exit Status</th><th>Error Count</th></tr>\n";
|
|
|
|
while ($res = mysql_fetch_object($result)) {
|
|
|
|
echo "<tr>";
|
|
|
|
echo "<td align=left valign=top>";
|
|
echo $res->App_Version;
|
|
echo "</td>";
|
|
|
|
echo "<td align=left valign=top>";
|
|
echo $res->OS_Name;
|
|
echo "</td>";
|
|
|
|
echo "<td align=left valign=top>";
|
|
echo $res->OS_Version;
|
|
echo "</td>";
|
|
|
|
echo "<td align=left valign=top>";
|
|
$exit_status_condition = "exit_status=$res->exit_status";
|
|
echo link_results(exit_status_string($res), $urlquery, "$exit_status_condition");
|
|
echo "</td>";
|
|
|
|
echo "<td align=left valign=top>";
|
|
echo $res->error_count;
|
|
echo "</td>";
|
|
|
|
echo "</tr>\n";
|
|
|
|
}
|
|
mysql_free_result($result);
|
|
|
|
echo "</table>\n";
|
|
|
|
page_tail();
|
|
|
|
?>
|