| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435 |
- <?php
- session_start();
- #
- global $miner, $port;
- $miner = '127.0.0.1'; # hostname or IP address
- $port = 4028;
- #
- $here = $_SERVER['PHP_SELF'];
- #
- ?>
- <html><head><title>Mine</title>
- <style type='text/css'>
- td { color:blue; font-family:verdana,arial,sans; font-size:14pt; }
- td.h { color:blue; font-family:verdana,arial,sans; font-size:14pt; background:#d0ffff }
- td.sta { color:green; font-family:verdana,arial,sans; font-size:14pt; }
- </style>
- </head><body bgcolor=#ecffff>
- <script type='text/javascript'>
- function pr(a,m){if(m!=null){if(!confirm(m+'?'))return}window.location="<? echo $here ?>"+a}
- function prc(a,m){pr('?arg='+a,m)}
- function prs(a){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,m)}
- function prs2(a,n){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,m)}
- </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'>
- <?
- #
- global $error;
- $error = null;
- #
- function getsock($addr, $port)
- {
- global $error;
- $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;
- }
- $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;
- $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';
- 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 (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 fmt($section, $name, $value)
- {
- $b = ' ';
- switch ($section.'.'.$name)
- {
- case 'GPU0.Last Share Time':
- return date('H:i:s', $value);
- break;
- case 'SUMMARY.Elapsed':
- $s = $value % 60;
- $value -= $s;
- $value /= 60;
- if ($value == 0)
- {
- return $s.'s';
- }
- else
- {
- $m = $value % 60;
- $value -= $m;
- $value /= 60;
- if ($value == 0)
- {
- return sprintf("%dm$b%02ds", $m, $s);
- }
- else
- {
- $h = $value % 24;
- $value -= $h;
- $value /= 24;
- if ($value == 0)
- return sprintf("%dh$b%02dm$b%02ds", $h, $m, $s);
- else
- return sprintf("%ddays$b%02dh$b%02dm$b%02ds", $value, $h, $m, $s);
- }
- }
- break;
- case 'GPU0.Utility':
- case 'SUMMARY.Utility':
- return $value.'/m';
- break;
- case 'GPU0.Temperature':
- return $value.'°C';
- break;
- }
- return $value;
- }
- #
- function details($cmd, $list)
- {
- $stas = array('S' => 'Success', 'W' => 'Warning', 'I' => 'Informational', 'E' => 'Error', 'F' => 'Fatal');
- $tb = '<tr><td><table border=1 cellpadding=5 cellspacing=0>';
- $te = '</table></td></tr>';
- echo $tb;
- echo '<tr><td class=sta>Date: '.date('H:i:s j-M-Y \U\T\CP').'</td></tr>';
- echo $te.$tb;
- if (isset($list['STATUS']))
- {
- echo '<tr>';
- echo '<td>Computer: '.$list['STATUS']['Description'].'</td>';
- $sta = $list['STATUS']['STATUS'];
- echo '<td>Status: '.$stas[$sta].'</td>';
- echo '<td>Message: '.$list['STATUS']['Msg'].'</td>';
- echo '</tr>';
- }
- echo $te.$tb;
- $section = '';
- foreach ($list as $item => $values)
- {
- if ($item != 'STATUS')
- {
- $section = $item;
- echo '<tr>';
- foreach ($values as $name => $value)
- {
- if ($name == '0')
- $name = ' ';
- echo "<td valign=bottom class=h>$name</td>";
- }
- if ($cmd == 'pools')
- echo "<td valign=bottom class=h>Switch</td>";
- echo '</tr>';
- break;
- }
- }
- foreach ($list as $item => $values)
- {
- if ($item == 'STATUS')
- continue;
- foreach ($values as $name => $value)
- echo '<td>'.fmt($section, $name, $value).'</td>';
- if ($cmd == 'pools')
- {
- echo '<td>';
- reset($values);
- $pool = current($values);
- if ($pool === false)
- echo ' ';
- else
- {
- echo "<input type=button value='Pool $pool'";
- echo " onclick='prc(\"switchpool|$pool\",\"Switch to Pool $pool\")'>";
- }
- echo '</td>';
- }
- echo '</tr>';
- }
- echo $te;
- }
- #
- global $devs;
- $devs = null;
- #
- function gpubuttons($count, $info)
- {
- global $devs;
- $basic = array( 'GPU', 'Enable', 'Disable', 'Restart' );
- $options = array( 'intensity' => 'Intensity',
- 'fan' => 'Fan Percent',
- 'engine' => 'GPU Clock',
- 'mem' => 'Memory Clock',
- 'vddc' => 'GPU Voltage' );
- $tb = '<tr><td><table border=1 cellpadding=5 cellspacing=0>';
- $te = '</table></td></tr>';
- echo $tb.'<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\")'>";
- }
- 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)'>";
- echo "<input size=7 type=text name=gi$n value='$value' id=gi$n>";
- $n++;
- }
- echo '</td>';
- }
- }
- echo '</tr>'.$te;
- }
- #
- function processgpus($rd, $ro)
- {
- global $error;
- $gpus = api('gpucount');
- if ($error != null)
- echo '<tr><td>Error getting GPU count: '.$rd.$error.$ro.'</td></tr>';
- else
- {
- if (!isset($gpus['GPUS']['Count']))
- echo '<tr><td>No GPU count returned: '.$rd.$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);
- }
- }
- }
- #
- function process($cmds, $rd, $ro)
- {
- global $error, $devs;
- foreach ($cmds as $cmd => $des)
- {
- $process = api($cmd);
- if ($error != null)
- {
- echo "<tr><td>Error getting $des: ";
- echo $rd.$error.$ro.'</td></tr>';
- break;
- }
- else
- {
- details($cmd, $process);
- echo '<tr><td><br><br></td></tr>';
- if ($cmd == 'devs')
- $devs = $process;
- }
- }
- }
- #
- function display()
- {
- global $error;
- $error = null;
- $rd = '<font color=red><b>';
- $ro = '</b></font>';
- echo "<tr><td><table cellpadding=0 cellspacing=0 border=0><tr><td>";
- echo "<input type=button value='Refresh' onclick='pr(\"\",null)'>";
- echo "</td><td width=100%> </td><td>";
- echo "<input type=button value='Quit' onclick='prc(\"quit\",\"Quit CGMiner\")'>";
- echo "</td></tr></table></td></tr>";
- $arg = trim(getparam('arg', true));
- if ($arg != null and $arg != '')
- process(array($arg => $arg), $rd, $ro);
- $cmds = array( 'devs' => 'device list',
- 'summary' => 'summary information',
- 'pools' => 'pool list',
- 'config' => 'cgminer config');
- process($cmds, $rd, $ro);
- if ($error == null)
- processgpus($rd, $ro);
- }
- #
- display();
- #
- ?>
- </table></td></tr></table>
- </body></html>
|