bboss.org.jgroups.blocks.MultiRequest Maven / Gradle / Ivy
The newest version!
package bboss.org.jgroups.blocks;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Vector;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import bboss.org.jgroups.Address;
import bboss.org.jgroups.Message;
import bboss.org.jgroups.Transport;
import bboss.org.jgroups.View;
import bboss.org.jgroups.annotations.GuardedBy;
import bboss.org.jgroups.util.Rsp;
import bboss.org.jgroups.util.RspList;
/**
* Sends a request to multiple destinations. Alternative implementation when we have few targets: between UnicastRequest
* with 1 target and GroupRequest with many destination members. Performance is about the same as for GroupRequest, but
* this class should use less memory as it doesn't create hashmaps. Don't use with many targets as we have to do
* a linear search through an array of targets to match a response to a request.
* MultiRequest is currently not used
*
* @author Bela Ban
* @version $Id: MultiRequest.java,v 1.3 2010/04/21 10:54:21 belaban Exp $
* @since 2.9
*/
public class MultiRequest extends Request {
@GuardedBy("lock")
private final Rsp[] responses;
protected final int expected_mbrs;
@GuardedBy("lock")
int num_received, num_not_received, num_suspected;
/**
* @param m
* The message to be sent
* @param corr
* The request correlator to be used. A request correlator
* sends requests tagged with a unique ID and notifies the
* sender when matching responses are received. The reason
* GroupRequest
uses it instead of a
* Transport
is that multiple
* requests/responses might be sent/received concurrently.
* @param mbrs
* The initial membership. This value reflects the membership
* to which the request is sent (and from which potential
* responses are expected). Is reset by reset().
* @param options The options to be passed to the request
*/
public MultiRequest(Message m, RequestCorrelator corr, Collection mbrs, RequestOptions options, int expected_mbrs) {
super(m, corr, null, options);
this.expected_mbrs=expected_mbrs;
responses=new Rsp[mbrs.size()];
setTargets(mbrs);
}
public MultiRequest(Message m, RequestCorrelator corr, Address target, RequestOptions options, int expected_mbrs) {
super(m, corr, null, options);
this.expected_mbrs=expected_mbrs;
responses=new Rsp[1];
setTarget(target);
}
/**
* @param timeout Time to wait for responses (ms). A value of <= 0 means wait indefinitely
* (e.g. if a suspicion service is available; timeouts are not needed).
*/
public MultiRequest(Message m, Transport transport, Collection mbrs, RequestOptions options, int expected_mbrs) {
super(m, null, transport, options);
this.expected_mbrs=expected_mbrs;
responses=new Rsp[1];
setTargets(mbrs);
}
void setTarget(Address mbr) {
responses[0]=new Rsp(mbr);
num_not_received++;
}
void setTargets(Collection mbrs) {
int index=0;
for(Address mbr: mbrs) {
responses[index++]=new Rsp(mbr);
num_not_received++;
}
}
public boolean getAnycasting() {
return options.getAnycasting();
}
public void setAnycasting(boolean anycasting) {
options.setAnycasting(anycasting);
}
public void sendRequest() throws Exception {
List targets=null;
targets=new ArrayList(responses.length);
for(Rsp rsp: responses)
targets.add(rsp.getSender());
sendRequest(targets, req_id, options);
}
Rsp findResponse(Address target) {
for(Rsp rsp: responses) {
if(rsp != null && target.equals(rsp.getSender()))
return rsp;
}
return null;
}
/* ---------------------- Interface RspCollector -------------------------- */
/**
* Callback (called by RequestCorrelator or Transport).
* Adds a response to the response table. When all responses have been received,
* execute()
returns.
*/
public void receiveResponse(Object response_value, Address sender) {
if(done)
return;
Rsp rsp=findResponse(sender);
if(rsp == null)
return;
RspFilter rsp_filter=options.getRspFilter();
boolean responseReceived=false;
if(!rsp.wasReceived()) {
if((responseReceived=(rsp_filter == null) || rsp_filter.isAcceptable(response_value, sender)))
rsp.setValue(response_value);
rsp.setReceived(responseReceived);
}
lock.lock();
try {
if(responseReceived)
num_received++;
done=rsp_filter == null? responsesComplete() : !rsp_filter.needMoreResponses();
if(responseReceived || done)
completed.signalAll(); // wakes up execute()
if(done && corr != null)
corr.done(req_id);
}
finally {
lock.unlock();
}
if(responseReceived || done)
checkCompletion(this);
}
/**
* Callback (called by RequestCorrelator or Transport).
* Report to GroupRequest
that a member is reported as faulty (suspected).
* This method would probably be called when getting a suspect message from a failure detector
* (where available). It is used to exclude faulty members from the response list.
*/
public void suspect(Address suspected_member) {
if(suspected_member == null)
return;
boolean changed=false;
Rsp rsp=findResponse(suspected_member);
if(rsp != null) {
if(rsp.setSuspected(true)) {
rsp.setValue(null);
changed=true;
lock.lock();
try {
num_suspected++;
completed.signalAll();
}
finally {
lock.unlock();
}
}
}
if(changed)
checkCompletion(this);
}
/**
* Any member of 'membership' that is not in the new view is flagged as
* SUSPECTED. Any member in the new view that is not in the
* membership (ie, the set of responses expected for the current RPC) will
* not be added to it. If we did this we might run into the
* following problem:
*
* - Membership is {A,B}
*
- A sends a synchronous group RPC (which sleeps for 60 secs in the
* invocation handler)
*
- C joins while A waits for responses from A and B
*
- If this would generate a new view {A,B,C} and if this expanded the
* response set to {A,B,C}, A would wait forever on C's response because C
* never received the request in the first place, therefore won't send a
* response.
*
*/
public void viewChange(View new_view) {
Vector mbrs=new_view != null? new_view.getMembers() : null;
if(mbrs == null)
return;
boolean changed=false;
if(responses == null || responses.length == 0)
return;
lock.lock();
try {
for(Rsp rsp: responses) {
Address mbr=rsp.getSender();
if(!mbrs.contains(mbr)) {
rsp.setValue(null);
if(rsp.setSuspected(true)) {
num_suspected++;
changed=true;
}
}
}
if(changed)
completed.signalAll();
}
finally {
lock.unlock();
}
if(changed)
checkCompletion(this);
}
/* -------------------- End of Interface RspCollector ----------------------------------- */
/** Returns the results as a RspList */
public RspList getResults() {
RspList list=new RspList();
for(Rsp rsp: responses)
list.put(rsp.getSender(), rsp);
return list;
}
public RspList get() throws InterruptedException, ExecutionException {
lock.lock();
try {
waitForResults(0);
}
finally {
lock.unlock();
}
return getResults();
}
public RspList get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
boolean ok;
lock.lock();
try {
ok=waitForResults(unit.toMillis(timeout));
}
finally {
lock.unlock();
}
if(!ok)
throw new TimeoutException();
return getResults();
}
public String toString() {
StringBuilder ret=new StringBuilder(128);
ret.append(super.toString());
lock.lock();
try {
if(!(responses.length == 0)) {
ret.append(", entries:\n");
for(Rsp rsp: responses) {
Address mbr=rsp.getSender();
ret.append(mbr).append(": ").append(rsp).append("\n");
}
}
}
finally {
lock.unlock();
}
return ret.toString();
}
/* --------------------------------- Private Methods -------------------------------------*/
private static int determineMajority(int i) {
return i < 2? i : (i / 2) + 1;
}
private void sendRequest(List targetMembers, long requestId, RequestOptions options) throws Exception {
try {
if(log.isTraceEnabled()) log.trace(new StringBuilder("sending request (id=").append(req_id).append(')'));
if(corr != null) {
corr.sendRequest(requestId, targetMembers, request_msg, options.getMode() == GET_NONE? null : this, options);
}
else {
if(options.getAnycasting()) {
for(Address mbr: targetMembers) {
Message copy=request_msg.copy(true);
copy.setDest(mbr);
transport.send(copy);
}
}
else {
transport.send(request_msg);
}
}
}
catch(Exception ex) {
if(corr != null)
corr.done(requestId);
throw ex;
}
}
@GuardedBy("lock")
protected boolean responsesComplete() {
if(done)
return true;
final int num_total=responses.length;
switch(options.getMode()) {
case GET_FIRST:
if(num_received > 0)
return true;
if(num_suspected >= num_total)
// e.g. 2 members, and both suspected
return true;
break;
case GET_ALL:
return num_received + num_suspected >= num_total;
case GET_MAJORITY:
int majority=determineMajority(num_total);
if(num_received + num_suspected >= majority)
return true;
break;
case GET_ABS_MAJORITY:
majority=determineMajority(num_total);
if(num_received >= majority)
return true;
break;
case GET_N:
if(expected_mbrs >= num_total) {
return responsesComplete();
}
return num_received >= expected_mbrs || num_received + num_not_received < expected_mbrs && num_received + num_suspected >= expected_mbrs;
case GET_NONE:
return true;
default :
if(log.isErrorEnabled()) log.error("rsp_mode " + options.getMode() + " unknown !");
break;
}
return false;
}
}