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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
! Copyright (c) 2021 Approximatrix, LLC <support@approximatrix.com>
!
! Permission is hereby granted, free of charge, to any person obtaining a copy
! of this software and associated documentation files (the "Software"), to deal
! in the Software without restriction, including without limitation the rights
! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
! copies of the Software, and to permit persons to whom the Software is
! furnished to do so, subject to the following conditions:
!
! The above copyright notice and this permission notice shall be included in
! all copies or substantial portions of the Software.
!
! The Software shall be used for Good, not Evil.
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
! AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
! LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
! OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
! SOFTWARE.
module instructions
implicit none
contains
function parse_instructions(filename) result(j)
use json_module
implicit none
type(json_file)::j
character(*), intent(in)::filename
call j%initialize()
call j%load_file(filename=filename)
end function parse_instructions
subroutine destroy_instructions(j)
use json_module
implicit none
type(json_file)::j
call j%destroy()
end subroutine destroy_instructions
function work_available(j)
use json_module
implicit none
class(json_file)::j
logical::work_available
character(len=:), allocatable::json_string_value
logical::found
call j%get("status", json_string_value, found)
if(found) then
Print *, "Checkin status: "//json_string_value
work_available = (json_string_value /= "idle")
else
work_available = .false.
end if
end function work_available
subroutine get_instruction_name_from_checkin(j, name)
use json_module
implicit none
class(json_file)::j
character(*), intent(out)::name
character(len=:), allocatable::json_string_value
logical::found
name = " "
call j%get("instruction", json_string_value, found)
if(found) then
name = json_string_value
end if
end subroutine get_instruction_name_from_checkin
function get_job_id_from_checkin(j)
use json_module
implicit none
class(json_file)::j
integer::get_job_id_from_checkin
character(len=:), allocatable::json_string_value
logical::found
get_job_id_from_checkin = -1
call j%get("job", json_string_value, found)
if(found) then
read(json_string_value, *) get_job_id_from_checkin
end if
end function get_job_id_from_checkin
subroutine get_description(j, description)
use json_module
implicit none
class(json_file)::j
character(*), intent(out)::description
character(len=:), allocatable::json_string_value
logical::found
call j%get("description", json_string_value, found)
if(.not. found .or. .not. allocated(json_string_value)) then
description = "(instructions)"
else
description = json_string_value
end if
end subroutine get_description
function get_job_id(j) result(id)
use json_module
implicit none
class(json_file)::j
integer::id
logical::found
call j%get("id", id, found)
if(.not. found) then
id = -1
end if
end function get_job_id
function get_task_count(j) result(n)
use json_module
implicit none
class(json_file)::j
integer::n
type(json_value), pointer ::server
logical::found
character(3)::index_string
n = 0
found = .true.
do while(found)
n = n + 1
write(index_string, '(I3)') n
call j%get("tasks("//trim(index_string)//")", server, found)
end do
n = n - 1
end function get_task_count
pure subroutine task_component(i, component, label)
implicit none
integer, intent(in)::i
character(*), intent(in)::component
character(*), intent(out)::label
write(label, '(A6,I3,A2)') "tasks(", i, ")."
label = trim(label)//trim(component)
end subroutine task_component
function get_task_string(j, i, component, res) result(found)
use json_module
implicit none
class(json_file)::j
integer, intent(in)::i
character(*), intent(in)::component
character(*), intent(out)::res
logical::found
character(len=64)::label
character(len=:), allocatable::json_string_value
call task_component(i, component, label)
call j%get(trim(label), json_string_value, found)
if(allocated(json_string_value)) then
res = json_string_value
end if
end function get_task_string
function get_task_logical(j, i, component, res) result(found)
use json_module
implicit none
class(json_file)::j
integer, intent(in)::i
character(*), intent(in)::component
logical, intent(out)::res
logical::found
character(len=64)::label
character(len=:), allocatable::json_string_value
call task_component(i, component, label)
call j%get(trim(label), res, found)
end function get_task_logical
subroutine get_task_name(j, i, description)
use json_module
implicit none
class(json_file)::j
character(*), intent(out)::description
integer, intent(in)::i
logical::found
found = get_task_string(j, i, "name", description)
if(.not. found) then
write(description, '(A4, 1X, I3)') "Task", i
end if
end subroutine get_task_name
subroutine get_task_operation(j, i, op)
use json_module
implicit none
class(json_file)::j
character(*), intent(out)::op
integer, intent(in)::i
logical::found
found = get_task_string(j, i, "operation", op)
if(.not. found) then
op = " "
end if
end subroutine get_task_operation
function perform_task(j, i, capture_filename) result(success)
use json_module
use tasks
use utilities
implicit none
class(json_file)::j
integer, intent(in)::i
character(len=:), pointer, intent(out)::capture_filename
logical::success
character(32)::operation
character(256)::url
character(256)::filename
character(256)::branch
character(256)::cmd
logical::destructive
logical, dimension(4)::found
call get_task_operation(j, i, operation)
Print *, "Task: ", i
Print *, "Operation: "//trim(operation)
if(len_trim(operation) == 0) then
success = .false.
capture_filename => null()
return
end if
found = .true.
capture_filename => null()
if(trim(operation) == "upload") then
found(1) = get_task_string(j, i, "url", url)
found(2) = get_task_string(j, i, "filename", filename)
if(.not. all(found,1)) then
success = .false.
else
if(index(filename, "*") > 0 .or. index(filename, "?") > 0) then
success = upload_glob(url, filename)
else
success = upload(url, filename)
end if
end if
else if(trim(operation) == "download") then
found(1) = get_task_string(j, i, "url", url)
found(2) = get_task_string(j, i, "filename", filename)
if(.not. all(found,1)) then
success = .false.
else
success = download(url, filename)
end if
else if(trim(operation) == "git_update") then
capture_filename => generate_temporary_filename()
found(1) = get_task_string(j, i, "origin", url)
found(2) = get_task_string(j, i, "branch", branch)
found(3) = get_task_string(j, i, "directory", filename)
found(4) = get_task_logical(j, i, "destructive", destructive)
if(.not. found(4)) then
destructive = .false.
found(4) = .true.
end if
if(.not. all(found,1)) then
success = .false.
else
success = git_update(url, branch, filename, destructive, capture_filename)
end if
else if(trim(operation) == "shell") then
capture_filename => generate_temporary_filename()
found(1) = get_task_string(j, i, "command", cmd)
found(2) = get_task_string(j, i, "directory", filename)
if(.not. all(found,1)) then
success = .false.
else
success = shell(cmd, filename, capture_filename)
end if
else if(trim(operation) == "delete_tree") then
found(1) = get_task_string(j, i, "directory", filename)
if(.not. all(found,1)) then
success = .false.
else
success = delete_tree(filename)
end if
end if
end function perform_task
subroutine perform_tasks(j, job_id)
use json_module
use talking
use player_endpoints
use utilities, only: delete_file
implicit none
class(json_file)::j
integer, intent(in)::job_id
integer::task_count
integer::i
integer::server_status
logical::res
character(len=:), pointer::captured_filename
character(len=1024)::url
task_count = get_task_count(j)
Print *, "Task count: ", task_count
! Remember to zero-index your json!
do i = 1, task_count
call get_status_url(job_id, i, url, status=STATUS_STARTING)
server_status = request_to_ignored(url)
res = perform_task(j, i, captured_filename)
if(associated(captured_filename)) then
if(res) then
call get_status_url(job_id, i, url, status=STATUS_COMPLETED)
server_status = request_to_ignored(url)
call get_status_url(job_id, i, url, posting=.true.)
server_status = send_file(url, captured_filename)
! Get rid of the local file
call delete_file(captured_filename)
deallocate(captured_filename)
captured_filename => null()
else
call get_status_url(job_id, i, url, status=STATUS_FAILED)
server_status = request_to_ignored(url)
call get_status_url(job_id, i, url, posting=.true.)
server_status = send_file(url, captured_filename)
exit
endif
else
if(res) then
call get_status_url(job_id, i, url, status=STATUS_COMPLETED)
server_status = request_to_ignored(url)
else
call get_status_url(job_id, i, url, status=STATUS_FAILED)
server_status = request_to_ignored(url)
exit
endif
end if
end do
call get_job_report_url(job_id, res, url)
server_status = request_to_ignored(url)
end subroutine perform_tasks
end module instructions
|