From 2ce57d538b3a6261f9461d857e2dcbfae5f088a6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Am=C3=A9lia=20P=2E=20H=2E=20Coutard?= Date: Wed, 24 Apr 2024 22:51:14 +0200 Subject: [PATCH] replace-store-files bien plus utilisable, et probablement un peu plus rapide --- amyx/home.scm | 43 +++++++++++++++++-------------------------- 1 file changed, 17 insertions(+), 26 deletions(-) diff --git a/amyx/home.scm b/amyx/home.scm index f4eec34..1e0d6c7 100644 --- a/amyx/home.scm +++ b/amyx/home.scm @@ -18,31 +18,22 @@ #:use-module (srfi srfi-1) #:export (replace-store-files)) -(define (find-file-in-packages f packages) - (let ((l (filter-map (lambda (p) - (and (stat (string-append p "/" f) #f) - (string-append p "/" f))) packages))) - (cond - ((= (length l) 0) - (raise-exception (make-exception (make-error) - (make-exception-with-message (string-append - "File found in no packages: " - f))))) - ((= (length l) 1) - (car l)) - (else (raise-exception (make-exception (make-error) - (make-exception-with-message (string-append - "File found in multiple packages: " - f)))))))) +(define store-path-regexp + (make-regexp "#\\$([^/]*)/")) -(define (replace-store-files file packages) - (regexp-substitute/global #f - "#\\$([^ \n\t]*)" - (call-with-input-file file - get-string-all) - 'pre - (lambda (m) - (find-file-in-packages (match:substring m 1) - packages)) - 'post)) +(define (regexp-map-list regexp str f) + (let ((m (regexp-exec regexp str))) + (if m + `(,(match:prefix m) ,@(f m) + ,@(regexp-map-list regexp + (match:suffix m) f)) + `(,str)))) +(define-macro (replace-store-files file) + `(list ,@(regexp-map-list store-path-regexp + (call-with-input-file file + get-string-all) + (lambda (m) + `(,(string->symbol (match:substring + m 1)) + "/"))))) -- 2.45.2