| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036 |
- <?php
- session_start();
- #
- global $miner, $port, $readonly, $notify, $rigs, $socktimeoutsec;
- global $checklastshare, $hidefields;
- #
- # Don't touch these 2 - see $rigs below
- $miner = null;
- $port = null;
- #
- # Set $readonly to true to force miner.php to be readonly
- # Set $readonly to false then it will check BFGMiner 'privileged'
- $readonly = false;
- #
- # Set $notify to false to NOT attempt to display the notify command
- # Set $notify to true to attempt to display the notify command
- # If your older version of BFGMiner returns an 'Invalid command'
- # coz it doesn't have notify - it just shows the error status table
- $notify = true;
- #
- # set $checklastshare to true to do the following checks:
- # If a device's last share is 12x expected ago then display as an error
- # If a device's last share is 8x expected ago then display as a warning
- # If either of the above is true, also display the whole line highlighted
- # This assumes shares are 1 difficulty shares
- $checklastshare = true;
- #
- # Set $rigs to an array of your BFGMiner rigs that are running
- # format: 'IP:Port' or 'Host:Port'
- # If you only have one rig, it will just show the detail of that rig
- # If you have more than one rig it will show a summary of all the rigs
- # with buttons to show the details of each rig
- # e.g. $rigs = array('127.0.0.1:4028','myrig.com:4028');
- $rigs = array('127.0.0.1:4028');
- #
- # This should be OK for most cases
- # However, the longer it is the longer you have to wait while php
- # hangs if the target cgminer isn't runnning or listening
- # Feel free to increase it if your network is very slow
- # Also, on some windows PHP, apparently the $usec is ignored
- $socktimeoutsec = 10;
- #
- # List of fields NOT to be displayed
- # You can use this to hide data you don't want to see or don't want
- # shown on a public web page
- # The list of sections are: SUMMARY, POOL, PGA, GPU, NOTIFY, CONFIG
- # See the web page for the list of field names (the table headers)
- # It is an array of 'SECTION.Field Name' => 1
- # This example would hide the slightly more sensitive pool information
- #$hidefields = array('POOL.URL' => 1, 'POOL.User' => 1);
- $hidefields = array();
- #
- $here = $_SERVER['PHP_SELF'];
- #
- global $tablebegin, $tableend, $warnfont, $warnoff, $dfmt;
- #
- $tablebegin = '<tr><td><table border=1 cellpadding=5 cellspacing=0>';
- $tableend = '</table></td></tr>';
- $warnfont = '<font color=red><b>';
- $warnoff = '</b></font>';
- $dfmt = 'H:i:s j-M-Y \U\T\CP';
- #
- global $miner_font_family, $miner_font_size;
- #
- $miner_font_family = 'verdana,arial,sans';
- $miner_font_size = '13pt';
- #
- # This below allows you to put your own settings into a seperate file
- # so you don't need to update miner.php with your preferred settings
- # every time a new version is released
- # Just create the file 'myminer.php' in the same directory as
- # 'miner.php' - and put your own settings in there
- if (file_exists('myminer.php'))
- include_once('myminer.php');
- #
- # Ensure it is only ever shown once
- global $showndate;
- $showndate = false;
- #
- # For summary page to stop retrying failed rigs
- global $rigerror;
- $rigerror = array();
- #
- function htmlhead($checkapi)
- {
- global $miner_font_family, $miner_font_size;
- global $error, $readonly, $here;
- if ($readonly === false && $checkapi === true)
- {
- $access = api('privileged');
- if ($error != null
- || !isset($access['STATUS']['STATUS'])
- || $access['STATUS']['STATUS'] != 'S')
- $readonly = true;
- }
- $miner_font = "font-family:$miner_font_family; font-size:$miner_font_size;";
- echo "<html><head><title>Mine</title>
- <style type='text/css'>
- td { color:blue; $miner_font }
- td.h { color:blue; $miner_font background:#d0ffff }
- td.err { color:black; $miner_font background:#ff3050 }
- td.warn { color:black; $miner_font background:#ffb050 }
- td.sta { color:green; $miner_font }
- td.tot { color:blue; $miner_font background:#fff8f2 }
- td.lst { color:blue; $miner_font background:#ffffdd }
- </style>
- </head><body bgcolor=#ecffff>
- <script type='text/javascript'>
- function pr(a,m){if(m!=null){if(!confirm(m+'?'))return}window.location=\"$here\"+a}\n";
- if ($readonly === false && $checkapi === true)
- {
- ?>
- function prc(a,m){pr('?arg='+a,m)}
- function prs(a,r){var c=a.substr(3);var z=c.split('|',2);var m=z[0].substr(0,1).toUpperCase()+z[0].substr(1)+' GPU '+z[1];prc(a+'&rig='+r,m)}
- function prs2(a,n,r){var v=document.getElementById('gi'+n).value;var c=a.substr(3);var z=c.split('|',2);var m='Set GPU '+z[1]+' '+z[0].substr(0,1).toUpperCase()+z[0].substr(1)+' to '+v;prc(a+','+v+'&rig='+r,m)}
- <?php
- }
- ?>
- </script>
- <table width=100% height=100% border=0 cellpadding=0 cellspacing=0 summary='Mine'>
- <tr><td align=center valign=top>
- <table border=0 cellpadding=4 cellspacing=0 summary='Mine'>
- <?php
- }
- #
- global $error;
- $error = null;
- #
- function getsock($addr, $port)
- {
- global $error, $socktimeoutsec;
- $socket = null;
- $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
- if ($socket === false || $socket === null)
- {
- $error = socket_strerror(socket_last_error());
- $msg = "socket create(TCP) failed";
- $error = "ERR: $msg '$error'\n";
- return null;
- }
- // Ignore if this fails since the socket connect may work anyway
- // and nothing is gained by aborting if the option cannot be set
- // since we don't know in advance if it can connect
- socket_set_option($socket, SOL_SOCKET, SO_SNDTIMEO, array('sec' => $socktimeoutsec, 'usec' => 0));
- $res = socket_connect($socket, $addr, $port);
- if ($res === false)
- {
- $error = socket_strerror(socket_last_error());
- $msg = "socket connect($addr,$port) failed";
- $error = "ERR: $msg '$error'\n";
- socket_close($socket);
- return null;
- }
- return $socket;
- }
- #
- function readsockline($socket)
- {
- $line = '';
- while (true)
- {
- $byte = socket_read($socket, 1);
- if ($byte === false || $byte === '')
- break;
- if ($byte === "\0")
- break;
- $line .= $byte;
- }
- return $line;
- }
- #
- function api($cmd)
- {
- global $miner, $port, $hidefields;
- $socket = getsock($miner, $port);
- if ($socket != null)
- {
- socket_write($socket, $cmd, strlen($cmd));
- $line = readsockline($socket);
- socket_close($socket);
- if (strlen($line) == 0)
- {
- $error = "WARN: '$cmd' returned nothing\n";
- return $line;
- }
- # print "$cmd returned '$line'\n";
- $data = array();
- $objs = explode('|', $line);
- foreach ($objs as $obj)
- {
- if (strlen($obj) > 0)
- {
- $items = explode(',', $obj);
- $item = $items[0];
- $id = explode('=', $items[0], 2);
- if (count($id) == 1 or !ctype_digit($id[1]))
- $name = $id[0];
- else
- $name = $id[0].$id[1];
- if (strlen($name) == 0)
- $name = 'null';
- $sectionname = preg_replace('/\d/', '', $name);
- if (isset($data[$name]))
- {
- $num = 1;
- while (isset($data[$name.$num]))
- $num++;
- $name .= $num;
- }
- $counter = 0;
- foreach ($items as $item)
- {
- $id = explode('=', $item, 2);
- if (isset($hidefields[$sectionname.'.'.$id[0]]))
- continue;
- if (count($id) == 2)
- $data[$name][$id[0]] = $id[1];
- else
- $data[$name][$counter] = $id[0];
- $counter++;
- }
- }
- }
- return $data;
- }
- return null;
- }
- #
- function getparam($name, $both = false)
- {
- $a = null;
- if (isset($_POST[$name]))
- $a = $_POST[$name];
- if (($both === true) and ($a === null))
- {
- if (isset($_GET[$name]))
- $a = $_GET[$name];
- }
- if ($a == '' || $a == null)
- return null;
- // limit to 1K just to be safe
- return substr($a, 0, 1024);
- }
- #
- function classlastshare($when, $alldata, $warnclass, $errorclass)
- {
- global $checklastshare;
- if ($checklastshare === false)
- return '';
- if ($when == 0)
- return '';
- if (!isset($alldata['MHS av']))
- return '';
- if (!isset($alldata['Last Share Time']))
- return '';
- $expected = pow(2, 32) / ($alldata['MHS av'] * pow(10, 6));
- $howlong = $when - $alldata['Last Share Time'];
- if ($howlong < 1)
- $howlong = 1;
- if ($howlong > ($expected * 12))
- return $errorclass;
- if ($howlong > ($expected * 8))
- return $warnclass;
- return '';
- }
- #
- function fmt($section, $name, $value, $when, $alldata)
- {
- global $dfmt;
- if ($alldata == null)
- $alldata = array();
- $errorclass = ' class=err';
- $warnclass = ' class=warn';
- $lstclass = ' class=lst';
- $b = ' ';
- $ret = $value;
- $class = '';
- if ($value === null)
- $ret = $b;
- else
- switch ($section.'.'.$name)
- {
- case 'GPU.Last Share Time':
- case 'PGA.Last Share Time':
- if ($value == 0
- || (isset($alldata['Last Share Pool']) && $alldata['Last Share Pool'] == -1))
- {
- $ret = 'Never';
- $class = $warnclass;
- }
- else
- {
- $ret = date('H:i:s', $value);
- $class = classlastshare($when, $alldata, $warnclass, $errorclass);
- }
- break;
- case 'POOL.Last Share Time':
- if ($value == 0)
- $ret = 'Never';
- else
- $ret = date('H:i:s d-M', $value);
- break;
- case 'GPU.Last Share Pool':
- case 'PGA.Last Share Pool':
- if ($value == -1)
- {
- $ret = 'None';
- $class = $warnclass;
- }
- break;
- case 'SUMMARY.Elapsed':
- $s = $value % 60;
- $value -= $s;
- $value /= 60;
- if ($value == 0)
- $ret = $s.'s';
- else
- {
- $m = $value % 60;
- $value -= $m;
- $value /= 60;
- if ($value == 0)
- $ret = sprintf("%dm$b%02ds", $m, $s);
- else
- {
- $h = $value % 24;
- $value -= $h;
- $value /= 24;
- if ($value == 0)
- $ret = sprintf("%dh$b%02dm$b%02ds", $h, $m, $s);
- else
- {
- if ($value == 1)
- $days = '';
- else
- $days = 's';
-
- $ret = sprintf("%dday$days$b%02dh$b%02dm$b%02ds", $value, $h, $m, $s);
- }
- }
- }
- break;
- case 'NOTIFY.Last Well':
- if ($value == '0')
- {
- $ret = 'Never';
- $class = $warnclass;
- }
- else
- $ret = date('H:i:s', $value);
- break;
- case 'NOTIFY.Last Not Well':
- if ($value == '0')
- $ret = 'Never';
- else
- {
- $ret = date('H:i:s', $value);
- $class = $errorclass;
- }
- break;
- case 'NOTIFY.Reason Not Well':
- if ($value != 'None')
- $class = $errorclass;
- break;
- case 'GPU.Utility':
- case 'PGA.Utility':
- case 'SUMMARY.Utility':
- $ret = $value.'/m';
- if ($value == 0)
- $class = $warnclass;
- break;
- case 'PGA.Temperature':
- $ret = $value.'°C';
- break;
- case 'GPU.Temperature':
- $ret = $value.'°C';
- case 'GPU.GPU Clock':
- case 'GPU.Memory Clock':
- case 'GPU.GPU Voltage':
- case 'GPU.GPU Activity':
- if ($value == 0)
- $class = $warnclass;
- break;
- case 'GPU.Fan Percent':
- if ($value == 0)
- $class = $warnclass;
- else
- {
- if ($value == 100)
- $class = $errorclass;
- else
- if ($value > 85)
- $class = $warnclass;
- }
- break;
- case 'GPU.Fan Speed':
- if ($value == 0)
- $class = $warnclass;
- else
- if (isset($alldata['Fan Percent']))
- {
- $test = $alldata['Fan Percent'];
- if ($test == 100)
- $class = $errorclass;
- else
- if ($test > 85)
- $class = $warnclass;
- }
- break;
- case 'GPU.MHS av':
- case 'PGA.MHS av':
- case 'SUMMARY.MHS av':
- case 'GPU.Total MH':
- case 'PGA.Total MH':
- case 'SUMMARY.Total MH':
- case 'SUMMARY.Getworks':
- case 'GPU.Accepted':
- case 'PGA.Accepted':
- case 'SUMMARY.Accepted':
- case 'GPU.Rejected':
- case 'PGA.Rejected':
- case 'SUMMARY.Rejected':
- case 'SUMMARY.Local Work':
- case 'POOL.Getworks':
- case 'POOL.Accepted':
- case 'POOL.Rejected':
- case 'POOL.Discarded':
- $parts = explode('.', $value, 2);
- if (count($parts) == 1)
- $dec = '';
- else
- $dec = '.'.$parts[1];
- $ret = number_format($parts[0]).$dec;
- break;
- case 'GPU.Status':
- case 'PGA.Status':
- case 'POOL.Status':
- if ($value != 'Alive')
- $class = $errorclass;
- break;
- case 'GPU.Enabled':
- case 'PGA.Enabled':
- if ($value != 'Y')
- $class = $warnclass;
- break;
- case 'STATUS.When':
- $ret = date($dfmt, $value);
- break;
- }
- if ($section == 'NOTIFY' && substr($name, 0, 1) == '*' && $value != '0')
- $class = $errorclass;
- if ($class == '' && $section != 'POOL')
- $class = classlastshare($when, $alldata, $lstclass, $lstclass);
- return array($ret, $class);
- }
- #
- global $poolcmd;
- $poolcmd = array( 'Switch to' => 'switchpool',
- 'Enable' => 'enablepool',
- 'Disable' => 'disablepool' );
- #
- function showhead($cmd, $item, $values)
- {
- global $poolcmd, $readonly;
- echo '<tr>';
- foreach ($values as $name => $value)
- {
- if ($name == '0' or $name == '')
- $name = ' ';
- echo "<td valign=bottom class=h>$name</td>";
- }
- if ($cmd == 'pools' && $readonly === false)
- foreach ($poolcmd as $name => $pcmd)
- echo "<td valign=bottom class=h>$name</td>";
- echo '</tr>';
- }
- #
- function details($cmd, $list, $rig)
- {
- global $tablebegin, $tableend, $dfmt;
- global $poolcmd, $readonly;
- global $showndate;
- $when = 0;
- $stas = array('S' => 'Success', 'W' => 'Warning', 'I' => 'Informational', 'E' => 'Error', 'F' => 'Fatal');
- echo $tablebegin;
- if ($showndate === false)
- {
- echo '<tr><td class=sta>Date: '.date($dfmt).'</td></tr>';
- echo $tableend.$tablebegin;
- $showndate = true;
- }
- if (isset($list['STATUS']))
- {
- echo '<tr>';
- echo '<td>Computer: '.$list['STATUS']['Description'].'</td>';
- if (isset($list['STATUS']['When']))
- {
- echo '<td>When: '.date($dfmt, $list['STATUS']['When']).'</td>';
- $when = $list['STATUS']['When'];
- }
- $sta = $list['STATUS']['STATUS'];
- echo '<td>Status: '.$stas[$sta].'</td>';
- echo '<td>Message: '.$list['STATUS']['Msg'].'</td>';
- echo '</tr>';
- }
- $section = '';
- foreach ($list as $item => $values)
- {
- if ($item == 'STATUS')
- continue;
- $sectionname = preg_replace('/\d/', '', $item);
- if ($sectionname != $section)
- {
- echo $tableend.$tablebegin;
- showhead($cmd, $item, $values);
- $section = $sectionname;
- }
- echo '<tr>';
- foreach ($values as $name => $value)
- {
- list($showvalue, $class) = fmt($section, $name, $value, $when, $values);
- echo "<td$class>$showvalue</td>";
- }
- if ($cmd == 'pools' && $readonly === false)
- {
- reset($values);
- $pool = current($values);
- foreach ($poolcmd as $name => $pcmd)
- {
- echo '<td>';
- if ($pool === false)
- echo ' ';
- else
- {
- echo "<input type=button value='Pool $pool'";
- echo " onclick='prc(\"$pcmd|$pool&rig=$rig\",\"$name Pool $pool\")'>";
- }
- echo '</td>';
- }
- }
- echo '</tr>';
- }
- echo $tableend;
- }
- #
- global $devs;
- $devs = null;
- #
- function gpubuttons($count, $rig)
- {
- global $tablebegin, $tableend;
- global $devs;
- $basic = array( 'GPU', 'Enable', 'Disable', 'Restart' );
- $options = array( 'intensity' => 'Intensity',
- 'fan' => 'Fan Percent',
- 'engine' => 'GPU Clock',
- 'mem' => 'Memory Clock',
- 'vddc' => 'GPU Voltage' );
- echo $tablebegin.'<tr>';
- foreach ($basic as $head)
- echo "<td>$head</td>";
- foreach ($options as $name => $des)
- echo "<td nowrap>$des</td>";
- $n = 0;
- for ($c = 0; $c < $count; $c++)
- {
- echo '</tr><tr>';
- foreach ($basic as $name)
- {
- echo '<td>';
- if ($name == 'GPU')
- echo $c;
- else
- {
- echo "<input type=button value='$name $c' onclick='prs(\"gpu";
- echo strtolower($name);
- echo "|$c\",$rig)'>";
- }
- echo '</td>';
- }
- foreach ($options as $name => $des)
- {
- echo '<td>';
- if (!isset($devs["GPU$c"][$des]))
- echo ' ';
- else
- {
- $value = $devs["GPU$c"][$des];
- echo "<input type=button value='Set $c:' onclick='prs2(\"gpu$name|$c\",$n,$rig)'>";
- echo "<input size=7 type=text name=gi$n value='$value' id=gi$n>";
- $n++;
- }
- echo '</td>';
- }
- }
- echo '</tr>'.$tableend;
- }
- #
- function processgpus($rig)
- {
- global $error;
- global $warnfont, $warnoff;
- $gpus = api('gpucount');
- if ($error != null)
- echo '<tr><td>Error getting GPU count: '.$warnfont.$error.$warnoff.'</td></tr>';
- else
- {
- if (!isset($gpus['GPUS']['Count']))
- echo '<tr><td>No GPU count returned: '.$warnfont.$gpus['STATUS']['STATUS'].' '.$gpus['STATUS']['Msg'].$ro.'</td></tr>';
- else
- {
- $count = $gpus['GPUS']['Count'];
- if ($count == 0)
- echo '<tr><td>No GPUs</td></tr>';
- else
- gpubuttons($count, $rig);
- }
- }
- }
- #
- function process($cmds, $rig)
- {
- global $error, $devs;
- global $warnfont, $warnoff;
- foreach ($cmds as $cmd => $des)
- {
- $process = api($cmd);
- if ($error != null)
- {
- echo "<tr><td colspan=100>Error getting $des: ";
- echo $warnfont.$error.$warnoff.'</td></tr>';
- break;
- }
- else
- {
- details($cmd, $process, $rig);
- echo '<tr><td><br><br></td></tr>';
- if ($cmd == 'devs')
- $devs = $process;
- }
- }
- }
- #
- # $head is a hack but this is just a demo anyway :)
- function doforeach($cmd, $des, $sum, $head, $datetime)
- {
- global $miner, $port;
- global $error, $readonly, $notify, $rigs;
- global $tablebegin, $tableend, $warnfont, $warnoff, $dfmt;
- global $rigerror;
- $when = 0;
- $header = $head;
- $anss = array();
- $count = 0;
- $preverr = count($rigerror);
- foreach ($rigs as $rig)
- {
- if (isset($rigerror[$rig]))
- continue;
- $parts = explode(':', $rig, 2);
- if (count($parts) == 2)
- {
- $miner = $parts[0];
- $port = $parts[1];
- $ans = api($cmd);
- if ($error != null)
- {
- echo "<tr><td colspan=100>Error on rig $count getting $des: ";
- echo $warnfont.$error.$warnoff.'</td></tr>';
- $rigerror[$rig] = $error;
- $error = null;
- }
- else
- $anss[$count] = $ans;
- }
- $count++;
- }
- if (count($anss) == 0)
- {
- echo '<tr><td>Failed to access any rigs successfully';
- if ($preverr > 0)
- echo ' (or rigs had previous errors)';
- echo '</td></tr>';
- return;
- }
- if ($datetime)
- {
- echo '<tr><td class=sta>Date: '.date($dfmt).'</td></tr>';
- echo $tableend.$tablebegin;
- $dthead = array('' => 1, 'STATUS' => 1, 'Description' => 1, 'When' => 1, 'API' => 1, 'CGMiner' => 1);
- showhead('', null, $dthead);
- foreach ($anss as $rig => $ans)
- {
- echo '<tr>';
- foreach ($ans as $item => $row)
- {
- if ($item != 'STATUS' && $item != 'VERSION')
- continue;
- foreach ($dthead as $name => $x)
- {
- if ($item == 'STATUS' && $name == '')
- echo "<td align=right><input type=button value='Rig $rig' onclick='pr(\"?rig=$rig\",null)'></td>";
- else
- {
- if (isset($row[$name]))
- {
- list($showvalue, $class) = fmt('STATUS', $name, $row[$name], $when, null);
- echo "<td$class align=right>$showvalue</td>";
- }
- }
- }
- }
- echo '</tr>';
- }
- echo $tableend;
- echo '<tr><td><br><br></td></tr>';
- echo $tablebegin;
- return;
- }
- $total = array();
- foreach ($anss as $rig => $ans)
- {
- foreach ($ans as $item => $row)
- {
- if ($item == 'STATUS')
- continue;
- if (count($row) > count($header))
- {
- $header = $head;
- foreach ($row as $name => $value)
- if (!isset($header[$name]))
- $header[$name] = '';
- }
- if ($sum != null)
- foreach ($sum as $name)
- {
- if (isset($row[$name]))
- {
- if (isset($total[$name]))
- $total[$name] += $row[$name];
- else
- $total[$name] = $row[$name];
- }
- }
- }
- }
- if ($sum != null)
- $anss['total']['total'] = $total;
- showhead('', null, $header);
- $section = '';
- foreach ($anss as $rig => $ans)
- {
- $when = 0;
- if (isset($ans['STATUS']['When']))
- $when = $ans['STATUS']['When'];
- foreach ($ans as $item => $row)
- {
- if ($item == 'STATUS')
- continue;
- echo '<tr>';
- $newsection = preg_replace('/\d/', '', $item);
- if ($newsection != 'total')
- $section = $newsection;
- foreach ($header as $name => $x)
- {
- if ($name == '')
- {
- if ($rig === 'total')
- echo "<td align=right class=tot>Total:</td>";
- else
- echo "<td align=right><input type=button value='Rig $rig' onclick='pr(\"?rig=$rig\",null)'></td>";
- }
- else
- {
- if (isset($row[$name]))
- $value = $row[$name];
- else
- $value = null;
- list($showvalue, $class) = fmt($section, $name, $value, $when, $row);
- if ($rig === 'total' and $class == '')
- $class = ' class=tot';
- echo "<td$class align=right>$showvalue</td>";
- }
- }
- echo '</tr>';
- }
- }
- }
- #
- function doOne($rig, $preprocess)
- {
- global $error, $readonly, $notify;
- global $rigs;
- htmlhead(true);
- $error = null;
- echo "<tr><td><table cellpadding=0 cellspacing=0 border=0><tr><td>";
- echo "<input type=button value='Refresh' onclick='pr(\"?rig=$rig\",null)'></td>";
- if (count($rigs) > 1)
- echo "<td><input type=button value='Summary' onclick='pr(\"\",null)'></td>";
- echo "<td width=100%> </td><td>";
- if ($readonly === false)
- {
- $msg = 'Quit BFGMiner';
- if (count($rigs) > 1)
- $msg .= " Rig $rig";
- echo "<input type=button value='Quit' onclick='prc(\"quit&rig=$rig\",\"$msg\")'>";
- }
- echo "</td></tr></table></td></tr>";
- if ($preprocess != null)
- process(array($preprocess => $preprocess), $rig);
- $cmds = array( 'devs' => 'device list',
- 'summary' => 'summary information',
- 'pools' => 'pool list');
- if ($notify)
- $cmds['notify'] = 'device status';
- $cmds['config'] = 'BFGMiner config';
- process($cmds, $rig);
- if ($error == null && $readonly === false)
- processgpus($rig);
- }
- #
- function display()
- {
- global $tablebegin, $tableend;
- global $miner, $port;
- global $error, $readonly, $notify, $rigs;
- $rig = trim(getparam('rig', true));
- $arg = trim(getparam('arg', true));
- $preprocess = null;
- if ($arg != null and $arg != '')
- {
- $num = null;
- if ($rig != null and $rig != '')
- {
- if ($rig >= 0 and $rig < count($rigs))
- $num = $rig;
- }
- else
- if (count($rigs) == 0)
- $num = 0;
- if ($num != null)
- {
- $parts = explode(':', $rigs[$num], 2);
- if (count($parts) == 2)
- {
- $miner = $parts[0];
- $port = $parts[1];
- $preprocess = $arg;
- }
- }
- }
- if ($rigs == null or count($rigs) == 0)
- {
- echo "<tr><td>No rigs defined</td></tr>";
- return;
- }
- if (count($rigs) == 1)
- {
- $parts = explode(':', $rigs[0], 2);
- if (count($parts) == 2)
- {
- $miner = $parts[0];
- $port = $parts[1];
- doOne(0, $preprocess);
- }
- else
- echo '<tr><td>Invalid "$rigs" array</td></tr>';
- return;
- }
- if ($rig != null and $rig != '' and $rig >= 0 and $rig < count($rigs))
- {
- $parts = explode(':', $rigs[$rig], 2);
- if (count($parts) == 2)
- {
- $miner = $parts[0];
- $port = $parts[1];
- doOne($rig, $preprocess);
- }
- else
- echo '<tr><td>Invalid "$rigs" array</td></tr>';
- return;
- }
- htmlhead(false);
- echo "<tr><td><table cellpadding=0 cellspacing=0 border=0><tr><td>";
- echo "<input type=button value='Refresh' onclick='pr(\"\",null)'>";
- echo "</td></tr></table></td></tr>";
- if ($preprocess != null)
- process(array($preprocess => $preprocess), $rig);
- echo $tablebegin;
- doforeach('version', 'rig summary', array(), array(), true);
- $sum = array('MHS av', 'Getworks', 'Found Blocks', 'Accepted', 'Rejected', 'Discarded', 'Stale', 'Utility', 'Local Work', 'Total MH');
- doforeach('summary', 'summary information', $sum, array(), false);
- echo $tableend;
- echo '<tr><td><br><br></td></tr>';
- echo $tablebegin;
- doforeach('devs', 'device list', $sum, array(''=>'','ID'=>'','Name'=>''), false);
- echo $tableend;
- echo '<tr><td><br><br></td></tr>';
- echo $tablebegin;
- doforeach('pools', 'pool list', $sum, array(''=>''), false);
- echo $tableend;
- }
- #
- display();
- #
- ?>
- </table></td></tr></table>
- </body></html>
|