Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e5d7812fccc9831766ddd69332081cdab8f52823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2009, 2010 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;
import org.eclipse.equinox.p2.metadata.expression.IExpression;

/**
 */
final class Collect extends CollectionFilter {
	final class CollectIterator implements Iterator<Object> {
		private final IEvaluationContext context;

		private final IExpression variable;

		private final Iterator<?> innerIterator;

		public CollectIterator(IEvaluationContext context, Iterator<?> iterator) {
			this.context = context;
			this.variable = lambda.getItemVariable();
			this.innerIterator = iterator;
		}

		public boolean hasNext() {
			return innerIterator.hasNext();
		}

		public Object next() {
			context.setValue(variable, innerIterator.next());
			return lambda.evaluate(context);
		}

		public void remove() {
			throw new UnsupportedOperationException();
		}
	}

	Collect(Expression collection, LambdaExpression lambda) {
		super(collection, lambda);
	}

	public Object evaluate(IEvaluationContext context, Iterator<?> itor) {
		return evaluateAsIterator(context, itor);
	}

	public Iterator<?> evaluateAsIterator(IEvaluationContext context, Iterator<?> itor) {
		return new CollectIterator(context, itor);
	}

	public int getExpressionType() {
		return TYPE_COLLECT;
	}

	public String getOperator() {
		return KEYWORD_COLLECT;
	}
}

Back to the top