org.apache.drill.exec.ops.BaseFragmentContext 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.drill.exec.ops;
import io.netty.buffer.DrillBuf;
import java.util.List;
import org.apache.drill.common.exceptions.UserException;
import org.apache.drill.exec.exception.ClassTransformationException;
import org.apache.drill.exec.expr.ClassGenerator;
import org.apache.drill.exec.expr.CodeGenerator;
import org.apache.drill.exec.expr.fn.FunctionImplementationRegistry;
import org.apache.drill.exec.physical.impl.common.CodeGenMemberInjector;
import org.apache.drill.exec.proto.UserBitShared;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Common implementation for both the test and production versions
* of the fragment context.
*/
public abstract class BaseFragmentContext implements FragmentContext {
private static final Logger logger = LoggerFactory.getLogger(BaseFragmentContext.class);
private final FunctionImplementationRegistry funcRegistry;
public BaseFragmentContext(final FunctionImplementationRegistry funcRegistry) {
this.funcRegistry = funcRegistry;
}
@Override
public FunctionImplementationRegistry getFunctionRegistry() {
return funcRegistry;
}
@Override
public T getImplementationClass(final ClassGenerator cg) {
return getImplementationClass(cg.getCodeGenerator());
}
@Override
public T getImplementationClass(final CodeGenerator cg) {
T instance;
try {
instance = getCompiler().createInstance(cg);
} catch (ClassTransformationException e) {
throw UserException.internalError(e)
.message("Code generation error - likely code error.")
.build(logger);
}
CodeGenMemberInjector.injectMembers(cg.getRoot(), instance, this);
return instance;
}
@Override
public List getImplementationClass(final ClassGenerator cg, final int instanceCount) {
return getImplementationClass(cg.getCodeGenerator(), instanceCount);
}
@Override
public List getImplementationClass(final CodeGenerator cg, final int instanceCount) {
List instances;
try {
instances = getCompiler().createInstances(cg, instanceCount);
} catch (ClassTransformationException e) {
throw UserException.internalError(e)
.message("Code generation error - likely code error.")
.build(logger);
}
instances.forEach(instance -> CodeGenMemberInjector.injectMembers(cg.getRoot(), instance, this));
return instances;
}
protected abstract BufferManager getBufferManager();
@Override
public DrillBuf replace(final DrillBuf old, final int newSize) {
return getBufferManager().replace(old, newSize);
}
@Override
public DrillBuf getManagedBuffer() {
return getBufferManager().getManagedBuffer();
}
@Override
public DrillBuf getManagedBuffer(final int size) {
return getBufferManager().getManagedBuffer(size);
}
@Override
public String getQueryUserName() {
return null;
}
@Override
public UserBitShared.QueryId getQueryId() {
return null;
}
@Override
public String getQueryIdString() {
return null;
}
@Override
public QueryContext.SqlStatementType getSQLStatementType() {
return null;
}
@Override
public BufferManager getManagedBufferManager() {
return getBufferManager();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy