All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arcadedb.query.sql.executor.IfStep Maven / Gradle / Ivy

There is a newer version: 24.11.1
Show newest version
/*
 * Copyright © 2021-present Arcade Data Ltd ([email protected])
 *
 * 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.
 *
 * SPDX-FileCopyrightText: 2021-present Arcade Data Ltd ([email protected])
 * SPDX-License-Identifier: Apache-2.0
 */
package com.arcadedb.query.sql.executor;

import com.arcadedb.exception.TimeoutException;
import com.arcadedb.query.sql.parser.BooleanExpression;
import com.arcadedb.query.sql.parser.Statement;

import java.util.*;

/**
 * Created by luigidellaquila on 19/09/16.
 */
public class IfStep extends AbstractExecutionStep {
  public List positiveStatements;
  public List negativeStatements;
  BooleanExpression   condition;
  ScriptExecutionPlan positivePlan;
  ScriptExecutionPlan negativePlan;
  Boolean             conditionMet = null;

  public IfStep(final CommandContext context, final boolean profilingEnabled) {
    super(context, profilingEnabled);
  }

  @Override
  public ResultSet syncPull(final CommandContext context, final int nRecords) throws TimeoutException {
    evaluate(context);
    if (conditionMet) {
      initPositivePlan(context);
      return positivePlan.fetchNext(nRecords);
    } else {
      initNegativePlan(context);
      if (negativePlan != null) {
        return negativePlan.fetchNext(nRecords);
      }
    }
    return new InternalResultSet();

  }

  protected boolean evaluate(final CommandContext context) {
    if (conditionMet == null)
      conditionMet = condition.evaluate((Result) null, context);
    return conditionMet;
  }

  public void initPositivePlan(final CommandContext context) {
    if (positivePlan == null) {
      final BasicCommandContext subCtx1 = new BasicCommandContext();
      subCtx1.setParent(context);
      final ScriptExecutionPlan positivePlan = new ScriptExecutionPlan(subCtx1);
      for (final Statement stm : positiveStatements) {
        positivePlan.chain(stm.createExecutionPlan(subCtx1, profilingEnabled), profilingEnabled);
      }
      setPositivePlan(positivePlan);
    }
  }

  public void initNegativePlan(final CommandContext context) {
    if (negativePlan == null && negativeStatements != null) {
      if (negativeStatements.size() > 0) {
        final BasicCommandContext subCtx2 = new BasicCommandContext();
        subCtx2.setParent(context);
        final ScriptExecutionPlan negativePlan = new ScriptExecutionPlan(subCtx2);
        for (final Statement stm : negativeStatements) {
          negativePlan.chain(stm.createExecutionPlan(subCtx2, profilingEnabled), profilingEnabled);
        }
        setNegativePlan(negativePlan);
      }
    }
  }

  public void setCondition(final BooleanExpression condition) {
    this.condition = condition;
  }

  public ScriptExecutionPlan getPositivePlan() {
    return positivePlan;
  }

  public void setPositivePlan(final ScriptExecutionPlan positivePlan) {
    this.positivePlan = positivePlan;
  }

  public ScriptExecutionPlan getNegativePlan() {
    return negativePlan;
  }

  public void setNegativePlan(final ScriptExecutionPlan negativePlan) {
    this.negativePlan = negativePlan;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy