blob: 1b2dc3bb51ec846171b3a6d4136f2770b11be87a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.qpid.jms.provider;
import java.util.concurrent.TimeUnit;
import org.apache.qpid.jms.provider.exceptions.ProviderExceptionSupport;
/**
* A more conservative implementation of a ProviderFuture that is better on some
* platforms or resource constrained hardware where high CPU usage can be more
* counter productive than other variants that might spin or otherwise avoid
* entry into states requiring thread signalling.
*/
public class ConservativeProviderFuture extends ProviderFuture {
public ConservativeProviderFuture() {
this(null);
}
public ConservativeProviderFuture(ProviderSynchronization synchronization) {
super(synchronization);
}
@Override
public boolean sync(long amount, TimeUnit unit) throws ProviderException {
try {
if (isComplete() || amount == 0) {
failOnError();
return true;
}
final long timeout = unit.toNanos(amount);
long maxParkNanos = timeout / 8;
maxParkNanos = maxParkNanos > 0 ? maxParkNanos : timeout;
final long startTime = System.nanoTime();
if (Thread.currentThread().isInterrupted()) {
throw new InterruptedException();
}
while (true) {
final long elapsed = System.nanoTime() - startTime;
final long diff = elapsed - timeout;
if (diff >= 0) {
failOnError();
return isComplete();
}
if (isComplete()) {
failOnError();
return true;
}
synchronized (this) {
if (isComplete()) {
failOnError();
return true;
}
waiting++;
try {
wait(-diff / 1000000, (int) (-diff % 1000000));
} finally {
waiting--;
}
}
}
} catch (InterruptedException e) {
Thread.interrupted();
throw ProviderExceptionSupport.createOrPassthroughFatal(e);
}
}
@Override
public void sync() throws ProviderException {
try {
if (isComplete()) {
failOnError();
return;
}
if (Thread.currentThread().isInterrupted()) {
throw new InterruptedException();
}
while (true) {
if (isComplete()) {
failOnError();
return;
}
synchronized (this) {
if (isComplete()) {
failOnError();
return;
}
waiting++;
try {
wait();
} finally {
waiting--;
}
}
}
} catch (InterruptedException e) {
Thread.interrupted();
throw ProviderExceptionSupport.createOrPassthroughFatal(e);
}
}
}