
io.questdb.griffin.SqlExecutionContextImpl Maven / Gradle / Ivy
/*******************************************************************************
* ___ _ ____ ____
* / _ \ _ _ ___ ___| |_| _ \| __ )
* | | | | | | |/ _ \/ __| __| | | | _ \
* | |_| | |_| | __/\__ \ |_| |_| | |_) |
* \__\_\\__,_|\___||___/\__|____/|____/
*
* Copyright (c) 2014-2019 Appsicle
* Copyright (c) 2019-2022 QuestDB
*
* Licensed 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 io.questdb.griffin;
import io.questdb.cairo.*;
import io.questdb.cairo.security.AllowAllCairoSecurityContext;
import io.questdb.cairo.sql.BindVariableService;
import io.questdb.cairo.sql.SqlExecutionCircuitBreaker;
import io.questdb.cairo.sql.VirtualRecord;
import io.questdb.griffin.engine.analytic.AnalyticContext;
import io.questdb.griffin.engine.analytic.AnalyticContextImpl;
import io.questdb.griffin.engine.functions.bind.BindVariableServiceImpl;
import io.questdb.griffin.engine.functions.rnd.SharedRandom;
import io.questdb.mp.RingQueue;
import io.questdb.mp.Sequence;
import io.questdb.std.IntStack;
import io.questdb.std.Rnd;
import io.questdb.std.Transient;
import io.questdb.std.datetime.microtime.MicrosecondClock;
import io.questdb.tasks.TelemetryTask;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class SqlExecutionContextImpl implements SqlExecutionContext {
private final IntStack timestampRequiredStack = new IntStack();
private final int workerCount;
private final CairoConfiguration cairoConfiguration;
private final CairoEngine cairoEngine;
private final MicrosecondClock clock;
private final AnalyticContextImpl analyticContext = new AnalyticContextImpl();
private final RingQueue telemetryQueue;
private Sequence telemetryPubSeq;
private TelemetryTask.TelemetryMethod telemetryMethod = this::storeTelemetryNoop;
private BindVariableService bindVariableService;
private CairoSecurityContext cairoSecurityContext;
private Rnd random;
private long requestFd = -1;
private SqlExecutionCircuitBreaker circuitBreaker = SqlExecutionCircuitBreaker.NOOP_CIRCUIT_BREAKER;
private long now;
private int jitMode;
private boolean cloneSymbolTables = false;
public SqlExecutionContextImpl(CairoEngine cairoEngine, int workerCount) {
this.cairoConfiguration = cairoEngine.getConfiguration();
this.workerCount = workerCount;
assert workerCount > 0;
this.cairoEngine = cairoEngine;
this.clock = cairoConfiguration.getMicrosecondClock();
this.cairoSecurityContext = AllowAllCairoSecurityContext.INSTANCE;
this.jitMode = cairoConfiguration.getSqlJitMode();
this.telemetryQueue = cairoEngine.getTelemetryQueue();
if (telemetryQueue != null) {
this.telemetryPubSeq = cairoEngine.getTelemetryPubSequence();
this.telemetryMethod = this::doStoreTelemetry;
}
}
@Override
public QueryFutureUpdateListener getQueryFutureUpdateListener() {
return QueryFutureUpdateListener.EMPTY;
}
@Override
public BindVariableService getBindVariableService() {
return bindVariableService;
}
@Override
public CairoSecurityContext getCairoSecurityContext() {
return cairoSecurityContext;
}
@Override
public boolean isTimestampRequired() {
return timestampRequiredStack.notEmpty() && timestampRequiredStack.peek() == 1;
}
@Override
public void popTimestampRequiredFlag() {
timestampRequiredStack.pop();
}
@Override
public void pushTimestampRequiredFlag(boolean flag) {
timestampRequiredStack.push(flag ? 1 : 0);
}
@Override
public int getWorkerCount() {
return workerCount;
}
@Override
public Rnd getRandom() {
return random != null ? random : SharedRandom.getRandom(cairoConfiguration);
}
@Override
public void setRandom(Rnd rnd) {
this.random = rnd;
}
@Override
public CairoEngine getCairoEngine() {
return cairoEngine;
}
@Override
public long getRequestFd() {
return requestFd;
}
@Override
public SqlExecutionCircuitBreaker getCircuitBreaker() {
circuitBreaker.resetTimer();
return circuitBreaker;
}
@Override
public void storeTelemetry(short event, short origin) {
telemetryMethod.store(event, origin);
}
@Override
public AnalyticContext getAnalyticContext() {
return analyticContext;
}
@Override
public void configureAnalyticContext(
@Nullable VirtualRecord partitionByRecord,
@Nullable RecordSink partitionBySink,
@Transient @Nullable ColumnTypes partitionByKeyTypes,
boolean ordered,
boolean baseSupportsRandomAccess
) {
analyticContext.of(
partitionByRecord,
partitionBySink,
partitionByKeyTypes,
ordered,
baseSupportsRandomAccess
);
}
@Override
public void initNow() {
now = cairoConfiguration.getMicrosecondClock().getTicks();
}
@Override
public long getNow() {
return now;
}
@Override
public int getJitMode() {
return jitMode;
}
@Override
public void setJitMode(int jitMode) {
this.jitMode = jitMode;
}
public SqlExecutionContextImpl with(
@NotNull CairoSecurityContext cairoSecurityContext,
@Nullable BindVariableService bindVariableService,
@Nullable Rnd rnd
) {
this.cairoSecurityContext = cairoSecurityContext;
this.bindVariableService = bindVariableService;
this.random = rnd;
return this;
}
@Override
public void setCloneSymbolTables(boolean cloneSymbolTables) {
this.cloneSymbolTables = cloneSymbolTables;
}
public SqlExecutionContextImpl with(
long requestFd
) {
this.requestFd = requestFd;
return this;
}
public SqlExecutionContextImpl with(
@NotNull CairoSecurityContext cairoSecurityContext,
@Nullable BindVariableService bindVariableService,
@Nullable Rnd rnd,
long requestFd,
@Nullable SqlExecutionCircuitBreaker circuitBreaker
) {
this.cairoSecurityContext = cairoSecurityContext;
this.bindVariableService = bindVariableService;
this.random = rnd;
this.requestFd = requestFd;
this.circuitBreaker = null == circuitBreaker ? SqlExecutionCircuitBreaker.NOOP_CIRCUIT_BREAKER : circuitBreaker;
return this;
}
private void doStoreTelemetry(short event, short origin) {
TelemetryTask.store(telemetryQueue, telemetryPubSeq, event, origin, clock);
}
private void storeTelemetryNoop(short event, short origin) {
}
@Override
public boolean getCloneSymbolTables() {
return cloneSymbolTables;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy