2024 Clojure 调查问卷中分享您的想法!

欢迎!请参阅关于页面以获取更多有关此功能的信息。

+2
工具
重新标记

clojure.tools.cli.api/tree以“人类友好型树”(:format :print,默认)或格式化edn数据的方式打印层次依赖关系数据

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

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

效果不错。然而,从cli/tree内部的pprint进行来回转换以及重新解析使我怀疑我在某处做错了。能直接以数据的形式获取edn会更好。

2个回答

0

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

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

我没有看到 attaching patch 的方法,但为了完整起见,这里有一个(尽管这个更改简单直接)。

From 7cc05b1913af8ee9982852fd618b775a1c339b0e Mon Sep 17 00:00:00 2001
From: Michael Glaesemann <grzm@seespotcode.net>
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 使用而设计的,而不是程序性使用,所以我可能不会在 cli.api/tree 上放置这个功能,而会更加拓展 clojure.tools.deps.alpha.*(不确定确切的地点,除非更详细地查看)。
by
这个说法很合理。感谢您提供了https://clojure.atlassian.net/browse/TDEPS-225的指向。我会跟进那里。
0
by
by
原始 Slack 帖子提到了 monorepos,而且很感兴趣的是我们自己工作中的尝试也让我们需要以程序方式获取 tree。无庸置疑,这个 tree 将帮助我们更好地实现 Clojure CLI 与 Nix 的集成,这在[这篇文章](https://ask.clojure.org/index.php/11644/re-building-without-internet-access-with-nix)中提到。

因此,TDEPS-225 欢迎如此,使得获取 tree 更加不那么像黑客手段 :)
by
为 Adam 的评论补充

我们发现 (:libs deps/create-basis) 中的信息不足以预先获取所有需要的类路径解析而完全离线运行所需的所有内容。

问题是解析过程中遇到的过时库版本没有痕迹。
听起来不错,因为最终的基础设置不会使用它们,但在尝试生成classpath时,t.d.a仍然至少会想查看这些被取代的依赖项的POM文件。
我在clojure.tools.deps.alpha.tree/calc-trace中提取出一个新的函数来计算trace,它可以与现有的ctda.tree/trace->tree组合以获取数据。将在下一个版本中提供。
...