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

studio.raptor.sqlparser.wall.WallSqlStat Maven / Gradle / Ivy

/*
 * Copyright 1999-2017 Alibaba Group Holding Ltd.
 *
 * 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 studio.raptor.sqlparser.wall;

import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicLongFieldUpdater;

public class WallSqlStat {

  final static AtomicLongFieldUpdater executeCountUpdater = AtomicLongFieldUpdater
      .newUpdater(WallSqlStat.class,
          "executeCount");
  final static AtomicLongFieldUpdater executeErrorCountUpdater = AtomicLongFieldUpdater
      .newUpdater(WallSqlStat.class,
          "executeErrorCount");
  final static AtomicLongFieldUpdater fetchRowCountUpdater = AtomicLongFieldUpdater
      .newUpdater(WallSqlStat.class,
          "fetchRowCount");
  final static AtomicLongFieldUpdater updateCountUpdater = AtomicLongFieldUpdater
      .newUpdater(WallSqlStat.class,
          "updateCount");
  private final Map tableStats;
  private final List violations;
  private final Map functionStats;
  private final boolean syntaxError;
  private volatile long executeCount;
  private volatile long executeErrorCount;
  private volatile long fetchRowCount;
  private volatile long updateCount;
  private String sample;

  private long sqlHash;

  public WallSqlStat(Map tableStats,
      Map functionStats,
      boolean syntaxError) {
    this(tableStats, functionStats, Collections.emptyList(), syntaxError);
  }

  public WallSqlStat(Map tableStats,
      Map functionStats,
      List violations, boolean syntaxError) {
    this.violations = violations;
    this.tableStats = tableStats;
    this.functionStats = functionStats;
    this.syntaxError = syntaxError;
  }

  public long getSqlHash() {
    return sqlHash;
  }

  public void setSqlHash(long sqlHash) {
    this.sqlHash = sqlHash;
  }

  public String getSample() {
    return sample;
  }

  public void setSample(String sample) {
    this.sample = sample;
  }

  public long incrementAndGetExecuteCount() {
    return executeCountUpdater.incrementAndGet(this);
  }

  public long incrementAndGetExecuteErrorCount() {
    return executeErrorCountUpdater.incrementAndGet(this);
  }

  public long getExecuteCount() {
    return executeCount;
  }

  public long getExecuteErrorCount() {
    return executeErrorCount;
  }

  public long addAndFetchRowCount(long delta) {
    return fetchRowCountUpdater.addAndGet(this, delta);
  }

  public long getEffectRowCount() {
    return fetchRowCount;
  }

  public long getUpdateCount() {
    return updateCount;
  }

  public void addUpdateCount(long delta) {
    updateCountUpdater.addAndGet(this, delta);
  }

  public Map getTableStats() {
    return tableStats;
  }

  public Map getFunctionStats() {
    return functionStats;
  }

  public List getViolations() {
    return violations;
  }

  public boolean isSyntaxError() {
    return syntaxError;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy