";
}
$algo = user()->getState('yaamp-algo');
$target = yaamp_hashrate_constant($algo);
$interval = yaamp_hashrate_step();
$delay = time()-$interval;
$total_workers = getdbocount('db_workers', "algo=:algo", array(':algo'=>$algo));
$total_extranonce = getdbocount('db_workers', "algo=:algo and subscribe", array(':algo'=>$algo));
$total_hashrate = dboscalar("select sum(difficulty) * $target / $interval / 1000 from shares where valid and time>$delay and algo=:algo", array(':algo'=>$algo));
$total_invalid = dboscalar("select sum(difficulty) * $target / $interval / 1000 from shares where not valid and time>$delay and algo=:algo", array(':algo'=>$algo));
WriteBoxHeader("Miners Version ($algo)");
//showTableSorter('maintable2');
echo <<
Version |
Count |
Donators |
Extranonce |
Percent |
Hashrate* |
Reject |
end;
$error_tab = array(
20=>'Invalid nonce size',
21=>'Invalid job id',
22=>'Duplicate share',
23=>'Invalid time rolling',
24=>'Invalid extranonce2 size',
25=>'Invalid share',
26=>'Low difficulty share',
);
$total_donators = 0;
$versions = dbolist("select version, count(*) as c, sum(subscribe) as s from workers where algo=:algo group by version order by c desc", array(':algo'=>$algo));
foreach($versions as $item)
{
$version = $item['version'];
$count = $item['c'];
$extranonce = $item['s'];
$hashrate = controller()->memcache->get_database_scalar("miners-valid-$algo-v$version",
"SELECT sum(difficulty) * $target / $interval / 1000 FROM shares WHERE valid AND time>$delay
AND workerid IN (SELECT id FROM workers WHERE algo=:algo and version=:version)",
array(':algo'=>$algo, ':version'=>$version)
);
if (!$hashrate && !$this->admin) continue;
$invalid = controller()->memcache->get_database_scalar("miners-invalid-$algo-v$version",
"SELECT SUM(difficulty) * $target / $interval / 1000 FROM shares WHERE not valid AND time>$delay
AND workerid IN (SELECT id FROM workers WHERE algo=:algo AND version=:version)",
array(':algo'=>$algo, ':version'=>$version)
);
$title = '';
foreach($error_tab as $i=>$s)
{
$invalid2 = controller()->memcache->get_database_scalar("miners-invalid-$algo-v$version-err$i",
"SELECT sum(difficulty) * $target / $interval / 1000 from shares WHERE error=$i AND time>$delay
AND workerid in (SELECT id FROM workers WHERE algo=:algo AND version=:version)",
array(':algo'=>$algo, ':version'=>$version)
);
if($invalid2) {
$bad2 = round($invalid2*100/($hashrate+$invalid2), 2).'%';
$title .= "$bad2 - $s\n";
}
}
$donators = dboscalar(
"SELECT COUNT(*) AS donators FROM workers W LEFT JOIN accounts A ON A.id = W.userid".
" WHERE W.algo=:algo AND W.version=:version AND A.donation > 0",
array(':algo'=>$algo, ':version'=>$version)
);
$total_donators += $donators;
$percent = $total_hashrate&&$hashrate? round($hashrate * 100 / $total_hashrate, 2).'%': '';
$bad = ($hashrate+$invalid)? round($invalid*100/($hashrate+$invalid), 1).'%': '';
$hashrate = $hashrate? Itoa2($hashrate).'h/s': '';
$version = substr($version, 0, 30);
echo "";
echo "$version | ";
echo "$count | ";
echo "$donators | ";
echo "$extranonce | ";
echo "$percent | ";
echo "$hashrate | ";
echo "$bad | ";
echo "
";
}
echo "";
$title = '';
foreach($error_tab as $i=>$s)
{
$invalid2 = controller()->memcache->get_database_scalar("miners-invalid-$algo-err$i",
"SELECT SUM(difficulty) * $target / $interval / 1000 FROM shares WHERE time>$delay AND algo=:algo AND error=$i ".
"AND workerid IN (SELECT id FROM workers WHERE algo=:algo)", array(':algo'=>$algo)
);
if($invalid2) {
$bad2 = round($invalid2*100/($total_hashrate+$invalid2), 2);
$title .= "$bad2 - $s\n";
}
}
$bad = ($total_hashrate+$total_invalid)? round($total_invalid*100/($total_hashrate+$total_invalid), 1).'%': '';
$total_hashrate = Itoa2($total_hashrate).'h/s';
echo "";
echo "Total | ";
echo "$total_workers | ";
echo "$total_donators | ";
echo "$total_extranonce | ";
echo " | ";
echo "$total_hashrate | ";
echo "$bad | ";
echo "
";
echo "
";
echo "
* approximate from the last 5 minutes submitted shares
";
echo "