12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355 |
- ;;; GNU Guix --- Functional package management for GNU
- ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
- ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
- ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
- ;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
- ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
- ;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
- ;;;
- ;;; This file is part of GNU Guix.
- ;;;
- ;;; GNU Guix is free software; you can redistribute it and/or modify it
- ;;; under the terms of the GNU General Public License as published by
- ;;; the Free Software Foundation; either version 3 of the License, or (at
- ;;; your option) any later version.
- ;;;
- ;;; GNU Guix is distributed in the hope that it will be useful, but
- ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
- ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ;;; GNU General Public License for more details.
- ;;;
- ;;; You should have received a copy of the GNU General Public License
- ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
- (define-module (guix build utils)
- #:use-module (srfi srfi-1)
- #:use-module (srfi srfi-11)
- #:use-module (srfi srfi-26)
- #:use-module (srfi srfi-34)
- #:use-module (srfi srfi-35)
- #:use-module (srfi srfi-60)
- #:use-module (ice-9 ftw)
- #:use-module (ice-9 match)
- #:use-module (ice-9 regex)
- #:use-module (ice-9 rdelim)
- #:use-module (ice-9 format)
- #:use-module (ice-9 threads)
- #:use-module (rnrs bytevectors)
- #:use-module (rnrs io ports)
- #:re-export (alist-cons
- alist-delete
- ;; Note: Re-export 'delete' to allow for proper syntax matching
- ;; in 'modify-phases' forms. See
- ;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=26805#16>.
- delete)
- #:export (%store-directory
- store-file-name?
- strip-store-file-name
- package-name->name+version
- parallel-job-count
- directory-exists?
- executable-file?
- symbolic-link?
- call-with-ascii-input-file
- elf-file?
- ar-file?
- gzip-file?
- reset-gzip-timestamp
- with-directory-excursion
- mkdir-p
- install-file
- make-file-writable
- copy-recursively
- delete-file-recursively
- file-name-predicate
- find-files
- false-if-file-not-found
- search-path-as-list
- set-path-environment-variable
- search-path-as-string->list
- list->search-path-as-string
- which
- every*
- alist-cons-before
- alist-cons-after
- alist-replace
- modify-phases
- with-atomic-file-replacement
- substitute
- substitute*
- dump-port
- set-file-time
- patch-shebang
- patch-makefile-SHELL
- patch-/usr/bin/file
- fold-port-matches
- remove-store-references
- wrapper?
- wrap-program
- wrap-script
- wrap-error?
- wrap-error-program
- wrap-error-type
- invoke
- invoke-error?
- invoke-error-program
- invoke-error-arguments
- invoke-error-exit-status
- invoke-error-term-signal
- invoke-error-stop-signal
- report-invoke-error
- invoke/quiet
- locale-category->string))
- ;;;
- ;;; Guile 2.0 compatibility later.
- ;;;
- ;; The bootstrap Guile is Guile 2.0, so provide a compatibility layer.
- (cond-expand
- ((and guile-2 (not guile-2.2))
- (define (setvbuf port mode . rest)
- (apply (@ (guile) setvbuf) port
- (match mode
- ('line _IOLBF)
- ('block _IOFBF)
- ('none _IONBF)
- (_ mode)) ;an _IO* integer
- rest))
- (module-replace! (current-module) '(setvbuf)))
- (else #f))
- ;;;
- ;;; Directories.
- ;;;
- (define (%store-directory)
- "Return the directory name of the store."
- (or (getenv "NIX_STORE")
- "/gnu/store"))
- (define (store-file-name? file)
- "Return true if FILE is in the store."
- (string-prefix? (%store-directory) file))
- (define (strip-store-file-name file)
- "Strip the '/gnu/store' and hash from FILE, a store file name. The result
- is typically a \"PACKAGE-VERSION\" string."
- (string-drop file
- (+ 34 (string-length (%store-directory)))))
- (define (package-name->name+version name)
- "Given NAME, a package name like \"foo-0.9.1b\", return two values:
- \"foo\" and \"0.9.1b\". When the version part is unavailable, NAME and
- #f are returned. The first hyphen followed by a digit is considered to
- introduce the version part."
- ;; See also `DrvName' in Nix.
- (define number?
- (cut char-set-contains? char-set:digit <>))
- (let loop ((chars (string->list name))
- (prefix '()))
- (match chars
- (()
- (values name #f))
- ((#\- (? number? n) rest ...)
- (values (list->string (reverse prefix))
- (list->string (cons n rest))))
- ((head tail ...)
- (loop tail (cons head prefix))))))
- (define parallel-job-count
- ;; Number of processes to be passed next to GNU Make's `-j' argument.
- (make-parameter
- (match (getenv "NIX_BUILD_CORES") ;set by the daemon
- (#f 1)
- ("0" (current-processor-count))
- (x (or (string->number x) 1)))))
- (define (directory-exists? dir)
- "Return #t if DIR exists and is a directory."
- (let ((s (stat dir #f)))
- (and s
- (eq? 'directory (stat:type s)))))
- (define (executable-file? file)
- "Return #t if FILE exists and is executable."
- (let ((s (stat file #f)))
- (and s
- (not (zero? (logand (stat:mode s) #o100))))))
- (define (symbolic-link? file)
- "Return #t if FILE is a symbolic link (aka. \"symlink\".)"
- (eq? (stat:type (lstat file)) 'symlink))
- (define (call-with-ascii-input-file file proc)
- "Open FILE as an ASCII or binary file, and pass the resulting port to
- PROC. FILE is closed when PROC's dynamic extent is left. Return the
- return values of applying PROC to the port."
- (let ((port (with-fluids ((%default-port-encoding #f))
- ;; Use "b" so that `open-file' ignores `coding:' cookies.
- (open-file file "rb"))))
- (dynamic-wind
- (lambda ()
- #t)
- (lambda ()
- (proc port))
- (lambda ()
- (close-input-port port)))))
- (define (file-header-match header)
- "Return a procedure that returns true when its argument is a file starting
- with the bytes in HEADER, a bytevector."
- (define len
- (bytevector-length header))
- (lambda (file)
- "Return true if FILE starts with the right magic bytes."
- (define (get-header)
- (call-with-input-file file
- (lambda (port)
- (get-bytevector-n port len))
- #:binary #t #:guess-encoding #f))
- (catch 'system-error
- (lambda ()
- (equal? (get-header) header))
- (lambda args
- (if (= EISDIR (system-error-errno args))
- #f ;FILE is a directory
- (apply throw args))))))
- (define %elf-magic-bytes
- ;; Magic bytes of ELF files. See <elf.h>.
- (u8-list->bytevector (map char->integer (string->list "\x7FELF"))))
- (define elf-file?
- (file-header-match %elf-magic-bytes))
- (define %ar-magic-bytes
- ;; Magic bytes of archives created by 'ar'. See <ar.h>.
- (u8-list->bytevector (map char->integer (string->list "!<arch>\n"))))
- (define ar-file?
- (file-header-match %ar-magic-bytes))
- (define %gzip-magic-bytes
- ;; Magic bytes of gzip file. Beware, it's a small header so there could be
- ;; false positives.
- #vu8(#x1f #x8b))
- (define gzip-file?
- (file-header-match %gzip-magic-bytes))
- (define* (reset-gzip-timestamp file #:key (keep-mtime? #t))
- "If FILE is a gzip file, reset its embedded timestamp (as with 'gzip
- --no-name') and return true. Otherwise return #f. When KEEP-MTIME? is true,
- preserve FILE's modification time."
- (let ((stat (stat file))
- (port (open file O_RDWR)))
- (dynamic-wind
- (const #t)
- (lambda ()
- (and (= 4 (seek port 4 SEEK_SET))
- (put-bytevector port #vu8(0 0 0 0))))
- (lambda ()
- (close-port port)
- (set-file-time file stat)))))
- (define-syntax-rule (with-directory-excursion dir body ...)
- "Run BODY with DIR as the process's current directory."
- (let ((init (getcwd)))
- (dynamic-wind
- (lambda ()
- (chdir dir))
- (lambda ()
- body ...)
- (lambda ()
- (chdir init)))))
- (define (mkdir-p dir)
- "Create directory DIR and all its ancestors."
- (define absolute?
- (string-prefix? "/" dir))
- (define not-slash
- (char-set-complement (char-set #\/)))
- (let loop ((components (string-tokenize dir not-slash))
- (root (if absolute?
- ""
- ".")))
- (match components
- ((head tail ...)
- (let ((path (string-append root "/" head)))
- (catch 'system-error
- (lambda ()
- (mkdir path)
- (loop tail path))
- (lambda args
- (if (= EEXIST (system-error-errno args))
- (loop tail path)
- (apply throw args))))))
- (() #t))))
- (define (install-file file directory)
- "Create DIRECTORY if it does not exist and copy FILE in there under the same
- name."
- (mkdir-p directory)
- (copy-file file (string-append directory "/" (basename file))))
- (define (make-file-writable file)
- "Make FILE writable for its owner."
- (let ((stat (lstat file))) ;XXX: symlinks
- (chmod file (logior #o600 (stat:perms stat)))))
- (define* (copy-recursively source destination
- #:key
- (log (current-output-port))
- (follow-symlinks? #f)
- keep-mtime?)
- "Copy SOURCE directory to DESTINATION. Follow symlinks if FOLLOW-SYMLINKS?
- is true; otherwise, just preserve them. When KEEP-MTIME? is true, keep the
- modification time of the files in SOURCE on those of DESTINATION. Write
- verbose output to the LOG port."
- (define strip-source
- (let ((len (string-length source)))
- (lambda (file)
- (substring file len))))
- (file-system-fold (const #t) ; enter?
- (lambda (file stat result) ; leaf
- (let ((dest (string-append destination
- (strip-source file))))
- (format log "`~a' -> `~a'~%" file dest)
- (case (stat:type stat)
- ((symlink)
- (let ((target (readlink file)))
- (symlink target dest)))
- (else
- (copy-file file dest)
- (when keep-mtime?
- (set-file-time dest stat))))))
- (lambda (dir stat result) ; down
- (let ((target (string-append destination
- (strip-source dir))))
- (mkdir-p target)
- (when keep-mtime?
- (set-file-time target stat))))
- (lambda (dir stat result) ; up
- result)
- (const #t) ; skip
- (lambda (file stat errno result)
- (format (current-error-port) "i/o error: ~a: ~a~%"
- file (strerror errno))
- #f)
- #t
- source
- (if follow-symlinks?
- stat
- lstat)))
- (define* (delete-file-recursively dir
- #:key follow-mounts?)
- "Delete DIR recursively, like `rm -rf', without following symlinks. Don't
- follow mount points either, unless FOLLOW-MOUNTS? is true. Report but ignore
- errors."
- (let ((dev (stat:dev (lstat dir))))
- (file-system-fold (lambda (dir stat result) ; enter?
- (or follow-mounts?
- (= dev (stat:dev stat))))
- (lambda (file stat result) ; leaf
- (delete-file file))
- (const #t) ; down
- (lambda (dir stat result) ; up
- (rmdir dir))
- (const #t) ; skip
- (lambda (file stat errno result)
- (format (current-error-port)
- "warning: failed to delete ~a: ~a~%"
- file (strerror errno)))
- #t
- dir
- ;; Don't follow symlinks.
- lstat)))
- (define (file-name-predicate regexp)
- "Return a predicate that returns true when passed a file name whose base
- name matches REGEXP."
- (let ((file-rx (if (regexp? regexp)
- regexp
- (make-regexp regexp))))
- (lambda (file stat)
- (regexp-exec file-rx (basename file)))))
- (define* (find-files dir #:optional (pred (const #t))
- #:key (stat lstat)
- directories?
- fail-on-error?)
- "Return the lexicographically sorted list of files under DIR for which PRED
- returns true. PRED is passed two arguments: the absolute file name, and its
- stat buffer; the default predicate always returns true. PRED can also be a
- regular expression, in which case it is equivalent to (file-name-predicate
- PRED). STAT is used to obtain file information; using 'lstat' means that
- symlinks are not followed. If DIRECTORIES? is true, then directories will
- also be included. If FAIL-ON-ERROR? is true, raise an exception upon error."
- (let ((pred (if (procedure? pred)
- pred
- (file-name-predicate pred))))
- ;; Sort the result to get deterministic results.
- (sort (file-system-fold (const #t)
- (lambda (file stat result) ; leaf
- (if (pred file stat)
- (cons file result)
- result))
- (lambda (dir stat result) ; down
- (if (and directories?
- (pred dir stat))
- (cons dir result)
- result))
- (lambda (dir stat result) ; up
- result)
- (lambda (file stat result) ; skip
- result)
- (lambda (file stat errno result)
- (format (current-error-port) "find-files: ~a: ~a~%"
- file (strerror errno))
- (when fail-on-error?
- (error "find-files failed"))
- result)
- '()
- dir
- stat)
- string<?)))
- (define-syntax-rule (false-if-file-not-found exp)
- "Evaluate EXP but return #f if it raises to 'system-error with ENOENT."
- (catch 'system-error
- (lambda () exp)
- (lambda args
- (if (= ENOENT (system-error-errno args))
- #f
- (apply throw args)))))
- ;;;
- ;;; Search paths.
- ;;;
- (define* (search-path-as-list files input-dirs
- #:key (type 'directory) pattern)
- "Return the list of directories among FILES of the given TYPE (a symbol as
- returned by 'stat:type') that exist in INPUT-DIRS. Example:
- (search-path-as-list '(\"share/emacs/site-lisp\" \"share/emacs/24.1\")
- (list \"/package1\" \"/package2\" \"/package3\"))
- => (\"/package1/share/emacs/site-lisp\"
- \"/package3/share/emacs/site-lisp\")
- When PATTERN is true, it is a regular expression denoting file names to look
- for under the directories designated by FILES. For example:
- (search-path-as-list '(\"xml\") (list docbook-xml docbook-xsl)
- #:type 'regular
- #:pattern \"^catalog\\\\.xml$\")
- => (\"/…/xml/dtd/docbook/catalog.xml\"
- \"/…/xml/xsl/docbook-xsl-1.78.1/catalog.xml\")
- "
- (append-map (lambda (input)
- (append-map (lambda (file)
- (let ((file (string-append input "/" file)))
- (if pattern
- (find-files file (lambda (file stat)
- (and stat
- (eq? type (stat:type stat))
- ((file-name-predicate pattern) file stat)))
- #:stat stat
- #:directories? #t)
- (let ((stat (stat file #f)))
- (if (and stat (eq? type (stat:type stat)))
- (list file)
- '())))))
- files))
- (delete-duplicates input-dirs)))
- (define (list->search-path-as-string lst separator)
- (if separator
- (string-join lst separator)
- (match lst
- ((head rest ...) head)
- (() ""))))
- (define* (search-path-as-string->list path #:optional (separator #\:))
- (if separator
- (string-tokenize path
- (char-set-complement (char-set separator)))
- (list path)))
- (define* (set-path-environment-variable env-var files input-dirs
- #:key
- (separator ":")
- (type 'directory)
- pattern)
- "Look for each of FILES of the given TYPE (a symbol as returned by
- 'stat:type') in INPUT-DIRS. Set ENV-VAR to a SEPARATOR-separated path
- accordingly. Example:
- (set-path-environment-variable \"PKG_CONFIG\"
- '(\"lib/pkgconfig\")
- (list package1 package2))
- When PATTERN is not #f, it must be a regular expression (really a string)
- denoting file names to look for under the directories designated by FILES:
- (set-path-environment-variable \"XML_CATALOG_FILES\"
- '(\"xml\")
- (list docbook-xml docbook-xsl)
- #:type 'regular
- #:pattern \"^catalog\\\\.xml$\")
- "
- (let* ((path (search-path-as-list files input-dirs
- #:type type
- #:pattern pattern))
- (value (list->search-path-as-string path separator)))
- (if (string-null? value)
- (begin
- ;; Never set ENV-VAR to an empty string because often, the empty
- ;; string is equivalent to ".". This is the case for
- ;; GUILE_LOAD_PATH in Guile 2.0, for instance.
- (unsetenv env-var)
- (format #t "environment variable `~a' unset~%" env-var))
- (begin
- (setenv env-var value)
- (format #t "environment variable `~a' set to `~a'~%"
- env-var value)))))
- (define (which program)
- "Return the complete file name for PROGRAM as found in $PATH, or #f if
- PROGRAM could not be found."
- (search-path (search-path-as-string->list (getenv "PATH"))
- program))
- ;;;
- ;;; Phases.
- ;;;
- ;;; In (guix build gnu-build-system), there are separate phases (configure,
- ;;; build, test, install). They are represented as a list of name/procedure
- ;;; pairs. The following procedures make it easy to change the list of
- ;;; phases.
- ;;;
- (define (every* pred lst)
- "This is like 'every', but process all the elements of LST instead of
- stopping as soon as PRED returns false. This is useful when PRED has side
- effects, such as displaying warnings or error messages."
- (let loop ((lst lst)
- (result #t))
- (match lst
- (()
- result)
- ((head . tail)
- (loop tail (and (pred head) result))))))
- (define* (alist-cons-before reference key value alist
- #:optional (key=? equal?))
- "Insert the KEY/VALUE pair before the first occurrence of a pair whose key
- is REFERENCE in ALIST. Use KEY=? to compare keys."
- (let-values (((before after)
- (break (match-lambda
- ((k . _)
- (key=? k reference)))
- alist)))
- (append before (alist-cons key value after))))
- (define* (alist-cons-after reference key value alist
- #:optional (key=? equal?))
- "Insert the KEY/VALUE pair after the first occurrence of a pair whose key
- is REFERENCE in ALIST. Use KEY=? to compare keys."
- (let-values (((before after)
- (break (match-lambda
- ((k . _)
- (key=? k reference)))
- alist)))
- (match after
- ((reference after ...)
- (append before (cons* reference `(,key . ,value) after)))
- (()
- (append before `((,key . ,value)))))))
- (define* (alist-replace key value alist #:optional (key=? equal?))
- "Replace the first pair in ALIST whose car is KEY with the KEY/VALUE pair.
- An error is raised when no such pair exists."
- (let-values (((before after)
- (break (match-lambda
- ((k . _)
- (key=? k key)))
- alist)))
- (match after
- ((_ after ...)
- (append before (alist-cons key value after))))))
- (define-syntax-rule (modify-phases phases mod-spec ...)
- "Modify PHASES sequentially as per each MOD-SPEC, which may have one of the
- following forms:
- (delete <old-phase-name>)
- (replace <old-phase-name> <new-phase>)
- (add-before <old-phase-name> <new-phase-name> <new-phase>)
- (add-after <old-phase-name> <new-phase-name> <new-phase>)
- Where every <*-phase-name> is an expression evaluating to a symbol, and
- <new-phase> an expression evaluating to a procedure."
- (let* ((phases* phases)
- (phases* (%modify-phases phases* mod-spec))
- ...)
- phases*))
- (define-syntax %modify-phases
- (syntax-rules (delete replace add-before add-after)
- ((_ phases (delete old-phase-name))
- (alist-delete old-phase-name phases))
- ((_ phases (replace old-phase-name new-phase))
- (alist-replace old-phase-name new-phase phases))
- ((_ phases (add-before old-phase-name new-phase-name new-phase))
- (alist-cons-before old-phase-name new-phase-name new-phase phases))
- ((_ phases (add-after old-phase-name new-phase-name new-phase))
- (alist-cons-after old-phase-name new-phase-name new-phase phases))))
- ;;;
- ;;; Program invocation.
- ;;;
- (define-condition-type &invoke-error &error
- invoke-error?
- (program invoke-error-program)
- (arguments invoke-error-arguments)
- (exit-status invoke-error-exit-status)
- (term-signal invoke-error-term-signal)
- (stop-signal invoke-error-stop-signal))
- (define (invoke program . args)
- "Invoke PROGRAM with the given ARGS. Raise an exception
- if the exit code is non-zero; otherwise return #t."
- (let ((code (apply system* program args)))
- (unless (zero? code)
- (raise (condition (&invoke-error
- (program program)
- (arguments args)
- (exit-status (status:exit-val code))
- (term-signal (status:term-sig code))
- (stop-signal (status:stop-sig code))))))
- #t))
- (define* (report-invoke-error c #:optional (port (current-error-port)))
- "Report to PORT about C, an '&invoke-error' condition, in a human-friendly
- way."
- (format port "command~{ ~s~} failed with ~:[signal~;status~] ~a~%"
- (cons (invoke-error-program c)
- (invoke-error-arguments c))
- (invoke-error-exit-status c)
- (or (invoke-error-exit-status c)
- (invoke-error-term-signal c)
- (invoke-error-stop-signal c))))
- (define (open-pipe-with-stderr program . args)
- "Run PROGRAM with ARGS in an input pipe, but, unlike 'open-pipe*', redirect
- both its standard output and standard error to the pipe. Return two value:
- the pipe to read PROGRAM's data from, and the PID of the child process running
- PROGRAM."
- ;; 'open-pipe*' doesn't attempt to capture stderr in any way, which is why
- ;; we need to roll our own.
- (match (pipe)
- ((input . output)
- (match (primitive-fork)
- (0
- (dynamic-wind
- (const #t)
- (lambda ()
- (close-port input)
- (dup2 (fileno output) 1)
- (dup2 (fileno output) 2)
- (apply execlp program program args))
- (lambda ()
- (primitive-exit 127))))
- (pid
- (close-port output)
- (values input pid))))))
- (define (invoke/quiet program . args)
- "Invoke PROGRAM with ARGS and capture PROGRAM's standard output and standard
- error. If PROGRAM succeeds, print nothing and return the unspecified value;
- otherwise, raise a '&message' error condition that includes the status code
- and the output of PROGRAM."
- (let-values (((pipe pid)
- (apply open-pipe-with-stderr program args)))
- (let loop ((lines '()))
- (match (read-line pipe)
- ((? eof-object?)
- (close-port pipe)
- (match (waitpid pid)
- ((_ . status)
- (unless (zero? status)
- (let-syntax ((G_ (syntax-rules () ;for xgettext
- ((_ str) str))))
- (raise (condition
- (&message
- (message (format #f (G_ "'~a~{ ~a~}' exited \
- with status ~a; output follows:~%~%~{ ~a~%~}")
- program args
- (or (status:exit-val status)
- status)
- (reverse lines)))))))))))
- (line
- (loop (cons line lines)))))))
- ;;;
- ;;; Text substitution (aka. sed).
- ;;;
- (define (with-atomic-file-replacement file proc)
- "Call PROC with two arguments: an input port for FILE, and an output
- port for the file that is going to replace FILE. Upon success, FILE is
- atomically replaced by what has been written to the output port, and
- PROC's result is returned."
- (let* ((template (string-append file ".XXXXXX"))
- (out (mkstemp! template))
- (mode (stat:mode (stat file))))
- (with-throw-handler #t
- (lambda ()
- (call-with-input-file file
- (lambda (in)
- (let ((result (proc in out)))
- (close out)
- (chmod template mode)
- (rename-file template file)
- result))))
- (lambda (key . args)
- (false-if-exception (delete-file template))))))
- (define (substitute file pattern+procs)
- "PATTERN+PROCS is a list of regexp/two-argument-procedure pairs. For each
- line of FILE, and for each PATTERN that it matches, call the corresponding
- PROC as (PROC LINE MATCHES); PROC must return the line that will be written as
- a substitution of the original line. Be careful about using '$' to match the
- end of a line; by itself it won't match the terminating newline of a line."
- (let ((rx+proc (map (match-lambda
- (((? regexp? pattern) . proc)
- (cons pattern proc))
- ((pattern . proc)
- (cons (make-regexp pattern regexp/extended)
- proc)))
- pattern+procs)))
- (with-atomic-file-replacement file
- (lambda (in out)
- (let loop ((line (read-line in 'concat)))
- (if (eof-object? line)
- #t
- (let ((line (fold (lambda (r+p line)
- (match r+p
- ((regexp . proc)
- (match (list-matches regexp line)
- ((and m+ (_ _ ...))
- (proc line m+))
- (_ line)))))
- line
- rx+proc)))
- (display line out)
- (loop (read-line in 'concat)))))))))
- (define-syntax let-matches
- ;; Helper macro for `substitute*'.
- (syntax-rules (_)
- ((let-matches index match (_ vars ...) body ...)
- (let-matches (+ 1 index) match (vars ...)
- body ...))
- ((let-matches index match (var vars ...) body ...)
- (let ((var (match:substring match index)))
- (let-matches (+ 1 index) match (vars ...)
- body ...)))
- ((let-matches index match () body ...)
- (begin body ...))))
- (define-syntax substitute*
- (syntax-rules ()
- "Substitute REGEXP in FILE by the string returned by BODY. BODY is
- evaluated with each MATCH-VAR bound to the corresponding positional regexp
- sub-expression. For example:
- (substitute* file
- ((\"hello\")
- \"good morning\\n\")
- ((\"foo([a-z]+)bar(.*)$\" all letters end)
- (string-append \"baz\" letter end)))
- Here, anytime a line of FILE contains \"hello\", it is replaced by \"good
- morning\". Anytime a line of FILE matches the second regexp, ALL is bound to
- the complete match, LETTERS is bound to the first sub-expression, and END is
- bound to the last one.
- When one of the MATCH-VAR is `_', no variable is bound to the corresponding
- match substring.
- Alternatively, FILE may be a list of file names, in which case they are
- all subject to the substitutions.
- Be careful about using '$' to match the end of a line; by itself it won't
- match the terminating newline of a line."
- ((substitute* file ((regexp match-var ...) body ...) ...)
- (let ()
- (define (substitute-one-file file-name)
- (substitute
- file-name
- (list (cons regexp
- (lambda (l m+)
- ;; Iterate over matches M+ and return the
- ;; modified line based on L.
- (let loop ((m* m+) ; matches
- (o 0) ; offset in L
- (r '())) ; result
- (match m*
- (()
- (let ((r (cons (substring l o) r)))
- (string-concatenate-reverse r)))
- ((m . rest)
- (let-matches 0 m (match-var ...)
- (loop rest
- (match:end m)
- (cons*
- (begin body ...)
- (substring l o (match:start m))
- r))))))))
- ...)))
- (match file
- ((files (... ...))
- (for-each substitute-one-file files))
- ((? string? f)
- (substitute-one-file f)))))))
- ;;;
- ;;; Patching shebangs---e.g., /bin/sh -> /gnu/store/xyz...-bash/bin/sh.
- ;;;
- (define* (dump-port in out
- #:key (buffer-size 16384)
- (progress (lambda (t k) (k))))
- "Read as much data as possible from IN and write it to OUT, using chunks of
- BUFFER-SIZE bytes. Call PROGRESS at the beginning and after each successful
- transfer of BUFFER-SIZE bytes or less, passing it the total number of bytes
- transferred and the continuation of the transfer as a thunk."
- (define buffer
- (make-bytevector buffer-size))
- (define (loop total bytes)
- (or (eof-object? bytes)
- (let ((total (+ total bytes)))
- (put-bytevector out buffer 0 bytes)
- (progress total
- (lambda ()
- (loop total
- (get-bytevector-n! in buffer 0 buffer-size)))))))
- ;; Make sure PROGRESS is called when we start so that it can measure
- ;; throughput.
- (progress 0
- (lambda ()
- (loop 0 (get-bytevector-n! in buffer 0 buffer-size)))))
- (define (set-file-time file stat)
- "Set the atime/mtime of FILE to that specified by STAT."
- (utime file
- (stat:atime stat)
- (stat:mtime stat)
- (stat:atimensec stat)
- (stat:mtimensec stat)))
- (define (get-char* p)
- ;; We call it `get-char', but that's really a binary version
- ;; thereof. (The real `get-char' cannot be used here because our
- ;; bootstrap Guile is hacked to always use UTF-8.)
- (match (get-u8 p)
- ((? integer? x) (integer->char x))
- (x x)))
- (define patch-shebang
- (let ((shebang-rx (make-regexp "^[[:blank:]]*([[:graph:]]+)[[:blank:]]*([[:graph:]]*)(.*)$")))
- (lambda* (file
- #:optional
- (path (search-path-as-string->list (getenv "PATH")))
- #:key (keep-mtime? #t))
- "Replace the #! interpreter file name in FILE by a valid one found in
- PATH, when FILE actually starts with a shebang. Return #t when FILE was
- patched, #f otherwise. When KEEP-MTIME? is true, the atime/mtime of
- FILE are kept unchanged."
- (define (patch p interpreter rest-of-line)
- (let* ((template (string-append file ".XXXXXX"))
- (out (mkstemp! template))
- (st (stat file))
- (mode (stat:mode st)))
- (with-throw-handler #t
- (lambda ()
- (format out "#!~a~a~%"
- interpreter rest-of-line)
- (dump-port p out)
- (close out)
- (chmod template mode)
- (rename-file template file)
- (when keep-mtime?
- (set-file-time file st))
- #t)
- (lambda (key . args)
- (format (current-error-port)
- "patch-shebang: ~a: error: ~a ~s~%"
- file key args)
- (false-if-exception (delete-file template))
- #f))))
- (call-with-ascii-input-file file
- (lambda (p)
- (and (eq? #\# (get-char* p))
- (eq? #\! (get-char* p))
- (let ((line (false-if-exception (read-line p))))
- (and=> (and line (regexp-exec shebang-rx line))
- (lambda (m)
- (let* ((interp (match:substring m 1))
- (arg1 (match:substring m 2))
- (rest (match:substring m 3))
- (has-env (string-suffix? "/env" interp))
- (cmd (if has-env arg1 (basename interp)))
- (bin (search-path path cmd)))
- (if bin
- (if (string=? bin interp)
- #f ; nothing to do
- (if has-env
- (begin
- (format (current-error-port)
- "patch-shebang: ~a: changing `~a' to `~a'~%"
- file (string-append interp " " arg1) bin)
- (patch p bin rest))
- (begin
- (format (current-error-port)
- "patch-shebang: ~a: changing `~a' to `~a'~%"
- file interp bin)
- (patch p bin
- (if (string-null? arg1)
- ""
- (string-append " " arg1 rest))))))
- (begin
- (format (current-error-port)
- "patch-shebang: ~a: warning: no binary for interpreter `~a' found in $PATH~%"
- file (basename cmd))
- #f))))))))))))
- (define* (patch-makefile-SHELL file #:key (keep-mtime? #t))
- "Patch the `SHELL' variable in FILE, which is supposedly a makefile.
- When KEEP-MTIME? is true, the atime/mtime of FILE are kept unchanged."
- ;; For instance, Gettext-generated po/Makefile.in.in do not honor $SHELL.
- ;; XXX: Unlike with `patch-shebang', FILE is always touched.
- (define (find-shell name)
- (let ((shell (which name)))
- (unless shell
- (format (current-error-port)
- "patch-makefile-SHELL: warning: no binary for shell `~a' found in $PATH~%"
- name))
- shell))
- (let ((st (stat file)))
- ;; Consider FILE is using an 8-bit encoding to avoid errors.
- (with-fluids ((%default-port-encoding #f))
- (substitute* file
- (("^ *SHELL[[:blank:]]*:?=[[:blank:]]*([[:graph:]]*/)([[:graph:]]+)(.*)$"
- _ dir shell args)
- (let* ((old (string-append dir shell))
- (new (or (find-shell shell) old)))
- (unless (string=? new old)
- (format (current-error-port)
- "patch-makefile-SHELL: ~a: changing `SHELL' from `~a' to `~a'~%"
- file old new))
- (string-append "SHELL = " new args)))))
- (when keep-mtime?
- (set-file-time file st))))
- (define* (patch-/usr/bin/file file
- #:key
- (file-command (which "file"))
- (keep-mtime? #t))
- "Patch occurrences of \"/usr/bin/file\" in FILE, replacing them with
- FILE-COMMAND. When KEEP-MTIME? is true, keep FILE's modification time
- unchanged."
- (if (not file-command)
- (format (current-error-port)
- "patch-/usr/bin/file: warning: \
- no replacement 'file' command, doing nothing~%")
- (let ((st (stat file)))
- ;; Consider FILE is using an 8-bit encoding to avoid errors.
- (with-fluids ((%default-port-encoding #f))
- (substitute* file
- (("/usr/bin/file")
- (begin
- (format (current-error-port)
- "patch-/usr/bin/file: ~a: changing `~a' to `~a'~%"
- file "/usr/bin/file" file-command)
- file-command))))
- (when keep-mtime?
- (set-file-time file st)))))
- (define* (fold-port-matches proc init pattern port
- #:optional (unmatched (lambda (_ r) r)))
- "Read from PORT character-by-character; for each match against
- PATTERN, call (PROC MATCH RESULT), where RESULT is seeded with INIT.
- PATTERN is a list of SRFI-14 char-sets. Call (UNMATCHED CHAR RESULT)
- for each unmatched character."
- (define initial-pattern
- ;; The poor developer's regexp.
- (if (string? pattern)
- (map char-set (string->list pattern))
- pattern))
- ;; Note: we're not really striving for performance here...
- (let loop ((chars '())
- (pattern initial-pattern)
- (matched '())
- (result init))
- (cond ((null? chars)
- (loop (list (get-char* port))
- pattern
- matched
- result))
- ((null? pattern)
- (loop chars
- initial-pattern
- '()
- (proc (list->string (reverse matched)) result)))
- ((eof-object? (car chars))
- (fold-right unmatched result matched))
- ((char-set-contains? (car pattern) (car chars))
- (loop (cdr chars)
- (cdr pattern)
- (cons (car chars) matched)
- result))
- ((null? matched) ; common case
- (loop (cdr chars)
- pattern
- matched
- (unmatched (car chars) result)))
- (else
- (let ((matched (reverse matched)))
- (loop (append (cdr matched) chars)
- initial-pattern
- '()
- (unmatched (car matched) result)))))))
- (define* (remove-store-references file
- #:optional (store (%store-directory)))
- "Remove from FILE occurrences of file names in STORE; return #t when
- store paths were encountered in FILE, #f otherwise. This procedure is
- known as `nuke-refs' in Nixpkgs."
- (define pattern
- (let ((nix-base32-chars
- '(#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9
- #\a #\b #\c #\d #\f #\g #\h #\i #\j #\k #\l #\m #\n
- #\p #\q #\r #\s #\v #\w #\x #\y #\z)))
- `(,@(map char-set (string->list store))
- ,(char-set #\/)
- ,@(make-list 32 (list->char-set nix-base32-chars))
- ,(char-set #\-))))
- (with-fluids ((%default-port-encoding #f))
- (with-atomic-file-replacement file
- (lambda (in out)
- ;; We cannot use `regexp-exec' here because it cannot deal with
- ;; strings containing NUL characters.
- (format #t "removing store references from `~a'...~%" file)
- (setvbuf in 'block 65536)
- (setvbuf out 'block 65536)
- (fold-port-matches (lambda (match result)
- (put-bytevector out (string->utf8 store))
- (put-u8 out (char->integer #\/))
- (put-bytevector out
- (string->utf8
- "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-"))
- #t)
- #f
- pattern
- in
- (lambda (char result)
- (put-u8 out (char->integer char))
- result))))))
- (define-condition-type &wrap-error &error
- wrap-error?
- (program wrap-error-program)
- (type wrap-error-type))
- (define (wrapper? prog)
- "Return #t if PROG is a wrapper as produced by 'wrap-program'."
- (and (file-exists? prog)
- (let ((base (basename prog)))
- (and (string-prefix? "." base)
- (string-suffix? "-real" base)))))
- (define* (wrap-program prog #:rest vars)
- "Make a wrapper for PROG. VARS should look like this:
- '(VARIABLE DELIMITER POSITION LIST-OF-DIRECTORIES)
- where DELIMITER is optional. ':' will be used if DELIMITER is not given.
- For example, this command:
- (wrap-program \"foo\"
- '(\"PATH\" \":\" = (\"/gnu/.../bar/bin\"))
- '(\"CERT_PATH\" suffix (\"/gnu/.../baz/certs\"
- \"/qux/certs\")))
- will copy 'foo' to '.foo-real' and create the file 'foo' with the following
- contents:
- #!location/of/bin/bash
- export PATH=\"/gnu/.../bar/bin\"
- export CERT_PATH=\"$CERT_PATH${CERT_PATH:+:}/gnu/.../baz/certs:/qux/certs\"
- exec -a $0 location/of/.foo-real \"$@\"
- This is useful for scripts that expect particular programs to be in $PATH, for
- programs that expect particular shared libraries to be in $LD_LIBRARY_PATH, or
- modules in $GUILE_LOAD_PATH, etc.
- If PROG has previously been wrapped by 'wrap-program', the wrapper is extended
- with definitions for VARS."
- (define wrapped-file
- (string-append (dirname prog) "/." (basename prog) "-real"))
- (define already-wrapped?
- (file-exists? wrapped-file))
- (define (last-line port)
- ;; Return the last line read from PORT and leave PORT's cursor right
- ;; before it.
- (let loop ((previous-line-offset 0)
- (previous-line "")
- (position (seek port 0 SEEK_CUR)))
- (match (read-line port 'concat)
- ((? eof-object?)
- (seek port previous-line-offset SEEK_SET)
- previous-line)
- ((? string? line)
- (loop position line (+ (string-length line) position))))))
- (define (export-variable lst)
- ;; Return a string that exports an environment variable.
- (match lst
- ((var sep '= rest)
- (format #f "export ~a=\"~a\""
- var (string-join rest sep)))
- ((var sep 'prefix rest)
- (format #f "export ~a=\"~a${~a:+~a}$~a\""
- var (string-join rest sep) var sep var))
- ((var sep 'suffix rest)
- (format #f "export ~a=\"$~a${~a+~a}~a\""
- var var var sep (string-join rest sep)))
- ((var '= rest)
- (format #f "export ~a=\"~a\""
- var (string-join rest ":")))
- ((var 'prefix rest)
- (format #f "export ~a=\"~a${~a:+:}$~a\""
- var (string-join rest ":") var var))
- ((var 'suffix rest)
- (format #f "export ~a=\"$~a${~a:+:}~a\""
- var var var (string-join rest ":")))))
- (if already-wrapped?
- ;; PROG is already a wrapper: add the new "export VAR=VALUE" lines just
- ;; before the last line.
- (let* ((port (open-file prog "r+"))
- (last (last-line port)))
- (for-each (lambda (var)
- (display (export-variable var) port)
- (newline port))
- vars)
- (display last port)
- (close-port port))
- ;; PROG is not wrapped yet: create a shell script that sets VARS.
- (let ((prog-tmp (string-append wrapped-file "-tmp")))
- (link prog wrapped-file)
- (call-with-output-file prog-tmp
- (lambda (port)
- (format port
- "#!~a~%~a~%exec -a \"$0\" \"~a\" \"$@\"~%"
- (which "bash")
- (string-join (map export-variable vars) "\n")
- (canonicalize-path wrapped-file))))
- (chmod prog-tmp #o755)
- (rename-file prog-tmp prog))))
- (define wrap-script
- (let ((interpreter-regex
- (make-regexp
- (string-append "^#! ?(/[^ ]+/bin/("
- (string-join '("python[^ ]*"
- "Rscript"
- "perl"
- "ruby"
- "bash"
- "sh") "|")
- "))( ?.*)")))
- (coding-line-regex
- (make-regexp
- ".*#.*coding[=:][[:space:]]*([-a-zA-Z_0-9.]+)")))
- (lambda* (prog #:key (guile (which "guile")) #:rest vars)
- "Wrap the script PROG such that VARS are set first. The format of VARS
- is the same as in the WRAP-PROGRAM procedure. This procedure differs from
- WRAP-PROGRAM in that it does not create a separate shell script. Instead,
- PROG is modified directly by prepending a Guile script, which is interpreted
- as a comment in the script's language.
- Special encoding comments as supported by Python are recreated on the second
- line.
- Note that this procedure can only be used once per file as Guile scripts are
- not supported."
- (define update-env
- (match-lambda
- ((var sep '= rest)
- `(setenv ,var ,(string-join rest sep)))
- ((var sep 'prefix rest)
- `(let ((current (getenv ,var)))
- (setenv ,var (if current
- (string-append ,(string-join rest sep)
- ,sep current)
- ,(string-join rest sep)))))
- ((var sep 'suffix rest)
- `(let ((current (getenv ,var)))
- (setenv ,var (if current
- (string-append current ,sep
- ,(string-join rest sep))
- ,(string-join rest sep)))))
- ((var '= rest)
- `(setenv ,var ,(string-join rest ":")))
- ((var 'prefix rest)
- `(let ((current (getenv ,var)))
- (setenv ,var (if current
- (string-append ,(string-join rest ":")
- ":" current)
- ,(string-join rest ":")))))
- ((var 'suffix rest)
- `(let ((current (getenv ,var)))
- (setenv ,var (if current
- (string-append current ":"
- ,(string-join rest ":"))
- ,(string-join rest ":")))))))
- (let-values (((interpreter args coding-line)
- (call-with-ascii-input-file prog
- (lambda (p)
- (let ((first-match
- (false-if-exception
- (regexp-exec interpreter-regex (read-line p)))))
- (values (and first-match (match:substring first-match 1))
- (and first-match (match:substring first-match 3))
- (false-if-exception
- (and=> (regexp-exec coding-line-regex (read-line p))
- (lambda (m) (match:substring m 0))))))))))
- (if interpreter
- (let* ((header (format #f "\
- #!~a --no-auto-compile
- #!#; ~a
- #\\-~s
- #\\-~s
- "
- guile
- (or coding-line "Guix wrapper")
- (cons 'begin (map update-env
- (match vars
- ((#:guile _ . vars) vars)
- (_ vars))))
- `(let ((cl (command-line)))
- (apply execl ,interpreter
- (car cl)
- (cons (car cl)
- (append
- ',(string-split args #\space)
- cl))))))
- (template (string-append prog ".XXXXXX"))
- (out (mkstemp! template))
- (st (stat prog))
- (mode (stat:mode st)))
- (with-throw-handler #t
- (lambda ()
- (call-with-ascii-input-file prog
- (lambda (p)
- (format out header)
- (dump-port p out)
- (close out)
- (chmod template mode)
- (rename-file template prog)
- (set-file-time prog st))))
- (lambda (key . args)
- (format (current-error-port)
- "wrap-script: ~a: error: ~a ~s~%"
- prog key args)
- (false-if-exception (delete-file template))
- (raise (condition
- (&wrap-error (program prog)
- (type key))))
- #f)))
- (raise (condition
- (&wrap-error (program prog)
- (type 'no-interpreter-found)))))))))
- ;;;
- ;;; Locales.
- ;;;
- (define (locale-category->string category)
- "Return the name of locale category CATEGORY, one of the 'LC_' constants.
- If CATEGORY is a bitwise or of several 'LC_' constants, an approximation is
- returned."
- (letrec-syntax ((convert (syntax-rules ()
- ((_)
- (number->string category))
- ((_ first rest ...)
- (if (= first category)
- (symbol->string 'first)
- (convert rest ...))))))
- (convert LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE
- LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY
- LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE
- LC_TIME)))
- ;;; Local Variables:
- ;;; eval: (put 'call-with-output-file/atomic 'scheme-indent-function 1)
- ;;; eval: (put 'call-with-ascii-input-file 'scheme-indent-function 1)
- ;;; eval: (put 'with-throw-handler 'scheme-indent-function 1)
- ;;; eval: (put 'let-matches 'scheme-indent-function 3)
- ;;; eval: (put 'with-atomic-file-replacement 'scheme-indent-function 1)
- ;;; End:
|