ludus/janet/interpreter.janet

569 lines
16 KiB
Plaintext
Raw Normal View History

2024-05-15 00:44:54 +00:00
# A tree walk interpreter for ludus
# for repl imports
(try (os/cd "janet") ([_] nil))
(import ./base :as b)
2024-05-15 00:44:54 +00:00
(var interpret nil)
(var match-pattern nil)
2024-05-15 00:44:54 +00:00
(defn- todo [msg] (error (string "not yet implemented: " msg)))
(defn- resolve-name [name ctx]
2024-05-19 23:35:41 +00:00
# (print "resolving " name " in:")
# (pp ctx)
(when (not ctx) (break :^not-found))
(if (has-key? ctx name)
(ctx name)
(resolve-name name (ctx :^parent))))
(defn- match-word [word value ctx]
(def name (word :data))
2024-05-19 23:35:41 +00:00
# (print "matched " (b/show value) " to " name)
2024-05-15 16:33:52 +00:00
(set (ctx name) value)
{:success true :ctx ctx})
2024-05-15 16:33:52 +00:00
(defn- typed [pattern value ctx]
(def [type-ast word] (pattern :data))
(def type (type-ast :data))
(if (= type (b/ludus/type value))
2024-05-15 16:33:52 +00:00
(match-word word value ctx)
{:success false :miss [pattern value]}))
(defn- match-tuple [pattern value ctx]
(when (not (tuple? value))
(break {:success false :miss [pattern value]}))
(def val-len (length value))
(var members (pattern :data))
(def patt-len (length members))
(when (empty? members)
(break (if (empty? value)
{:success true :ctx ctx}
{:success false :miss [pattern value]})))
2024-05-15 16:33:52 +00:00
(var splat nil)
(def splat? (= :splat ((last members) :type)))
(when splat?
(when (< val-len patt-len)
2024-05-18 21:43:21 +00:00
(print "mismatched splatted tuple lengths")
2024-05-15 16:33:52 +00:00
(break {:success false :miss [pattern value]}))
(print "splat!")
(set splat (last members))
(set members (slice members 0 (dec patt-len))))
(when (and (not splat?) (not= val-len patt-len))
(print "mismatched tuple lengths")
(break {:success false :miss [pattern value]}))
(var curr-mem :^nothing)
(var curr-val :^nothing)
(var success true)
(for i 0 (length members)
(set curr-mem (get members i))
(set curr-val (get value i))
(print "in tuple, matching " curr-val " with ")
(pp curr-mem)
(def match? (match-pattern curr-mem curr-val ctx))
(pp match?)
(when (not (match? :success))
(set success false)
(break)))
(when (and splat? (splat :data))
(def rest (array/slice value (length members)))
(match-word (splat :data) rest ctx))
(if success
{:success true :ctx ctx}
{:success false :miss [pattern value]}))
2024-05-18 21:04:23 +00:00
(defn- match-list [pattern value ctx]
(when (not (array? value))
(break {:success false :miss [pattern value]}))
(def val-len (length value))
(var members (pattern :data))
(def patt-len (length members))
(var splat nil)
(def splat? (= :splat ((last members) :type)))
(when splat?
(when (< val-len patt-len)
2024-05-18 21:43:21 +00:00
(print "mismatched splatted list lengths")
2024-05-18 21:04:23 +00:00
(break {:success false :miss [pattern value]}))
(print "splat!")
(set splat (last members))
(set members (slice members 0 (dec patt-len))))
(when (and (not splat?) (not= val-len patt-len))
2024-05-18 21:43:21 +00:00
(print "mismatched list lengths")
2024-05-18 21:04:23 +00:00
(break {:success false :miss [pattern value]}))
(var curr-mem :^nothing)
(var curr-val :^nothing)
(var success true)
(for i 0 (length members)
(set curr-mem (get members i))
(set curr-val (get value i))
2024-05-18 21:43:21 +00:00
(print "in list, matching " curr-val " with ")
2024-05-18 21:04:23 +00:00
(pp curr-mem)
(def match? (match-pattern curr-mem curr-val ctx))
(pp match?)
(when (not (match? :success))
(set success false)
(break)))
(when (and splat? (splat :data))
(def rest (array/slice value (length members)))
(match-word (splat :data) rest ctx))
(if success
{:success true :ctx ctx}
{:success false :miss [pattern value]}))
2024-05-18 21:43:21 +00:00
(defn- match-string [pattern value ctx]
(when (not (string? value))
(break {:success false :miss [pattern value]}))
(def {:compiled compiled :bindings bindings} pattern)
(print "matching " value " with")
(pp (pattern :grammar))
(def matches (peg/match compiled value))
(when (not matches)
(break {:success false :miss [pattern value]}))
(when (not= (length matches) (length bindings))
(error "oops: different number of matches and bindings"))
(for i 0 (length matches)
(set (ctx (bindings i)) (matches i)))
{:success true :ctx ctx})
2024-05-20 00:19:00 +00:00
(defn- match-dict [pattern value ctx]
(when (not (table? value))
(break {:success false :miss [pattern value]}))
(def val-size (length value))
(var members (pattern :data))
(def patt-len (length members))
(when (empty? members)
(break (if (empty? value)
{:success true :ctx ctx}
{:success false :miss [pattern value]})))
(var splat nil)
(def splat? (= :splat ((last members) :type)))
(when splat?
(when (< val-size patt-len)
(print "mismatched splatted dict lengths")
(break {:success false :miss [pattern value]}))
(print "splat!")
(set splat (last members))
(set members (slice members 0 (dec patt-len))))
(when (and (not splat?) (not= val-size patt-len))
(print "mismatched dict lengths")
(break {:success false :miss [pattern value]}))
(var success true)
(def matched-keys @[])
(for i 0 (length members)
(def curr-pair (get members i))
(def [curr-key curr-patt] (curr-pair :data))
(def key (interpret curr-key ctx))
(def curr-val (value key))
(def match? (match-pattern curr-patt curr-val ctx))
(array/push matched-keys key)
(when (not (match? :success))
(set success false)
(break)))
(when (and splat? (splat :data) success)
(def rest (merge value))
(each key matched-keys
(set (rest key) nil))
(match-word (splat :data) rest ctx))
(if success
{:success true :ctx ctx}
{:success false :miss [pattern value]}))
2024-05-15 16:33:52 +00:00
(defn- match-pattern* [pattern value &opt ctx]
(print "in match-pattern, matching " value " with:")
(pp pattern)
(default ctx @{})
(def data (pattern :data))
(case (pattern :type)
# always match
:placeholder {:success true :ctx ctx}
:ignored {:success true :ctx ctx}
2024-05-15 16:33:52 +00:00
:word (match-word pattern value ctx)
# match on equality
:nil {:success (nil? value) :ctx ctx}
:bool {:success (= data value) :ctx ctx}
:number {:success (= data value) :ctx ctx}
:string {:success (= data value) :ctx ctx}
:keyword {:success (= data value) :ctx ctx}
2024-05-15 16:33:52 +00:00
# TODO: lists, dicts
:tuple (match-tuple pattern value ctx)
2024-05-18 21:04:23 +00:00
:list (match-list pattern value ctx)
:dict (match-dict pattern value ctx)
2024-05-18 21:43:21 +00:00
:interpolated (match-string pattern value ctx)
2024-05-18 21:04:23 +00:00
2024-05-15 16:33:52 +00:00
:typed (typed pattern value ctx)
))
(set match-pattern match-pattern*)
(defn- lett [ast ctx]
(def [patt expr] (ast :data))
(def value (interpret expr ctx))
2024-05-15 16:33:52 +00:00
(def match? (match-pattern patt value))
(if (match? :success)
(do
2024-05-15 16:33:52 +00:00
(merge-into ctx (match? :ctx))
value)
(error {:node ast :value value :msg "no match"})))
2024-05-15 00:44:54 +00:00
2024-05-18 21:04:23 +00:00
(defn- matchh [ast ctx]
(def [to-match clauses] (ast :data))
(def value (interpret to-match ctx))
(def len (length clauses))
(when (ast :match) (break ((ast :match) 0 value ctx)))
(defn match-fn [i value ctx]
(when (= len i)
(error {:node ast :value value :msg "no match"}))
(def clause (clauses i))
2024-05-18 21:04:23 +00:00
(def [patt guard expr] clause)
(def match? (match-pattern patt value @{:^parent ctx}))
(when (not (match? :success))
(break (match-fn (inc i) value ctx)))
(def body-ctx (match? :ctx))
(def guard? (if guard
(b/bool (interpret guard body-ctx)) true))
(when (not guard?)
(break (match-fn (inc i) value ctx)))
(interpret expr body-ctx))
(set (ast :match) match-fn)
(match-fn 0 value ctx))
2024-05-18 21:04:23 +00:00
2024-05-15 00:44:54 +00:00
(defn- script [ast ctx]
(def lines (ast :data))
(def last-line (last lines))
(for i 0 (-> lines length dec)
(interpret (lines i) ctx))
(interpret last-line ctx))
2024-05-15 00:44:54 +00:00
(defn- block [ast parent]
(def lines (ast :data))
(def last-line (last lines))
(def ctx @{:^parent parent})
(for i 0 (-> lines length dec)
(interpret (lines i) ctx))
(interpret last-line ctx))
(defn- to_string [ctx] (fn [x]
(b/stringify (interpret x ctx))))
(defn- interpolated [ast ctx]
(def terms (ast :data))
(def interpolations (map (to_string ctx) terms))
(string/join interpolations))
(defn- iff [ast ctx]
(def [condition then else] (ast :data))
(if (b/bool (interpret condition ctx))
(interpret then ctx)
(interpret else ctx)))
# TODO: use a tail call here
(defn- whenn [ast ctx]
(def clauses (ast :data))
(var result :^nothing)
(each clause clauses
(def [lhs rhs] clause)
(when (b/bool (interpret lhs ctx))
(set result (interpret rhs ctx))
(break)))
(when (= result :^nothing)
(error {:node ast :msg "no match in when"}))
result)
(defn- word [ast ctx]
(resolve-name (ast :data) ctx))
(defn- tup [ast ctx]
(def members (ast :data))
(def the-tup @[])
(each member members
(array/push the-tup (interpret member ctx)))
[;the-tup])
(defn- args [ast ctx]
(def members (ast :data))
(def the-args @[])
(each member members
(array/push the-args (interpret member ctx)))
(if (ast :partial)
{:^type :partial :args the-args}
[;the-args]))
(defn- sett [ast ctx]
(def members (ast :data))
(def the-set @{:^type :set})
(each member members
(def value (interpret member ctx))
(set (the-set member) true))
the-set)
(defn- list [ast ctx]
(def members (ast :data))
(def the-list @[])
(each member members
(if (= :splat (member :type))
(do
(def splatted (interpret (member :data) ctx))
(when (not= :array (type splatted))
(error {:node member :msg "cannot splat non-list into list"}))
(array/concat the-list splatted))
(array/push the-list (interpret member ctx))))
the-list)
(defn- dict [ast ctx]
(def members (ast :data))
(def the-dict @{})
(each member members
(if (= :splat (member :type))
(do
(def splatted (interpret (member :data) ctx))
(when (or
(not= :table (type splatted))
(:^type splatted))
(error {:node member :msg "cannot splat non-dict into dict"}))
(merge-into the-dict splatted))
(do
(def [key-ast value-ast] (member :data))
(print "dict key")
(pp key-ast)
(print "dict value")
(pp value-ast)
(def key (interpret key-ast ctx))
(def value (interpret value-ast ctx))
(set (the-dict key) value))))
the-dict)
(defn- ref [ast ctx]
(def {:data value-ast :name name} ast)
(def value (interpret value-ast ctx))
(set (ctx name) @{:^type :ref :^value value :^name name})
value)
(defn- repeatt [ast ctx]
(def [times-ast body] (ast :data))
(def times (interpret times-ast ctx))
(when (not (number? times))
(error {:node times-ast :msg (string "repeat needs a `number` of times; you gave me a " (type times))}))
(repeat times (interpret body ctx)))
(defn- panic [ast ctx]
(def info (interpret (ast :data) ctx))
(error {:node ast :msg info}))
# TODO: add docstrings & pattern docs to fns
# Depends on: good string representation of patterns
# For now, this should be enough to tall the thing
(defn- fnn [ast ctx]
(def {:name name :data clauses} ast)
(def the-fn @{:name name :^type :fn :body clauses :ctx ctx})
(set (ctx name) the-fn))
# TODO
2024-05-19 23:35:41 +00:00
(defn- is_placeholder [x] (= x :_))
(var call-fn nil)
(defn- partial [the-fn partial-args]
(print "calling partially applied function")
(def args (partial-args :args))
(def pos (find-index is_placeholder args))
(def name (string (the-fn :name) "<partial>"))
(fn [missing]
(print "calling function with arg " (b/show missing))
(pp partial-args)
(def full-args (array/slice args))
(set (full-args pos) missing)
(print "all args: " (b/show full-args))
(call-fn the-fn [;full-args])))
(defn- call-fn* [the-fn args]
2024-05-19 22:38:44 +00:00
(print "calling " (b/show the-fn))
(print "with args " (b/show args))
(when (or
(= :function (type the-fn))
(= :cfunction (type the-fn)))
2024-05-19 23:35:41 +00:00
(print "Janet function")
2024-05-19 22:38:44 +00:00
(break (the-fn ;args)))
(def clauses (the-fn :body))
(def len (length clauses))
(when (the-fn :match) (break ((the-fn :match) 0 args)))
(defn match-fn [i args]
(when (= len i)
(error {:node the-fn :value args :msg "no match"}))
(def clause (clauses i))
(def [patt guard expr] clause)
(def match?
(match-pattern patt args @{:^parent (the-fn :ctx)}))
(when (not (match? :success))
(break (match-fn (inc i) args)))
(print "matched!")
(def body-ctx (match? :ctx))
(def guard? (if guard
(b/bool (interpret guard body-ctx)) true))
(print "passed guard")
(when (not guard?)
(break (match-fn (inc i) args)))
(interpret expr body-ctx))
(set (the-fn :match) match-fn)
(match-fn 0 args))
2024-05-19 23:35:41 +00:00
(set call-fn call-fn*)
(defn- apply-synth-term [prev curr]
2024-05-19 23:35:41 +00:00
(print "applying " (b/show prev))
(print "to" (b/show curr))
(def types [(b/ludus/type prev) (b/ludus/type curr)])
(print "typle:")
(pp types)
(match types
[:fn :tuple] (call-fn prev curr)
[:fn :partial] (partial prev curr)
2024-05-19 22:38:44 +00:00
[:function :tuple] (call-fn prev curr)
[:keyword :args] (get (first curr) prev :^nil)
[:dict :keyword] (get prev curr :^nil)
[:nil :keyword] :^nil
[:pkg :keyword] (get prev curr :^nil)
[:pkg :pkg-kw] (get prev curr :^nil)))
(defn- synthetic [ast ctx]
(def terms (ast :data))
(print "interpreting synthetic")
(pp ast)
(pp terms)
(def first-term (first terms))
(def last-term (last terms))
(var prev (interpret first-term ctx))
(print "root term: ")
(pp prev)
(for i 1 (-> terms length dec)
(def curr (interpret (terms i) ctx))
(print "term " i ": " curr)
(set prev (apply-synth-term prev curr)))
(print "done with inner terms, applying last term")
(apply-synth-term prev (interpret last-term ctx)))
2024-05-19 22:38:44 +00:00
(defn- doo [ast ctx]
(def terms (ast :data))
(var prev (interpret (first terms) ctx))
(def last-term (last terms))
(for i 1 (-> terms length dec)
(def curr (interpret (terms i) ctx))
(set prev (call-fn curr [prev])))
(def last-fn (interpret last-term ctx))
(call-fn last-fn [prev]))
2024-05-31 17:29:51 +00:00
# TODO for Computer Class
2024-05-19 20:18:52 +00:00
(defn- pkg [ast ctx] (todo "pkgs"))
(defn- loopp [ast ctx] (todo "loops"))
(defn- recur [ast ctx] (todo "recur"))
2024-05-31 17:29:51 +00:00
# TODO for 0.1.0
2024-05-19 23:35:41 +00:00
(defn- testt [ast ctx] (todo "test"))
2024-05-19 20:18:52 +00:00
2024-05-31 17:29:51 +00:00
(defn- ns [ast ctx] (todo "nses"))
(defn- importt [ast ctx] (todo "imports"))
(defn- withh [ast ctx] (todo "with"))
(defn- usee [ast ctx] (todo "use"))
2024-05-15 00:44:54 +00:00
(defn- interpret* [ast ctx]
(print "interpreting node " (ast :type))
2024-05-15 00:44:54 +00:00
(case (ast :type)
2024-05-15 16:33:52 +00:00
# literals
2024-05-18 21:04:23 +00:00
:nil :^nil
2024-05-15 00:44:54 +00:00
:number (ast :data)
:bool (ast :data)
:string (ast :data)
:keyword (ast :data)
:placeholder :_
2024-05-15 16:33:52 +00:00
# collections
:tuple (tup ast ctx)
:args (args ast ctx)
:list (list ast ctx)
:set (sett ast ctx)
:dict (dict ast ctx)
2024-05-15 16:33:52 +00:00
# composite forms
:if (iff ast ctx)
:block (block ast ctx)
:when (whenn ast ctx)
:script (script ast ctx)
:panic (panic ast ctx)
2024-05-19 20:18:52 +00:00
# looping forms
:loop (loopp ast ctx)
:recur (recur ast ctx)
:repeat (repeatt ast ctx)
2024-05-15 16:33:52 +00:00
# named/naming forms
:word (word ast ctx)
:interpolated (interpolated ast ctx)
:ref (ref ast ctx)
2024-05-31 17:29:51 +00:00
:pkg (pkg ast ctx)
2024-05-15 16:33:52 +00:00
# patterned forms
:let (lett ast ctx)
2024-05-18 21:04:23 +00:00
:match (matchh ast ctx)
# functions
:fn (fnn ast ctx)
2024-05-18 21:04:23 +00:00
# synthetic
:synthetic (synthetic ast ctx)
# do
:do (doo ast ctx)
2024-05-15 16:33:52 +00:00
2024-05-19 20:18:52 +00:00
# deferred until after computer class
# :with (withh ast ctx)
# :import (importt ast ctx)
2024-05-31 17:29:51 +00:00
# :ns (ns ast ctx)
# :use (usee ast ctx)
# :test (testt ast ctx)
2024-05-19 20:18:52 +00:00
))
2024-05-15 00:44:54 +00:00
(set interpret interpret*)
# repl
(import ./scanner :as s)
(import ./parser :as p)
(import ./validate :as v)
(var source nil)
2024-05-18 21:04:23 +00:00
(defn- has-errors? [{:errors errors}] (and errors (not (empty? errors))))
2024-05-15 00:44:54 +00:00
(defn run []
(def scanned (s/scan source))
2024-05-18 21:04:23 +00:00
(when (has-errors? scanned) (break (scanned :errors)))
2024-05-15 00:44:54 +00:00
(def parsed (p/parse scanned))
2024-05-18 21:04:23 +00:00
(when (has-errors? parsed) (break (parsed :errors)))
(def validated (v/valid parsed b/ctx))
2024-05-20 00:19:00 +00:00
# (when (has-errors? validated) (break (validated :errors)))
2024-05-19 20:18:52 +00:00
# (def cleaned (get-in parsed [:ast :data 1]))
# (pp cleaned)
(interpret (parsed :ast) @{:^parent b/ctx})
2024-05-18 22:22:49 +00:00
# (try (interpret (parsed :ast) @{})
# ([e] (print "Ludus panicked!: "
# (if (struct? e) (error (e :msg)) (error e)))))
2024-05-15 16:33:52 +00:00
)
2024-05-15 00:44:54 +00:00
(do
(set source `
2024-05-20 00:19:00 +00:00
let #{:a ay, :b (:ok, bee), ...c} = #{:a 1, :b (:ok, 42), :c 3}
2024-05-15 00:44:54 +00:00
`)
(def result (run))
2024-05-20 00:19:00 +00:00
# (b/show result)
2024-05-15 00:44:54 +00:00
)