@@ -341,6 +341,8 @@ present"
341
341
inits)))))
342
342
343
343
(defn default-main
344
+ " Default handler for the --main flag. Will start REPL, invoke -main with the
345
+ supplied arguments."
344
346
[repl-env {:keys [main script args repl-env-options options inits] :as cfg}]
345
347
(let [opts (cond-> options
346
348
(not (:output-dir options))
@@ -432,7 +434,9 @@ present"
432
434
433
435
(defn- main-opt
434
436
" Call the -main function from a namespace with string arguments from
435
- the command line."
437
+ the command line. Can be customized with ::cljs.cli/main fn entry in
438
+ the map returned by cljs.repl/IReplEnvOptions. For default behavior
439
+ see default-main."
436
440
[repl-env [_ ns & args] cfg]
437
441
((::main (repl/repl-options (repl-env )) default-main )
438
442
repl-env (merge cfg {:main ns :args args})))
@@ -448,6 +452,10 @@ present"
448
452
(println (help-str repl-env)))
449
453
450
454
(defn- script-opt
455
+ " If no main option was given (compile, repl, main), handles running in
456
+ 'script' mode. Can be customized with ::cljs.cli/main fn entry in
457
+ the map returned by cljs.repl/IReplEnvOptions. For default behavior see
458
+ default-main."
451
459
[repl-env [path & args] cfg]
452
460
((::main (repl/repl-options (repl-env )) default-main )
453
461
repl-env (merge cfg {:script path :args args})))
@@ -538,38 +546,57 @@ present"
538
546
(serve-opt repl-env args cfg)))))
539
547
540
548
(defn- compile-opt
549
+ " Handle the compile flag. Custom compilation is possible by providing
550
+ :cljs.cli/compile fn in the map returned by cljs.repl/IReplEnvOptions.
551
+ For default behavior see default-compile."
541
552
[repl-env [_ ns & args] cfg]
542
553
((::compile (repl/-repl-options (repl-env )) default-compile )
543
554
repl-env (merge cfg {:args args :ns ns })))
544
555
545
- (defn get-options [commands k]
546
- (if (= :all k)
556
+ (defn get-options
557
+ " Given a commands map and a phase (:init or :main), return all flags
558
+ which can be handled as a set. If phase is :all will return the entire
559
+ flag set (:init + :main)."
560
+ [commands phase]
561
+ (if (= :all phase)
547
562
(into (get-options commands :main ) (get-options commands :init ))
548
- (-> (get commands (keyword (str (name k ) " -dispatch" )))
563
+ (-> (get commands (keyword (str (name phase ) " -dispatch" )))
549
564
keys set)))
550
565
551
- (defn bool-init-options [commands]
566
+ (defn get-flags-set
567
+ " See get-options, this just provides a better name."
568
+ [commands phase]
569
+ (get-options commands phase))
570
+
571
+ (defn bool-init-options
572
+ [commands]
552
573
(reduce
553
574
(fn [ret [flags config]]
554
575
(cond-> ret
555
576
(= " bool" (:arg config))
556
577
(into flags)))
557
578
#{} (:init commands)))
558
579
559
- (defn dispatch? [commands k opt]
560
- (contains? (get-options commands k) opt))
580
+ (defn dispatch?
581
+ " Given a commands map, a phase (:init or :main) and a command line flag,
582
+ return true if the flag has a handler."
583
+ [commands phase opt]
584
+ (contains? (get-flags-set commands phase) opt))
561
585
562
586
(defn add-commands
587
+ " Given commands map (see below), create a commands map with :init-dispatch
588
+ and :main-dispatch keys where short and long arguments are mapped individually
589
+ to their processing fn."
563
590
([commands]
564
591
(add-commands {:main-dispatch nil :init-dispatch nil } commands))
565
592
([commands {:keys [groups main init]}]
566
- (letfn [(merge-dispatch [st k options]
567
- (update-in st [k ]
593
+ (letfn [(merge-dispatch [commands dispatch-key options]
594
+ (update-in commands [dispatch-key ]
568
595
(fn [m]
569
596
(reduce
570
- (fn [ret [cs csm ]]
597
+ (fn [ret [flag-names flag-config ]]
571
598
(merge ret
572
- (zipmap cs (repeat (:fn csm )))))
599
+ (zipmap flag-names (repeat (:fn flag-config )))))
573
600
m options))))]
574
601
(-> commands
575
602
(update-in [:groups ] merge groups)
@@ -578,7 +605,12 @@ present"
578
605
(merge-dispatch :init-dispatch init)
579
606
(merge-dispatch :main-dispatch main)))))
580
607
581
- (def default-commands
608
+ (def ^{:doc " Default commands for ClojureScript REPLs. :groups are to support
609
+ printing organized output for --help. a :main option must come at the end, they
610
+ specify things like running a -main fn, compile, repl, or web serving. Sometimes
611
+ :main options can be used together (i.e. --compile --repl), but this is not
612
+ generic - the combinations must be explicitly supported" }
613
+ default-commands
582
614
(add-commands
583
615
{:groups {::main&compile {:desc " init options"
584
616
:pseudos
@@ -662,9 +694,14 @@ present"
662
694
[" -h" " --help" " -?" ] {:fn help-opt
663
695
:doc " Print this help message and exit" }}}))
664
696
665
- (defn normalize [commands args]
697
+ (defn normalize
698
+ " Given a commands map (flag + value -> option processor fn) and the sequence of
699
+ command line arguments passed to the process, normalize it. Boolean flags don't
700
+ need to specify anything, insert the implied trues and return the normalized
701
+ command line arguments."
702
+ [commands args]
666
703
(letfn [(normalize* [args*]
667
- (if (not (contains? (get-options commands :main ) (first args*)))
704
+ (if (not (contains? (get-flags-set commands :main ) (first args*)))
668
705
(let [pred (complement (bool-init-options commands))
669
706
[pre post] ((juxt #(take-while pred %)
670
707
#(drop-while pred %))
@@ -685,7 +722,11 @@ present"
685
722
args'
686
723
(recur args' (normalize* args'))))))
687
724
688
- (defn merged-commands [repl-env]
725
+ (defn merged-commands
726
+ " Given a repl environment combine the default commands with the custom
727
+ REPL commands. Commands are a mapping from a command line argument
728
+ (flag + value) to a function to handle that particular flag + value."
729
+ [repl-env]
689
730
(add-commands default-commands
690
731
(::commands (repl/repl-options (repl-env )))))
691
732
0 commit comments