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

org.apache.tephra.visibility.WriteFence Maven / Gradle / Ivy

There is a newer version: 4.15.0-HBase-1.5
Show newest version
/*
 * 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.tephra.visibility;

import com.google.common.primitives.Bytes;
import com.google.common.primitives.Longs;
import com.google.common.primitives.UnsignedBytes;
import org.apache.tephra.Transaction;
import org.apache.tephra.TransactionAware;

import java.util.Collection;
import java.util.TreeSet;

/**
 * Implementation used by {@link FenceWait} to wait for a {@link VisibilityFence}.
 */
class WriteFence implements TransactionAware {
  private final byte[] fenceId;
  private Transaction tx;
  private Collection inProgressChanges;

  public WriteFence(byte[] fenceId) {
    this.fenceId = fenceId;
  }

  @Override
  public void startTx(Transaction tx) {
    this.tx = tx;
    if (inProgressChanges == null) {
      inProgressChanges = new TreeSet<>(UnsignedBytes.lexicographicalComparator());
      for (long inProgressTx : tx.getInProgress()) {
        inProgressChanges.add(Bytes.concat(fenceId, Longs.toByteArray(inProgressTx)));
      }
    }
  }

  @Override
  public void updateTx(Transaction tx) {
    // Fences only need original transaction
  }

  @Override
  public Collection getTxChanges() {
    if (inProgressChanges == null || tx == null) {
      throw new IllegalStateException("Transaction has not started yet");
    }
    return inProgressChanges;
  }

  @Override
  public boolean commitTx() throws Exception {
    // Nothing to persist
    return true;
  }

  @Override
  public void postTxCommit() {
    tx = null;
  }

  @Override
  public boolean rollbackTx() throws Exception {
    // Nothing to rollback
    return true;
  }

  @Override
  public String getTransactionAwareName() {
    return getClass().getSimpleName();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy