-
Notifications
You must be signed in to change notification settings - Fork 8
/
qstat_user.php
149 lines (126 loc) · 4.42 KB
/
qstat_user.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<html>
<head>
<title>PHPQstat</title>
<meta name="AUTHOR" content="Jordi Blasco Pallares ">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="KEYWORDS" content="gridengine sge sun hpc supercomputing batch queue linux xml qstat qhost jordi blasco solnu">
<link rel="stylesheet" href="phpqstat.css" type="text/css" />
</head>
<?php
$password_length = 20;
function make_seed() {
list($usec, $sec) = explode(' ', microtime());
return (float) $sec + ((float) $usec * 100000);
}
srand(make_seed());
$alfa = "1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
$token = "";
for($i = 0; $i < $password_length; $i ++) {
$token .= $alfa[rand(0, strlen($alfa))];
}
function show_run($tokenFile,$owner) {
echo "<table align=center width=95%xml border=\"1\" cellpadding=\"0\" cellspacing=\"0\">
<tbody>
<tr>
<td CLASS=\"bottom\" width=120><b>Running Jobs</b></td></tr>
<tr>
<td>JobID</td>
<td>Owner</td>
<td>Priority</td>
<td>Name</td>
<td>State</td>
<td>Queue </td>
<td>Start Time</td>
<td>PE</td>
<td>Slots</td>
</tr>";
$qstat = simplexml_load_file($tokenFile);
foreach ($qstat->xpath('//job_list') as $job_list) {
$pe=$job_list->requested_pe['name'];
echo " <tr>
<td><a href=qstat_job.php?jobid=$job_list->JB_job_number&owner=$owner>$job_list->JB_job_number</a></td>
<td><a href=qstat_user.php?owner=$job_list->JB_owner>$job_list->JB_owner</a></td>
<td>$job_list->JAT_prio</td>
<td>$job_list->JB_name</td>
<td>$job_list->state</td>
<td><a href=qstat_user.php?queue=$job_list->queue_name&owner=$owner>$job_list->queue_name</a></td>
<td>$job_list->JAT_start_time</td>
<td>$pe</td>
<td>$job_list->slots</td>
</tr>";
}
exec("rm $tokenFile");
echo "</tbody></table><br><br>";
}
function show_pend($tokenFile,$owner) {
echo "<table align=center width=95%xml border=\"1\" cellpadding=\"0\" cellspacing=\"0\">
<tbody>
<tr>
<td CLASS=\"bottom\" width=120><b>Pending Jobs</b></td></tr>
<tr>
<td>JobID</td>
<td>Owner</td>
<td>Priority</td>
<td>Name</td>
<td>State</td>
<td>Queue </td>
<td>Submission Time</td>
<td>PE</td>
<td>Slots</td>
</tr>";
$qstat = simplexml_load_file($tokenFile);
foreach ($qstat->xpath('//job_list') as $job_list) {
$pe=$job_list->requested_pe['name'];
echo " <tr>
<td><a href=qstat_job.php?jobid=$job_list->JB_job_number&owner=$owner>$job_list->JB_job_number</a></td>
<td><a href=qstat_user.php?owner=$job_list->JB_owner>$job_list->JB_owner</a></td>
<td>$job_list->JAT_prio</td>
<td>$job_list->JB_name</td>
<td>$job_list->state</td>
<td><a href=qstat_user.php?queue=$job_list->queue_name&owner=$owner>$job_list->queue_name</a></td>
<td>$job_list->JB_submission_time</td>
<td>$pe</td>
<td>$job_list->slots</td>
</tr>";
}
exec("rm $tokenFile");
echo "</tbody></table><br>";
}
$owner = $_GET['owner'];
$jobstat = $_GET['jobstat'];
$queue = $_GET['queue'];
echo "<body><table align=center width=95% border=\"1\" cellpadding=\"0\" cellspacing=\"0\"><tbody>";
echo "<tr><td><h1>PHPQstat</h1></td></tr>
<tr><td CLASS=\"bottom\" align=center><a href='index.php'>Home</a> * <a href=\"qhost.php?owner=$owner\">Hosts status</a> * <a href=\"qstat.php?owner=$owner\">Queue status</a> * <a href=\"qstat_user.php?owner=$owner\">Jobs status ($owner)</a> * <a href=\"about.php?owner=$owner\">About PHPQstat</a></td></tr><tr><td><br>";
if($queue){$queueflag="-q $queue";}else{$queueflag="";}
if($jobstat){$jobstatflag="-s $jobstat";}else{$jobstatflag="";}
switch ($jobstat) {
case "r":
$jobstatflag="-s r";
$out = exec("./gexml -u $owner $jobstatflag $queueflag -o /tmp/$token.xml");
show_run("/tmp/$token.xml",$owner);
break;
case "p":
$jobstatflag="-s p";
$out = exec("./gexml -u $owner $jobstatflag $queueflag -o /tmp/$token.xml");
show_pend("/tmp/$token.xml",$owner);
break;
default:
$jobstatflag="-s r";
$out = exec("./gexml -u $owner $jobstatflag $queueflag -o /tmp/$token.xml");
show_run("/tmp/$token.xml",$owner);
$jobstatflag="-s p";
$out = exec("./gexml -u $owner $jobstatflag $queueflag -o /tmp/$token.xml");
show_pend("/tmp/$token.xml",$owner);
break;
}
?>
</td>
</tr>
<?php
include("bottom.php");
?>
</tbody>
</table>
</body>
</html>