1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-27 14:52:16 +03:00
mal/impls/factor/step8_macros/step8_macros.factor
Nicolas Boulenguez fbfe6784d2 Change quasiquote algorithm
- Add a `vec` built-in function in step7 so that `quasiquote` does not
  require `apply` from step9.
- Introduce quasiquoteexpand special in order to help debugging step7.
  This may also prepare newcomers to understand step8.
- Add soft tests.
- Do not quote numbers, strings and so on.

Should ideally have been in separate commits:
- elisp: simplify and fix (keyword :k)
- factor: fix copy/paste error in let*/step7, simplify eval-ast.
- guile: improve list/vector types
- haskell: revert evaluation during quasiquote
- logo, make: cosmetic issues
2020-08-11 01:01:56 +02:00

165 lines
4.8 KiB
Factor
Executable File

! Copyright (C) 2015 Jordan Lewis.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors arrays assocs combinators
combinators.short-circuit command-line continuations fry
grouping hashtables io kernel lists locals lib.core lib.env
lib.printer lib.reader lib.types math namespaces quotations
readline sequences splitting vectors ;
IN: step8_macros
SYMBOL: repl-env
DEFER: EVAL
GENERIC# eval-ast 1 ( ast env -- ast )
M: malsymbol eval-ast env-get ;
M: sequence eval-ast '[ _ EVAL ] map ;
M: assoc eval-ast '[ _ EVAL ] assoc-map ;
M: object eval-ast drop ;
:: eval-def! ( key value env -- maltype )
value env EVAL [ key env env-set ] keep ;
:: eval-defmacro! ( key value env -- maltype )
value env EVAL t >>macro? [ key env env-set ] keep ;
: eval-let* ( bindings body env -- maltype env )
[ swap 2 group ] [ new-env ] bi* [
dup '[ first2 _ EVAL swap _ env-set ] each
] keep ;
:: eval-do ( exprs env -- lastform env/f )
exprs [
{ } f
] [
unclip-last [ env eval-ast drop ] dip env
] if-empty ;
:: eval-if ( params env -- maltype env/f )
params first env EVAL { f +nil+ } index not [
params second env
] [
params length 2 > [ params third env ] [ nil f ] if
] if ;
:: eval-fn* ( params env -- maltype )
env params first [ name>> ] map params second <malfn> ;
: args-split ( bindlist -- bindlist restbinding/f )
{ "&" } split1 ?first ;
: make-bindings ( args bindlist restbinding/f -- bindingshash )
swapd [ over length cut [ zip ] dip ] dip
[ swap 2array suffix ] [ drop ] if* >hashtable ;
GENERIC# apply 0 ( args fn -- maltype newenv/f )
M: malfn apply
[ exprs>> nip ]
[ env>> nip ]
[ binds>> args-split make-bindings ] 2tri <malenv> ;
M: callable apply call( x -- y ) f ;
DEFER: quasiquote
: qq_loop ( elt acc -- maltype )
[
{ [ dup array? ]
[ dup length 2 = ]
[ "splice-unquote" over first symeq? ] } 0&& [
second "concat"
] [
quasiquote "cons"
] if
<malsymbol> swap
]
dip 3array ;
: qq_foldr ( xs -- maltype )
dup length 0 = [
drop { }
] [
unclip swap qq_foldr qq_loop
] if ;
GENERIC: quasiquote ( maltype -- maltype )
M: array quasiquote
{ [ dup length 2 = ] [ "unquote" over first symeq? ] } 0&&
[ second ] [ qq_foldr ] if ;
M: vector quasiquote qq_foldr "vec" <malsymbol> swap 2array ;
M: malsymbol quasiquote "quote" <malsymbol> swap 2array ;
M: assoc quasiquote "quote" <malsymbol> swap 2array ;
M: object quasiquote ;
:: macro-expand ( maltype env -- maltype )
maltype dup array? [
dup first { [ malsymbol? ] [ env env-find drop ] } 1&& [
dup { [ malfn? ] [ macro?>> ] } 1&& [
[ rest ] dip apply [ EVAL ] keep macro-expand
] [ drop ] if
] when*
] when ;
: READ ( str -- maltype ) read-str ;
: EVAL ( maltype env -- maltype )
over { [ array? ] [ empty? not ] } 1&& [
[ macro-expand ] keep over array? [
over first dup malsymbol? [ name>> ] when {
{ "def!" [ [ rest first2 ] dip eval-def! f ] }
{ "defmacro!" [ [ rest first2 ] dip eval-defmacro! f ] }
{ "let*" [ [ rest first2 ] dip eval-let* ] }
{ "do" [ [ rest ] dip eval-do ] }
{ "if" [ [ rest ] dip eval-if ] }
{ "fn*" [ [ rest ] dip eval-fn* f ] }
{ "quote" [ drop second f ] }
{ "quasiquoteexpand" [ drop second quasiquote f ] }
{ "quasiquote" [ [ second quasiquote ] dip ] }
{ "macroexpand" [ [ second ] dip macro-expand f ] }
[ drop '[ _ EVAL ] map unclip apply ]
} case [ EVAL ] when*
] [
eval-ast
] if
] [
eval-ast
] if ;
[ apply [ EVAL ] when* ] mal-apply set-global
: PRINT ( maltype -- str ) pr-str ;
: REP ( str -- str )
[
READ repl-env get EVAL PRINT
] [
nip pr-str "Error: " swap append
] recover ;
: REPL ( -- )
[
"user> " readline [
[ REP print flush ] unless-empty
] keep
] loop ;
: main ( -- )
command-line get
[ REPL ]
[ first "(load-file \"" "\")" surround REP drop ]
if-empty ;
f ns clone
[ first repl-env get EVAL ] "eval" pick set-at
command-line get dup empty? [ rest ] unless "*ARGV*" pick set-at
<malenv> repl-env set-global
"
(def! not (fn* (a) (if a false true)))
(def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \"\\nnil)\")))))
(defmacro! cond (fn* (& xs) (if (> (count xs) 0) (list 'if (first xs) (if (> (count xs) 1) (nth xs 1) (throw \"odd number of forms to cond\")) (cons 'cond (rest (rest xs)))))))
" string-lines harvest [ REP drop ] each
MAIN: main