2024 年 Clojure 状态调查!中分享您的看法。

欢迎!请参阅关于页面了解更多关于其运作方式的信息。

0
ClojureScript
CLJS 编译器将生成大量的不必要的函数包装器,用于在 {{let}} 中创建的函数(在某些情况下,甚至在 {{let}} 之外)。这些函数包装器仅在 {{loop}} 内或函数使用 {{recur}} 来处理 JS {{var}} 的怪癖时才是必要的。据我所知,这个提交 [1] 改变了行为,使其总是进行这样的处理。

这可能会生成大量“额外”代码,而 Closure Compiler 将不会消除这些代码。

一个示例说明,即使这些包装函数不使用旨在保护该函数包装器的任何局部变量,它们也可以获得相当长的参数列表。

(ns test.app)

(defn other [x])

(defn dummy [{:strs [foo bar coll] :as p}])
  (let [x "test"
        y "test"
        z "test"

        a (fn [i] i)
        b (fn [i] i)
        c (fn [i] i)

    (fn return []
      (array a b c))
    ))


生成的代码

// 由 ClojureScript 1.10.520 编译
goog.provide('test.app');
goog.require('cljs.core');
test.app.other = function test$app$other(x) {
    return null;
};
test.app.dummy = function test$app$dummy(p__526) {
    var map__527 = p__526;
    var map__527__$1 = (!(map__527 == null)
    ? map__527.cljs$lang$protocol_mask$partition0$ & 64 ||
      cljs.core.PROTOCOL_SENTINEL === map__527.cljs$core$ISeq$
        ? true
        : false
    : false)
        ? cljs.core.apply.call(null, cljs.core.hash_map, map__527)
        : map__527;
    var p = map__527__$1;
    var foo = cljs.core.get.call(null, map__527__$1, 'foo');
    var bar = cljs.core.get.call(null, map__527__$1, 'bar');
    var coll = cljs.core.get.call(null, map__527__$1, 'coll');
    var x = 'test';
    var y = 'test';
    var z = 'test';
        // 这可以只写成 var a = function(i) { return i };;
    var a = (function(x, y, z, map__527, map__527__$1, p, foo, bar, coll) {
        return function(i) {
            return i;
        };
    })(x, y, z, map__527, map__527__$1, p, foo, bar, coll);
    var b = (function(x, y, z, a, map__527, map__527__$1, p, foo, bar, coll) {
        return function(i) {
            return i;
        };
    })(x, y, z, a, map__527, map__527__$1, p, foo, bar, coll);
    var c = (function(x, y, z, a, b, map__527, map__527__$1, p, foo, bar, coll) {
        return function(i) {
            return i;
        };
    })(x, y, z, a, b, map__527, map__527__$1, p, foo, bar, coll);
    return (function(x, y, z, a, b, c, map__527, map__527__$1, p, foo, bar, coll) {
        return function test$app$dummy_$_return() {
            return [a, b, c];
        };
    })(x, y, z, a, b, c, map__527, map__527__$1, p, foo, bar, coll);
};

CLUDE MAP=p昇级映射


我还没有进行过基准测试,但我很确定这也有一定的运行时开销。

应该将导致这种情况的代码优化为仅在实际上需要时才发出这些包装器,并且只为实际使用的本地变量。

或者我们可以使用JavaScript中的{{const}}(或{{let}}),因为现在使用的98%以上的浏览器都支持这个功能[2],Closure编译器会根据一定的{{:language-out}}设置为我们生成这些函数包装器(即当前默认设置)。
 

[1] https://github.com/clojure/clojurescript/commit/78d20eebbbad17d476fdce04f2afd7489a507df7
[2] https://caniuse.cn/#feat=const

14 答案

0
通过

评论者:thheller

在此添加来自实际项目的另一个数据点,该项目使用宏生成一些稍后使用的函数。

优化后的代码看起来像这样

`
ii(
ia,
Y,
(function() {

return function(X, m) {
  var r = ji(oh);
  m = Bh(m[0], X);
  li(X, r, Ng, null, "odd");
  mi(r, m);
  return [[r], [r, m]];
};

})(na, Y, ia, G, K, O, T, l, n, p, q, v, x, D),
(function() {

return function(X, m, r, t) {
  return ni(X, m, 1, r[0], t[0]);
};

)(na, Y, ia, G, K, O, T, l, n, p, q, v, x, D)
);
`

,这共有403个字节,如果移除这些包装器,则可以减少到233个字节。我们可以看到,Closure已经删除了函数绑定,但仍保留IIFE本身,所以我们根本无法从这些包装器中获益。

`
ii(
ia,
Y,
function(X, m) {

var r = ji(oh);
m = Bh(m[0], X);
li(X, r, Ng, null, "odd");
mi(r, m);
return [[r], [r, m]];

},
function(X, m, r, t) {

return ni(X, m, 1, r[0], t[0]);

}
);
`

我怀疑这实际上在真实应用中会积累很多代码。

我将在下个星期尝试解决这个问题。

0
通过

评论者:dnolen

我喜欢使用JavaScript中的let绑定,让Closure来处理它。这将大大减少ClojureScript中我们需要自己处理的定制代码。

0
_由thheller发表的评论:

由于一些评论在迁移过程中丢失了,这里简单回顾一下。

该补丁会导致core.async和cljs-oops在cljs-canary中构建失败。可以忽略cljs-oops。

https://github.com/cljs-oss/canary/tree/results/reports/2019/05/17/job-000933-1.10.529-2c0eada6

我无法搞清楚core.async发生了什么,看代码似乎它应该总是导致Node进程崩溃。它在REPL中工作是一个谜,但我可以可靠地重复崩溃,无论是否有补丁,当使用正常的编译和在手动运行node时。

在core.async主存储库中使用CLJS主版本运行时,我得到了失败

$ clojure -Sdeps '{:paths ["src/test/cljs" "src/main/clojure"] :deps {org.clojure/clojurescript {:git/url "https://github.com/clojure/clojurescript.git :sha "3a0c07477ae781bf521bdc2b074ed7b783bb93f3"}}}' -m cljs.main -d out -re node -c cljs.core.async.test-runner

$ node out/main.js  
测试 cljs.core.async.pipeline-test

测试 cljs.core.async.buffer-tests

测试 cljs.core.async.timers-test

测试 cljs.core.async.tests

/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.js:3376
}})();
   ^
错误:断言失败:这个异常是预期的
false
    在/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:112:9
    在/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:112:9
    在 cljs$core$async$tests$state_machine__18890__auto____1 (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.js:3376:4)
    在 cljs$core$async$tests$state_machine__18890__auto__ (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.js:3392:62)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/ioc_helpers.cljs:35:23)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/ioc_helpers.cljs:39:6)
    在/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:112:9
    在 Immediate.cljs$core$async$impl$dispatch$process_messages (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/dispatch.cljs:18:7)
    在 runCallback (timers.js:705:18)
    在 tryOnImmediate (timers.js:676:5)


在应用补丁的分支仓库中使用我自己的分支,我得到了一个不同的堆栈跟踪(预期),但失败是相同的

$ clojure -Sdeps '{:paths ["src/test/cljs" "src/main/clojure"] :deps {org.clojure/clojurescript {:git/url "https://github.com/thheller/clojurescript.git :sha "b83dcb00546d570ce74fcf130a70a82326857323"}}}' -m cljs.main -d out -re node -c cljs.core.async.test-runner  

$ node out/main.js  

测试 cljs.core.async.pipeline-test

测试 cljs.core.async.buffer-tests

测试 cljs.core.async.timers-test

测试 cljs.core.async.tests

/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:130
        (go
        ^
错误:断言失败:这个异常是预期的
false
    在 switch__20288__auto__ (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:130:9)
    在 /mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:130:9
    在 cljs$core$async$tests$state_machine__20289__auto____1 (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.js:4103:4)
    在 cljs$core$async$tests$state_machine__20289__auto__ (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.js:4119:62)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/ioc_helpers.cljs:35:23)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/ioc_helpers.cljs:39:6)
    在 /mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/tests.cljs:130:9
    在 Immediate.cljs$core$async$impl$dispatch$process_messages (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/dispatch.cljs:18:7)
    在 runCallback (timers.js:705:18)
    在 tryOnImmediate (timers.js:676:5)


仍在努力找出为什么REPL中没有失败,但我有点认为这里的补丁不是真正的原因。
0
_由mfikes发表的评论:

下面是我的执行方法


clojure -Sdeps '{:paths ["src/test/cljs" "src/main/clojure"] :deps {org.clojure/clojurescript {:git/url "https://github.com/clojure/clojurescript.git :sha "3a0c07477ae781bf521bdc2b074ed7b783bb93f3"}}}' -m cljs.main -d out -re node src/test/cljs/cljs/core/async/test_runner.cljs


输出为


$ clojure -Sdeps '{:paths ["src/test/cljs" "src/main/clojure"] :deps {org.clojure/clojurescript {:git/url "https://github.com/clojure/clojurescript.git :sha "3a0c07477ae781bf521bdc2b074ed7b783bb93f3"}}}' -m cljs.main -d out -re node src/test/cljs/cljs/core/async/test_runner.cljs

测试 cljs.core.async.pipeline-test

测试 cljs.core.async.buffer-tests

测试 cljs.core.async.timers-test

测试 cljs.core.async.tests
错误:断言失败:这个异常是预期的
false
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3318:19
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3355:51
    在 cljs$core$async$tests$state_machine__18881__auto____1 (/Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3376:4)
    在 cljs$core$async$tests$state_machine__18881__auto__ (/Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3392:62)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/ioc_helpers.js:96:74)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/ioc_helpers.js:99:63)
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3407:67
    在 Immediate.cljs$core$async$impl$dispatch$process_messages (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/dispatch.js:20:9)
    在 processImmediate (internal/timers.js:443:21)
    在 process.topLevelDomainCallback (domain.js:136:23)
错误:断言失败:这个异常是预期的
false
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3923:19
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3961:51
    在 cljs$core$async$tests$state_machine__18881__auto____1 (/Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3982:4)
    在 cljs$core$async$tests$state_machine__18881__auto__ (/Users/mfikes/Projects/core.async/out/cljs/core/async/tests.js:3998:62)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/ioc_helpers.js:96:74)
    在 cljs$core$async$impl$ioc_helpers$run_state_machine_wrapped (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/ioc_helpers.js:99:63)
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async.js:4290:67
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async.js:609:13
    在 /Users/mfikes/Projects/core.async/out/cljs/core/async/impl/channels.js:201:12
    在 Immediate.cljs$core$async$impl$dispatch$process_messages (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/dispatch.js:20:9)

运行了44个测试,包含200个断言。
0次失败,0次错误。
0

评论者:thheller

(链接: ~mfikes): 是的,这就是通过REPL运行事情的意思。您的这种方法在补丁中工作,但补丁中没有工作。然而,无论哪种情况下,运行分离的Node进程都会失败。根据我的理解,您的方法是通过管理的node-repl进程运行代码。

我无法理解为什么您的这种方法能工作,所以我尝试单独运行事情,这样我就可以使用 {{node --inspect-brk out/main.js}} 运行进程并附加调试器。但是,由于它总是以这种方式失败,因此我认为我的补丁实际上 并非问题所在。调试像这样的异步代码很难……

0

评论者:mfikes

(链接: ~thheller) 可能只在REPL中工作,因为CLJS-2780中存在延迟Node关闭代码。

0

评论者:thheller

我对 {{node}} 的理解是,任何未捕获的异常都应该导致节点进程(链接: https://node.org.cn/api/process.html#process_event_uncaughtexception 文本:退出)。这似乎在 REPL 中被阻止了,因为 node-repl.js 代码使用已弃用的 "domain" 包(顺便提一下)来(链接: https://github.com/clojure/clojurescript/blob/59997385d85e7e1af1559d599eb51fdb1d7e93b1/src/main/clojure/cljs/repl/node_repl.js#L50 文本:捕获)此错误从而防止退出。

我不明白为什么我的补丁不能工作。

在你的堆栈跟踪中,它从 domain.js 开始,而在我的情况中则不是。由于负责这部分代码的不是 CLJS 编译后的代码,所以实际上不应该有任何不同,我无法解释原因。

`
;; 没有补丁

at Immediate.cljs$core$async$impl$dispatch$process_messages (/Users/mfikes/Projects/core.async/out/cljs/core/async/impl/dispatch.js:20:9)
at processImmediate (internal/timers.js:443:21)
at process.topLevelDomainCallback (domain.js:136:23)

;; 有补丁

at Immediate.cljs$core$async$impl$dispatch$process_messages (/mnt/c/Users/thheller/code/oss/core.async/out/cljs/core/async/impl/dispatch.cljs:18:7)
at runCallback (timers.js:705:18)
at tryOnImmediate (timers.js:676:5)

`

无论如何,这表明补丁实际上并不负责失败,因为即使在没有那个 REPL 错误陷阱的情况下运行,它也会失败。

0

评论者:mfikes

如果你更新 {{core.async}} 的 {{project.clj}} 依赖关系

  • clojure 1.10.0
  • lein-cljsbuild 1.1.7

然后按照 {{core.async}} README 中描述的方式运行单元测试(涉及到在浏览器中运行它们),它们使用 ClojureScript 1.10.520 通过测试,但使用带有 CLJS-3077.patch 编译的 ClojureScript master 永远不完成(显示通过 / 失败测试的总数)。

0

评论者:thheller

谢谢 Mike。我终于搞明白了……该逻辑假设所有循环外的 let 绑定都不需要捕获。然而,逻辑假设很容易识别出你是否真的在循环中,它通过检测第一个循环绑定来做这件事。它没有考虑到没有绑定的循环……

`
(defn foo [a b]
(let [x ...] ;; 无捕获

(loop [] ;; sneaky
  (let [y ...]  ;; y needs to be captured but wasn't
    (side-effect (fn [] (use x y)))
    (recur))))

`

0

评论者:thheller

新的补丁应该更可靠(并且可以通过 core.async 测试)。我还添加了一些确实有点脏的测试,但我无法想出一个更干净的方式来测试这个。

0

评论者:mfikes

CLJS-3077-2.patch 通过CI和Canary测试(/)
(由于生成的代码更改,预期的 {{cljs-oops}} 故障。)

0

评论者:mfikes

将CLJS-3077-2.patch添加到补丁提案(i)

0

评论者:mfikes

CLJS-3077-2.patch不再适用。

0
参考: https://clojure.atlassian.net/browse/CLJS-3077 (由thheller报告)
...