You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							91 lines
						
					
					
						
							2.8 KiB
						
					
					
				
			
		
		
	
	
							91 lines
						
					
					
						
							2.8 KiB
						
					
					
				<?php | 
						|
# | 
						|
function pspg($nc) | 
						|
{ | 
						|
$g = "function gdrw(c,d,cbx){gc(c);ghrs(c);gopt(c,cbx); | 
						|
gfs(c,'white');gss(c,'#0000c0');glw(c,2);gbd(c); | 
						|
var rows=d['rows'],ymin=-1,ymax=0,xmin=-1,xmax=0,tda=[]; | 
						|
var w=d['arp'].split(',');var cols=d['cols'].split(','); | 
						|
gsh(c,w); | 
						|
for(var j=1;j<w.length;j++){tda[j-1]=0} | 
						|
for(var i=0;i<rows;i++){var s=parseFloat(d['start:'+i]);var e=parseFloat(d['end:'+i]);d['nx:'+i]=sn(i,d['shift:'+i]);if(xmin==-1||xmin>s){xmin=s}if(xmax<e){xmax=e}d['vx:'+i]=(s+e)/2.0; | 
						|
for(var j=1;j<w.length;j++){var pre=w[j];var ths=0,nam=pre+'diffacc:'+i;if(d[nam]){var da=parseFloat(d[nam]);ths=(da/(e-s))*Math.pow(2,32)/Math.pow(10,12);tda[j-1]+=da}d[pre+'ths:'+i]=ths;if(ymin==-1||ymin>ths){ymin=ths}if(ths>ymax)ymax=ths} | 
						|
} | 
						|
for(var j=1;j<w.length;j++){tda[j-1]*=(Math.pow(2,32)/Math.pow(10,12)/(xmax-xmin))} | 
						|
var p5=(ymax-ymin)*0.05;ymax+=p5;ymin-=p5;if(ymin<0){ymin=0} | 
						|
if(c['zerob']){ymin=0} | 
						|
ghg(c,xmax-xmin); | 
						|
ggr(c,0.9,0.9,'TH/s',rows,xmin,xmax,ymin,ymax,d,'nx:','vx:','ths:',tda,w,cols,null)} | 
						|
c={}; | 
						|
function dodrw(data,cbx){if(hasCan()){gdrw(c,sep(data),cbx)}} | 
						|
function gact(t){if(t.checked){scnv(t.id,1)}else{scnv(t.id,0)}godrw(0)}"; | 
						|
return $g; | 
						|
} | 
						|
# | 
						|
function dopsperf($data, $user) | 
						|
{ | 
						|
 global $fld_sep, $val_sep; | 
						|
 | 
						|
 $cols = array('#0000c0'); | 
						|
 $nc = count($cols); | 
						|
 $datacols = $cols[0]; | 
						|
 | 
						|
 $ans = getPShiftData($user); | 
						|
 | 
						|
 $iCrap = strpos($_SERVER['HTTP_USER_AGENT'],'iP'); | 
						|
 if ($iCrap) | 
						|
	$vlines = false; | 
						|
 else | 
						|
	$vlines = true; | 
						|
 | 
						|
 $pg = '<h1>Pool Shift Reward Performance</h1><br>'; | 
						|
 | 
						|
 if ($ans['STATUS'] == 'ok' and $ans['DATA'] != '') | 
						|
 { | 
						|
	addGBase(); | 
						|
	addTips(); | 
						|
	$cbx = array('skey' => 'shift key', 'slines' => 'shift lines', | 
						|
			'tkey' => 'time key', 'tlines' => 'time lines', | 
						|
			'over' => 'key overlap', 'smooth' => 'smooth', | 
						|
			'zerob' => 'zero based', 'utc' => 'utc'); | 
						|
	$xon = array('skey' => 1, 'utc' => 1); | 
						|
	if ($vlines === true) | 
						|
		$xon['slines'] = 1; | 
						|
 | 
						|
	$pg .= "<div>"; | 
						|
	foreach ($cbx as $nam => $txt) | 
						|
	{ | 
						|
		$pg .= ' <span class=nb>'; | 
						|
		$pg .= "<input type=checkbox id=$nam onclick='gact(this)'>"; | 
						|
		$pg .= "$txt </span>"; | 
						|
	} | 
						|
 | 
						|
	$pg .= '</div>'; | 
						|
	$pg .= '<div id=can0><canvas id=can width=1 height=1>'; | 
						|
	$pg .= 'A graph will show here if your browser supports html5/canvas'; | 
						|
	$pg .= "</canvas></div>\n"; | 
						|
	$data = str_replace(array("\\","'"), array("\\\\","\\'"), $ans['DATA']); | 
						|
	$data .= $fld_sep . 'cols' . $val_sep . $datacols; | 
						|
	$pg .= "<script type='text/javascript'>\n"; | 
						|
	$pg .= pspg($nc); | 
						|
	$pg .= "\nfunction godrw(f){var cbx=["; | 
						|
	$comma = ''; | 
						|
	foreach ($cbx as $nam => $txt) | 
						|
	{ | 
						|
		$pg .= "$comma'$nam'"; | 
						|
		$comma = ','; | 
						|
	} | 
						|
	$pg .= '];if(f){var xon={};'; | 
						|
	foreach ($xon as $nam => $val) | 
						|
		$pg .= "xon['$nam']=1;"; | 
						|
	$pg .= "doinit(cbx,xon)}dodrw('$data',cbx)};godrw(1);</script>\n"; | 
						|
 } | 
						|
 return $pg; | 
						|
} | 
						|
# | 
						|
function show_psperf($info, $page, $menu, $name, $user) | 
						|
{ | 
						|
 gopage($info, NULL, 'dopsperf', $page, $menu, $name, $user); | 
						|
} | 
						|
# | 
						|
?>
 | 
						|
 |