Skip to main content
summaryrefslogtreecommitdiffstats
blob: 819678b5c772cc2c8fb29f0d6c3b988a4bc9e1b8 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*******************************************************************************
 * Copyright (c) 2009, 2017 Cloudsmith Inc. and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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 represents a function such as filter(<expr>) or version(<expr>)
 */
public abstract class Function extends NAry {

	private Object instance;

	protected Function(Expression[] operands) {
		super(operands);
	}

	boolean assertSingleArgumentClass(Object v) {
		return true;
	}

	Object createInstance(Object arg) {
		throw new UnsupportedOperationException();
	}

	final Object createInstance(String arg) {
		throw new UnsupportedOperationException();
	}

	@Override
	public Object evaluate(IEvaluationContext context) {
		if (instance != null)
			return instance;

		Expression operand = operands[0];
		Object arg = operand.evaluate(context);
		if (assertSingleArgumentClass(arg)) {
			Object result = createInstance(arg);
			if (operand instanceof Literal || operand instanceof Parameter)
				// operand won't change over time so we can cache this instance.
				instance = result;
			return result;
		}
		String what = arg == null ? "null" : ("a " + arg.getClass().getName()); //$NON-NLS-1$ //$NON-NLS-2$
		throw new IllegalArgumentException("Cannot create a " + getOperator() + " from " + what); //$NON-NLS-1$ //$NON-NLS-2$
	}

	@Override
	public Iterator<?> evaluateAsIterator(IEvaluationContext context) {
		Object value = evaluate(context);
		if (!(value instanceof Iterator<?>))
			value = RepeatableIterator.create(value);
		return (Iterator<?>) value;
	}

	@Override
	public int getExpressionType() {
		return TYPE_FUNCTION;
	}

	@Override
	public int getPriority() {
		return PRIORITY_FUNCTION;
	}

	@Override
	public void toString(StringBuffer bld, Variable rootVariable) {
		bld.append(getOperator());
		bld.append('(');
		elementsToString(bld, rootVariable, operands);
		bld.append(')');
	}
}

Back to the top