请在2024 Clojure状态调查中分享您的想法!

欢迎!有关如何使用本网站的详细信息,请参阅关于页面。

+2
工具
重置标签

clojure.tools.cli.api/tree会以“友好树”(`:format :print`,默认)或格式化edn数据(`:format :edn`)的形式打印层次依赖数据

要将结果作为数据获取,您可以使用with-out-stredn/read-string

(-> (deps/tree {:project deps-map, 
                :format :edn})
      (with-out-str)
      (edn/read-string))

效果非常好。话虽如此,从pprint到cli/tree和重新解析的往返操作让我怀疑我可能在做错。能够直接将edn作为数据返回会更方便。

2 个答案

0

这是一个想法(在clojure.tools.deps仓库内部调用)

% clj -e "(require 'clojure.tools.cli.api)(->> (clojure.tools.cli.api/tree {:format :tree}) :children count prn)"
20

没看到可以附加补丁的方法,但这里有一个为了完整性的例子(尽管变更非常直接且简单)。

From 7cc05b1913af8ee9982852fd618b775a1c339b0e Mon Sep 17 00:00:00 2001
From: Michael Glaesemann <[email protected]>
Date: Wed, 6 Apr 2022 07:28:28 -0500
Subject: [PATCH] Add :tree format option to cli.api/tree to return tree as
 data.

----
 src/main/clojure/clojure/tools/cli/api.clj | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git src/main/clojure/clojure/tools/cli/api.clj src/main/clojure/clojure/tools/cli/api.clj
index 931df53..96d8835 100644
--- src/main/clojure/clojure/tools/cli/api.clj
+++ src/main/clojure/clojure/tools/cli/api.clj
@@ -114,7 +114,7 @@
   )
 
 (defn tree
-  "Print deps tree for the current project's deps.edn built from either the
+  "Return deps tree for the current project's deps.edn built from either the
   a basis, or if provided, the trace file.
 
   This program accepts the same basis-modifying arguments from the `basis` program.
@@ -122,7 +122,7 @@
   Sources are merged in the order - :root, :user, :project, :extra.
 
   By default, :format will :print to the console in a human friendly tree. Use
-  :edn mode to print the tree to edn.
+  :edn mode to print the tree to edn. Use :tree mode to return the tree as data.
 
   In print mode, deps are printed with prefix of either . (included) or X (excluded).
   A reason code for inclusion/exclusion may be added at the end of the line.
@@ -138,7 +138,7 @@
     :file      Path to trace.edn file (from clj -Strace) to use in computing the tree
 
   Output mode:
-    :format    :print (default) or :edn
+    :format    :print (default), :edn (pretty-printed edn), or :tree (data)
 
   Print output mode modifiers:
     :indent    Indent spacing (default = 2)
@@ -157,6 +157,7 @@
       (case format
         :print (tree/print-tree tree opts)
         :edn (pprint/pprint tree)
+        :tree tree
         (throw (ex-info (str "Unknown format " format) {}))))
     (catch Throwable t
       (printerrln "Error generating tree:" (.getMessage t))
-- 
2.32.0 (Apple Git-132)
clojure.tools.cli.api中的函数主要设计用于从命令行中调用,而不是用于程序化使用,所以我可能不会在cli.api/tree上放置此功能,而是扩展clojure.tools.deps.alpha.*(不确定具体位置,除非更仔细地查看)。
这很有道理。感谢您提供https://clojure.atlassian.net/browse/TDEPS-225的提示。我会在那里跟进。
0
原始的Slack帖子提到了monorepos,而且我们自己的工作尝试也使我们需要以编程方式获取树。预计这个树将帮助我们与Nix组合Clojure CLI,如[本帖](https://ask.clojure.org/index.php/11644/re-building-without-internet-access-with-nix)中提到的一样。

因此,欢迎TDEPS-225,这样获取树的过程就不会那么复杂了 :)
by
补充Adam的评论

我们发现包含在(:libs deps/create-basis)中的信息不足以预取所有需要的项目,以确保类路径解析能够完全离线运行。

问题在于解析过程中没有出现过时的库版本记录。
这听起来不错,因为最终的根目录不会使用它们,但在尝试生成类路径时,t.d.a至少会想要查阅这些过时依赖的POM文件。
by
我在clojure.tools.deps.alpha.tree/calc-trace中提取出一个新的计算跟踪功能,可以与现有的ctda.tree/trace->tree合并以获取数据。将在下一个版本中发布。
...