Package org.jboss.messaging.core.plugin.postoffice.cluster

Source Code of org.jboss.messaging.core.plugin.postoffice.cluster.PullMessagesRequest

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.messaging.core.plugin.postoffice.cluster;

import java.io.DataInputStream;
import java.io.DataOutputStream;

import org.jboss.logging.Logger;
import org.jboss.messaging.core.Delivery;
import org.jboss.messaging.core.plugin.postoffice.Binding;

/**
* A PullMessagesRequest
*
* @author <a href="mailto:tim.fox@jboss.com">Tim Fox</a>
* @version <tt>$Revision: 2204 $</tt>
*
* $Id: PullMessagesRequest.java 2204 2007-02-08 14:21:08Z timfox $
*
*/
public class PullMessagesRequest extends TransactionRequest implements ClusterTransaction
{
   private static final Logger log = Logger.getLogger(PullMessagesRequest.class);
  
   private boolean trace = log.isTraceEnabled();
     
   private String queueName;
  
   private int numMessages;
  
   private Delivery reliableDelivery;
  
   static final int TYPE = 5;
        
   PullMessagesRequest()
   {     
   }
       
   PullMessagesRequest(int nodeId, long txId, long checkChannelID, String queueName, int numMessages)
   {
      super(nodeId, txId, true, checkChannelID);
     
      this.queueName = queueName;
     
      this.numMessages = numMessages;
   }
  
   PullMessagesRequest(int nodeId, long txId)
   {
      super(nodeId, txId, false);
   }

   Object execute(PostOfficeInternal office) throws Throwable
   {
      TransactionId id = new TransactionId(nodeId, txId);
     
      if (trace) { log.trace("Executing PullMessagesRequest with id: " + id + " hold: " + hold); }
     
      if (hold)
      {                          
         Binding binding = office.getBindingForQueueName(queueName);
        
         if (binding == null)
         {
            throw new IllegalStateException("Cannot find binding for queue: " + queueName);
         }
        
         LocalClusteredQueue queue = (LocalClusteredQueue)binding.getQueue();
        
         queue.handleGetDeliveriesRequest(nodeId, numMessages, id, this);
         
         return null;
      }
      else
      {
         office.commitTransaction(id);
        
         return null;
      }
   }
  
   //TODO this is a bit messsy - must be a nicer way of setting this
   void setReliableDelivery(Delivery del)
   {
      this.reliableDelivery = del;
   }

   byte getType()
   {
      return TYPE;
   }

   public boolean check(PostOfficeInternal office) throws Exception
   {
      // If the message doesn't exist in the database then we should commit the transaction
      // Since the ack has already been processed persistently
     
      // otherwise we should roll it back

      //We store the channelID of one of the channels that the message was persisted in
      //it doesn't matter which one since they were all inserted in the same tx
     
      if (office.referenceExistsInStorage(checkChannelID, reliableDelivery.getReference().getMessage().getMessageID()))
      {
         //We should rollback
         return false;
      }
      else
      {
         //We should commit
         return true;
      }
   }

   public void commit(PostOfficeInternal office) throws Throwable
   {
      //We need to ack the delivery
     
      if (trace) { log.trace(this + " committing, tx: " + this.txId); }
     
      //We need to ack it in memory only
      //since it would have been acked on the pulling node
      LocalClusteredQueue queue = (LocalClusteredQueue)reliableDelivery.getObserver();
          
      queue.acknowledgeFromCluster(reliableDelivery);     
     
      if (trace) { log.trace(this + " committed, tx: " + this.txId); }
   }

   public void rollback(PostOfficeInternal office) throws Throwable
   {
      //We need to cancel the delivery
     
      if (trace) { log.trace(this + " rolling back, tx: " + this.txId); }
     
      reliableDelivery.cancel()
     
      if (trace) { log.trace(this + " rolled back, tx: " + this.txId); }
   }
  
   public void read(DataInputStream in) throws Exception
   {
      super.read(in);
     
      if (hold)
      {
         queueName = in.readUTF();
        
         numMessages = in.readInt();
      }
   }

   public void write(DataOutputStream out) throws Exception
   {
      super.write(out);
     
      if (hold)
      {     
         out.writeUTF(queueName);
        
         out.writeInt(numMessages);
      }
   }

}
TOP

Related Classes of org.jboss.messaging.core.plugin.postoffice.cluster.PullMessagesRequest

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.