From b7b88288011aa41791b6634ae229f426bacc55ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 10 Jul 2013 17:01:47 +0200 Subject: records: `recutils->alist' recognizes comments. * guix/records.scm (%recutils-comment-rx): New variable. (recutils->alist): Match comments. * tests/records.scm ("recutils->alist"): Add comments. --- guix/records.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'guix/records.scm') diff --git a/guix/records.scm b/guix/records.scm index 64581f1be2..57664df5a6 100644 --- a/guix/records.scm +++ b/guix/records.scm @@ -217,13 +217,23 @@ PORT, according to FIELDS. FIELDS must be a list of field name/getter pairs." (define %recutils-field-rx (make-regexp "^([[:graph:]]+): (.*)$")) +(define %recutils-comment-rx + ;; info "(recutils) Comments" + (make-regexp "^#")) + (define (recutils->alist port) "Read a recutils-style record from PORT and return it as a list of key/value pairs. Stop upon an empty line (after consuming it) or EOF." (let loop ((line (read-line port)) (result '())) - (cond ((or (eof-object? line) (string-null? line)) + (cond ((eof-object? line) (reverse result)) + ((string-null? line) + (if (null? result) + (loop (read-line port) result) ; leading space: ignore it + (reverse result))) ; end-of-record marker + ((regexp-exec %recutils-comment-rx line) + (loop (read-line port) result)) ((regexp-exec %recutils-field-rx line) => (lambda (match) -- cgit v1.2.3