URLXASelector.java
/*
* IronJacamar, a Java EE Connector Architecture implementation
* Copyright 2012, Red Hat Inc, and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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 Eclipse Public License 1.0 as
* published by the Free Software Foundation.
*
* 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 Eclipse
* Public License for more details.
*
* You should have received a copy of the Eclipse 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.ironjacamar.adapters.jdbc.xa;
import org.ironjacamar.adapters.jdbc.spi.URLXASelectorStrategy;
import org.ironjacamar.adapters.jdbc.spi.XAData;
import java.util.Collections;
import java.util.List;
/**
* Default URL XA selector implementation
* @author <a href="mailto:jesper.pedersen@ironjacamar.org">Jesper Pedersen</a>
*/
public class URLXASelector implements URLXASelectorStrategy
{
private List<XAData> data;
private XAData current;
private int currentIndex;
/**
* Constructor
*/
public URLXASelector()
{
}
/**
* {@inheritDoc}
*/
public void init(List<XAData> data)
{
if (data == null || data.size() == 0)
throw new IllegalArgumentException("Data is empty");
this.data = Collections.unmodifiableList(data);
reset();
}
/**
* {@inheritDoc}
*/
public boolean hasMore()
{
if (current != null)
return true;
if (currentIndex < data.size())
{
return true;
}
else
{
currentIndex = 0;
return false;
}
}
/**
* {@inheritDoc}
*/
public XAData active()
{
if (current != null)
return current;
current = data.get(currentIndex++);
return current;
}
/**
* {@inheritDoc}
*/
public void fail(XAData xd)
{
if (current != null && current.equals(xd))
current = null;
}
/**
* {@inheritDoc}
*/
public void reset()
{
current = null;
currentIndex = 0;
}
/**
* {@inheritDoc}
*/
public String getData()
{
StringBuffer sb = new StringBuffer();
for (int i = 0; i < data.size(); i++)
{
XAData xd = data.get(i);
sb.append(xd.getUrl());
if (i < data.size() - 1)
sb.append(", ");
}
return sb.toString();
}
/**
* {@inheritDoc}
*/
public String toString()
{
StringBuilder sb = new StringBuilder();
sb.append("URLXASelector@").append(Integer.toHexString(System.identityHashCode(this)));
sb.append("[data=").append(data);
sb.append(" current=").append(current);
sb.append(" currentIndex=").append(currentIndex);
sb.append("]");
return sb.toString();
}
}