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

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

/*
* 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 java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.jboss.messaging.util.StreamUtils;
import org.jboss.messaging.util.Streamable;

/**
* A SharedState
*
* This encapsulates the shared state maintained across the cluster
* This comprise the bindings, and the arbitrary replicated data
*
* @author <a href="mailto:tim.fox@jboss.com">Tim Fox</a>
* @version <tt>$Revision: 1917 $</tt>
*
* $Id: SharedState.java 1917 2007-01-08 20:26:12Z clebert.suconic@jboss.com $
*
*/
class SharedState implements Streamable
   private List bindings;
  
   private Map replicatedData;
  
   SharedState()
   {     
   }
  
   SharedState(List bindings, Map replicatedData)
   {
      this.bindings = bindings;
     
      this.replicatedData = replicatedData;
   }
  
   List getBindings()
   {
      return bindings;
   }
  
   Map getReplicatedData()
   {
      return replicatedData;
   }

   public void read(DataInputStream in) throws Exception
   {
      int size = in.readInt();     
     
      bindings = new ArrayList(size);
     
      for (int i = 0; i < size; i++)
      {
         BindingInfo bb = new BindingInfo();
        
         bb.read(in);
        
         bindings.add(bb);
      }
     
      size = in.readInt();
     
      replicatedData = new HashMap(size);
     
      for (int i = 0; i < size; i++)
      {
         Serializable key = (Serializable)StreamUtils.readObject(in, true);
        
         HashMap replicants = StreamUtils.readMap(in, false);
        
         replicatedData.put(key, replicants);
      }
   }

   public void write(DataOutputStream out) throws Exception
   {
      out.writeInt(bindings.size());
     
      Iterator iter = bindings.iterator();
     
      while (iter.hasNext())
      {
         BindingInfo info = (BindingInfo)iter.next();
        
         info.write(out);
      }
     
      out.writeInt(replicatedData.size());
     
      iter = replicatedData.entrySet().iterator();
     
      while (iter.hasNext())
      {
         Map.Entry entry = (Map.Entry)iter.next();
        
         Serializable key = (Serializable)entry.getKey();        
        
         StreamUtils.writeObject(out, key, true, true);
        
         Map replicants = (Map)entry.getValue();
        
         StreamUtils.writeMap(out, replicants, false);
      }
   }
}
TOP

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

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.