nomsu/lib/collections.nom
Bruce Hill 568a44ef19 Reworking some stuff so that functions only allow expressions to be
return values with either an explicit "return" statement or if they're
the only line in the function, and the line is an expression.
2018-01-07 18:45:27 -08:00

194 lines
6.7 KiB
Plaintext

require "lib/metaprogramming.nom"
require "lib/utils.nom"
require "lib/control_flow.nom"
require "lib/operators.nom"
# List/dict functions:
# Indexing
parse [..]
%index st in %list, %index nd in %list, %index rd in %list
%index th in %list, %index in %list
..as: %list -> %index
compile [..]
%index st to last in %list, %index nd to last in %list, %index rd to last in %list
%index th to last in %list
..to: "nomsu.utils.nth_to_last(\(%list as lua), \(%index as lua))"
parse [first in %list, first %list] as: 1 st in %list
parse [last in %list, last %list] as: 1 st to last in %list
# Membership testing
rule [%item is in %list, %list contains %item, %list has %item] =:
for %key = %value in %list:
if (%key == %item): return (yes)
return (no)
rule [..]
%item isn't in %list, %item is not in %list
%list doesn't contain %item, %list does not contain %item
%list doesn't have %item, %list does not have %item
..=:
for %key = %value in %list:
if (%key == %item): return (no)
return (yes)
compile [%list has key %index, %list has index %index] to: ".."
((\(%list as lua))[\(%index as lua)] ~= nil)
compile [..]
%list doesn't have key %index, %list does not have key %index
%list doesn't have index %index, %list does not have index %index
..to: "((\(%list as lua))[\(%index as lua)] ~= nil)"
compile [length of %list, size of %list, size %list, number of %list, len %list] to:
"nomsu.utils.size(\(%list as lua))"
# Chained lookup
compile [%list ->* %indices] to:
assert ((%indices's "type") == "List") ".."
Expected List for chained lookup, not \(%indices's "type")
%ret = "\(%list as lua)"
for %index in (%indices's "value"):
%ret join= "[\(%index as lua)]"
return "\%ret"
# Assignment
compile [..]
%list's %index = %new_value, %index st in %list = %new_value, %index nd in %list = %new_value
%index rd in %list = %new_value, %index th in %list = %new_value, %index in %list = %new_value
%list -> %index = %new_value
..to code:
"(\(%list as lua))[\(%index as lua)] = \(%new_value as lua);"
compile [append %item to %list, add %item to %list] to:
"table.insert(\(%list as lua), \(%item as lua))"
compile [pop from %list, remove last from %list] to:
"table.remove(\(%list as lua))"
compile [remove index %index from %list] to:
"table.remove(\(%list as lua), \(%index as lua))"
rule [flatten %lists] =:
%flat = []
for %list in %lists:
for %item in %list:
add %item to %flat
return %flat
rule [dict %items] =:
%dict = []
for %pair in %items:
%dict -> (%pair -> 1) = (%pair -> 2)
return %dict
rule [entries in %dict] =:
%entries = []
for %k = %v in %dict:
add {key=%k, value=%v} to %entries
return %entries
rule [keys in %dict] =:
%keys = []
for %k = %v in %dict: add %k to %keys
return %keys
rule [values in %dict] =:
%values = []
for %k = %v in %dict: add %v to %values
return %values
# List Comprehension
compile [%expression for %item in %iterable] to:
assert ((%item's "type") == "Var") ".."
List comprehension has the wrong type for the loop variable. Expected Var, but got: \(%item's "type")
return ".."
(function(nomsu, vars);
local comprehension = {};
for i,item in ipairs(\(%iterable as lua)) do;
\(%item as lua) = item;
comprehension[i] = \(%expression as lua);
end;
return comprehension;
end)(nomsu, setmetatable({}, {__index=vars}))
parse [%expression for all %iterable] as: %expression for % in %iterable
compile [%expression for %key = %value in %iterable] to:
assert ((%key's "type") == "Var") ".."
List comprehension has the wrong type for the key loop variable. Expected Var, but got: \(%key's "type")
assert ((%value's "type") == "Var") ".."
List comprehension has the wrong type for the value loop variable. Expected Var, but got: \(%value's "type")
return ".."
(function(nomsu, vars);
local comprehension = {};
for key,value in pairs(\(%iterable as lua)) do;
\(%key as lua), \(%value as lua) = key, value;
comprehension[i] = \(%expression as lua);
end;
return comprehension;
end)(nomsu, setmetatable({}, {__index=vars}))
rule [%items sorted] =:
%copy = (% for all %items)
sort %copy
return %copy
rule [%items sorted by %key] =:
%copy = (% for all %items)
sort %copy by %key
return %copy
rule [unique %items] =:
keys in (dict ([%,yes] for all %items))
# Metatable stuff
compile [counter] to: "setmetatable({}, {__index=function() return 0; end})"
compile [default dict] to: ".."
setmetatable({}, {__index=function(self, key)
t = {};
self[key] = t;
return t;
end})"
rule [chain %dict to %fallback] =:
when (type of %fallback) == ?:
* "table":
=lua "setmetatable(\%dict, \%fallback)"
* "function":
=lua "setmetatable(\%dict, {__index=function(self, key) return (\%fallback)(nomsu, {['']=key, self=self}); end})"
* else:
=lua "setmetatable(\%dict, {__index=function(self, key) return (\%fallback); end})"
# TODO: maybe make a generator/coroutine?
# Dict comprehensions
compile [%key = %value for %item in %iterable] to:
assert ((%item's "type") == "Var") ".."
Dict comprehension has the wrong type for the loop variable. Expected Var, but got: \(%item's "type")
return ".."
(function(nomsu, vars);
local comprehension = {};
for i,value in ipairs(\(%iterable as lua)) do;
\(%item as lua) = value;
comprehension[\(%key as lua)] = \(%value as lua);
end;
return comprehension;
end)(nomsu, setmetatable({}, {__index=vars}))
parse [%key = %value for all %iterable] as: %key = %value for % in %iterable
compile [%key = %value for %src_key = %src_value in %iterable] to:
assert ((%src_key's "type") == "Var") ".."
Dict comprehension has the wrong type for the key loop variable. Expected Var, but got: \(%src_key's "type")
assert ((%src_value's "type") == "Var") ".."
Dict comprehension has the wrong type for the value loop variable. Expected Var, but got: \(%src_value's "type")
return ".."
(function(nomsu, vars);
local comprehension = {};
for key,value in pairs(\(%iterable as lua)) do;
\(%src_key as lua), \(%src_value as lua) = key, value;
comprehension[\(%key as lua)] = \(%value as lua);
end;
return comprehension;
end)(nomsu, setmetatable({}, {__index=vars}))