TL;DR
目前影响哪些源文件被 clojure.tools.namespace.repl/refresh 加载的唯一方式是设置刷新目录,这是一个基于允许列表的系统。目前没有方法可以阻止特定目录/文件/模式加载,同时允许其他所有内容。当类路径上有不应该加载的源clojure文件时,这会引发问题。
长篇大论
我们在 clojure.tools.namespace/refresh 与 clj-kondo钩子 遇到了一个有趣的问题。
一个简单的示例:
clj -Srepro -Sdeps '{:deps {org.clojure/tools.namespace {:mvn/version "1.2.0"} seancorfield/next.jdbc {:git/url "https://github.com/seancorfield/next-jdbc/" :git/sha "24bf1dbaa441d62461f980e9f880df5013f295dd"}}}' -M -e "((requiring-resolve 'clojure.tools.namespace.repl/refresh-all))"
这将失败
:error-while-loading hooks.com.github.seancorfield.next-jdbc
Could not locate hooks/com/github/seancorfield/next_jdbc__init.class, hooks/com/github/seancorfield/next_jdbc.clj or hooks/com/github/seancorfield/next_jdbc.cljc on classpath. Please check that namespaces with dashes use underscores in the Clojure file name.
作为背景,clj-kondo是一个静态分析器/代码检查工具。为了能够正确分析自定义宏,它允许库将描述这些宏应该如何分析的clj文件(作为资源)分布在一个特定的目录下。
上述示例由于以下原因而失败:
目前没有方法通知tools.namespace不加载某些文件,所以我不得不想到一种稍微有点繁琐的解决方法,试图将刷新目录设置为类路径目录减去有问题的一个,但如果可以用黑名单或谓词设置这会更好。
解决方案,以防任何人在将来遇到
(defn remove-clj-kondo-exports-from-tools-ns-refresh-dirs
"A potential issue from using this is that if the directory containing the clj-kondo.exports folder
also directly contains to-be-reloaded clojure source files, those will no longer be reloaded."
[]
(->> (clojure.java.classpath/classpath-directories)
(mapcat
(fn [^File classpath-directory]
(let [children (.listFiles classpath-directory)
directory? #(.isDirectory ^File %)
clj-kondo-exports?
#(= "clj-kondo.exports" (.getName ^File %))
has-clj-kondo-exports
(some (every-pred clj-kondo-exports? directory?) children)]
(if has-clj-kondo-exports
(->> children
(filter directory?)
(remove clj-kondo-exports?))
[classpath-directory]))))
(apply clojure.tools.namespace.repl/set-refresh-dirs)))
;; call in user.clj
(remove-clj-kondo-exports-from-tools-ns-refresh-dirs)