我正在尝试使用 Clojure 逐行读取一个(可能有也可能没有)具有YAML frontmatter的文件,并返回一个带有两个向量的 hashmap,一个包含 frontmatter 行,一个包含其他所有内容(即正文) .
示例输入文件如下所示:
---
key1: value1
key2: value2
---
Body text paragraph 1
Body text paragraph 2
Body text paragraph 3
我有执行此操作的功能代码,但对我(诚然没有使用 Clojure 的经验)的鼻子来说,它散发着代码气味。
(defn process-file [f]
(with-open [rdr (java.io.BufferedReader. (java.io.FileReader. f))]
(loop [lines (line-seq rdr) in-fm 0 frontmatter [] body []]
(if-not (empty? lines)
(let [line (string/trim (first lines))]
(cond
(zero? (count line))
(recur (rest lines) in-fm frontmatter body)
(and (< in-fm 2) (= line "---"))
(recur (rest lines) (inc in-fm) frontmatter body)
(= in-fm 1)
(recur (rest lines) in-fm (conj frontmatter line) body)
:else
(recur (rest lines) in-fm frontmatter (conj body line))))
(hash-map :frontmatter frontmatter :body body)))))
有人可以指出我更优雅的方式来做到这一点吗?我将在这个项目中进行大量的逐行解析,如果可能的话,我想要一种更惯用的方式来处理它。