From 9f3079e84a368e757021735c5b500ae34b38e11b Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 18 Mar 2025 14:13:06 +0000 Subject: reader: Spin off input normalization into separate function. Separate functions are easier to test. * ravanan/reader.scm (read-inputs): Spin off input normalization into ... (normalize-input): ... new function. --- ravanan/reader.scm | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/ravanan/reader.scm b/ravanan/reader.scm index 5d1644f..05dff6e 100644 --- a/ravanan/reader.scm +++ b/ravanan/reader.scm @@ -256,6 +256,19 @@ array of array of @code{File}s, etc. Else, return @code{#f}" (cut normalize-workflow (preprocess-include (read-yaml-file (basename workflow-file)))))) +(define (normalize-input input) + "Normalize actual @var{input}." + (cond + ((vector? input) + (vector-map normalize-input + input)) + ((eq? (object-type input) + 'File) + (assoc-set input + (cons "location" + (canonicalize-path (assoc-ref input "location"))))) + (else input))) + (define (read-inputs inputs-file) "Read @var{inputs-file} resolving file paths if any." (call-with-current-directory (dirname inputs-file) @@ -263,18 +276,7 @@ array of array of @code{File}s, etc. Else, return @code{#f}" (map (match-lambda ((input-id . input) (cons input-id - (let resolve-location ((input input)) - (cond - ((vector? input) - (vector-map resolve-location - input)) - ((eq? (object-type input) - 'File) - (assoc-set input - (cons "location" - (canonicalize-path - (assoc-ref input "location"))))) - (else input)))))) + (normalize-input input)))) ;; Even though YAML is a superset of JSON, use the JSON ;; reader if possible; it is simpler and less prone to type ;; ambiguities. -- cgit v1.2.3