Package org.structr.core.parser

Source Code of org.structr.core.parser.EachExpression

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.core.parser;

import java.util.List;
import org.structr.common.SecurityContext;
import org.structr.common.error.FrameworkException;
import org.structr.core.GraphObject;
import org.structr.schema.action.ActionContext;

/**
*
* @author Christian Morgner
*/

public class EachExpression extends Expression {

  private Expression listExpression = null;
  private Expression eachExpression = null;

  public EachExpression() {
    super("each");
  }

  @Override
  public void add(final Expression expression) throws FrameworkException {

    // first expression must yield a List
    if (this.listExpression == null) {

      this.listExpression = expression;

    } else if (this.eachExpression == null) {

      this.eachExpression = expression;

    } else {

      throw new FrameworkException(422, "Invalid each() expression in builtin function: too many parameters.");
    }

    expression.parent = this;
    expression.level  = this.level + 1;
  }

  @Override
  public Object evaluate(final SecurityContext securityContext, final ActionContext ctx, final GraphObject entity) throws FrameworkException {

    if (listExpression == null) {
      return Functions.ERROR_MESSAGE_EACH;
    }

    final Object listSource = listExpression.evaluate(securityContext, ctx, entity);
    if (listSource != null && listSource instanceof List) {

      final List source = (List)listSource;

      for (Object obj : source) {

        eachExpression.evaluate(securityContext, new ActionContext(ctx, entity, obj), entity);
      }
    }

    return null;
  }
}
TOP

Related Classes of org.structr.core.parser.EachExpression

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.