Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add encoder and decoder proc #692

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions auto_editor/lang/palet.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ def pop(self) -> None:


def my_eval(env: Env, node: object) -> Any:
def make_trace(sym: Sym) -> str:
return f" at {sym.val} ({sym.lineno}:{sym.column})"
def make_trace(sym: object) -> str:
return f" at {sym.val} ({sym.lineno}:{sym.column})" if type(sym) is Sym else ""

if type(node) is Sym:
val = env.get(node.val)
Expand Down
12 changes: 12 additions & 0 deletions auto_editor/lang/stdenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

from typing import TYPE_CHECKING

import av

from auto_editor.analyze import mut_remove_large, mut_remove_small
from auto_editor.lib.contracts import *
from auto_editor.lib.data_structs import *
Expand Down Expand Up @@ -749,6 +751,13 @@ def attr(env: Env, node: Node) -> Any:
raise MyError("@r: attribute must be an identifier")

base = my_eval(env, node[1])

if hasattr(base, "__pyx_vtable__"):
try:
return getattr(base, node[2].val)
except AttributeError as e:
raise MyError(e)

if type(base) is PaletClass:
if type(name := node[2]) is not Sym:
raise MyError("@r: class attribute must be an identifier")
Expand Down Expand Up @@ -1171,6 +1180,9 @@ def change_file_ext(a, ext) -> str:
"string->vector", lambda s: [Char(c) for c in s], (1, 1), is_str
),
"range->vector": Proc("range->vector", list, (1, 1), is_range),
# av
"encoder": Proc("encoder", lambda x: av.Codec(x, "w"), (1, 1), is_str),
"decoder": Proc("decoder", lambda x: av.Codec(x), (1, 1), is_str),
# reflexion
"var-exists?": Proc("var-exists?", lambda sym: sym.val in env, (1, 1), is_symbol),
"rename": Syntax(syn_rename),
Expand Down
8 changes: 8 additions & 0 deletions docs/doc.pal
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,14 @@
)
)
]
"AV" #[
(proc "encoder" '((value str?) any)
(text "Returns av.Codec("'value", mode=\"w\")")
)
(proc "decoder" '((value str?) any)
(text "Returns av.Codec("'value", mode=\"r\")")
)
]
"Reflection" #[
(syntax "quote" "body"
(text
Expand Down