-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathcljs_SLASH_js.cljs
1351 lines (1241 loc) · 58.1 KB
/
cljs_SLASH_js.cljs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; Copyright (c) Rich Hickey. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
(ns cljs.js
(:refer-clojure :exclude [require])
(:require-macros [cljs.js :refer [dump-core]]
[cljs.env.macros :as env])
(:require [clojure.string :as string]
[clojure.walk :as walk]
[cljs.env :as env]
[cljs.spec.alpha]
[cljs.analyzer :as ana]
[cljs.compiler :as comp]
[cljs.tools.reader :as r]
[cljs.tools.reader.reader-types :as rt]
[cljs.tagged-literals :as tags]
[goog.crypt.base64 :as base64]
[cljs.source-map :as sm])
(:import [goog.string StringBuffer]))
(js/goog.require "cljs.core$macros")
(defn- debug-prn
[& args]
(binding [*print-fn* *print-err-fn*]
(apply println args)))
(defn ns->relpath
"Given a namespace as a symbol return the relative path sans extension"
[ns-sym]
(string/replace (ana/munge-path ns-sym) \. \/))
(defn file->ns
[file]
(let [lib-name (subs (string/replace file "/" ".")
0 (- (count file) 5))]
(symbol (demunge lib-name))))
(defn- drop-macros-suffix
[ns-name]
(when ns-name
(if (string/ends-with? ns-name "$macros")
(subs ns-name 0 (- (count ns-name) 7))
ns-name)))
(defn- elide-macros-suffix
[sym]
(symbol (drop-macros-suffix (namespace sym)) (name sym)))
(defn- resolve-symbol
[sym]
(if (string/starts-with? (str sym) ".")
sym
(elide-macros-suffix (ana/resolve-symbol sym))))
(defn- read [eof rdr]
(binding [*ns* (symbol (drop-macros-suffix (str *ns*)))]
(r/read {:eof eof :read-cond :allow :features #{:cljs}} rdr)))
(defn- atom? [x]
(instance? Atom x))
(defn- valid-name? [x]
(or (nil? x) (symbol? x) (string? x)))
(defn- valid-opts? [x]
(or (nil? x) (map? x)))
(defonce
^{:doc "Each runtime environment provides a different way to load a library.
Whatever function *load-fn* is bound to will be passed two arguments - a
map and a callback function: The map will have the following keys:
:name - the name of the library (a symbol)
:macros - modifier signaling a macros namespace load
:path - munged relative library path (a string)
It is up to the implementor to correctly resolve the corresponding .cljs,
.cljc, or .js resource (the order must be respected). If :macros is true
resolution should only consider .clj or .cljc resources (the order must be
respected). Upon resolution the callback should be invoked with a map
containing the following keys:
:lang - the language, :clj or :js
:source - the source of the library (a string)
:file - optional, the file path, it will be added to AST's :file keyword
(but not in :meta)
:cache - optional, if a :clj namespace has been precompiled to :js, can
give an analysis cache for faster loads.
:source-map - optional, if a :clj namespace has been precompiled to :js, can
give a V3 source map JSON
If the resource could not be resolved, the callback should be invoked with
nil."
:dynamic true}
*load-fn*
(fn [m cb]
(throw (js/Error. "No *load-fn* set"))))
(defonce
^{:doc "Each runtime environment provides various ways to eval JavaScript
source. Whatever function *eval-fn* is bound to will be passed a map
containing the following keys:
:source - the source of the library (string)
:name - used to unique identify the script (symbol)
:cache - if the source was originally ClojureScript, will be given the
analysis cache.
The result of evaluation should be the return value."
:dynamic true}
*eval-fn*
(fn [m]
(throw (js/Error. "No *eval-fn* set"))))
(defn js-eval
"A default JavaScript evaluation function."
[{:keys [source] :as resource}]
(js/eval source))
(defn- wrap-error [ex]
{:error ex})
(defn empty-state
"Construct an empty compiler state. Required to invoke analyze, compile,
eval and eval-str."
([]
(doto (env/default-compiler-env)
(swap!
(fn [state]
(-> state
(assoc-in [::ana/namespaces 'cljs.core] (dump-core)))))))
([init]
(doto (empty-state) (swap! init))))
(defn load-analysis-cache! [state ns cache]
(swap! state assoc-in [::ana/namespaces ns] cache))
(defn load-source-map! [state ns sm-json]
(let [sm (sm/decode (.parse js/JSON sm-json))]
(swap! state assoc-in [:source-maps ns] sm)))
(defn- sm-data []
(atom
{:source-map (sorted-map)
:gen-col 0
:gen-line 0}))
(defn- prefix [s pre]
(str pre s))
(defn- append-source-map
[state name source sb sm-data {:keys [output-dir asset-path] :as opts}]
(let [t (.valueOf (js/Date.))
smn (if name
(string/replace (munge (str name)) "." "/")
(str "cljs-" t))
ts (.valueOf (js/Date.))
out (or output-dir asset-path)
src (cond-> (str smn ".cljs?rel=" ts)
out (prefix (str out "/")))
file (cond-> (str smn ".js?rel=" ts)
out (prefix (str out "/")))
json (sm/encode {src (:source-map sm-data)}
{:lines (+ (:gen-line sm-data) 3)
:file file :sources-content [source]})]
(when (:verbose opts) (debug-prn json))
(swap! state assoc-in
[:source-maps name] (sm/invert-reverse-map (:source-map sm-data)))
(.append sb
(str "\n//# sourceURL=" file
"\n//# sourceMappingURL=data:application/json;base64,"
(-> (js/encodeURIComponent json)
(string/replace #"%([0-9A-F]{2})" (fn [[_ match]]
(.fromCharCode js/String (str "0x" match))))
(base64/encodeString))))))
(defn- current-alias-map
[]
(->> (merge (get-in @env/*compiler* [::ana/namespaces ana/*cljs-ns* :requires])
(get-in @env/*compiler* [::ana/namespaces ana/*cljs-ns* :require-macros]))
(remove (fn [[k v]] (symbol-identical? k v)))
(into {})))
;; -----------------------------------------------------------------------------
;; Analyze
(declare eval-str*)
(def *loaded* (atom #{}))
(defn- run-async!
"Like cljs.core/run!, but for an async procedure, and with the
ability to break prior to processing the entire collection.
Chains successive calls to the supplied procedure for items in
the collection. The procedure should accept an item from the
collection and a callback of one argument. If the break? predicate,
when applied to the procedure callback value, yields a truthy
result, terminates early calling the supplied cb with the callback
value. Otherwise, when complete, calls cb with nil."
[proc coll break? cb]
(if (seq coll)
(proc (first coll)
(fn [res]
(if (break? res)
(cb res)
(run-async! proc (rest coll) break? cb))))
(cb nil)))
(declare require)
(defn- process-deps
[bound-vars names opts cb]
(run-async! (fn [name cb]
(require bound-vars name nil opts cb))
names
:error
cb))
(defn- process-macros-deps
[bound-vars cache opts cb]
(process-deps bound-vars
(distinct (vals (:require-macros cache)))
(-> opts
(assoc :macros-ns true)
(dissoc :emit-constants :optimize-constants))
cb))
(defn- process-libs-deps
[bound-vars cache opts cb]
(process-deps bound-vars
(distinct (concat (vals (:requires cache)) (vals (:imports cache))))
(dissoc opts :macros-ns)
cb))
(defn- pre-file-side-effects
[st name file opts]
(when (:verbose opts)
(debug-prn "Pre-file side-effects" file))
;; In case any constants are defined in the namespace, flush any analysis metadata
;; so that the constants can be defined wihtout triggering re-defined errors.
(when (and (get-in @st [::ana/namespaces name :defs])
(not ('#{cljs.core cljs.core$macros} name)))
(swap! st update ::ana/namespaces dissoc name)))
(defn- post-file-side-effects
[file opts]
(when (:verbose opts)
(debug-prn "Post-file side-effects" file))
;; Note, we don't (set! *unchecked-arrays* false) here, as that would interpreted
;; an intrinsic affecting the compilation of this file, emitting a no-op. We bypass this
;; and emit our own runtime assignment code.
(js* "cljs.core._STAR_unchecked_arrays_STAR_ = false;"))
(defn require
([name cb]
(require name nil cb))
([name opts cb]
(require nil name opts cb))
([bound-vars name opts cb]
(require bound-vars name nil opts cb))
([bound-vars name reload opts cb]
(let [bound-vars (merge
{:*compiler* (env/default-compiler-env)
:*data-readers* tags/*cljs-data-readers*
:*load-macros* (:load-macros opts true)
:*analyze-deps* (:analyze-deps opts true)
:*load-fn* (or (:load opts) *load-fn*)
:*eval-fn* (or (:eval opts) *eval-fn*)}
bound-vars)
aname (cond-> name (:macros-ns opts) ana/macro-ns-name)]
(when (= :reload reload)
(swap! *loaded* disj aname))
(when (= :reload-all reload)
(reset! *loaded* #{}))
(when (:verbose opts)
(debug-prn (str "Loading " name (when (:macros-ns opts) " macros") " namespace")))
(if-not (contains? @*loaded* aname)
(let [env (:*env* bound-vars)]
(try
((:*load-fn* bound-vars)
{:name name
:macros (:macros-ns opts)
:path (ns->relpath name)}
(fn [resource]
(assert (or (map? resource) (nil? resource))
"*load-fn* may only return a map or nil")
(if resource
(let [{:keys [lang source cache source-map file]} resource]
(condp keyword-identical? lang
:clj (do
(pre-file-side-effects (:*compiler* bound-vars) aname file opts)
(eval-str* bound-vars source name (assoc opts :cljs-file file)
(fn [res]
(post-file-side-effects file opts)
(if (:error res)
(cb res)
(do
(swap! *loaded* conj aname)
(cb {:value true}))))))
:js (process-macros-deps bound-vars cache opts
(fn [res]
(if (:error res)
(cb res)
(process-libs-deps bound-vars cache opts
(fn [res]
(if (:error res)
(cb res)
(let [res (try
((:*eval-fn* bound-vars) resource)
(when cache
(load-analysis-cache!
(:*compiler* bound-vars) aname cache)
(ana/register-specs cache))
(when source-map
(load-source-map!
(:*compiler* bound-vars) aname source-map))
(catch :default cause
(wrap-error
(ana/error env
(str "Could not require " name) cause))))]
(if (:error res)
(cb res)
(do
(swap! *loaded* conj aname)
(cb {:value true}))))))))))
(cb (wrap-error
(ana/error env
(str "Invalid :lang specified " lang ", only :clj or :js allowed"))))))
(cb (wrap-error
(ana/error env
(ana/error-message (if (:macros-ns opts)
:undeclared-macros-ns
:undeclared-ns)
{:ns-sym name :js-provide (cljs.core/name name)})))))))
(catch :default cause
(cb (wrap-error
(ana/error env
(str "Could not require " name) cause))))))
(cb {:value true})))))
(defn- patch-alias-map
[compiler in from to]
(let [patch (fn [k add-if-present?]
(swap! compiler update-in [::ana/namespaces in k]
(fn [m]
(let [replaced (walk/postwalk-replace {from to} m)]
(if (and add-if-present?
(some #{to} (vals replaced)))
(assoc replaced from to)
replaced)))))
patch-renames (fn [k]
(swap! compiler update-in [::ana/namespaces in k]
(fn [m]
(when m
(reduce (fn [acc [renamed qualified-sym :as entry]]
(if (= (str from) (namespace qualified-sym))
(assoc acc renamed (symbol (str to) (name qualified-sym)))
(merge acc entry)))
{} m)))))]
(patch :requires true)
(patch :require-macros true)
(patch :uses false)
(patch :use-macros false)
(patch-renames :renames)
(patch-renames :rename-macros)))
(defn- self-require? [deps opts]
(and (true? (:def-emits-var opts)) (some #{ana/*cljs-ns*} deps)))
(defn- load-deps
([bound-vars ana-env lib deps cb]
(load-deps bound-vars ana-env lib deps nil nil cb))
([bound-vars ana-env lib deps reload opts cb]
(when (:verbose opts)
(debug-prn "Loading dependencies for" lib))
(binding [ana/*cljs-dep-set* (let [lib (if (self-require? deps opts)
'cljs.user
lib)]
(vary-meta (conj (:*cljs-dep-set* bound-vars) lib)
update-in [:dep-path] conj lib))]
(let [bound-vars (assoc bound-vars :*cljs-dep-set* ana/*cljs-dep-set*)]
(if-not (every? #(not (contains? ana/*cljs-dep-set* %)) deps)
(cb (wrap-error
(ana/error ana-env
(str "Circular dependency detected "
(apply str
(interpose " -> "
(conj (-> ana/*cljs-dep-set* meta :dep-path)
(some ana/*cljs-dep-set* deps))))))))
(if (seq deps)
(let [dep (first deps)
opts' (-> opts
(dissoc :context)
(dissoc :def-emits-var)
(dissoc :ns))]
(require bound-vars dep reload opts'
(fn [res]
(when (:verbose opts)
(debug-prn "Loading result:" res))
(if-not (:error res)
(load-deps bound-vars ana-env lib (next deps) nil opts cb)
(if-let [cljs-dep (let [cljs-ns (ana/clj-ns->cljs-ns dep)]
(get {dep nil} cljs-ns cljs-ns))]
(require bound-vars cljs-dep opts'
(fn [res]
(if (:error res)
(cb res)
(do
(patch-alias-map (:*compiler* bound-vars) lib dep cljs-dep)
(load-deps bound-vars ana-env lib (next deps) nil opts
(fn [res]
(if (:error res)
(cb res)
(cb (update res :aliased-loads assoc dep cljs-dep)))))))))
(cb res))))))
(cb {:value nil})))))))
(declare analyze-str*)
(defn- analyze-deps
([bound-vars ana-env lib deps cb]
(analyze-deps bound-vars ana-env lib deps nil cb))
([bound-vars ana-env lib deps opts cb]
(binding [ana/*cljs-dep-set* (vary-meta (conj (:*cljs-dep-set* bound-vars) lib)
update-in [:dep-path] conj lib)]
(let [compiler @(:*compiler* bound-vars)
bound-vars (assoc bound-vars :*cljs-dep-set* ana/*cljs-dep-set*)]
(if-not (every? #(not (contains? ana/*cljs-dep-set* %)) deps)
(cb (wrap-error
(ana/error ana-env
(str "Circular dependency detected "
(apply str
(interpose " -> "
(conj (-> ana/*cljs-dep-set* meta :dep-path)
(some ana/*cljs-dep-set* deps))))))))
(if (seq deps)
(let [dep (first deps)]
(try
((:*load-fn* bound-vars) {:name dep :path (ns->relpath dep)}
(fn [resource]
(assert (or (map? resource) (nil? resource))
"*load-fn* may only return a map or nil")
(if-not resource
(if-let [cljs-dep (let [cljs-ns (ana/clj-ns->cljs-ns dep)]
(get {dep nil} cljs-ns cljs-ns))]
(do
(patch-alias-map (:*compiler* bound-vars) lib dep cljs-dep)
(analyze-deps bound-vars ana-env lib (cons cljs-dep (next deps)) opts
(fn [res]
(if (:error res)
(cb res)
(cb (update res :aliased-loads assoc dep cljs-dep))))))
(cb (wrap-error
(ana/error ana-env
(ana/error-message :undeclared-ns
{:ns-sym dep :js-provide (name dep)})))))
(let [{:keys [name lang source file]} resource]
(condp keyword-identical? lang
:clj (do
(pre-file-side-effects (:*compiler* bound-vars) name file opts)
(analyze-str* bound-vars source name (assoc opts :cljs-file file)
(fn [res]
(post-file-side-effects file opts)
(if-not (:error res)
(analyze-deps bound-vars ana-env lib (next deps) opts cb)
(cb res)))))
:js (analyze-deps bound-vars ana-env lib (next deps) opts cb)
(wrap-error
(ana/error ana-env
(str "Invalid :lang specified " lang ", only :clj or :js allowed"))))))))
(catch :default cause
(cb (wrap-error
(ana/error ana-env
(str "Could not analyze dep " dep) cause))))))
(cb {:value nil})))))))
(defn- load-macros [bound-vars k macros lib reload reloads opts cb]
(if (seq macros)
(let [nsym (first (vals macros))
k (or (reload k)
(get-in reloads [k nsym])
(and (= nsym name) (:*reload-macros* bound-vars) :reload)
nil)
opts' (-> opts
(assoc :macros-ns true)
(dissoc :context)
(dissoc :def-emits-var)
(dissoc :ns)
(dissoc :emit-constants :optimize-constants))]
(require bound-vars nsym k opts'
(fn [res]
(if-not (:error res)
(load-macros bound-vars k (next macros) lib reload reloads opts cb)
(if-let [cljs-dep (let [cljs-ns (ana/clj-ns->cljs-ns nsym)]
(get {nsym nil} cljs-ns cljs-ns))]
(require bound-vars cljs-dep k opts'
(fn [res]
(if (:error res)
(cb res)
(do
(patch-alias-map (:*compiler* bound-vars) lib nsym cljs-dep)
(load-macros bound-vars k (next macros) lib reload reloads opts
(fn [res]
(if (:error res)
(cb res)
(cb (update res :aliased-loads assoc nsym cljs-dep)))))))))
(cb res))))))
(cb {:value nil})))
(defn- rewrite-ns-ast
([ast smap]
(rewrite-ns-ast ast smap false))
([ast smap macros?]
(let [[uk rk renk] (if macros?
[:use-macros :require-macros :rename-macros]
[:uses :requires :renames])
rewrite-renames (fn [m]
(when m
(reduce (fn [acc [renamed qualified-sym :as entry]]
(let [from (symbol (namespace qualified-sym))
to (get smap from)]
(if (some? to)
(assoc acc renamed (symbol (str to) (name qualified-sym)))
(merge acc entry))))
{} m)))
rewrite-deps (fn [deps]
(into []
(map (fn [dep]
(if-let [new-dep (get smap dep)]
new-dep
dep)))
deps))]
(-> ast
(update uk #(walk/postwalk-replace smap %))
(update rk #(merge smap (walk/postwalk-replace smap %)))
(update renk rewrite-renames)
(update :deps rewrite-deps)))))
(defn- check-macro-autoload-inferring-missing
[{:keys [requires name] :as ast} cenv]
(let [namespaces (-> @cenv ::ana/namespaces)
missing-require-macros (into {}
(filter (fn [[_ full-ns]]
(let [{:keys [use-macros require-macros]} (get namespaces full-ns)]
(or (some #{full-ns} (vals use-macros))
(some #{full-ns} (vals require-macros))))))
requires)
ast' (update-in ast [:require-macros] merge missing-require-macros)]
(swap! cenv update-in [::ana/namespaces name :require-macros] merge missing-require-macros)
ast'))
(defn- ns-side-effects
([bound-vars ana-env ast opts cb]
(ns-side-effects false bound-vars ana-env ast opts cb))
([load bound-vars ana-env {:keys [op] :as ast} opts cb]
(when (:verbose opts)
(debug-prn "Namespace side effects for" (:name ast)))
(if (#{:ns :ns*} op)
(letfn [(check-uses-and-load-macros [res rewritten-ast]
(let [env (:*compiler* bound-vars)
{:keys [uses use-macros reload reloads name]} rewritten-ast]
(if (:error res)
(cb res)
(if (:*load-macros* bound-vars)
(do
(when (:verbose opts) (debug-prn "Processing :use-macros for" name))
(load-macros bound-vars :use-macros use-macros name reload reloads opts
(fn [res]
(if (:error res)
(cb res)
(let [{:keys [require-macros] :as rewritten-ast} (rewrite-ns-ast rewritten-ast (:aliased-loads res) true)]
(when (:verbose opts) (debug-prn "Processing :require-macros for" (:name ast)))
(load-macros bound-vars :require-macros require-macros name reload reloads opts
(fn [res']
(if (:error res')
(cb res')
(let [{:keys [use-macros] :as rewritten-ast} (rewrite-ns-ast rewritten-ast (:aliased-loads res) true)
res' (try
(when (seq use-macros)
(when (:verbose opts) (debug-prn "Checking :use-macros for" (:name ast)))
(binding [ana/*analyze-deps* (:*analyze-deps* bound-vars)
env/*compiler* (:*compiler* bound-vars)]
(ana/check-use-macros use-macros env)))
{:value nil}
(catch :default cause
(wrap-error
(ana/error ana-env
(str "Could not parse ns form " (:name ast)) cause))))]
(if (:error res')
(cb res')
(try
(binding [ana/*analyze-deps* (:*analyze-deps* bound-vars)
env/*compiler* (:*compiler* bound-vars)]
(let [ast' (-> rewritten-ast
(ana/check-use-macros-inferring-missing env)
(ana/check-rename-macros-inferring-missing env)
(check-macro-autoload-inferring-missing env))]
(cb {:value ast'})))
(catch :default cause
(cb (wrap-error
(ana/error ana-env
(str "Could not parse ns form " (:name ast)) cause)))))))))))))))
(try
(when (:verbose opts) (debug-prn "Checking uses"))
(ana/check-uses
(when (and (:*analyze-deps* bound-vars) (seq uses))
(ana/missing-uses uses env))
env)
(cb {:value ast})
(catch :default cause
(cb (wrap-error
(ana/error ana-env
(str "Could not parse ns form " (:name ast)) cause)))))))))]
(cond
(and load (seq (:deps ast)))
(let [{:keys [reload name deps]} ast]
(load-deps bound-vars ana-env name deps (or (:require reload) (:use reload)) (dissoc opts :macros-ns)
#(check-uses-and-load-macros % (rewrite-ns-ast ast (:aliased-loads %)))))
(and (not load) (:*analyze-deps* bound-vars) (seq (:deps ast)))
(analyze-deps bound-vars ana-env (:name ast) (:deps ast) (dissoc opts :macros-ns)
#(check-uses-and-load-macros % (rewrite-ns-ast ast (:aliased-loads %))))
:else
(check-uses-and-load-macros {:value nil} ast)))
(cb {:value ast}))))
(defn- node-side-effects
[bound-vars sb deps ns-name emit-nil-result?]
(doseq [dep deps]
(.append sb
(with-out-str
(comp/emitln (munge ns-name) "."
(ana/munge-node-lib dep)
" = require('" dep "');"))))
(when (and (seq deps) emit-nil-result?)
(.append sb "null;")))
(defn- global-exports-side-effects
[bound-vars sb deps ns-name emit-nil-result?]
(let [{:keys [js-dependency-index]} @(:*compiler* bound-vars)]
(doseq [dep deps]
(let [{:keys [global-exports]} (get js-dependency-index (name dep))]
(.append sb
(with-out-str
(comp/emitln (munge ns-name) "."
(ana/munge-global-export dep)
" = goog.global." (get global-exports (symbol dep)) ";")))))
(when (and (seq deps) emit-nil-result?)
(.append sb "null;"))))
(defn- analyze-str* [bound-vars source name opts cb]
(let [rdr (rt/indexing-push-back-reader source 1 name)
eof (js-obj)
aenv (ana/empty-env)
the-ns (or (:ns opts) 'cljs.user)
bound-vars (cond-> (merge bound-vars {:*cljs-ns* the-ns})
(:source-map opts) (assoc :*sm-data* (sm-data)))]
((fn analyze-loop [last-ast ns]
(binding [env/*compiler* (:*compiler* bound-vars)
ana/*cljs-ns* ns
ana/*checked-arrays* (:checked-arrays opts)
ana/*cljs-static-fns* (:static-fns opts)
ana/*fn-invoke-direct* (and (:static-fns opts) (:fn-invoke-direct opts))
*ns* (create-ns ns)
ana/*passes* (:*passes* bound-vars)
r/*alias-map* (current-alias-map)
r/*data-readers* (:*data-readers* bound-vars)
r/resolve-symbol resolve-symbol
comp/*source-map-data* (:*sm-data* bound-vars)
ana/*cljs-file* (:cljs-file opts)]
(let [res (try
{:value (read eof rdr)}
(catch :default cause
(wrap-error
(ana/error aenv
(str "Could not analyze " name) cause))))]
(if (:error res)
(cb res)
(let [form (:value res)]
(if-not (identical? eof form)
(let [aenv (cond-> (assoc aenv :ns (ana/get-namespace ana/*cljs-ns*))
(:context opts) (assoc :context (:context opts))
(:def-emits-var opts) (assoc :def-emits-var true))
res (try
{:value (ana/analyze aenv form nil opts)}
(catch :default cause
(wrap-error
(ana/error aenv
(str "Could not analyze " name) cause))))]
(if (:error res)
(cb res)
(let [ast (:value res)]
(if (#{:ns :ns*} (:op ast))
(ns-side-effects bound-vars aenv ast opts
(fn [res]
(if (:error res)
(cb res)
(analyze-loop ast (:name ast)))))
(recur ast ns)))))
(cb {:value last-ast}))))))) nil the-ns)))
(defn analyze-str
"Analyze ClojureScript source. The compiler state will be populated with
the results of analyzes. The parameters:
state (atom)
the compiler state
source (string)
the ClojureScript source
name (symbol or string)
optional, the name of the source
opts (map)
compilation options.
:eval - eval function to invoke, see *eval-fn*
:load - library resolution function, see *load-fn*
:source-map - set to true to generate inline source map information
:def-emits-var - sets whether def (and derived) forms return either a Var
(if set to true) or the def init value (if false).
Defaults to false.
:checked-arrays - if :warn or :error, checks inferred types and values passed
to aget/aset. Logs for incorrect values if :warn, throws if
:error. Defaults to false.
:static-fns - employ static dispatch to specific function arities in
emitted JavaScript, as opposed to making use of the
`call` construct. Defaults to false.
:fn-invoke-direct - if `true`, does not generate `.call(null...)` calls for
unknown functions, but instead direct invokes via
`f(a0,a1...)`. Defaults to `false`.
:target - use `:nodejs` if targeting Node.js. Takes no other options
at the moment.
:ns - optional, the namespace in which to evaluate the source.
:verbose - optional, emit details from compiler activity. Defaults to
false.
:context - optional, sets the context for the source. Possible values
are `:expr`, `:statement` and `:return`. Defaults to
`:expr`.
cb (function)
callback, will be invoked with a map. If successful the map will contain
a key :value, the actual value is not meaningful. If unsuccessful the
map will contain a key :error with an ex-info instance describing the cause
of failure."
([state source cb]
(analyze-str state source nil cb))
([state source name cb]
(analyze-str state source name nil cb))
([state source name opts cb]
{:pre [(atom? state) (string? source)
(valid-name? name) (valid-opts? opts) (fn? cb)]}
(analyze-str*
{:*compiler* state
:*data-readers* tags/*cljs-data-readers*
:*passes* (or (:passes opts) ana/*passes*)
:*analyze-deps* (:analyze-deps opts true)
:*cljs-dep-set* ana/*cljs-dep-set*
:*load-macros* (:load-macros opts true)
:*load-fn* (or (:load opts) *load-fn*)
:*eval-fn* (or (:eval opts) *eval-fn*)}
source name opts cb)))
;; -----------------------------------------------------------------------------
;; Eval
(defn- eval* [bound-vars form opts cb]
(let [the-ns (or (:ns opts) 'cljs.user)
bound-vars (cond-> (merge bound-vars {:*cljs-ns* the-ns})
(:source-map opts) (assoc :*sm-data* (sm-data)))]
(binding [env/*compiler* (:*compiler* bound-vars)
*eval-fn* (:*eval-fn* bound-vars)
ana/*cljs-ns* (:*cljs-ns* bound-vars)
ana/*checked-arrays* (:checked-arrays opts)
ana/*cljs-static-fns* (:static-fns opts)
ana/*fn-invoke-direct* (and (:static-fns opts) (:fn-invoke-direct opts))
*ns* (create-ns (:*cljs-ns* bound-vars))
r/*alias-map* (current-alias-map)
r/*data-readers* (:*data-readers* bound-vars)
r/resolve-symbol resolve-symbol
comp/*source-map-data* (:*sm-data* bound-vars)]
(let [aenv (ana/empty-env)
aenv (cond-> (assoc aenv :ns (ana/get-namespace ana/*cljs-ns*))
(:context opts) (assoc :context (:context opts))
(:def-emits-var opts) (assoc :def-emits-var true))
res (try
{:value (ana/analyze aenv form nil opts)}
(catch :default cause
(wrap-error
(ana/error aenv
(str "Could not eval " form) cause))))]
(if (:error res)
(cb res)
(let [ast (:value res)
[node-deps ast] (if (keyword-identical? (:target opts) :nodejs)
(let [{node-libs true libs-to-load false} (group-by ana/node-module-dep? (:deps ast))]
[node-libs (assoc ast :deps libs-to-load)])
[nil ast])]
(if (#{:ns :ns*} (:op ast))
(ns-side-effects true bound-vars aenv ast opts
(fn [res]
(if (:error res)
(cb res)
(let [ns-name (:name ast)
sb (StringBuffer.)]
(.append sb
(with-out-str (comp/emitln (str "goog.provide(\"" (comp/munge ns-name) "\");"))))
(when-not (nil? node-deps)
(node-side-effects bound-vars sb node-deps ns-name (:def-emits-var opts)))
(global-exports-side-effects bound-vars sb
(filter ana/dep-has-global-exports? (:deps ast))
ns-name
(:def-emits-var opts))
(cb {:value (*eval-fn* {:source (.toString sb)})})))))
(let [src (with-out-str (comp/emit ast))]
(cb {:value (*eval-fn* {:source src})})))))))))
(defn eval
"Evaluate a single ClojureScript form. The parameters:
state (atom)
the compiler state
form (s-expr)
the ClojureScript source
opts (map)
compilation options.
:eval - eval function to invoke, see *eval-fn*
:load - library resolution function, see *load-fn*
:source-map - set to true to generate inline source map information
:def-emits-var - sets whether def (and derived) forms return either a Var
(if set to true) or the def init value (if false). Default
is false.
:checked-arrays - if :warn or :error, checks inferred types and values passed
to aget/aset. Logs for incorrect values if :warn, throws if
:error. Defaults to false.
:static-fns - employ static dispatch to specific function arities in
emitted JavaScript, as opposed to making use of the
`call` construct. Defaults to false.
:fn-invoke-direct - if `true`, does not generate `.call(null...)` calls for
unknown functions, but instead direct invokes via
`f(a0,a1...)`. Defaults to `false`.
:target - use `:nodejs` if targeting Node.js. Takes no other options
at the moment.
:ns - optional, the namespace in which to evaluate the source.
:verbose - optional, emit details from compiler activity. Defaults to
false.
:context - optional, sets the context for the source. Possible values
are `:expr`, `:statement` and `:return`. Defaults to
`:expr`.
cb (function)
callback, will be invoked with a map. If successful the map will contain
a key :value with the result of evalution. If unsuccessful the map will
contain a key :error with an ex-info instance describing the cause of
failure."
([state form cb]
(eval state form nil cb))
([state form opts cb]
(eval*
{:*compiler* state
:*data-readers* tags/*cljs-data-readers*
:*analyze-deps* (:analyze-deps opts true)
:*cljs-dep-set* ana/*cljs-dep-set*
:*load-macros* (:load-macros opts true)
:*load-fn* (or (:load opts) *load-fn*)
:*eval-fn* (or (:eval opts) *eval-fn*)}
form opts cb)))
;; -----------------------------------------------------------------------------
;; Compile
(defn- compile-str* [bound-vars source name opts cb]
(let [rdr (rt/indexing-push-back-reader source 1 name)
eof (js-obj)
aenv (ana/empty-env)
sb (StringBuffer.)
the-ns (or (:ns opts) 'cljs.user)
bound-vars (cond-> (merge bound-vars {:*cljs-ns* the-ns})
(:source-map opts) (assoc :*sm-data* (sm-data)))]
((fn compile-loop [ns]
(binding [env/*compiler* (:*compiler* bound-vars)
*eval-fn* (:*eval-fn* bound-vars)
ana/*cljs-ns* ns
ana/*checked-arrays* (:checked-arrays opts)
ana/*cljs-static-fns* (:static-fns opts)
ana/*fn-invoke-direct* (and (:static-fns opts) (:fn-invoke-direct opts))
*ns* (create-ns ns)
r/*alias-map* (current-alias-map)
r/*data-readers* (:*data-readers* bound-vars)
r/resolve-symbol resolve-symbol
comp/*source-map-data* (:*sm-data* bound-vars)]
(let [res (try
{:value (read eof rdr)}
(catch :default cause
(wrap-error
(ana/error aenv
(str "Could not compile " name) cause))))]
(if (:error res)
(cb res)
(let [form (:value res)]
(if-not (identical? eof form)
(let [aenv (cond-> (assoc aenv :ns (ana/get-namespace ana/*cljs-ns*))
(:context opts) (assoc :context (:context opts))
(:def-emits-var opts) (assoc :def-emits-var true))
res (try
{:value (ana/analyze aenv form nil opts)}
(catch :default cause
(wrap-error
(ana/error aenv
(str "Could not compile " name) cause))))]
(if (:error res)
(cb res)
(let [ast (:value res)
[node-deps ast] (if (keyword-identical? (:target opts) :nodejs)
(let [{node-libs true libs-to-load false} (group-by ana/node-module-dep? (:deps ast))]
[node-libs (assoc ast :deps libs-to-load)])
[nil ast])]
(if (#{:ns :ns*} (:op ast))
(ns-side-effects bound-vars aenv ast opts
(fn [res]
(if (:error res)
(cb res)
(let [ns-name (:name ast)]
(.append sb (with-out-str (comp/emit (:value res))))
(when-not (nil? node-deps)
(node-side-effects bound-vars sb node-deps ns-name (:def-emits-var opts)))
(compile-loop (:name ast))))))
(do
(.append sb (with-out-str (comp/emit ast)))
(recur ns))))))
(do
(when (:source-map opts)
(append-source-map env/*compiler*
name source sb @comp/*source-map-data* opts))
(cb {:value (.toString sb)})))))))) the-ns)))
(defn compile-str
"Compile ClojureScript source into JavaScript. The parameters:
state (atom)
the compiler state
source (string)
the ClojureScript source
name (symbol or string)
optional, the name of the source
opts (map)
compilation options.
:eval - eval function to invoke, see *eval-fn*
:load - library resolution function, see *load-fn*
:source-map - set to true to generate inline source map information
:def-emits-var - sets whether def (and derived) forms return either a Var
(if set to true) or the def init value (if false). Default
is false.
:checked-arrays - if :warn or :error, checks inferred types and values passed
to aget/aset. Logs for incorrect values if :warn, throws if
:error. Defaults to false.
:static-fns - employ static dispatch to specific function arities in
emitted JavaScript, as opposed to making use of the
`call` construct. Defaults to false.
:fn-invoke-direct - if `true`, does not generate `.call(null...)` calls for
unknown functions, but instead direct invokes via
`f(a0,a1...)`. Defaults to `false`.
:target - use `:nodejs` if targeting Node.js. Takes no other options
at the moment.
:ns - optional, the namespace in which to evaluate the source.
:verbose - optional, emit details from compiler activity. Defaults to
false.
:context - optional, sets the context for the source. Possible values
are `:expr`, `:statement` and `:return`. Defaults to
`:expr`.
cb (function)
callback, will be invoked with a map. If successful the map will contain
a key :value with the compilation result (string). If unsuccessful the map
will contain a key :error with an ex-info instance describing the cause
of failure."
([state source cb]
(compile-str state source nil cb))
([state source name cb]
(compile-str state source name nil cb))
([state source name opts cb]
{:pre [(atom? state) (string? source)
(valid-name? name) (valid-opts? opts) (fn? cb)]}
(compile-str*