mirror of https://github.com/apache/jclouds.git
Use the existing region suppliers to filter
This commit is contained in:
parent
b3294bb177
commit
8cbf312c32
|
@ -16,6 +16,11 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.azurecompute.arm.compute;
|
package org.jclouds.azurecompute.arm.compute;
|
||||||
|
|
||||||
|
import static com.google.common.base.Preconditions.checkState;
|
||||||
|
import static java.lang.String.format;
|
||||||
|
import static java.util.concurrent.TimeUnit.SECONDS;
|
||||||
|
import static org.jclouds.util.Predicates2.retry;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
@ -29,6 +34,7 @@ import org.jclouds.azurecompute.arm.AzureComputeApi;
|
||||||
import org.jclouds.azurecompute.arm.compute.config.AzureComputeServiceContextModule.AzureComputeConstants;
|
import org.jclouds.azurecompute.arm.compute.config.AzureComputeServiceContextModule.AzureComputeConstants;
|
||||||
import org.jclouds.azurecompute.arm.compute.functions.DeploymentToVMDeployment;
|
import org.jclouds.azurecompute.arm.compute.functions.DeploymentToVMDeployment;
|
||||||
import org.jclouds.azurecompute.arm.compute.functions.VMImageToImage;
|
import org.jclouds.azurecompute.arm.compute.functions.VMImageToImage;
|
||||||
|
import org.jclouds.azurecompute.arm.compute.predicates.IsDeploymentInRegions;
|
||||||
import org.jclouds.azurecompute.arm.domain.Deployment;
|
import org.jclouds.azurecompute.arm.domain.Deployment;
|
||||||
import org.jclouds.azurecompute.arm.domain.DeploymentBody;
|
import org.jclouds.azurecompute.arm.domain.DeploymentBody;
|
||||||
import org.jclouds.azurecompute.arm.domain.DeploymentProperties;
|
import org.jclouds.azurecompute.arm.domain.DeploymentProperties;
|
||||||
|
@ -38,11 +44,11 @@ import org.jclouds.azurecompute.arm.domain.ResourceProviderMetaData;
|
||||||
import org.jclouds.azurecompute.arm.domain.SKU;
|
import org.jclouds.azurecompute.arm.domain.SKU;
|
||||||
import org.jclouds.azurecompute.arm.domain.StorageService;
|
import org.jclouds.azurecompute.arm.domain.StorageService;
|
||||||
import org.jclouds.azurecompute.arm.domain.VMDeployment;
|
import org.jclouds.azurecompute.arm.domain.VMDeployment;
|
||||||
import org.jclouds.azurecompute.arm.domain.VMSize;
|
|
||||||
import org.jclouds.azurecompute.arm.domain.Version;
|
|
||||||
import org.jclouds.azurecompute.arm.domain.VMHardware;
|
import org.jclouds.azurecompute.arm.domain.VMHardware;
|
||||||
import org.jclouds.azurecompute.arm.domain.VMImage;
|
import org.jclouds.azurecompute.arm.domain.VMImage;
|
||||||
|
import org.jclouds.azurecompute.arm.domain.VMSize;
|
||||||
import org.jclouds.azurecompute.arm.domain.Value;
|
import org.jclouds.azurecompute.arm.domain.Value;
|
||||||
|
import org.jclouds.azurecompute.arm.domain.Version;
|
||||||
import org.jclouds.azurecompute.arm.features.DeploymentApi;
|
import org.jclouds.azurecompute.arm.features.DeploymentApi;
|
||||||
import org.jclouds.azurecompute.arm.features.OSImageApi;
|
import org.jclouds.azurecompute.arm.features.OSImageApi;
|
||||||
import org.jclouds.azurecompute.arm.functions.CleanupResources;
|
import org.jclouds.azurecompute.arm.functions.CleanupResources;
|
||||||
|
@ -52,14 +58,13 @@ import org.jclouds.compute.ComputeServiceAdapter;
|
||||||
import org.jclouds.compute.domain.Template;
|
import org.jclouds.compute.domain.Template;
|
||||||
import org.jclouds.compute.reference.ComputeServiceConstants;
|
import org.jclouds.compute.reference.ComputeServiceConstants;
|
||||||
import org.jclouds.domain.LoginCredentials;
|
import org.jclouds.domain.LoginCredentials;
|
||||||
import org.jclouds.json.Json;
|
import org.jclouds.location.Region;
|
||||||
import org.jclouds.location.reference.LocationConstants;
|
|
||||||
import org.jclouds.logging.Logger;
|
import org.jclouds.logging.Logger;
|
||||||
import org.jclouds.providers.ProviderMetadata;
|
|
||||||
|
|
||||||
import com.google.common.base.Function;
|
import com.google.common.base.Function;
|
||||||
import com.google.common.base.Predicate;
|
import com.google.common.base.Predicate;
|
||||||
import com.google.common.base.Splitter;
|
import com.google.common.base.Splitter;
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
import com.google.common.collect.ArrayListMultimap;
|
import com.google.common.collect.ArrayListMultimap;
|
||||||
import com.google.common.collect.FluentIterable;
|
import com.google.common.collect.FluentIterable;
|
||||||
import com.google.common.collect.Iterables;
|
import com.google.common.collect.Iterables;
|
||||||
|
@ -68,11 +73,6 @@ import com.google.common.collect.Multimap;
|
||||||
import com.google.common.collect.Sets;
|
import com.google.common.collect.Sets;
|
||||||
import com.google.common.net.UrlEscapers;
|
import com.google.common.net.UrlEscapers;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkState;
|
|
||||||
import static java.lang.String.format;
|
|
||||||
import static java.util.concurrent.TimeUnit.SECONDS;
|
|
||||||
import static org.jclouds.util.Predicates2.retry;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the connection between the {@link AzureComputeApi} implementation and the jclouds
|
* Defines the connection between the {@link AzureComputeApi} implementation and the jclouds
|
||||||
* {@link org.jclouds.compute.ComputeService}.
|
* {@link org.jclouds.compute.ComputeService}.
|
||||||
|
@ -86,16 +86,16 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
@Resource
|
@Resource
|
||||||
@Named(ComputeServiceConstants.COMPUTE_LOGGER)
|
@Named(ComputeServiceConstants.COMPUTE_LOGGER)
|
||||||
private Logger logger = Logger.NULL;
|
private Logger logger = Logger.NULL;
|
||||||
private final Json json;
|
|
||||||
private final AzureComputeApi api;
|
private final AzureComputeApi api;
|
||||||
private final AzureComputeConstants azureComputeConstants;
|
private final AzureComputeConstants azureComputeConstants;
|
||||||
private final ProviderMetadata providerMetadata;
|
private final Supplier<Set<String>> regionIds;
|
||||||
|
private final IsDeploymentInRegions isDeploymentInRegions;
|
||||||
private final DeploymentToVMDeployment deploymentToVMDeployment;
|
private final DeploymentToVMDeployment deploymentToVMDeployment;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
AzureComputeServiceAdapter(final AzureComputeApi api, final AzureComputeConstants azureComputeConstants,
|
AzureComputeServiceAdapter(final AzureComputeApi api, final AzureComputeConstants azureComputeConstants,
|
||||||
CleanupResources cleanupResources, Json json, ProviderMetadata providerMetadata, DeploymentToVMDeployment deploymentToVMDeployment) {
|
CleanupResources cleanupResources, @Region Supplier<Set<String>> regionIds,
|
||||||
this.json = json;
|
IsDeploymentInRegions isDeploymentInRegions, DeploymentToVMDeployment deploymentToVMDeployment) {
|
||||||
this.api = api;
|
this.api = api;
|
||||||
this.azureComputeConstants = azureComputeConstants;
|
this.azureComputeConstants = azureComputeConstants;
|
||||||
this.azureGroup = azureComputeConstants.azureResourceGroup();
|
this.azureGroup = azureComputeConstants.azureResourceGroup();
|
||||||
|
@ -103,7 +103,8 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
logger.debug("AzureComputeServiceAdapter set azuregroup to: " + azureGroup);
|
logger.debug("AzureComputeServiceAdapter set azuregroup to: " + azureGroup);
|
||||||
|
|
||||||
this.cleanupResources = cleanupResources;
|
this.cleanupResources = cleanupResources;
|
||||||
this.providerMetadata = providerMetadata;
|
this.regionIds = regionIds;
|
||||||
|
this.isDeploymentInRegions = isDeploymentInRegions;
|
||||||
this.deploymentToVMDeployment = deploymentToVMDeployment;
|
this.deploymentToVMDeployment = deploymentToVMDeployment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -279,8 +280,6 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Iterable<Location> listLocations() {
|
public Iterable<Location> listLocations() {
|
||||||
final Iterable<String> whiteListedRegionNames = findWhiteListOfRegions();
|
|
||||||
|
|
||||||
final Iterable<String> vmLocations = FluentIterable.from(api.getResourceProviderApi().get("Microsoft.Compute"))
|
final Iterable<String> vmLocations = FluentIterable.from(api.getResourceProviderApi().get("Microsoft.Compute"))
|
||||||
.filter(new Predicate<ResourceProviderMetaData>() {
|
.filter(new Predicate<ResourceProviderMetaData>() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -305,7 +304,7 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
.filter(new Predicate<Location>() {
|
.filter(new Predicate<Location>() {
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Location location) {
|
public boolean apply(Location location) {
|
||||||
return whiteListedRegionNames == null ? true : Iterables.contains(whiteListedRegionNames, location.name());
|
return regionIds.get().isEmpty() ? true : regionIds.get().contains(location.name());
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.toList();
|
.toList();
|
||||||
|
@ -317,7 +316,7 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
public VMDeployment getNode(final String id) {
|
public VMDeployment getNode(final String id) {
|
||||||
Deployment deployment = api.getDeploymentApi(azureGroup).get(id);
|
Deployment deployment = api.getDeploymentApi(azureGroup).get(id);
|
||||||
if (deployment == null) return null;
|
if (deployment == null) return null;
|
||||||
if (new IsDeploymentInRegions(findWhiteListOfRegions()).apply(deployment)) {
|
if (isDeploymentInRegions.apply(deployment)) {
|
||||||
return deploymentToVMDeployment.apply(deployment);
|
return deploymentToVMDeployment.apply(deployment);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
@ -346,7 +345,7 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
@Override
|
@Override
|
||||||
public Iterable<VMDeployment> listNodes() {
|
public Iterable<VMDeployment> listNodes() {
|
||||||
return FluentIterable.from(api.getDeploymentApi(azureGroup).list())
|
return FluentIterable.from(api.getDeploymentApi(azureGroup).list())
|
||||||
.filter(new IsDeploymentInRegions(findWhiteListOfRegions()))
|
.filter(isDeploymentInRegions)
|
||||||
.filter(new Predicate<Deployment>() {
|
.filter(new Predicate<Deployment>() {
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Deployment deployment) {
|
public boolean apply(Deployment deployment) {
|
||||||
|
@ -369,24 +368,4 @@ public class AzureComputeServiceAdapter implements ComputeServiceAdapter<VMDeplo
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private Iterable<String> findWhiteListOfRegions() {
|
|
||||||
if (providerMetadata.getDefaultProperties().get(LocationConstants.PROPERTY_REGIONS) == null) return null;
|
|
||||||
return Splitter.on(",").trimResults().split((CharSequence) providerMetadata.getDefaultProperties().get(LocationConstants.PROPERTY_REGIONS));
|
|
||||||
}
|
|
||||||
|
|
||||||
private class IsDeploymentInRegions implements Predicate<Deployment> {
|
|
||||||
|
|
||||||
private final Iterable<String> whiteListOfRegions;
|
|
||||||
|
|
||||||
public IsDeploymentInRegions(Iterable<String> whiteListOfRegions) {
|
|
||||||
this.whiteListOfRegions = whiteListOfRegions;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean apply(Deployment deployment) {
|
|
||||||
Value locationValue = deployment.properties().parameters().get("location");
|
|
||||||
return Iterables.contains(whiteListOfRegions, locationValue.value());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* 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.azurecompute.arm.compute.predicates;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import javax.inject.Inject;
|
||||||
|
import javax.inject.Singleton;
|
||||||
|
|
||||||
|
import org.jclouds.azurecompute.arm.domain.Deployment;
|
||||||
|
import org.jclouds.azurecompute.arm.domain.Value;
|
||||||
|
import org.jclouds.location.Region;
|
||||||
|
|
||||||
|
import com.google.common.base.Predicate;
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
public class IsDeploymentInRegions implements Predicate<Deployment> {
|
||||||
|
|
||||||
|
private final Supplier<Set<String>> regionIds;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
IsDeploymentInRegions(@Region Supplier<Set<String>> regionIds) {
|
||||||
|
this.regionIds = regionIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Deployment deployment) {
|
||||||
|
Value locationValue = deployment.properties().parameters().get("location");
|
||||||
|
return regionIds.get().contains(locationValue.value());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue