2012-11-06 20:37:10 +04:00
|
|
|
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
// This script retrieves stats comparing flash versions in hangs and crashes.
|
|
|
|
|
|
|
|
// *** non-commandline handling ***
|
|
|
|
|
|
|
|
if (php_sapi_name() != 'cli') {
|
|
|
|
// not commandline, assume apache and output own source
|
|
|
|
header('Content-Type: text/plain; charset=utf8');
|
|
|
|
print(file_get_contents($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
include_once('datautils.php');
|
|
|
|
|
|
|
|
// *** script settings ***
|
|
|
|
|
|
|
|
// turn on error reporting in the script output
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
|
|
|
|
// make sure new files are set to -rw-r--r-- permissions
|
|
|
|
umask(022);
|
|
|
|
|
|
|
|
// set default time zone - right now, always the one the server is in!
|
|
|
|
date_default_timezone_set('America/Los_Angeles');
|
|
|
|
|
|
|
|
|
|
|
|
// *** data gathering variables ***
|
|
|
|
|
|
|
|
// for how many days back to get the data
|
2013-07-16 00:27:12 +04:00
|
|
|
$backlog_days = 7;
|
2012-11-06 20:37:10 +04:00
|
|
|
|
|
|
|
// *** URLs ***
|
|
|
|
|
|
|
|
$on_moz_server = file_exists('/mnt/crashanalysis/rkaiser/');
|
|
|
|
|
|
|
|
// File storing the DB access data - including password!
|
|
|
|
$fdbsecret = '/home/rkaiser/.socorro-prod-dbsecret.json';
|
|
|
|
|
|
|
|
$url_siglinkbase = 'https://crash-stats.mozilla.com/report/list?signature=';
|
|
|
|
$url_nullsiglink = 'https://crash-stats.mozilla.com/report/list?missing_sig=EMPTY_STRING';
|
|
|
|
$url_replinkbase = 'https://crash-stats.mozilla.com/report/index/';
|
2012-12-20 18:17:21 +04:00
|
|
|
$url_buglinkbase = 'https://bugzilla.mozilla.org/show_bug.cgi?id=';
|
2012-11-06 20:37:10 +04:00
|
|
|
|
|
|
|
|
|
|
|
if ($on_moz_server) { chdir('/mnt/crashanalysis/rkaiser/'); }
|
|
|
|
else { chdir('/mnt/mozilla/projects/socorro/'); }
|
|
|
|
|
|
|
|
// *** code start ***
|
|
|
|
|
|
|
|
// get current day
|
|
|
|
$curtime = time();
|
|
|
|
|
|
|
|
if (file_exists($fdbsecret)) {
|
|
|
|
$dbsecret = json_decode(file_get_contents($fdbsecret), true);
|
|
|
|
if (!is_array($dbsecret) || !count($dbsecret)) {
|
|
|
|
print('ERROR: No DB secrets found, aborting!'."\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
$db_conn = pg_pconnect('host='.$dbsecret['host']
|
|
|
|
.' port='.$dbsecret['port']
|
|
|
|
.' dbname=breakpad'
|
|
|
|
.' user='.$dbsecret['user']
|
|
|
|
.' password='.$dbsecret['password']);
|
|
|
|
if (!$db_conn) {
|
|
|
|
print('ERROR: DB connection failed, aborting!'."\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
// For info on what data can be accessed, see also
|
|
|
|
// http://socorro.readthedocs.org/en/latest/databasetabledesc.html
|
|
|
|
// For the DB schema, see
|
|
|
|
// https://github.com/mozilla/socorro/blob/master/sql/schema.sql
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Won't work! (Set just for documenting what fields are in the file.)
|
|
|
|
$dbsecret = array('host' => 'host.m.c', 'port' => '6432',
|
|
|
|
'user' => 'analyst', 'password' => 'foo');
|
|
|
|
print('ERROR: No DB secrets found, aborting!'."\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for ($daysback = $backlog_days + 1; $daysback > 0; $daysback--) {
|
|
|
|
$anatime = strtotime(date('Y-m-d', $curtime).' -'.$daysback.' day');
|
|
|
|
$anadir = date('Y-m-d', $anatime);
|
2012-11-06 20:39:08 +04:00
|
|
|
|
2013-04-20 18:41:38 +04:00
|
|
|
print('B2G: Looking at on-device crash data for '.$anadir."\n");
|
2012-11-06 20:37:10 +04:00
|
|
|
if (!file_exists($anadir)) { mkdir($anadir); }
|
|
|
|
|
|
|
|
$fbcdata = 'b2g-crashdata.json';
|
2013-07-15 20:23:02 +04:00
|
|
|
$fbtc = 'b2g-topcrashes.json';
|
2012-11-06 20:37:10 +04:00
|
|
|
$fpages = 'pages.json';
|
|
|
|
$fweb = $anadir.'.b2g.crashes.html';
|
2013-07-25 01:56:53 +04:00
|
|
|
$fwebweek = $anadir.'.b2g.topcrashes.weekly.html';
|
2012-11-06 20:37:10 +04:00
|
|
|
|
|
|
|
$anafbcdata = $anadir.'/'.$fbcdata;
|
|
|
|
if (!file_exists($anafbcdata)) {
|
|
|
|
$rep_query =
|
2013-01-14 18:45:04 +04:00
|
|
|
'SELECT version,build,release_channel,'
|
2012-11-06 20:37:10 +04:00
|
|
|
.'process_type,signature,date_processed,uuid '
|
2013-01-22 21:08:15 +04:00
|
|
|
.'FROM reports '
|
2012-11-07 21:08:51 +04:00
|
|
|
."WHERE product='B2G' AND os_name='Android' AND utc_day_is(date_processed, '".$anadir."') "
|
2012-11-06 21:07:38 +04:00
|
|
|
.'ORDER BY version DESC, build DESC, date_processed DESC;';
|
2012-11-06 20:37:10 +04:00
|
|
|
|
|
|
|
$rep_result = pg_query($db_conn, $rep_query);
|
|
|
|
if (!$rep_result) {
|
|
|
|
print('--- ERROR: Main report query failed!'."\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
$bcd = array('list' => array(), 'total' => 0);
|
|
|
|
while ($rep_row = pg_fetch_array($rep_result)) {
|
2013-11-19 18:57:08 +04:00
|
|
|
// Need to fetch whole JSON object becasue of bug 898072.
|
|
|
|
// Look into history to find nicer code to use when that is fixed.
|
2013-07-24 20:42:19 +04:00
|
|
|
$raw_query =
|
2013-11-19 18:57:08 +04:00
|
|
|
"SELECT raw_crash "
|
2013-07-24 20:42:19 +04:00
|
|
|
.'FROM raw_crashes '
|
2013-09-28 03:14:31 +04:00
|
|
|
."WHERE uuid='".$rep_row['uuid']."'"
|
|
|
|
." AND utc_day_is(date_processed, '".$anadir."');";
|
2013-07-24 20:42:19 +04:00
|
|
|
|
|
|
|
$raw_result = pg_query($db_conn, $raw_query);
|
|
|
|
if (!$raw_result) {
|
2013-11-19 18:57:08 +04:00
|
|
|
print('--- ERROR: Raw crash query failed for bp-'.$rep_row['uuid'].'!'."\n");
|
2013-07-24 20:42:19 +04:00
|
|
|
}
|
2013-11-19 18:57:08 +04:00
|
|
|
$raw_row = pg_fetch_array($raw_result);
|
|
|
|
$raw_crash_data = json_decode($raw_row['raw_crash'], true);
|
2013-11-19 19:06:12 +04:00
|
|
|
$rep_row['manufacturer'] = array_key_exists('Android_Manufacturer', $raw_crash_data)
|
|
|
|
? $raw_crash_data['Android_Manufacturer'] : '';
|
|
|
|
$rep_row['model'] = array_key_exists('Android_Model', $raw_crash_data)
|
|
|
|
? $raw_crash_data['Android_Model'] : 'unknown';
|
|
|
|
$rep_row['b2g_ver'] = array_key_exists('B2G_OS_Version', $raw_crash_data)
|
|
|
|
? $raw_crash_data['B2G_OS_Version'] : 'unknown';
|
2013-07-25 20:32:06 +04:00
|
|
|
$rep_row['device'] = trim($rep_row['manufacturer'].' '.$rep_row['model']);
|
2013-07-24 20:42:19 +04:00
|
|
|
|
2012-12-20 18:17:21 +04:00
|
|
|
$bugs = array();
|
|
|
|
$bug_query =
|
|
|
|
'SELECT bug_id, status, resolution, short_desc '
|
|
|
|
.'FROM bug_associations LEFT JOIN bugs'
|
|
|
|
.' ON (bug_associations.bug_id=bugs.id) '
|
|
|
|
."WHERE signature = '".pg_escape_string($rep_row['signature'])."';";
|
|
|
|
|
|
|
|
$bug_result = pg_query($db_conn, $bug_query);
|
|
|
|
if (!$bug_result) {
|
2013-07-25 21:35:25 +04:00
|
|
|
print('--- ERROR: Bug associations query failed for "'.$rep_row['signature'].'"!'."\n");
|
2012-12-20 18:17:21 +04:00
|
|
|
}
|
|
|
|
while ($bug_row = pg_fetch_array($bug_result)) {
|
|
|
|
$bugs[$bug_row['bug_id']] = array('status' => $bug_row['status'],
|
|
|
|
'resolution' => $bug_row['resolution'],
|
|
|
|
'short_desc' => $bug_row['short_desc']);
|
|
|
|
}
|
|
|
|
$rep_row['bugs'] = $bugs;
|
|
|
|
|
2012-11-06 20:37:10 +04:00
|
|
|
$bcd['list'][] = $rep_row;
|
|
|
|
$bcd['total']++;
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
uasort($bcd['list'], 'b2glist_compare'); // sort by B2G version, build ID, and crash time
|
|
|
|
|
2012-11-06 20:37:10 +04:00
|
|
|
file_put_contents($anafbcdata, json_encode($bcd));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$bcd = json_decode(file_get_contents($anafbcdata), true);
|
|
|
|
}
|
|
|
|
|
2013-07-15 20:23:02 +04:00
|
|
|
$anafbtc = $anadir.'/'.$fbtc;
|
|
|
|
if (!file_exists($anafbtc)) {
|
|
|
|
$btc = array();
|
|
|
|
foreach ($bcd['list'] as $crash) {
|
2013-07-25 02:06:37 +04:00
|
|
|
$b2g_ver = strlen(@$crash['b2g_ver'])?$crash['b2g_ver']:'unknown';
|
2013-07-25 01:56:53 +04:00
|
|
|
$report = $b2g_ver;
|
2013-07-15 23:23:52 +04:00
|
|
|
$device = strlen($crash['device'])?$crash['device']:'unknown';
|
|
|
|
$buildday = substr($crash['build'], 0, 8);
|
|
|
|
$ptype = strlen($crash['process_type'])?$crash['process_type']:'gecko';
|
2013-07-15 20:23:02 +04:00
|
|
|
addCount($btc, $report);
|
|
|
|
if ($btc[$report]['.count'] == 1) {
|
2013-07-25 01:56:53 +04:00
|
|
|
$btc[$report]['b2g_ver'] = $b2g_ver;
|
2013-07-15 20:23:02 +04:00
|
|
|
$btc[$report]['.sigs'] = array();
|
|
|
|
}
|
|
|
|
addCount($btc[$report]['.sigs'], $crash['signature']);
|
2013-07-16 00:20:12 +04:00
|
|
|
if ($btc[$report]['.sigs'][$crash['signature']]['.count'] == 1) {
|
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['bugs'] = $crash['bugs'];
|
|
|
|
}
|
2013-07-15 23:21:22 +04:00
|
|
|
if (array_key_exists('devices', $btc[$report]['.sigs'][$crash['signature']])) {
|
|
|
|
if (!in_array($device, $btc[$report]['.sigs'][$crash['signature']]['devices'])) {
|
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['devices'][] = $device;
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2013-07-15 23:21:22 +04:00
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['devices'] = array($device);
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
2013-07-15 23:21:22 +04:00
|
|
|
if (array_key_exists('bdates', $btc[$report]['.sigs'][$crash['signature']])) {
|
|
|
|
if (!in_array($buildday, $btc[$report]['.sigs'][$crash['signature']]['bdates'])) {
|
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['bdates'][] = $buildday;
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2013-07-15 23:21:22 +04:00
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['bdates'] = array($buildday);
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
2013-07-15 23:21:22 +04:00
|
|
|
if (array_key_exists('proctypes', $btc[$report]['.sigs'][$crash['signature']])) {
|
|
|
|
if (!in_array($ptype, $btc[$report]['.sigs'][$crash['signature']]['proctypes'])) {
|
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['proctypes'][] = $ptype;
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2013-07-15 23:21:22 +04:00
|
|
|
$btc[$report]['.sigs'][$crash['signature']]['proctypes'] = array($ptype);
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
krsort($btc); // sort by key (b2g_ver) in reverse order
|
2013-07-15 23:32:41 +04:00
|
|
|
foreach ($btc as $report=>$rdata) {
|
|
|
|
if (array_key_exists('.sigs', $rdata)) {
|
|
|
|
uasort($btc[$report]['.sigs'], 'count_compare'); // sort by count, highest-first
|
2013-07-15 23:38:01 +04:00
|
|
|
foreach ($rdata['.sigs'] as $sig=>$sdata) {
|
2013-07-15 23:40:40 +04:00
|
|
|
sort($btc[$report]['.sigs'][$sig]['devices']);
|
|
|
|
rsort($btc[$report]['.sigs'][$sig]['bdates']);
|
|
|
|
sort($btc[$report]['.sigs'][$sig]['proctypes']);
|
2013-07-15 23:38:01 +04:00
|
|
|
}
|
2013-07-15 23:32:41 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-15 23:17:57 +04:00
|
|
|
file_put_contents($anafbtc, json_encode($btc));
|
2013-07-15 20:23:02 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$btc = json_decode(file_get_contents($anafbtc), true);
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
$webreports = array('day' => $fweb, 'week' => $fwebweek);
|
|
|
|
|
|
|
|
foreach ($webreports as $type=>$fwebcur) {
|
|
|
|
$anafweb = $anadir.'/'.$fwebcur;
|
|
|
|
if ($type == 'week') {
|
|
|
|
if (!file_exists($anafweb)) {
|
|
|
|
// assemble 7-day "weekly" overview
|
|
|
|
print('Calculating weekly data'."\n");
|
|
|
|
$curbtc = $btc;
|
|
|
|
|
|
|
|
for ($pastday = 1; $pastday < 7; $pastday++) {
|
|
|
|
$pasttime = strtotime($anadir.' -'.$pastday.' day');
|
|
|
|
$pastdir = date('Y-m-d', $pasttime);
|
|
|
|
print('Adding '.$pastdir);
|
|
|
|
$pastfbtc = $pastdir.'/'.$fbtc;
|
|
|
|
if (file_exists($pastfbtc)) {
|
|
|
|
// Load that data and merge it into $curcd.
|
|
|
|
$pastbtc = json_decode(file_get_contents($pastfbtc), true);
|
|
|
|
foreach ($pastbtc as $report=>$rdata) {
|
|
|
|
print(':');
|
|
|
|
if (array_key_exists($report, $curbtc)) {
|
|
|
|
$curbtc[$report]['.count'] += $rdata['.count'];
|
|
|
|
foreach ($rdata['.sigs'] as $sig=>$sdata) {
|
|
|
|
print('.');
|
|
|
|
if (array_key_exists($sig, $curbtc[$report]['.sigs'])) {
|
|
|
|
$curbtc[$report]['.sigs'][$sig]['.count'] += $sdata['.count'];
|
|
|
|
$curbtc[$report]['.sigs'][$sig]['devices'] =
|
|
|
|
array_unique(array_merge($curbtc[$report]['.sigs'][$sig]['devices'], $sdata['devices']));
|
|
|
|
$curbtc[$report]['.sigs'][$sig]['bdates'] =
|
|
|
|
array_unique(array_merge($curbtc[$report]['.sigs'][$sig]['bdates'], $sdata['bdates']));
|
|
|
|
$curbtc[$report]['.sigs'][$sig]['proctypes'] =
|
|
|
|
array_unique(array_merge($curbtc[$report]['.sigs'][$sig]['proctypes'], $sdata['proctypes']));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$curbtc[$report]['.sigs'][$sig] = $sdata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print('.');
|
|
|
|
$curbtc[$report] = $rdata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print("\n");
|
|
|
|
}
|
|
|
|
else { print(' - '.$pastfbtc.' not found.'."\n"); }
|
|
|
|
}
|
|
|
|
if (count($curbtc)) {
|
|
|
|
krsort($curbtc); // sort by key (b2g_ver) in reverse order
|
|
|
|
foreach ($curbtc as $report=>$rdata) {
|
|
|
|
if (array_key_exists('.sigs', $rdata)) {
|
|
|
|
uasort($curbtc[$report]['.sigs'], 'count_compare'); // sort by count, highest-first
|
|
|
|
foreach ($rdata['.sigs'] as $sig=>$sdata) {
|
|
|
|
sort($curbtc[$report]['.sigs'][$sig]['devices']);
|
|
|
|
rsort($curbtc[$report]['.sigs'][$sig]['bdates']);
|
|
|
|
sort($curbtc[$report]['.sigs'][$sig]['proctypes']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// single-day data
|
|
|
|
$curbtc = $btc;
|
2013-07-16 00:20:12 +04:00
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
if (!file_exists($anafweb) && count($curbtc)) {
|
|
|
|
// create out an HTML page
|
|
|
|
print('Writing HTML output'."\n");
|
|
|
|
$doc = new DOMDocument('1.0', 'utf-8');
|
|
|
|
$doc->formatOutput = true; // we want a nice output
|
|
|
|
|
|
|
|
$root = $doc->appendChild($doc->createElement('html'));
|
|
|
|
$head = $root->appendChild($doc->createElement('head'));
|
|
|
|
$title = $head->appendChild($doc->createElement('title',
|
|
|
|
$anadir.($type == 'week'?' Weekly':'').' B2G Crashes Report'));
|
|
|
|
|
|
|
|
$style = $head->appendChild($doc->createElement('style'));
|
|
|
|
$style->setAttribute('type', 'text/css');
|
|
|
|
$style->appendChild($doc->createCDATASection(''
|
|
|
|
.'body {'."\n"
|
|
|
|
.' color: #000000;'."\n"
|
|
|
|
.' background-color: #FFFFFF;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.sig, .time {'."\n"
|
|
|
|
.' font-size: small;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.buildid > .timepart {'."\n"
|
|
|
|
.' color: #808080;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.device {'."\n"
|
|
|
|
.' color: #808080;'."\n"
|
|
|
|
.'}'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'/* Shipped (or publicly presented) devices */'."\n"
|
|
|
|
.'.device.huawei_huawei_y300_f1,'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.lge_lg_d300f,'."\n"
|
2014-04-10 17:52:05 +04:00
|
|
|
.'.device.unknown_alcatel_onetouch_pop_fire_c,'."\n"
|
2014-01-29 18:36:32 +04:00
|
|
|
.'.device.unknown_alcatel_one_touch_fire,'."\n"
|
2014-04-15 22:34:36 +04:00
|
|
|
.'.device.unknown_alcatel_onetouch_fire_c,'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.zte_p752d04,'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'.device.zte_roamer2,'."\n"
|
2014-04-18 18:46:31 +04:00
|
|
|
.'.device.zte_open_c,'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'.device.zte_zte_openc,'."\n"
|
|
|
|
.'.device.zte_zte_open_c {'."\n"
|
2013-07-25 01:56:53 +04:00
|
|
|
.' color: #000000;'."\n"
|
|
|
|
.' font-weight: bold;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'/* Internal testing devices */'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.alcatel_ot_995,'."\n"
|
2013-09-24 20:54:43 +04:00
|
|
|
.'.device.hamachi_hamachi,'."\n"
|
2013-08-16 00:58:20 +04:00
|
|
|
.'.device.lge_lg_d300,'."\n"
|
2014-01-29 18:36:32 +04:00
|
|
|
.'.device.lge_lg_d300g,'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.qcom_leo,'."\n"
|
2014-04-10 17:52:05 +04:00
|
|
|
.'.device.spreadtrum_sp6821a,'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.spreadtrum_sp7710,'."\n"
|
2014-07-17 18:33:10 +04:00
|
|
|
.'.device.spreadtrum_sp7715a,'."\n"
|
2014-02-03 22:53:50 +04:00
|
|
|
.'.device.toro_unagi1,'."\n"
|
|
|
|
.'.device.toro_otoro1,'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'.device.toro_inari1 {'."\n"
|
2013-07-25 01:56:53 +04:00
|
|
|
.' color: #000000;'."\n"
|
|
|
|
.' font-style: italic;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'/* Developer devices */'."\n"
|
|
|
|
.'.device.geeksphone_gp_peak,'."\n"
|
|
|
|
.'.device.geeksphone_gp_keon,'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'.device.geeksphone_gp_twist,'."\n"
|
2014-04-18 18:46:31 +04:00
|
|
|
.'.device.t2m_flame,'."\n"
|
2014-07-17 18:33:10 +04:00
|
|
|
.'.device.unknown_b2g_on_flatfish,'."\n"
|
2014-02-24 06:12:12 +04:00
|
|
|
.'.device.unknown_flame {'."\n"
|
2013-07-25 01:56:53 +04:00
|
|
|
.' color: #000000;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.ptype.gecko {'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.ptype.content {'."\n"
|
|
|
|
.' color: #808080;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.bug {'."\n"
|
|
|
|
.' font-size: small;'."\n"
|
|
|
|
.' empty-cells: show;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.resolved {'."\n"
|
|
|
|
.' text-decoration: line-through;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
.'.num, .pct {'."\n"
|
|
|
|
.' text-align: right;'."\n"
|
|
|
|
.'}'."\n"
|
|
|
|
));
|
|
|
|
|
|
|
|
$body = $root->appendChild($doc->createElement('body'));
|
|
|
|
$h1 = $body->appendChild($doc->createElement('h1',
|
|
|
|
$anadir.($type == 'week'?' Weekly':'').' B2G Crashes Report'));
|
|
|
|
|
|
|
|
$list = $body->appendChild($doc->createElement('ul'));
|
|
|
|
$item = $list->appendChild($doc->createElement('li'));
|
|
|
|
$link = $item->appendChild($doc->createElement('a',
|
|
|
|
'Top Crashes By Signature'));
|
|
|
|
$link->setAttribute('href', '#tcbs');
|
|
|
|
$tlist = $item->appendChild($doc->createElement('ul'));
|
|
|
|
foreach ($curbtc as $report=>$rdata) {
|
|
|
|
$titem = $tlist->appendChild($doc->createElement('li'));
|
|
|
|
$tlink = $titem->appendChild($doc->createElement('a',
|
|
|
|
$rdata['b2g_ver']));
|
|
|
|
$tlink->setAttribute('href', '#b2g-'.$rdata['b2g_ver']);
|
|
|
|
}
|
|
|
|
if ($type != 'week') {
|
|
|
|
$item = $list->appendChild($doc->createElement('li'));
|
|
|
|
$link = $item->appendChild($doc->createElement('a',
|
|
|
|
'Raw Crash List'));
|
|
|
|
$link->setAttribute('href', '#crashlist');
|
|
|
|
}
|
|
|
|
|
|
|
|
$h2 = $body->appendChild($doc->createElement('h2',
|
|
|
|
'Top Crashes By Signature'));
|
|
|
|
$link->setAttribute('id', 'tcbs');
|
2013-07-16 00:20:12 +04:00
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
foreach ($curbtc as $report=>$rdata) {
|
|
|
|
$h3 = $body->appendChild($doc->createElement('h3',
|
|
|
|
$rdata['b2g_ver']));
|
|
|
|
$link->setAttribute('id', 'b2g-'.$rdata['b2g_ver']);
|
|
|
|
|
|
|
|
$table = $body->appendChild($doc->createElement('table'));
|
|
|
|
$table->setAttribute('border', '1');
|
2013-07-16 00:20:12 +04:00
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
// table head
|
2013-07-16 00:20:12 +04:00
|
|
|
$tr = $table->appendChild($doc->createElement('tr'));
|
2013-07-25 01:56:53 +04:00
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Signature'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Devices'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Build Dates'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Process Types'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Count'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Pct'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Bugs'));
|
|
|
|
|
|
|
|
foreach ($rdata['.sigs'] as $sig=>$sdata) {
|
|
|
|
$pct = $rdata['.count'] ?
|
|
|
|
$sdata['.count'] / $rdata['.count'] : 0;
|
|
|
|
|
|
|
|
$tr = $table->appendChild($doc->createElement('tr'));
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
$td->setAttribute('class', 'sig');
|
|
|
|
if (!strlen($sig)) {
|
|
|
|
$link = $td->appendChild($doc->createElement('a', '(empty signature)'));
|
|
|
|
$link->setAttribute('href', $url_nullsiglink);
|
2013-07-24 23:47:49 +04:00
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
elseif ($sig == '\N') {
|
|
|
|
$td->appendChild($doc->createTextNode('(processing failure - "'.$sig.'")'));
|
2013-07-24 23:47:49 +04:00
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
else {
|
|
|
|
// common case, useful signature
|
|
|
|
$sigdisplay = preg_replace('/_+\.*$/', '', $sig);
|
|
|
|
$link = $td->appendChild($doc->createElement('a',
|
|
|
|
htmlentities($sigdisplay, ENT_COMPAT, 'UTF-8')));
|
|
|
|
$link->setAttribute('href', $url_siglinkbase.rawurlencode($sig));
|
|
|
|
}
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
foreach ($sdata['devices'] as $device) {
|
2013-07-16 00:20:12 +04:00
|
|
|
if (strlen($td->textContent)) {
|
|
|
|
$td->appendChild($doc->createTextNode(', '));
|
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
$span = $td->appendChild($doc->createElement('span', $device));
|
|
|
|
$span->setAttribute('class', 'device '.deviceClass($device));
|
|
|
|
}
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', implode(', ', $sdata['bdates'])));
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
foreach ($sdata['proctypes'] as $ptype) {
|
|
|
|
if (strlen($td->textContent)) {
|
|
|
|
$td->appendChild($doc->createTextNode(', '));
|
2013-07-16 00:20:12 +04:00
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
$span = $td->appendChild($doc->createElement('span', $ptype));
|
|
|
|
$span->setAttribute('class', 'ptype '.$ptype);
|
|
|
|
}
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $sdata['.count']));
|
|
|
|
$td->setAttribute('class', 'num');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td',
|
|
|
|
sprintf('%.1f', 100 * $pct).'%'));
|
|
|
|
$td->setAttribute('class', 'pct');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
if (array_key_exists('bugs', $sdata) && count($sdata['bugs'])) {
|
|
|
|
foreach ($sdata['bugs'] as $bug => $bugdata) {
|
|
|
|
if (strlen($td->textContent)) {
|
|
|
|
$td->appendChild($doc->createTextNode(', '));
|
|
|
|
}
|
|
|
|
$link = $td->appendChild($doc->createElement('a', $bug));
|
|
|
|
$link->setAttribute('href', $url_buglinkbase.$bug);
|
|
|
|
$link->setAttribute('title',
|
|
|
|
$bugdata['status'].' '.$bugdata['resolution'].' - '
|
|
|
|
.htmlentities($bugdata['short_desc'], ENT_COMPAT, 'UTF-8'));
|
|
|
|
if ($bugdata['status'] == 'RESOLVED' || $bugdata['status'] == 'VERIFIED') {
|
|
|
|
$link->setAttribute('class', 'bug resolved');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$link->setAttribute('class', 'bug');
|
|
|
|
}
|
2013-07-16 00:20:12 +04:00
|
|
|
}
|
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
else {
|
|
|
|
$td->appendChild($doc->createTextNode('-'));
|
|
|
|
}
|
2013-07-16 00:20:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
if ($type != 'week') {
|
|
|
|
$h2 = $body->appendChild($doc->createElement('h2',
|
|
|
|
'Raw Crash List'));
|
|
|
|
$link->setAttribute('id', 'crashlist');
|
2012-11-06 20:37:10 +04:00
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
// description
|
|
|
|
$para = $body->appendChild($doc->createElement('p',
|
|
|
|
'List of all '.$bcd['total'].' crashes for B2G on actual devices.'
|
|
|
|
.' (Times in the "Crash" column are UTC and link to the detailed crash'
|
|
|
|
.' reports on Socorro.)'));
|
|
|
|
|
|
|
|
$table = $body->appendChild($doc->createElement('table'));
|
|
|
|
$table->setAttribute('border', '1');
|
|
|
|
|
|
|
|
// table head
|
|
|
|
$tr = $table->appendChild($doc->createElement('tr'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'B2G-Ver'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Build ID'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Ver'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Channel'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Crash'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Device'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Process'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Signature'));
|
|
|
|
$th = $tr->appendChild($doc->createElement('th', 'Bugs'));
|
|
|
|
|
|
|
|
foreach ($bcd['list'] as $crash) {
|
|
|
|
$tr = $table->appendChild($doc->createElement('tr'));
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $crash['b2g_ver']));
|
|
|
|
$td->setAttribute('class', 'version');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
$td->setAttribute('class', 'buildid');
|
|
|
|
$span = $td->appendChild($doc->createElement('span', substr($crash['build'], 0, 8)));
|
|
|
|
$span->setAttribute('class', 'datepart');
|
|
|
|
$span = $td->appendChild($doc->createElement('span', substr($crash['build'], 8)));
|
|
|
|
$span->setAttribute('class', 'timepart');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $crash['version']));
|
|
|
|
$td->setAttribute('class', 'version');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $crash['release_channel']));
|
|
|
|
$td->setAttribute('class', 'channel');
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
$td->setAttribute('class', 'time');
|
|
|
|
$link = $td->appendChild($doc->createElement('a',
|
|
|
|
gmdate('H:i:s', strtotime($crash['date_processed']))));
|
|
|
|
$link->setAttribute('href', $url_replinkbase.$crash['uuid']);
|
|
|
|
$device = strlen($crash['device'])?$crash['device']:'unknown';
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $device));
|
|
|
|
$td->setAttribute('class', 'device '.deviceClass($device));
|
|
|
|
$ptype = strlen($crash['process_type'])?$crash['process_type']:'gecko';
|
|
|
|
$td = $tr->appendChild($doc->createElement('td', $ptype));
|
|
|
|
$td->setAttribute('class', 'ptype '.$ptype);
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
$td->setAttribute('class', 'sig');
|
|
|
|
if (!strlen($crash['signature'])) {
|
|
|
|
$link = $td->appendChild($doc->createElement('a', '(empty signature)'));
|
|
|
|
$link->setAttribute('href', $url_nullsiglink);
|
|
|
|
}
|
|
|
|
elseif ($crash['signature'] == '\N') {
|
|
|
|
$td->appendChild($doc->createTextNode('(processing failure - "'.$crash['signature'].'")'));
|
2012-12-20 18:17:21 +04:00
|
|
|
}
|
2013-07-25 01:56:53 +04:00
|
|
|
else {
|
|
|
|
// common case, useful signature
|
|
|
|
$sigdisplay = preg_replace('/_+\.*$/', '', $crash['signature']);
|
|
|
|
$link = $td->appendChild($doc->createElement('a',
|
|
|
|
htmlentities($sigdisplay, ENT_COMPAT, 'UTF-8')));
|
|
|
|
$link->setAttribute('href', $url_siglinkbase.rawurlencode($crash['signature']));
|
|
|
|
}
|
|
|
|
$td = $tr->appendChild($doc->createElement('td'));
|
|
|
|
if (array_key_exists('bugs', $crash) && count($crash['bugs'])) {
|
|
|
|
foreach ($crash['bugs'] as $bug => $bugdata) {
|
|
|
|
if (strlen($td->textContent)) {
|
|
|
|
$td->appendChild($doc->createTextNode(', '));
|
|
|
|
}
|
|
|
|
$link = $td->appendChild($doc->createElement('a', $bug));
|
|
|
|
$link->setAttribute('href', $url_buglinkbase.$bug);
|
|
|
|
$link->setAttribute('title',
|
|
|
|
$bugdata['status'].' '.$bugdata['resolution'].' - '
|
|
|
|
.htmlentities($bugdata['short_desc'], ENT_COMPAT, 'UTF-8'));
|
|
|
|
if ($bugdata['status'] == 'RESOLVED' || $bugdata['status'] == 'VERIFIED') {
|
|
|
|
$link->setAttribute('class', 'bug resolved');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$link->setAttribute('class', 'bug');
|
|
|
|
}
|
|
|
|
}
|
2012-12-20 18:17:21 +04:00
|
|
|
}
|
|
|
|
else {
|
2013-07-25 01:56:53 +04:00
|
|
|
$td->appendChild($doc->createTextNode('-'));
|
2012-12-20 18:17:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-06 20:37:10 +04:00
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
$doc->saveHTMLFile($anafweb);
|
2012-11-06 20:37:10 +04:00
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
// add the page to the pages index
|
|
|
|
$anafpages = $anadir.'/'.$fpages;
|
|
|
|
if (file_exists($anafpages)) {
|
|
|
|
$pages = json_decode(file_get_contents($anafpages), true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$pages = array();
|
|
|
|
}
|
2013-07-25 02:03:57 +04:00
|
|
|
$pages[$fwebcur] =
|
2013-07-25 01:56:53 +04:00
|
|
|
array('product' => 'B2G',
|
|
|
|
'channel' => null,
|
|
|
|
'version' => null,
|
|
|
|
'report' => 'b2gcrash',
|
|
|
|
'report_sub' => $type,
|
|
|
|
'display_ver' => 'B2G',
|
2013-07-25 02:03:57 +04:00
|
|
|
'display_rep' => ($type == 'week'?'Weekly Topcrash':'Crashes')
|
|
|
|
.' Report');
|
2013-07-25 01:56:53 +04:00
|
|
|
file_put_contents($anafpages, json_encode($pages));
|
2012-11-06 20:37:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-20 18:41:38 +04:00
|
|
|
print("\n");
|
2012-11-06 20:37:10 +04:00
|
|
|
|
|
|
|
// *** helper functions ***
|
|
|
|
|
2013-07-15 23:32:41 +04:00
|
|
|
// Comparison function using .count member (reverse sort!)
|
|
|
|
function count_compare($a, $b) {
|
|
|
|
if ($a['.count'] == $b['.count']) { return 0; }
|
|
|
|
return ($a['.count'] > $b['.count']) ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:53 +04:00
|
|
|
// Comparison function on B2G version, build ID and time (reverse sort!)
|
|
|
|
function b2glist_compare($a, $b) {
|
|
|
|
if ($a['b2g_ver'] == $b['b2g_ver']) {
|
|
|
|
if ($a['build'] == $b['build']) {
|
|
|
|
if ($a['date_processed'] == $b['date_processed']) { return 0; }
|
|
|
|
return ($a['date_processed'] > $b['date_processed']) ? -1 : 1;
|
|
|
|
}
|
|
|
|
return ($a['build'] > $b['build']) ? -1 : 1;
|
|
|
|
}
|
|
|
|
return ($a['b2g_ver'] > $b['b2g_ver']) ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
2013-07-24 23:47:49 +04:00
|
|
|
// Bump the counter of an element or initialize it.
|
2013-07-15 20:23:02 +04:00
|
|
|
function addCount(&$basevar, $sub, $addnum = 1) {
|
|
|
|
if (array_key_exists($sub, $basevar)) {
|
|
|
|
$basevar[$sub]['.count'] += $addnum;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$basevar[$sub]['.count'] = $addnum;
|
|
|
|
}
|
|
|
|
}
|
2013-07-24 23:47:49 +04:00
|
|
|
|
|
|
|
// Convert a device name to a CSS class
|
|
|
|
function deviceClass($devicename) {
|
|
|
|
$classraw = strtr($devicename, array(chr(128)=>'EUR',chr(164)=>'EUR',"'"=>'','"'=>''));
|
|
|
|
$classraw = strtolower(iconv('UTF-8', 'ASCII//TRANSLIT', $classraw));
|
|
|
|
$devclass = ''; $i = 0;
|
2013-07-24 23:49:26 +04:00
|
|
|
while ($i < strlen($classraw)) {
|
2013-07-24 23:47:49 +04:00
|
|
|
if (((ord($classraw{$i}) >= 48) && (ord($classraw{$i}) <= 57)) ||
|
|
|
|
((ord($classraw{$i}) >= 97) && (ord($classraw{$i}) <= 122))) {
|
|
|
|
$devclass .= $classraw{$i};
|
|
|
|
}
|
2013-07-24 23:52:06 +04:00
|
|
|
elseif (strlen($devclass) && ($devclass{strlen($devclass)-1} != '_')) {
|
2013-07-24 23:47:49 +04:00
|
|
|
$devclass .= '_';
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
$devclass = trim($devclass, '_');
|
|
|
|
return $devclass;
|
|
|
|
}
|
|
|
|
|
2012-11-06 20:37:10 +04:00
|
|
|
?>
|