org.glowroot.shaded.h2.engine.UserAggregate Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2004-2013 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.glowroot.shaded.h2.engine;
import org.glowroot.shaded.h2.api.AggregateFunction;
import org.glowroot.shaded.h2.api.Aggregate;
import org.glowroot.shaded.h2.command.Parser;
import org.glowroot.shaded.h2.message.DbException;
import org.glowroot.shaded.h2.message.Trace;
import org.glowroot.shaded.h2.table.Table;
import org.glowroot.shaded.h2.util.Utils;
import org.glowroot.shaded.h2.value.DataType;
import java.sql.Connection;
import java.sql.SQLException;
/**
* Represents a user-defined aggregate function.
*/
public class UserAggregate extends DbObjectBase {
private String className;
private Class> javaClass;
public UserAggregate(Database db, int id, String name, String className,
boolean force) {
initDbObjectBase(db, id, name, Trace.FUNCTION);
this.className = className;
if (!force) {
getInstance();
}
}
public Aggregate getInstance() {
if (javaClass == null) {
javaClass = Utils.loadUserClass(className);
}
Object obj;
try {
obj = javaClass.newInstance();
Aggregate agg;
if (obj instanceof Aggregate) {
agg = (Aggregate) obj;
} else {
agg = new AggregateWrapper((AggregateFunction) obj);
}
return agg;
} catch (Exception e) {
throw DbException.convert(e);
}
}
@Override
public String getCreateSQLForCopy(Table table, String quotedName) {
throw DbException.throwInternalError();
}
@Override
public String getDropSQL() {
return "DROP AGGREGATE IF EXISTS " + getSQL();
}
@Override
public String getCreateSQL() {
return "CREATE FORCE AGGREGATE " + getSQL() +
" FOR " + Parser.quoteIdentifier(className);
}
@Override
public int getType() {
return DbObject.AGGREGATE;
}
@Override
public synchronized void removeChildrenAndResources(Session session) {
database.removeMeta(session, getId());
className = null;
javaClass = null;
invalidate();
}
@Override
public void checkRename() {
throw DbException.getUnsupportedException("AGGREGATE");
}
public String getJavaClassName() {
return this.className;
}
/**
* Wrap {@link AggregateFunction} in order to behave as
* {@link org.glowroot.shaded.h2.api.Aggregate}
**/
private static class AggregateWrapper implements Aggregate {
private final AggregateFunction aggregateFunction;
AggregateWrapper(AggregateFunction aggregateFunction) {
this.aggregateFunction = aggregateFunction;
}
@Override
public void init(Connection conn) throws SQLException {
aggregateFunction.init(conn);
}
@Override
public int getInternalType(int[] inputTypes) throws SQLException {
int[] sqlTypes = new int[inputTypes.length];
for (int i = 0; i < inputTypes.length; i++) {
sqlTypes[i] = DataType.convertTypeToSQLType(inputTypes[i]);
}
return DataType.convertSQLTypeToValueType(aggregateFunction.getType(sqlTypes));
}
@Override
public void add(Object value) throws SQLException {
aggregateFunction.add(value);
}
@Override
public Object getResult() throws SQLException {
return aggregateFunction.getResult();
}
}
}