-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcl2js.lisp
101 lines (90 loc) · 3 KB
/
cl2js.lisp
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
(load (merge-pathnames "cl-portable.lisp" *load-pathname*))
(load (merge-pathnames "cl-yautils.lisp" *load-pathname*))
(import 'cl-portable::argument-vector)
(import 'cl-portable::compile-program)
(import 'cl-portable::quit-with-status)
(import 'cl-yautils::puterr)
(import 'cl-yautils::puts)
; Load Parenscript if it exists.
(handler-case (require "parenscript")
(error ()
(puterr "No Parenscript on the system")
(quit-with-status 1)))
(defun ps2js (f &key (comment nil))
(in-package :ps)
(do
((form (read f nil) (read f nil)))
((not form))
(when comment
(format t "/* ~(~a~) */~%" form))
(format t "~A~%" (ps:ps* form))))
(defun ps2js-read (in &optional verbose)
(if (null in)
(with-open-stream (s *standard-input*)
(if (not (interactive-stream-p s))
(handler-bind
((error
(lambda (e)
(format *error-output* "~A~%" e)
(quit-with-status 1))))
(ps2js s :comment verbose))
(if verbose
(progn
(puterr "-v means verbose mode")
(quit-with-status 1))
(progn
(puterr "No input file")
(quit-with-status 1)))))
(with-open-file (f in)
(handler-bind
((error
(lambda (e)
(format *error-output* "~A~%" e)
(quit-with-status 1))))
(ps2js f :comment verbose)))))
;; Generate newer JavaScript code.
(setq parenscript:*js-target-version* "1.8.5")
;; Metadata.
(defconstant +version+ "0.1.0")
(defconstant +license+ "MIT")
(defconstant +help+
"Usage: cl2js [option] [path/to/source.lisp]
Option:
--version Show version info and exit
--license Show license info and exit
--help Show help info and exit
-h
--verbose Enable verbose mode
-v")
;; Flag for verbose mode.
(defvar *verbose-mode* nil)
(defun main ()
(prog* ((args (argument-vector))
#+(or sbcl ccl) (args (rest (rest args)))
)
(loop
;; Extract an argument.
(let ((arg (pop args)))
;; Show version info and exit.
(cond ((string= arg "--version")
(puts +version+)
(return))
;; Show license info and exit.
((string= arg "--license")
(puts +license+)
(return))
;; Show help info and exit.
((or (string= arg "-h")
(string= arg "--help"))
(puts +help+)
(return))
;; Enable verbose mode.
((or (string= arg "-v")
(string= arg "--verbose"))
(setq *verbose-mode* t))
;; Compile Parenscript into JavaScript.
(t (ps2js-read arg *verbose-mode*)
(return))))))
(finish-output)
(quit-with-status))
#+abcl (main)