org.apache.openjpa.kernel.exps.Aggregate Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.kernel.exps;
import java.util.Collection;
import java.util.Collections;
import org.apache.openjpa.kernel.StoreContext;
import org.apache.openjpa.lib.util.Localizer;
import org.apache.openjpa.util.UserException;
/**
* A value produced from evaluating a result aggregate.
*
* @author Abe White
*/
class Aggregate
extends Val {
private static final Localizer _loc = Localizer.forPackage(Aggregate.class);
private final AggregateListener _listener;
private final Val _arg;
/**
* Constructor. Supply aggregate listener and its argument value, if any.
*/
public Aggregate(AggregateListener listener, Val arg) {
_listener = listener;
_arg = arg;
}
public boolean isAggregate() {
return true;
}
public Class getType() {
return _listener.getType(getArgTypes());
}
public void setImplicitType(Class type) {
}
protected Object eval(Object candidate, Object orig,
StoreContext ctx, Object[] params) {
if (candidate == null)
candidate = Collections.EMPTY_LIST;
// allow aggregates to be used in filter expressions so long as a
// collection is passed in
if (candidate instanceof Collection)
return eval((Collection) candidate, orig, ctx, params).
iterator().next();
throw new UserException(_loc.get("agg-in-filter"));
}
protected Collection eval(Collection candidates, Object orig,
StoreContext ctx, Object[] params) {
Collection args = null;
if (_arg != null)
args = _arg.eval(candidates, orig, ctx, params);
Object agg = _listener.evaluate(args, getArgTypes(), candidates,
ctx);
return Collections.singleton(agg);
}
private Class[] getArgTypes() {
if (_arg == null)
return null;
if (_arg instanceof Args)
return ((Args) _arg).getTypes();
return new Class[]{ _arg.getType() };
}
public void acceptVisit(ExpressionVisitor visitor) {
visitor.enter(this);
if (_arg != null)
_arg.acceptVisit(visitor);
visitor.exit(this);
}
}