aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/ops/BaseFragmentContext.java
blob: 9d3003110513984c251d7f40d30c32d77294a515 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * 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.io.IOException;
import java.util.List;
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;

/**
 * Common implementation for both the test and production versions
 * of the fragment context.
 */
public abstract class BaseFragmentContext implements FragmentContext {

  private final FunctionImplementationRegistry funcRegistry;

  public BaseFragmentContext(final FunctionImplementationRegistry funcRegistry) {
    this.funcRegistry = funcRegistry;
  }

  @Override
  public FunctionImplementationRegistry getFunctionRegistry() {
    return funcRegistry;
  }

  @Override
  public <T> T getImplementationClass(final ClassGenerator<T> cg)
      throws ClassTransformationException, IOException {
    return getImplementationClass(cg.getCodeGenerator());
  }

  @Override
  public <T> T getImplementationClass(final CodeGenerator<T> cg)
      throws ClassTransformationException, IOException {
    T instance = getCompiler().createInstance(cg);
    CodeGenMemberInjector.injectMembers(cg.getRoot(), instance, this);
    return instance;
  }

  @Override
  public <T> List<T> getImplementationClass(final ClassGenerator<T> cg, final int instanceCount) throws ClassTransformationException, IOException {
    return getImplementationClass(cg.getCodeGenerator(), instanceCount);
  }

  @Override
  public <T> List<T> getImplementationClass(final CodeGenerator<T> cg, final int instanceCount) throws ClassTransformationException, IOException {
    List<T> instances = getCompiler().createInstances(cg, instanceCount);
    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;
  }
}