distro-build: refine client--server split

original commit: df857e1c76d6420684446ac92555ef709c673c8d
This commit is contained in:
Matthew Flatt 2014-03-10 17:19:36 -06:00
parent 9b579f598d
commit 37b51c6b7b
7 changed files with 72 additions and 47 deletions

View File

@ -1,57 +1,49 @@
#lang racket/base
(require racket/cmdline
racket/file
racket/path
(only-in "config.rkt" extract-options)
"url-options.rkt")
racket/path)
(provide set-config)
(module test racket/base)
(define-values (dest-config-file config-file config-mode
install-name build-stamp
default-doc-search default-catalogs)
(module+ main
(command-line
#:args
(dest-config-file config-file config-mode
install-name build-stamp
(dest-config-file install-name build-stamp
doc-search . catalog)
(values dest-config-file config-file config-mode
install-name build-stamp
doc-search catalog)))
(set-config dest-config-file
install-name build-stamp
doc-search catalog)))
(define config (if (equal? config-file "")
(hash)
(extract-options config-file config-mode)))
(define (set-config dest-config-file
install-name build-stamp
doc-search catalogs)
(define orig
(if (file-exists? dest-config-file)
(call-with-input-file* dest-config-file read)
(hash)))
(define doc-search (choose-doc-search config default-doc-search))
(define catalogs (choose-catalogs config default-catalogs))
(define orig
(if (file-exists? dest-config-file)
(call-with-input-file* dest-config-file read)
(hash)))
(let* ([table orig]
[table
(if (equal? doc-search "")
table
(hash-set table 'doc-search-url doc-search))]
[table (if (equal? catalogs '(""))
table
(hash-set table 'catalogs
(for/list ([c (in-list catalogs)])
(if (equal? c "")
#f
c))))]
[table (if (equal? install-name "")
table
(hash-set table 'installation-name install-name))]
[table (hash-set table 'build-stamp build-stamp)])
(unless (equal? table orig)
(make-directory* (path-only dest-config-file))
(call-with-output-file dest-config-file
#:exists 'truncate
(lambda (o)
(write table o)
(newline o)))))
(let* ([table orig]
[table
(if (equal? doc-search "")
table
(hash-set table 'doc-search-url doc-search))]
[table (if (equal? catalogs '(""))
table
(hash-set table 'catalogs
(for/list ([c (in-list catalogs)])
(if (equal? c "")
#f
c))))]
[table (if (equal? install-name "")
table
(hash-set table 'installation-name install-name))]
[table (hash-set table 'build-stamp build-stamp)])
(unless (equal? table orig)
(make-directory* (path-only dest-config-file))
(call-with-output-file dest-config-file
#:exists 'truncate
(lambda (o)
(write table o)
(newline o))))))

View File

@ -5,7 +5,7 @@
racket/system
compiler/find-exe
(only-in "config.rkt" extract-options)
"display-time.rkt")
distro-build/display-time)
(module test racket/base)

View File

@ -0,0 +1,33 @@
#lang racket/base
(require racket/cmdline
racket/file
racket/path
(only-in "config.rkt" extract-options)
"url-options.rkt"
distro-build/set-config)
(module test racket/base)
(define-values (dest-config-file config-file config-mode
install-name build-stamp
default-doc-search default-catalogs)
(command-line
#:args
(dest-config-file config-file config-mode
install-name build-stamp
doc-search . catalog)
(values dest-config-file config-file config-mode
install-name build-stamp
doc-search catalog)))
(define config (if (equal? config-file "")
(hash)
(extract-options config-file config-mode)))
(define doc-search (choose-doc-search config default-doc-search))
(define catalogs (choose-catalogs config default-catalogs))
(set-config dest-config-file
install-name build-stamp
doc-search catalogs)