/******************************************************************************* * Copyright (c) 2009, 2017 Cloudsmith Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Cloudsmith Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.equinox.internal.p2.metadata.expression; import java.util.Iterator; import org.eclipse.equinox.p2.metadata.expression.IEvaluationContext; /** * An expression that yields a new collection consisting of all elements of the * collection for which the filter yields true. */ final class Select extends CollectionFilter { Select(Expression collection, LambdaExpression lambda) { super(collection, lambda); } @Override protected Object evaluate(IEvaluationContext context, Iterator itor) { return evaluateAsIterator(context, itor); } @Override protected Iterator evaluateAsIterator(final IEvaluationContext context, Iterator itor) { return new MatchIteratorFilter(itor) { @Override protected boolean isMatch(Object val) { lambda.getItemVariable().setValue(context, val); return lambda.evaluate(context) == Boolean.TRUE; } }; } @Override public int getExpressionType() { return TYPE_SELECT; } @Override public String getOperator() { return KEYWORD_SELECT; } boolean isCollection() { return true; } }