net.paoding.rose.web.portal.impl.WindowFuture Maven / Gradle / Ivy
/*
* Copyright 2007-2012 the original author or authors.
*
* Licensed 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 net.paoding.rose.web.portal.impl;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import net.paoding.rose.web.portal.WindowListener;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author 王志亮 [[email protected]]
*
*/
class WindowFuture implements Future {
private static Log logger = LogFactory.getLog(WindowFuture.class);
private final Future future;
private final WindowImpl window;
private boolean cancelRequested = false;
public WindowFuture(Future future, WindowImpl window) {
this.future = future;
this.window = window;
}
public boolean isCancelRequested() {
return cancelRequested;
}
@Override
public boolean cancel(final boolean mayInterruptIfRunning) {
this.cancelRequested = true;
// when mayInterruptIfRunning is false
if (!mayInterruptIfRunning) {
return cancel0(mayInterruptIfRunning);
} else {
// when mayInterruptIfRunning is true
if (this.window.mayInterruptIfRunning()) {
return cancel0(mayInterruptIfRunning);
} else {
return cancel0(false);
}
}
}
private boolean cancel0(boolean mayInterruptIfRunning) {
if (logger.isDebugEnabled()) {
logger.debug("canceling inner future: " + window.getName() + " mayInterruptIfRunning="
+ mayInterruptIfRunning);
}
if (future.cancel(mayInterruptIfRunning)) {
((WindowListener) window.getContainer()).onWindowCanceled(window);
return true;
} else {
return false;
}
}
@Override
public T get() throws InterruptedException, ExecutionException {
return future.get();
}
@Override
public T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException,
TimeoutException {
return future.get(timeout, unit);
}
@Override
public boolean isCancelled() {
return future.isCancelled();
}
@Override
public boolean isDone() {
return future.isDone();
}
public Future getInnerFuture() {
return future;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy