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

欢迎!请查看关于页面以了解更多关于如何使用本站的详细信息。

0
ClojureScript
CLJS 编译器将为在 {{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);
};

//# sourceMappingURL=app.js.map


我尚未进行过基准测试,但相当确信这还是有一定的运行时开销。

导致此问题代码应该仅当实际需要时才生成这些包装器,并且只适用于实际使用过的局部变量。

或者我们可以使用 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的情况,从代码中看,我认为节点进程应该总是崩溃。我在REPL中工作的原因对我来说是个谜,但我可以在使用常规编译和手动运行节点时可靠地重复崩溃。

在运行在CLJS master上的core.async master repo中,我遇到了失败

$ 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运行东西的意思。你的方法在没有修改的情况下可以工作,但在有修改的情况下则不行。然而,将运行节点进程与编译分离时,在两种情况下都会失败。就我所知,你的方法是通过一个管理的节点-repl进程运行代码的。

我无法理解为什么你的方法可以工作,所以我尝试分别运行事物,这样我就可以使用{{node --inspect-brk out/main.js}}运行进程并附加调试器。然而,由于这种方式总是失败,因此我认为我的补丁实际上并不是这个问题的罪魁祸首。调试这样的异步代码是很难的...

0

由:mfikes发表的评论

(链接:~thheller) 有可能只有在REPL中工作时才会工作,这要归功于CLJS-2780中现有的延迟节点关闭代码。

0

评论由:thheller

我对 {{node}} 的理解是任何未捕获的异常都应该导致节点进程(link: https://node.org.cn/api/process.html#process_event_uncaughtexception 文本:退出)。这似乎在 REPL 中被阻止了,因为 node-repl.js 代码使用到已经弃用的 "domain" 包(text:捕获)这个错误并防止退出。

我不明白为什么这个补丁不起作用。

在您的堆栈跟踪中,它从 domain.js 开始,而我的不是。无法找到原因,因为负责这一点的代码甚至不是 CLJS 编译的代码,所以它 really really 应该是相同的。

`
;; 没有补丁

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发表的评论

如果您在 {{project.clj}} 中更新了 {{core.async}} 依赖项

  • clojure 1.10.0
  • lein-cljsbuild 1.1.7

然后按照在 {{core.async}} 的 README 中描述的运行单元测试(这需要在浏览器中运行)它们与 ClojureScript 1.10.520 一起通过,但从未完成(显示通过 / 未通过测试计数)在与 CLJS-3077.patch 一起构建的 master ClojureScript 的情况下。

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 测试)。我还在这个方面添加了一些测试,虽然 candidly 有点脏,但我找不到更干净的方式来测试。

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报告)
...