-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathscript.js
297 lines (232 loc) · 8.51 KB
/
script.js
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// Input data
var machines = "data/machines.json";
fetchData = function () {
var xhr = new XMLHttpRequest()
xhr.open('GET', "data/machines.json")
xhr.onload = function () {
window.machines = JSON.parse(xhr.responseText)
var clusters = Object.keys(window.machines)
}
xhr.send()
}
fetchData()
var nav = new Vue({
el: '#nav',
data: {
active: 'generate',
message: null,
warning: null
},
// Functions we will be using.
methods: {
makeActive: function(item){
this.active = item;
console.log('Beep Boop!');
$('#robot').show();
setTimeout(function(){
$("#robot").hide();
}, 2000);
},
}
})
var cluster = new Vue({
el: '#main',
created: function() {
this.fetchData();
},
data: {
machines: null,
features: null,
memory:null,
qos: null,
qos_choice: null,
cluster_name: '',
script_name: '',
job_name: '',
email_address: '',
output_file:null,
error_file:null,
time_minutes:0,
time_hours:1,
time_seconds:0,
partition_name: null,
number_nodes:1,
time:'',
warning: null,
output:' Your script will be displayed here. ',
errors: 0
},
// Functions we will be using.
methods: {
// Setup
fetchData: function () {
var xhr = new XMLHttpRequest()
var self = this
xhr.open('GET', machines)
xhr.onload = function () {
self.machines = JSON.parse(xhr.responseText)
self.clusters = Object.keys(self.machines)
$.each(self.clusters,function(i,e){
$("#cluster-select").append('<option value="' + e + '">'+ e + '</option>')
})
}
xhr.send()
},
// Script Generation
generateScript: function(){
// Reset messages
nav.message = null;
nav.warning = null;
this.errors = 0;
this.parseTime();
if(this.isValid()==true){
var header = this.writeHeader();
this.outputScript(header);
}
// Scroll the user to the top
document.body.scrollTop = document.documentElement.scrollTop = 0;
},
outputScript: function(content){
content+='# example: run the job script command line:\n'
if (this.job_name == ''){
this.job_name = 'run';
}
content+='# sbatch '+(this.job_name)+'.job\n';
this.output = content;
},
isValid: function() {
var self = this.$data
// Any errors from previous functions
if (self.errors > 0){
return false
}
// A cluster name must be defined
if (self.cluster_name == '') {
nav.message = 'please select a cluster to run your job';
return false
}
var choice = self.machines[self.cluster_name];
// If no partition is defined, we use default
if (self.partition_name == null) {
var partition = choice.defaults.partitions[0]
nav.warning = 'You did not specify a partition, so the default "'
+ partition + '" will be used.';
} else {
var partition = self.partition_name;
}
// Is the memory specified greater than max allowed?
var max_memory = Number(choice.partitions[partition].MaxMemPerCPU)
if (this.memory!=null) {
if(this.memory > max_memory){
nav.warning = 'The max memory for this parition cannot be greater than ' + max_memory + '.'
this.memory = max_memory
}
}
var max_nodes = Number(choice.partitions[partition].maxNodes);
if ((self.number_nodes > max_nodes) || (self.number_nodes < 1)) {
if (self.number_nodes < 1) nav.message = 'You must specify at least one node.'
else nav.message = 'there are only ' + max_nodes + ' available for partition ' + partition;
return false
}
return true
},
addFeature: function (event) {
if (event) {
var button = $(event.target)
if (button.hasClass('active')){
button.removeClass('active');
button.removeClass('feature');
} else {
button.addClass('active');
button.addClass('feature');
}
}
},
parseTime: function(){
hours=Number(this.time_hours).toString();
minutes=Number(this.time_minutes).toString();
seconds=Number(this.time_seconds).toString();
if(this.time_hours<10) hours='0'+hours;
if(this.time_minutes<10) minutes='0'+minutes;
if(this.time_seconds<10) seconds='0'+seconds;
this.time = hours+':'+minutes+':'+seconds;
if (this.time == "00:00:00"){
nav.message = 'Please specify a valid time for your job.';
this.errors+=1;
}
},
generateJump: function() {
window.scrollTo(0,document.body.scrollHeight);
},
// When the user selects a cluster, we update partition choices
updatePartitions: function() {
var self = this.$data
this.partition_name = null;
var cluster_name = $("#cluster-select").val();
var partitions = Object.keys(window.machines[cluster_name]['partitions'])
$("#partition-select").text('');
$.each(partitions,function(i,e){
$("#partition-select").append('<option value="' + e + '">'+ e + '</option>')
})
},
// When the user selects a partition, we update feature and qos choices
selectPartition: function() {
var self = this.$data;
var choice = self.machines[self.cluster_name];
// Qos
var partition_name = $("#partition-select").val() || choice.defaults.partitions[0]
this.qos = self.machines[self.cluster_name].partitions[partition_name].AllowQos.split(',')
// Features
this.features = self.machines[self.cluster_name].features[partition_name]
//Max memory
var max_memory = self.machines[self.cluster_name].partitions[partition_name].MaxMemPerCPU
if (this.memory!=null) {
this.memory = null;
}
},
writeHeader: function() {
var header = '#!/bin/bash\n';
header+='#SBATCH --nodes='+ this.number_nodes.toString()+'\n';
if (this.partition_name!=null) {
header+='#SBATCH -p '+this.partition_name+'\n';
}
if (this.qos_choice!=null) {
header+='#SBATCH --qos='+this.qos_choice+'\n';
}
if (this.memory!=null) {
header+='#SBATCH --mem='+this.memory+'\n';
}
// Add any user features
var features = $('.feature')
if (features.length > 0){
var feature_list = []
$.each(features,function(e,i){
var new_feature = $(i).text().trim();
feature_list.push(new_feature)
})
header+='#SBATCH --constraint="'+feature_list.join('&')+'"\n';
}
if (this.job_name!='') {
header+='#SBATCH --job-name='+this.job_name+'\n'
}
if (this.error_file!=null) {
header+='#SBATCH --error='+this.error_file+'%j.err\n'
}
if (this.output_file!=null) {
header+='#SBATCH --output='+this.output_file+'%j.out\n'
}
if(this.email_address!=''){
header+='#SBATCH --mail-user='+this.email_address+'\n'
header+='#SBATCH --mail-type=ALL\n'
}
if(this.time!=''){
header+='#SBATCH --time='+this.time+'\n'
}
if (this.script_name!=''){
header+=this.script_name;
}
header+='\n';
return header;
}
}
})