Temporary directories and the start of play.
This commit is contained in:
parent
3e1b3e3f37
commit
b29156d557
8 changed files with 150 additions and 15 deletions
60
modules/ordo/task.scm
Normal file
60
modules/ordo/task.scm
Normal file
|
@ -0,0 +1,60 @@
|
|||
(define-module (ordo task)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-9)
|
||||
#:export (make-task task? task-name task-prerequisite-data task-want-skip task-action task-seq))
|
||||
|
||||
;; Task
|
||||
;; name - a descriptive name for the task
|
||||
;; prerequisite-data - list of prerequisite data (local data
|
||||
;; that must be copied to the remote host
|
||||
;; in order for the task to run)
|
||||
;; want-skip - function of no args that should return #t if the
|
||||
;; the task should be skipped
|
||||
;; action - function of no args that runs the task
|
||||
(define-record-type <task>
|
||||
(make-task name prerequisite-data want-skip action)
|
||||
task?
|
||||
(want-skip task-want-skip)
|
||||
(name task-name)
|
||||
(prerequisite-data task-prerequisite-data)
|
||||
(action task-action))
|
||||
|
||||
(define (combine-prerequisite-data tasks)
|
||||
;; TODO: work out what the equality operator should be, which
|
||||
;; will depend on how we represent prerequisite data
|
||||
(apply lset-union = (map task-prerequisite-data tasks)))
|
||||
|
||||
;; Combine the want-skips functions from a sequence of tasks.
|
||||
;; If any task has no want-skip function, the combined task cannot
|
||||
;; be skipped, so simply return #f. Otherwise, return a function that
|
||||
;; will only return #t if every task's want-skip function returns true.
|
||||
;; TODO: With this approach, if the top-level want-skip funciton returns
|
||||
;; #f (so the task action sequence runs), some of the tests will be repeated.
|
||||
;; Is it preferable always to have the top-level return #f and simply run
|
||||
;; the subtasks?
|
||||
(define (combine-want-skips tasks)
|
||||
(let ((skips (map task-want-skip tasks)))
|
||||
(if (every identity skips)
|
||||
(lambda () (every identity (map (lambda (f) (f)) skips)))
|
||||
#f)))
|
||||
|
||||
;; Return a function that will apply each of the task actions
|
||||
;; in order.
|
||||
;; TODO: would it be better to store the list of actions and
|
||||
;; implement a task runner that would run either a single task
|
||||
;; or a sequence of tasks with appropriate logging?
|
||||
;; TODO: the implementation below does not handle skipping
|
||||
;; tasks in the sequence, this would be handled by a task runner.
|
||||
(define (combine-actions tasks)
|
||||
(let ((actions (map task-action tasks)))
|
||||
(lambda ()
|
||||
(for-each (lambda (f) (f)) actions))))
|
||||
|
||||
;; Return a task consists of a sequence of other tasks.
|
||||
(define (task-seq name task . task*)
|
||||
(let ((tasks (cons task task*)))
|
||||
(make-task
|
||||
name
|
||||
(combine-prerequisite-data tasks)
|
||||
(combine-want-skips tasks)
|
||||
(combine-actions tasks))))
|
17
modules/ordo/task/command.scm
Normal file
17
modules/ordo/task/command.scm
Normal file
|
@ -0,0 +1,17 @@
|
|||
(define-module (ordo task command)
|
||||
#:use-module (ice-9 format)
|
||||
#:use-module (srfi srfi-11)
|
||||
#:use-module (ordo task)
|
||||
#:use-module (ordo util run)
|
||||
#:export (command))
|
||||
|
||||
(define* (command name cmd #:optional (args '())
|
||||
#:key (fail-ok? #f) (stdin #f) (cwd #f) (env #f) (skip? #f))
|
||||
(make-task name
|
||||
'()
|
||||
skip?
|
||||
(lambda ()
|
||||
(let-values (((exit-code output) (run cmd args #:stdin stdin #:cwd cwd #:env env #:combine-output #t)))
|
||||
(if (or fail-ok? (zero? exit-code))
|
||||
(values exit-code output)
|
||||
(error (format #f "Error running ~a (exit ~d): ~a" cmd exit-code output)))))))
|
4
modules/ordo/task/file.scm
Normal file
4
modules/ordo/task/file.scm
Normal file
|
@ -0,0 +1,4 @@
|
|||
(define-module (ordo task file)
|
||||
#:use-module (ordo task))
|
||||
|
||||
(define (file ))
|
30
modules/ordo/util/run.scm
Normal file
30
modules/ordo/util/run.scm
Normal file
|
@ -0,0 +1,30 @@
|
|||
(define-module (ordo util run)
|
||||
#:use-module (ice-9 textual-ports)
|
||||
#:export (run with-cwd))
|
||||
|
||||
(define-syntax with-cwd
|
||||
(syntax-rules ()
|
||||
((_ new-dir body ...)
|
||||
(let ((original-dir (getcwd)))
|
||||
(dynamic-wind
|
||||
(lambda () (chdir new-dir))
|
||||
(lambda () body ...)
|
||||
(lambda () (chdir original-dir)))))))
|
||||
|
||||
(define* (run cmd #:optional (args '()) #:key (combine-output #f) (env #f) (stdin #f) (cwd #f))
|
||||
(if cwd
|
||||
(with-cwd cwd (run cmd args #:combine-output combine-output #:env env #:stdin stdin))
|
||||
(let* ((input-pipe (pipe))
|
||||
(output-pipe (pipe))
|
||||
(pid (spawn cmd (cons cmd args)
|
||||
#:input (car input-pipe)
|
||||
#:output (cdr output-pipe)
|
||||
#:error (if combine-output (cdr output-pipe) (current-error-port))
|
||||
#:environment (or env (environ)))))
|
||||
(close-port (cdr output-pipe))
|
||||
(close-port (car input-pipe))
|
||||
(when stdin (put-string (cdr input-pipe) stdin))
|
||||
(close-port (cdr input-pipe))
|
||||
(let ((output (get-string-all (car output-pipe))))
|
||||
(close-port (car output-pipe))
|
||||
(values (cdr (waitpid pid)) output)))))
|
36
modules/ordo/util/tmpdir.scm
Normal file
36
modules/ordo/util/tmpdir.scm
Normal file
|
@ -0,0 +1,36 @@
|
|||
(define-module (ordo util tmpdir)
|
||||
#:use-module (system foreign)
|
||||
#:use-module (srfi srfi-11)
|
||||
#:use-module (ice-9 format)
|
||||
#:export (create-temporary-directory))
|
||||
|
||||
;; This is based on reading guix/build/syscalls.scm but less general
|
||||
;; than their implementation.
|
||||
(define mkdtemp!
|
||||
(let* ((ptr (dynamic-func "mkdtemp" (dynamic-link)))
|
||||
(proc (pointer->procedure '* ptr '(*) #:return-errno? #t)))
|
||||
(lambda (tmpl)
|
||||
(let-values (((result err) (proc (string->pointer tmpl))))
|
||||
(when (null-pointer? result)
|
||||
(error (format #f "mkdtemp! ~a: ~a" tmpl (strerror err))))
|
||||
(pointer->string result)))))
|
||||
|
||||
(define (create-temporary-directory)
|
||||
(let* ((directory (or (getenv "TMPDIR") "/tmp"))
|
||||
(template (string-append directory "/ordo.XXXXXX")))
|
||||
(mkdtemp! template)))
|
||||
|
||||
;; This is borrowed from guix/util.scm
|
||||
;; TODO: we also need to borrow their delete-file-recursively
|
||||
;; (define (call-with-temporary-directory proc)
|
||||
;; "Call PROC with a name of a temporary directory; close the directory and
|
||||
;; delete it when leaving the dynamic extent of this call."
|
||||
;; (let* ((directory (or (getenv "TMPDIR") "/tmp"))
|
||||
;; (template (string-append directory "/ordo.XXXXXX"))
|
||||
;; (tmp-dir (mkdtemp! template)))
|
||||
;; (dynamic-wind
|
||||
;; (const #t)
|
||||
;; (lambda ()
|
||||
;; (proc tmp-dir))
|
||||
;; (lambda ()
|
||||
;; (false-if-exception (delete-file-recursively tmp-dir))))))
|
Loading…
Add table
Add a link
Reference in a new issue