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)