2024-06-29 18:29:40 +02:00
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
|
|
|
|
2024-06-27 01:47:44 +02:00
|
|
|
using Jellyfin.Plugin.SmartPlaylist.Lisp.Compiler;
|
|
|
|
|
|
|
|
namespace Jellyfin.Plugin.SmartPlaylist.Lisp {
|
2024-06-29 18:29:40 +02:00
|
|
|
using Function = Func<IList<Expression>, Expression>;
|
|
|
|
using FunctionLater = Func<Executor, IList<Expression>, Expression>;
|
2024-06-27 01:47:44 +02:00
|
|
|
|
2024-06-29 18:29:40 +02:00
|
|
|
public class Environment : Dictionary<string, Expression> {}
|
|
|
|
public class Builtins : Dictionary<string, Function> {
|
|
|
|
public Builtins() : base() {
|
|
|
|
this["+"] = _add;
|
|
|
|
this["-"] = _sub;
|
|
|
|
this["*"] = _mul;
|
|
|
|
this["/"] = _div;
|
|
|
|
this["%"] = _mod;
|
|
|
|
this[">"] = _gt;
|
|
|
|
this["<"] = _lt;
|
|
|
|
this[">="] = _ge;
|
|
|
|
this["<="] = _le;
|
|
|
|
this["eq?"] = _eq;
|
|
|
|
this["="] = _eq;
|
|
|
|
this["abs"] = _abs;
|
|
|
|
this["append"] = _append;
|
|
|
|
this["begin"] = _begin;
|
|
|
|
this["car"] = _car;
|
|
|
|
this["cdr"] = _cdr;
|
|
|
|
this["cons"] = _cons;
|
2024-10-25 20:20:18 +02:00
|
|
|
this["not"] = _not;
|
2024-06-29 18:29:40 +02:00
|
|
|
this["length"] = _length;
|
|
|
|
this["haskeys"] = _haskeys;
|
|
|
|
this["getitems"] = _getitems;
|
2024-10-25 02:18:13 +02:00
|
|
|
this["invoke"] = _invoke;
|
2024-06-29 18:29:40 +02:00
|
|
|
//this[new Symbol("!=")] = _ne;
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
|
|
|
|
2024-06-29 18:29:40 +02:00
|
|
|
private static T _agg<T>(Func<T, T, T> op, IList<T> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
T agg = args[0];
|
|
|
|
foreach (var arg in args.Skip(1)) {
|
|
|
|
agg = op(agg, arg);
|
|
|
|
}
|
|
|
|
return agg;
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _add(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a + b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
case Compiler.String s:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a + b, args.Select(x => (Compiler.String) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _sub(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a - b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _mul(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a * b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _div(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a / b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _mod(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _agg((a, b) => a % b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static E _cmp<T, E>(Func<T, T, E> op, IList<T> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
T first = args[0];
|
|
|
|
T second = args[1];
|
|
|
|
return op(first, second);
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _gt(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a > b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _lt(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a < b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _ge(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a >= b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _le(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a <= b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _eq(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a == b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _ne(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _cmp((a, b) => a != b, args.Select(x => (Integer) x).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _abs(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case Integer i:
|
|
|
|
return i.value >= 0 ? i : new Integer(-i.value);
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _append(IList<Expression> args) {
|
2024-06-27 01:47:44 +02:00
|
|
|
Expression first = args[0];
|
|
|
|
switch (first) {
|
|
|
|
case List l:
|
|
|
|
return l + new List(args);
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _begin(IList<Expression> args) {
|
|
|
|
return args.Last();
|
|
|
|
}
|
|
|
|
private static Expression _car(IList<Expression> args) {
|
|
|
|
return ((List) args.First()).expressions.First();
|
|
|
|
}
|
|
|
|
private static Expression _cdr(IList<Expression> args) {
|
|
|
|
return new List(((List) args.First()).expressions.Skip(1).ToList());
|
|
|
|
}
|
|
|
|
private static Expression _cons(IList<Expression> args) {
|
|
|
|
switch (args[1]) {
|
|
|
|
case Compiler.List other_list:
|
|
|
|
return (new Compiler.List(new []{args[0]}.ToList()) + new Compiler.List(other_list.expressions));
|
|
|
|
case Atom other_atom:
|
|
|
|
return new Compiler.List(new[]{args[0], args[1]}.ToList());
|
|
|
|
}
|
|
|
|
throw new ApplicationException();
|
|
|
|
}
|
2024-10-25 20:20:18 +02:00
|
|
|
private static Expression _not(IList<Expression> args) {
|
|
|
|
if (args[0] == new Compiler.Boolean(false)) {
|
|
|
|
return new Compiler.Boolean(true);
|
|
|
|
}
|
|
|
|
return new Compiler.Boolean(false);
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
private static Expression _length(IList<Expression> args) {
|
|
|
|
return new Integer(((Compiler.List)args[0]).expressions.Count());
|
|
|
|
}
|
|
|
|
private static Expression _haskeys(IList<Expression> args) {
|
|
|
|
Compiler.Object o = (Compiler.Object) args[0];
|
|
|
|
foreach (var e in args.Skip(1)) {
|
|
|
|
Compiler.String s = (Compiler.String) e;
|
|
|
|
PropertyInfo? pi = o.value.GetType().GetProperty(s.value);
|
|
|
|
if (pi != null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MethodInfo? mi = o.value.GetType().GetMethod(s.value);
|
|
|
|
if (mi != null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
FieldInfo? fi = o.value.GetType().GetField(s.value);
|
|
|
|
if (fi != null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return new Compiler.Boolean(false);
|
|
|
|
}
|
|
|
|
return new Compiler.Boolean(true);
|
|
|
|
}
|
|
|
|
private static Expression _getitems(IList<Expression> args) {
|
|
|
|
Compiler.Object o = (Compiler.Object) args[0];
|
|
|
|
IList<Expression> r = new List<Expression>();
|
|
|
|
foreach (var e in args.Skip(1)) {
|
|
|
|
Compiler.String s = (Compiler.String) e;
|
|
|
|
PropertyInfo? pi = o.value.GetType().GetProperty(s.value);
|
|
|
|
if (pi != null) {
|
|
|
|
r.Add(Compiler.Object.FromBase(pi.GetValue(o.value)));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
FieldInfo? fi = o.value.GetType().GetField(s.value);
|
|
|
|
if (fi != null) {
|
|
|
|
r.Add(Compiler.Object.FromBase(fi.GetValue(o.value)));
|
|
|
|
continue;
|
|
|
|
}
|
2024-10-25 02:18:13 +02:00
|
|
|
throw new ApplicationException($"{o.value} has no property or field {s.value}");
|
2024-06-29 18:29:40 +02:00
|
|
|
}
|
|
|
|
return new Compiler.List(r);
|
|
|
|
}
|
2024-10-25 02:18:13 +02:00
|
|
|
|
|
|
|
private static Expression _invoke(IList<Expression> args) {
|
|
|
|
Compiler.Object o = (Compiler.Object) args[0];
|
|
|
|
Compiler.String s = (Compiler.String) args[1];
|
|
|
|
Compiler.List l = (Compiler.List) args[2];
|
|
|
|
IList<Expression> r = new List<Expression>();
|
|
|
|
MethodInfo? mi = o.value.GetType().GetMethod(s.value);
|
|
|
|
if (mi == null) {
|
|
|
|
throw new ApplicationException($"{o.value} has not method {s.value}");
|
|
|
|
}
|
|
|
|
return Compiler.Object.FromBase(mi.Invoke(o.value, (object?[]?) l.Inner()));
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
}
|
2024-06-27 01:47:44 +02:00
|
|
|
|
2024-06-29 18:29:40 +02:00
|
|
|
public class BuiltinsLater : Dictionary<string, FunctionLater> {
|
|
|
|
public BuiltinsLater() : base() {
|
|
|
|
this["if"] = _if;
|
|
|
|
this["define"] = _define;
|
|
|
|
this["apply"] = _apply;
|
2024-10-25 20:20:18 +02:00
|
|
|
this["and"] = _and;
|
|
|
|
this["or"] = _or;
|
2024-06-29 18:29:40 +02:00
|
|
|
}
|
|
|
|
private static Expression _if(Executor e, IList<Expression> args) {
|
2024-10-25 20:20:18 +02:00
|
|
|
bool test = e.eval(args[0]) != (new Compiler.Boolean(false));
|
2024-06-29 18:29:40 +02:00
|
|
|
return e.eval(args[1 + (test ? 0 : 1)]);
|
|
|
|
}
|
|
|
|
private static Expression _define(Executor e, IList<Expression> args) {
|
|
|
|
e.environment[((Symbol) args[0]).name] = e.eval(args[1]);
|
|
|
|
return new Compiler.Boolean(false); // NOOP
|
|
|
|
}
|
|
|
|
private static Expression _apply(Executor e, IList<Expression> args) {
|
|
|
|
if (args[0].GetType() != typeof(Symbol)) {
|
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
if (args[1].GetType() != typeof(List)) {
|
|
|
|
throw new ApplicationException();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
Symbol arg0 = (Compiler.Symbol) args[0];
|
|
|
|
Compiler.List other_args = (Compiler.List) args[1];
|
|
|
|
return e.EvalFunction(arg0, other_args.expressions);
|
|
|
|
}
|
2024-10-25 20:20:18 +02:00
|
|
|
private static Expression _and(Executor e, IList<Expression> args) {
|
|
|
|
Expression result = new Compiler.Boolean(false);
|
|
|
|
foreach (var exp in args) {
|
|
|
|
result = e.eval(exp);
|
|
|
|
if (result == new Compiler.Boolean(false)) { return result; }
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
private static Expression _or(Executor e, IList<Expression> args) {
|
|
|
|
Expression result = new Compiler.Boolean(false);
|
|
|
|
foreach (var exp in args) {
|
|
|
|
result = e.eval(exp);
|
|
|
|
if (result != new Compiler.Boolean(false)) { return result; }
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public class Executor {
|
|
|
|
Environment _environment;
|
|
|
|
Builtins _builtins;
|
|
|
|
BuiltinsLater _builtinsLater;
|
|
|
|
public Executor(Environment environment, Builtins builtins, BuiltinsLater builtinsLater) {
|
|
|
|
_environment = environment;
|
|
|
|
_builtins = builtins;
|
|
|
|
_builtinsLater = builtinsLater;
|
|
|
|
}
|
|
|
|
public Executor() {
|
|
|
|
_environment = new Environment();
|
|
|
|
_builtins = new Builtins();
|
|
|
|
_builtinsLater = new BuiltinsLater();
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
|
|
|
|
2024-06-29 18:29:40 +02:00
|
|
|
public Environment environment { get => _environment; }
|
|
|
|
public Builtins builtins { get => _builtins; }
|
|
|
|
public BuiltinsLater builtinsLater { get => _builtinsLater; }
|
|
|
|
|
|
|
|
public Expression EvalFunction(Symbol fcname, IList<Expression> args) {
|
|
|
|
if (_environment.ContainsKey(fcname.name)) {
|
|
|
|
Expression first = environment[fcname.name];
|
|
|
|
return new List(new []{first}.ToList()) + new List(args.Select(x => eval(x)).ToList());
|
|
|
|
}
|
|
|
|
if (_builtins.ContainsKey(fcname.name)) {
|
|
|
|
Function fc = _builtins[fcname.name];
|
|
|
|
return fc(args.Select(x => eval(x)).ToList());
|
|
|
|
}
|
|
|
|
if (_builtinsLater.ContainsKey(fcname.name)) {
|
|
|
|
FunctionLater fc = _builtinsLater[fcname.name];
|
|
|
|
return fc(this, args);
|
|
|
|
}
|
|
|
|
throw new ApplicationException($"Key '{fcname.name}' not found in environment or builtins");
|
|
|
|
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
|
|
|
|
2024-06-29 18:29:40 +02:00
|
|
|
public Expression eval(Expression expression) {
|
2024-06-27 01:47:44 +02:00
|
|
|
switch (expression) {
|
|
|
|
case Symbol s:
|
2024-06-29 18:29:40 +02:00
|
|
|
return _environment[s.name];
|
|
|
|
case Compiler.Boolean b:
|
|
|
|
return b;
|
2024-06-27 01:47:44 +02:00
|
|
|
case Integer i:
|
2024-06-29 18:29:40 +02:00
|
|
|
return i;
|
|
|
|
case Compiler.String s:
|
|
|
|
return s;
|
2024-06-27 01:47:44 +02:00
|
|
|
case List list:
|
2024-06-29 18:29:40 +02:00
|
|
|
// do we really want to allow shadowing of builtins?
|
2024-06-27 01:47:44 +02:00
|
|
|
if (list.expressions[0].GetType() == typeof(Symbol)) {
|
2024-06-29 18:29:40 +02:00
|
|
|
return EvalFunction((Symbol) list.expressions[0], list.expressions.Skip(1).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
return new List(list.expressions.Select(x => eval(x)).ToList());
|
2024-06-27 01:47:44 +02:00
|
|
|
}
|
|
|
|
throw new ApplicationException("Not handled case");
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
public Expression eval(Parser p) {
|
2024-06-27 01:47:44 +02:00
|
|
|
return eval(p.parse());
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
public Expression eval(StringTokenStream sts) {
|
2024-06-27 01:47:44 +02:00
|
|
|
return eval(new Parser(sts));
|
|
|
|
}
|
2024-06-29 18:29:40 +02:00
|
|
|
public Expression eval(string p) {
|
2024-06-27 01:47:44 +02:00
|
|
|
return eval(StringTokenStream.generate(p));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|