org.jclouds.apis.Apis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-core Show documentation
Show all versions of jclouds-core Show documentation
Core components to access jclouds services
/*
* 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.jclouds.apis;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.collect.Iterables.filter;
import static com.google.common.collect.Iterables.find;
import static org.jclouds.reflect.Reflection2.typeToken;
import java.util.NoSuchElementException;
import java.util.ServiceLoader;
import org.jclouds.View;
import org.jclouds.osgi.ApiRegistry;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import com.google.common.reflect.TypeToken;
/**
* The Apis class provides static methods for accessing apis.
*/
public class Apis {
private static enum IdFunction implements Function {
INSTANCE;
@Override
public String apply(ApiMetadata input) {
return input.getId();
}
}
public static Function idFunction() {
return IdFunction.INSTANCE;
}
/**
* Returns the apis located on the classpath via {@link java.util.ServiceLoader}.
*
* @return all available apis loaded from classpath via ServiceLoader
*/
private static Iterable fromServiceLoader() {
return ServiceLoader.load(ApiMetadata.class);
}
/**
* Returns all available apis.
*
* @return all available apis
*/
public static Iterable all() {
return ImmutableSet.builder()
.addAll(fromServiceLoader())
.addAll(ApiRegistry.fromRegistry()).build();
}
/**
* Returns the first api with the provided id
*
* @param id
* the id of the api to return
*
* @return the api with the given id
*
* @throws NoSuchElementException
* whenever there are no apis with the provided id
*/
public static ApiMetadata withId(String id) throws NoSuchElementException {
return find(all(), ApiPredicates.id(id));
}
/**
* Returns all apis who's contexts are assignable from the parameter
*
* @param type
* the type of the context to search for
*
* @return the apis with contexts assignable from given type
*/
public static Iterable contextAssignableFrom(TypeToken> type) {
return filter(all(), ApiPredicates.contextAssignableFrom(type));
}
/**
* Returns all apis who's contexts are assignable from the parameter
*
* @param type
* the type of the context to search for
*
* @return the apis with contexts assignable from given type
*/
public static Iterable viewableAs(TypeToken extends View> type) {
return filter(all(), ApiPredicates.viewableAs(type));
}
public static Iterable viewableAs(Class extends View> type) {
return filter(all(), ApiPredicates.viewableAs(typeToken(type)));
}
/**
* Returns the type of context
*
* @param type
* the type of the context to search for
*
* @return the apis with contexts transformable to the given type
*/
public static TypeToken> findView(final ApiMetadata apiMetadata, final TypeToken> view)
throws NoSuchElementException {
checkNotNull(apiMetadata, "apiMetadata must be defined");
checkNotNull(view, "context must be defined");
return Iterables.find(apiMetadata.getViews(), new Predicate>() {
@Override
public boolean apply(TypeToken> input) {
return view.isAssignableFrom(input);
}
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy