Package com.sun.messaging.jmq.jmsserver.persist.file

Source Code of com.sun.messaging.jmq.jmsserver.persist.file.ClusterTransactionManager

/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License").  You
* may not use this file except in compliance with the License.  You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt.  See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license."  If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above.  However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/

package com.sun.messaging.jmq.jmsserver.persist.file;

import java.io.IOException;
import java.util.HashSet;

import com.sun.messaging.jmq.jmsserver.Globals;
import com.sun.messaging.jmq.jmsserver.core.BrokerAddress;
import com.sun.messaging.jmq.jmsserver.data.BaseTransaction;
import com.sun.messaging.jmq.jmsserver.data.ClusterTransaction;
import com.sun.messaging.jmq.jmsserver.data.TransactionBroker;
import com.sun.messaging.jmq.jmsserver.data.TransactionState;
import com.sun.messaging.jmq.jmsserver.data.TransactionUID;
import com.sun.messaging.jmq.jmsserver.persist.Store;
import com.sun.messaging.jmq.jmsserver.util.BrokerException;
import com.sun.messaging.jmq.util.log.Logger;

public class ClusterTransactionManager extends BaseTransactionManager {

 
  ClusterTransactionManager(TransactionLogManager transactionLogManager) {
    super(transactionLogManager);

  }

  void processStoredTxnOnStartup(BaseTransaction baseTxn) {
    if (Store.getDEBUG()) {
      String msg = getPrefix() + " processStoredTxnOnStartup " + baseTxn;
      logger.log(Logger.DEBUG, msg);
    }
    TransactionUID tid = baseTxn.getTid();
    int state = baseTxn.getState();
    if (state == TransactionState.COMMITTED
        || state == TransactionState.ROLLEDBACK) {
      addToCompleteStored(baseTxn);

    } else if (state == TransactionState.PREPARED) {
      addToIncompleteStored(baseTxn);
    }
  }

  TransactionEvent generateEvent(BaseTransaction baseTxn, boolean completion) throws IOException,
      BrokerException {
    if (Store.getDEBUG()) {
      String msg = getPrefix() + " generateEvent " + baseTxn;
      logger.log(Logger.DEBUG, msg);
    }
    ClusterTransactionEvent result = null;

    if(completion)
    {
      result = new ClusterTransaction2PCompleteEvent();
    }
    else if (baseTxn.getState() == TransactionState.PREPARED) {
      result = new ClusterTransaction2PPrepareEvent();
    } else {
      // TO DO FILL IN HERE
      throw new UnsupportedOperationException();
    }
    result.clusterTransaction = (ClusterTransaction) baseTxn;
    return result;
  }

  void processTxn(BaseTransaction baseTxn) throws IOException,
      BrokerException {
    if (Store.getDEBUG()) {
      String msg = getPrefix() + " processTxn " + baseTxn;
      logger.log(Logger.DEBUG, msg);
    }

    int state = baseTxn.getState();
    if (state == TransactionState.PREPARED) {
      addToIncompleteUnstored(baseTxn);
    } else {
      throw new UnsupportedOperationException();
    }
  }

  BaseTransaction processTxnCompletion(TransactionUID tid, int state)
      throws IOException, BrokerException {
    if (Store.getDEBUG()) {
      String msg = getPrefix() + " processTxnCompletion " + tid;
      logger.log(Logger.DEBUG, msg);
    }
    // We are committing a prepared cluster entry.
    // Check if it is in the prepared transaction store
    // If it is mark it as committed
    // Do NOT remove from prepared store until all participating
    // brokers in cluster have committed

    boolean removeFromStore = false;
    return processTxnCompletion(tid, state, removeFromStore);
  }

  void updateTransactionBrokerState(TransactionUID tid, int expectedTxnState,
      TransactionBroker txnBkr, boolean sync) throws BrokerException {
    if (Store.getDEBUG()) {
      String msg = getPrefix() + " updateTransactionBrokerState: tx = " + tid
          + " txnBkr=" + txnBkr;
      Globals.getLogger().log(Logger.DEBUG, msg);
    }
    // store txnBroker state update in txn log
    // if txn is complete then mark this also

    // clustered txnUpdate record
    // TO DO
    //first look in unstored
    ClusterTransaction clusterTxn = null;
    boolean stored = false;

    clusterTxn = (ClusterTransaction) incompleteUnstored.get(tid);
    if (clusterTxn == null) {
      clusterTxn = (ClusterTransaction) incompleteStored.get(tid);
      if (clusterTxn != null)
        stored = true;

    }
    if (clusterTxn != null) {
      boolean allComplete = updateTransactionBrokerState(txnBkr,
          clusterTxn);
      if (Store.getDEBUG()) {                       
        Globals.getLogger().log(Logger.DEBUG, getPrefix() + " allComplete:  = " + allComplete);
      }
      if (allComplete) {
        clusterTxn.getTransactionDetails().setComplete(true);
        if (!stored) {
          removeFromIncompleteUnstored(tid);
        } else {
          removeFromIncompleteStored(tid);
          addToCompleteStored(clusterTxn);
          try {
            this.updateStoredCompletion(tid, true);
          } catch (IOException ioe) {
            throw new BrokerException(
                "Could not update completion state of stored cluster transaction "
                    + tid, ioe);
          }

        }

      }
    } else {

      logger.log(Logger.ERROR,
          "Could not find matching cluster transaction for " + tid);
    }

  }

  boolean updateTransactionBrokerState(TransactionBroker txnBkr,
      ClusterTransaction clusterTxn) {
    TransactionBroker[] txnBrokers = clusterTxn.getTransactionBrokers();
    TransactionBroker result = null;

    BrokerAddress b = txnBkr.getBrokerAddress();
    boolean allComplete = true;
    for (int i = 0; i < txnBrokers.length; i++) {
      BrokerAddress ba = txnBrokers[i].getCurrentBrokerAddress();
      if (ba == null)
        continue;
      if (ba.equals(b))
        result = txnBrokers[i];
      else {
        allComplete &= txnBrokers[i].isCompleted();
      }
    }

    result.setCompleted(true);
    return allComplete;
  }

  void replayTransactionEvent(TransactionEvent txnEvent, HashSet dstLoadedSet)
      throws BrokerException, IOException {

    if (Store.getDEBUG()) {
      Globals.getLogger().log(Logger.DEBUG,
          getPrefix() + " replayTransactionEvent");
    }
    ClusterTransactionEvent clusterTxnEvent = (ClusterTransactionEvent) txnEvent;
    // replay to store on commit
    ClusterTransaction clusterTxn = clusterTxnEvent.clusterTransaction;
    int state = clusterTxn.getState();
    TransactionUID tid = clusterTxn.getTid();
    if (clusterTxnEvent.getSubType() == ClusterTransactionEvent.Type2PPrepareEvent) {
      // 2-phase prepare
      // check if it is stored
      // (this should only be the case if a failure occurred between saving
      // in prepared txn store and resetting the transaction log
      if (incompleteStored.containsKey(tid)) {
        if (Store.getDEBUG()) {
          String msg = getPrefix()
              + " found matching txn in prepared store on replay "
              + clusterTxn;
          Globals.getLogger().log(Logger.DEBUG, msg);
        }
      } else {
        addToIncompleteUnstored(clusterTxn);
      }

    } else if (clusterTxnEvent.getSubType() == ClusterTransactionEvent.Type2PCompleteEvent) {
      // we are completing a transaction
      // the transaction could be
      // a) unstored (prepare replayed earlier)
      // b) stored incomplete (prepare occurred before last checkpoint,
      //    completion not written to prepared store yet)
      //    This should therefore be the last entry in log.
      // c) stored complete (prepare occurred before last checkpoint,
      //    and failure occurred after completion stored in prepared store
      BaseTransaction existingWork = null;
      if (incompleteUnstored.containsKey(tid)) {
        // a) unstored (prepare replayed earlier)
        if (state == TransactionState.ROLLEDBACK) {
          existingWork = removeFromIncompleteUnstored(tid);
        } else if (state == TransactionState.COMMITTED) {

          existingWork = incompleteUnstored.get(tid);
          existingWork.getTransactionDetails().setState(state);
          existingWork.getTransactionState().setState(state);
        }
       
      } else if (incompleteStored.containsKey(tid)) {
        // b) stored incomplete (prepare occurred before last checkpoint,
        //    completion not written to prepared store yet)

        existingWork = removeFromIncompleteStored(tid);

        updateStoredState(tid, state);

        addToCompleteStored(existingWork);
      } else if (completeStored.containsKey(tid)) {
        // c) stored complete (prepare occurred before last checkpoint,
        //    and failure occurred after completion stored in prepared store
        existingWork = completeStored.get(tid);
      }
      if (existingWork != null) {
        if (state == TransactionState.COMMITTED) {
          transactionLogManager.transactionLogReplayer.replayTransactionWork(existingWork
              .getTransactionWork(), tid, dstLoadedSet);
        }
      } else {
        logger.log(Logger.ERROR,
            "Could not find prepared work for completing two-phase transaction "
                + clusterTxn.getTid());
      }
    }

  }

  String getPrefix() {
    return "ClusterTransactionManager: " + Thread.currentThread().getName();
  }

}
TOP

Related Classes of com.sun.messaging.jmq.jmsserver.persist.file.ClusterTransactionManager

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.