Package net.fortytwo.ripple.libs.stack

Source Code of net.fortytwo.ripple.libs.stack.Of

package net.fortytwo.ripple.libs.stack;

import net.fortytwo.flow.Sink;
import net.fortytwo.ripple.RippleException;
import net.fortytwo.ripple.model.ModelConnection;
import net.fortytwo.ripple.model.PrimitiveStackMapping;
import net.fortytwo.ripple.model.RippleList;
import net.fortytwo.ripple.model.RippleValue;

/**
* Consumes an index n and a list and produces the nth item in the list, where
* the first item in the list has an index of 1.
*
* @author Joshua Shinavier (http://fortytwo.net)
*/
public class Of extends PrimitiveStackMapping {
    private static final String[] IDENTIFIERS = {
            StackLibrary.NS_2013_03 + "of",
            StackLibrary.NS_2008_08 + "of",
            StackLibrary.NS_2007_08 + "of",
            StackLibrary.NS_2007_05 + "of"};

    public String[] getIdentifiers() {
        return IDENTIFIERS;
    }

    public Of()
            throws RippleException {
        super();
    }

    public Parameter[] getParameters() {
        return new Parameter[]{
                new Parameter("i", "a list index", true),
                new Parameter("l", "a list", true)};
    }

    public String getComment() {
        return "i l  =>  l[i]  -- pushes the member of List l at index i.  Note: lists are 1-indexed";
    }

    public void apply(final RippleList arg,
                      final Sink<RippleList> solutions,
                      final ModelConnection mc) throws RippleException {
        RippleList stack = arg;

        RippleValue l;

        l = stack.getFirst();
        stack = stack.getRest();
        final int i = mc.toNumericValue(stack.getFirst()).intValue();
        final RippleList rest = stack.getRest();

        Sink<RippleList> listSink = new Sink<RippleList>() {
            public void put(RippleList list) throws RippleException {
                if (i < 1) {
                    throw new RippleException("list index out of bounds" +
                            " (keep in mind that 'at' begins counting at 1): " + i);
                }

                for (int j = 1; j < i; j++) {
                    list = list.getRest();
                    if (list.isNil()) {
                        throw new RippleException("list index out of bounds: " + i);
                    }
                }

                solutions.put(
                        rest.push(list.getFirst()));
            }
        };

        mc.toList(l, listSink);
    }
}
TOP

Related Classes of net.fortytwo.ripple.libs.stack.Of

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.