mirror of https://github.com/apache/jclouds.git
issue #1501: allow Closeable, top-level apis to be used as opposed to RestContext
This commit is contained in:
parent
eaff39c78e
commit
4ced43566b
|
@ -45,6 +45,7 @@ import static org.jclouds.Constants.PROPERTY_PROVIDER;
|
|||
import static org.jclouds.reflect.Reflection2.typeToken;
|
||||
import static org.jclouds.util.Throwables2.propagateAuthorizationOrOriginalException;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.NoSuchElementException;
|
||||
|
@ -611,6 +612,20 @@ public class ContextBuilder {
|
|||
return (C) buildInjector().getInstance(Key.get(TypeLiteral.get(returnType.getType())));
|
||||
}
|
||||
|
||||
/**
|
||||
* This will return the top-level interface for the api or provider.
|
||||
*
|
||||
* Ex.
|
||||
* <pre>
|
||||
* api = ContextBuilder.newBuilder("openstack-nova")
|
||||
* ...
|
||||
* .buildApi(NovaApi.class);
|
||||
*</pre>
|
||||
*/
|
||||
public <A extends Closeable> A buildApi(Class<A> api) {
|
||||
return buildInjector().getInstance(api);
|
||||
}
|
||||
|
||||
public ApiMetadata getApiMetadata() {
|
||||
return apiMetadata;
|
||||
}
|
||||
|
|
|
@ -30,6 +30,7 @@ import static org.jclouds.util.Optionals2.unwrapIfOptional;
|
|||
import static org.jclouds.util.Throwables2.getFirstThrowableOfType;
|
||||
import static org.jclouds.util.Throwables2.propagateIfPossible;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.lang.annotation.Annotation;
|
||||
import java.lang.reflect.InvocationHandler;
|
||||
import java.lang.reflect.Method;
|
||||
|
@ -44,6 +45,7 @@ import javax.inject.Inject;
|
|||
import javax.inject.Qualifier;
|
||||
|
||||
import org.jclouds.javax.annotation.Nullable;
|
||||
import org.jclouds.lifecycle.Closer;
|
||||
import org.jclouds.reflect.FunctionalReflection;
|
||||
import org.jclouds.reflect.Invocation;
|
||||
import org.jclouds.reflect.InvocationSuccess;
|
||||
|
@ -129,13 +131,35 @@ public final class DelegatesToInvocationFunction<S, F extends Function<Invocatio
|
|||
}
|
||||
}
|
||||
|
||||
private static final Invokable<?, ?> CLOSE;
|
||||
|
||||
static {
|
||||
try {
|
||||
CLOSE = Invokable.from(Closeable.class.getMethod("close"));
|
||||
} catch (SecurityException e) {
|
||||
throw propagate(e);
|
||||
} catch (NoSuchMethodException e) {
|
||||
throw propagate(e);
|
||||
}
|
||||
}
|
||||
|
||||
protected Object handle(Invocation invocation) {
|
||||
if (invocation.getInvokable().isAnnotationPresent(Provides.class))
|
||||
return lookupValueFromGuice(invocation.getInvokable());
|
||||
else if (invocation.getInvokable().isAnnotationPresent(Delegate.class))
|
||||
Invokable<?, ?> invokable = invocation.getInvokable();
|
||||
if (CLOSE.equals(invokable)) {
|
||||
try {
|
||||
injector.getInstance(Closer.class).close();
|
||||
return null;
|
||||
} catch (Throwable e) {
|
||||
throw propagate(e);
|
||||
}
|
||||
} else if (invokable.isAnnotationPresent(Provides.class)) {
|
||||
return lookupValueFromGuice(invokable);
|
||||
} else if (invokable.isAnnotationPresent(Delegate.class)) {
|
||||
return propagateContextToDelegate(invocation);
|
||||
} else {
|
||||
return methodInvoker.apply(invocation);
|
||||
}
|
||||
}
|
||||
|
||||
private final Injector injector;
|
||||
private final TypeToken<S> ownerType;
|
||||
|
|
|
@ -0,0 +1,73 @@
|
|||
/**
|
||||
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||
* contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. jclouds 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.jclouds.rest.annotationparsing;
|
||||
|
||||
import static org.easymock.EasyMock.createMock;
|
||||
import static org.easymock.EasyMock.expect;
|
||||
import static org.easymock.EasyMock.replay;
|
||||
import static org.easymock.EasyMock.verify;
|
||||
import static org.jclouds.providers.AnonymousProviderMetadata.forClientMappedToAsyncClientOnEndpoint;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.jclouds.ContextBuilder;
|
||||
import org.jclouds.concurrent.config.ExecutorServiceModule;
|
||||
import org.jclouds.providers.ProviderMetadata;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.common.util.concurrent.ListeningExecutorService;
|
||||
import com.google.inject.Module;
|
||||
|
||||
/**
|
||||
* ensures that jclouds can be operated w/o reference to a context as the Api
|
||||
* itself is closeable.
|
||||
*
|
||||
* @author Adrian Cole
|
||||
*/
|
||||
@Test(groups = "unit", testName = "ClosableApiTest")
|
||||
public class ClosableApiTest {
|
||||
|
||||
static interface DelegatingApi extends Closeable {
|
||||
}
|
||||
|
||||
static interface DelegatingAsyncApi extends Closeable {
|
||||
}
|
||||
|
||||
ProviderMetadata provider = forClientMappedToAsyncClientOnEndpoint(DelegatingApi.class, DelegatingAsyncApi.class,
|
||||
"http://mock");
|
||||
|
||||
public void testApiClosesExecutorServiceOnClose() throws IOException {
|
||||
ListeningExecutorService executor = createMock(ListeningExecutorService.class);
|
||||
|
||||
expect(executor.shutdownNow()).andReturn(ImmutableList.<Runnable> of()).atLeastOnce();
|
||||
|
||||
replay(executor);
|
||||
|
||||
DelegatingApi api = ContextBuilder.newBuilder(provider)
|
||||
.modules(ImmutableSet.<Module> builder()
|
||||
.add(new ExecutorServiceModule(executor, executor))
|
||||
.build())
|
||||
.buildApi(DelegatingApi.class);
|
||||
api.close();
|
||||
verify(executor);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue