Exemplo n.º 1
0
 static Either <string, A> Invoke <A>(Transform <A> .Invoke op, InterpreterState state)
 {
     try
     {
         var method = typeof(ScriptFunctions).GetMethod(op.Func);
         if (method == null)
         {
             return($"Unknown function: {op.Func}");
         }
         var parms = method.GetParameters();
         if (parms.Length != op.Args.Length)
         {
             return($"Function '{op.Func}' expects {parms.Length} arguments, got {op.Args.Length}");
         }
         return(Interpret(op.Next((A)method.Invoke(null, op.Args)), state));
     }
     catch (Exception e)
     {
         return($"Error invoking function: {op.Func}, {e.Message}");
     }
 }
Exemplo n.º 2
0
        public static Either <string, A> Interpret <A>(Transform <A> ma, InterpreterState state)
        {
            switch (ma)
            {
            case Transform <A> .Return r: return(Right(r.Value));

            case Transform <A> .Fail f: return(Left(f.Value));

            case Transform <A> .Log m:
                state.Output.OnNext(m.Value);
                return(Interpret(m.Next(unit), state));

            case Transform <A> .GetValue op:
                return(state.GetVar(op.Name)
                       .Match(Some: v => Interpret(op.Next(v), state),
                              None: () => Left($"Unknown value: {op.Name}")));

            case Transform <A> .SetValue op:
                return(Interpret(op.Next(unit), state.SetVar(op.Name, op.Value)));

            case Transform <A> .Compute op:
                return(Compute(op, state));

            case Transform <A> .Print op:
                return(Print(op, state));

            case Transform <A> .FilterRows op:
                return(FilterRows(op, state));

            case Transform <A> .Invoke op:
                return(Invoke(op, state));

            default:
                throw new NotImplementedException(ma.GetType().Name);
            }
        }
Exemplo n.º 3
0
 static Either <string, A> SumCompute <A>(Transform <A> .Compute op, InterpreterState state) =>
 op.SourceType is RowsSourceType sourceType
Exemplo n.º 4
0
 static Either <string, A> ExprCompute <A>(Transform <A> .Compute op, InterpreterState state) =>
 op.SourceType is ValueSourceType sourceType
Exemplo n.º 5
0
 static Either <string, A> Compute <A>(Transform <A> .Compute op, InterpreterState state) =>
 op.Operation.Operator == "Sum" ? SumCompute(op, state)
   : op.Operation.Operator == "Expression" ? ExprCompute(op, state)
   : Left($"Unknown operator: {op.Operation.Operator}");
Exemplo n.º 6
0
 static Either <string, A> Print <A>(Transform <A> .Print op, InterpreterState state)
 {
     op.Messages.Iter(state.Output.OnNext);
     return(Interpret(op.Next(unit), state));
 }
Exemplo n.º 7
0
 static Either <string, A> FilterRows <A>(Transform <A> .FilterRows op, InterpreterState state) =>
 Interpret(op.Next(state.Rows.Filter(r => r.Type == op.Value)), state);