cuirass: Move code from main to auxiliary procedures.

pull/3/head
Mathieu Lirzin 2016-07-02 22:30:17 +02:00
parent b65612c264
commit 4b53493c3b
2 changed files with 56 additions and 43 deletions

View File

@ -50,12 +50,6 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@"
(version (single-char #\V) (value #f)) (version (single-char #\V) (value #f))
(help (single-char #\h) (value #f)))) (help (single-char #\h) (value #f))))
(define %user-module
;; Cuirass user module.
(let ((m (make-module)))
(beautify-user-module! m)
m))
(define (fetch-repository spec) (define (fetch-repository spec)
"Get the latest version of repository specified in SPEC. Clone repository "Get the latest version of repository specified in SPEC. Clone repository
if required." if required."
@ -85,21 +79,22 @@ if required."
(define (evaluate store db spec) (define (evaluate store db spec)
"Evaluate and build package derivations. Return a list a jobs." "Evaluate and build package derivations. Return a list a jobs."
(let ((mod (make-user-module)))
(save-module-excursion (save-module-excursion
(λ () (λ ()
(set-current-module %user-module) (set-current-module mod)
;; Handle both relative and absolute file names for SPEC-FILE. ;; Handle both relative and absolute file names for SPEC-FILE.
(with-directory-excursion (with-directory-excursion
(string-append (%package-cachedir) "/" (job-spec-name spec)) (string-append (%package-cachedir) "/" (job-spec-name spec))
(primitive-load (job-spec-file spec))))) (primitive-load (job-spec-file spec)))))
(let* ((proc (module-ref %user-module (job-spec-proc spec))) (let* ((proc (module-ref mod (job-spec-proc spec)))
(jobs (proc store (job-spec-arguments spec)))) (jobs (proc store (job-spec-arguments spec))))
(map (λ (job) (map (λ (job)
(let ((id (db-add-evaluation db job))) (let ((id (db-add-evaluation db job)))
(make-job #:name (job-name job) (make-job #:name (job-name job)
#:derivation (job-derivation job) #:derivation (job-derivation job)
#:metadata (acons 'id id (job-metadata job))))) #:metadata (acons 'id id (job-metadata job)))))
jobs))) jobs))))
(define (build-packages store db jobs) (define (build-packages store db jobs)
"Build JOBS which is a list of <job> objects." "Build JOBS which is a list of <job> objects."
@ -121,6 +116,28 @@ if required."
(format #t "~A~%" (derivation-path->output-path drv)))) (format #t "~A~%" (derivation-path->output-path drv))))
jobs))) jobs)))
(define (process-spec db spec)
"Evaluate and build SPEC"
(fetch-repository spec)
(let ((old-path %load-path))
(and (job-spec-load-path spec) (set-load-path! spec))
(let ((store ((guix-variable 'store 'open-connection))))
(dynamic-wind
(const #t)
(λ ()
(let ((jobs (evaluate store db spec))
(set-build-options
(guix-variable 'store 'set-build-options)))
(set-build-options store #:use-substitutes? #f)
(build-packages store db jobs)))
(λ ()
((guix-variable 'store 'close-connection) store)
(set! %load-path old-path))))))
(define (process-specs db jobspecs)
"Evaluate and build JOBSPECS and store results in DB."
(for-each (λ (spec) (process-spec db spec)) jobspecs))
;;; ;;;
;;; Entry point. ;;; Entry point.
@ -142,27 +159,12 @@ if required."
(exit 0)) (exit 0))
(else (else
(let* ((specfile (option-ref opts 'file "tests/hello-subset.scm")) (let* ((specfile (option-ref opts 'file "tests/hello-subset.scm"))
(interval (option-ref opts 'interval "60")) (interval (string->number (option-ref opts 'interval "60")))
(specs (primitive-load specfile))) (specs (save-module-excursion
(λ ()
(set-current-module (make-user-module))
(primitive-load specfile)))))
(with-database db (with-database db
(while #t (while #t
(for-each (process-specs db specs)
(λ (spec) (sleep interval)))))))))
(fetch-repository spec)
(let ((old-path %load-path))
(and (job-spec-load-path spec)
(set-load-path! spec))
(let ((store ((guix-variable 'store 'open-connection))))
(dynamic-wind
(const #t)
(λ ()
(let ((jobs (evaluate store db spec))
(set-build-options
(guix-variable 'store 'set-build-options)))
(set-build-options store #:use-substitutes? #f)
(build-packages store db jobs)))
(λ ()
((guix-variable 'store 'close-connection) store)
(set! %load-path old-path))))))
specs)
(sleep (string->number interval))))))))))

View File

@ -1,6 +1,7 @@
;;;; utils.scm -- helper procedures ;;;; utils.scm -- helper procedures
;;; ;;;
;;; Copyright © 2012, 2013, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org> ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;; ;;;
;;; This file is part of Cuirass. ;;; This file is part of Cuirass.
@ -22,6 +23,7 @@
#:use-module (ice-9 match) #:use-module (ice-9 match)
#:export (;; Procedures #:export (;; Procedures
mkdir-p mkdir-p
make-user-module
;; Macros. ;; Macros.
λ* λ*
with-directory-excursion)) with-directory-excursion))
@ -64,3 +66,12 @@
(λ () (chdir dir)) (λ () (chdir dir))
(λ () body ...) (λ () body ...)
(λ () (chdir init))))) (λ () (chdir init)))))
(define* (make-user-module #:optional (modules '()))
"Return a new user module with the additional MODULES loaded."
;; Module in which the machine description file is loaded.
(let ((module (make-fresh-user-module)))
(for-each (lambda (iface)
(module-use! module (resolve-interface iface)))
modules)
module))