From 6909c1a8ed6c2c739bd688d5f03f0ddc1bae2928 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sat, 14 Nov 2020 06:59:47 -0800 Subject: [PATCH] start of fix --- pollen/render.rkt | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pollen/render.rkt b/pollen/render.rkt index 37668ce..8f68bec 100644 --- a/pollen/render.rkt +++ b/pollen/render.rkt @@ -1,4 +1,4 @@ -#lang racket/base +#lang debug racket/base (require racket/file racket/path racket/match @@ -51,6 +51,8 @@ (define (parallel-render source-paths-in output-paths-in job-count-arg) ;; if jobs are already in the cache, pull them out before assigning workers ;; using worker to fetch from cache is slower + #R source-paths-in + #R output-paths-in (define source-to-output-path-table (map cons source-paths-in output-paths-in)) (define-values (uncached-source-paths previously-cached-jobs) (for/fold ([usps null] @@ -178,7 +180,7 @@ ;; meaning, if source is "test.poly.pm" and we get `raco pollen render test.txt`, ;; then the output path argument should force .txt rendering, regardless of `current-poly-target` setting ;; so the output path may contain information we need that we can't necessarily derive from the source path. - + (define-values (expanded-source-paths expanded-output-paths) ;; we generate the output paths in parallel with the source paths ;; rather than afterward, because @@ -190,9 +192,15 @@ (let loop ([paths paths-in] [sps null] [ops null]) (match paths [(? null?) - (define (cleanup paths) - (sort (remove-duplicates paths) stringstring)) - (apply values (map cleanup (list sps ops)))] + ;; it's possible that we have multiple output names for one poly file + ;; so after we expand, we only remove duplicates where both the source and dest in the pair + ;; are the same + (let* ([pairs (remove-duplicates (map cons sps ops))] + [pairs (sort pairs stringstring car))] + [pairs (sort pairs stringstring cdr))]) + (for/lists (sps ops) + ([pr (in-list pairs)]) + (values (car pr) (cdr pr))))] [(cons path rest) (match (->complete-path path) [(? pagetree-source? pt)