1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/factor/stepA_mal/stepA_mal.factor

156 lines
5.0 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 strings ;
IN: stepA_mal
SYMBOL: repl-env
DEFER: EVAL
: eval-ast ( ast env -- ast )
{
{ [ over malsymbol? ] [ env-get ] }
{ [ over sequence? ] [ '[ _ EVAL ] map ] }
{ [ over assoc? ] [ '[ [ _ EVAL ] bi@ ] assoc-map ] }
[ drop ]
} cond ;
:: 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> ;
:: eval-try* ( params env -- maltype )
[ params first env EVAL ]
[
params second second env new-env [ env-set ] keep
params second third swap EVAL
] recover ;
: 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 ( 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 ;
: is-pair? ( maltype -- ? )
{ [ sequence? ] [ string? not ] [ empty? not ] } 1&& ;
: quasiquote ( maltype -- maltype )
{
{ [ dup is-pair? not ] [ [ "quote" <malsymbol> ] dip 2array ] }
{ [ "unquote" over first symeq? ] [ second ] }
{ [ dup first { [ is-pair? ] [ first "splice-unquote" swap symeq? ] } 1&& ]
[ [ "concat" <malsymbol> ] dip unclip second swap quasiquote 3array ] }
[ "cons" <malsymbol> swap unclip swap [ quasiquote ] bi@ 3array ]
} cond ;
:: 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 ] }
{ "quasiquote" [ [ second quasiquote ] dip ] }
{ "macroexpand" [ [ second ] dip macro-expand f ] }
{ "try*" [ [ rest ] dip eval-try* 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 ] [ nip ] recover PRINT ;
: REPL ( -- )
"(println (str \"Mal [\" *host-language* \"]\"))" REP drop
[
"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! *host-language* \"factor\")
(def! not (fn* (a) (if a false true)))
(def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \")\")))))
(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)))))))
(def! *gensym-counter* (atom 0))
(def! gensym (fn* [] (symbol (str \"G__\" (swap! *gensym-counter* (fn* [x] (+ 1 x)))))))
(defmacro! or (fn* (& xs) (if (empty? xs) nil (if (= 1 (count xs)) (first xs) (let* (condvar (gensym)) `(let* (~condvar ~(first xs)) (if ~condvar ~condvar (or ~@(rest xs)))))))))
" string-lines harvest [ READ repl-env get EVAL drop ] each
MAIN: main