com.aliyuncs.regions.LocalEndpointResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-core Show documentation
Show all versions of aliyun-java-sdk-core Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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 com.aliyuncs.regions;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.aliyuncs.auth.Credential;
import com.aliyuncs.exceptions.ClientException;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
public class LocalEndpointResolver implements EndpointResolver {
Map endpointDataMap = new HashMap();
public LocalEndpointResolver() {
JsonObject endpointData = (new JsonParser()).parse(EndpointConfig.ENDPOINT_PROFILE).getAsJsonObject();
for (JsonElement productDataObj : endpointData.get("products").getAsJsonArray()) {
JsonObject productData = productDataObj.getAsJsonObject();
EndpointData data = new EndpointData();
data.setProduct(productData.get("code").getAsString());
data.setGlobalEndpoint(productData.get("global_endpoint").getAsString());
for (JsonElement regionalDataObj : productData.get("regional_endpoints").getAsJsonArray()) {
JsonObject regionalData = regionalDataObj.getAsJsonObject();
data.getRegionalEndpoint().put(regionalData.get("region").getAsString(), regionalData.get("endpoint").getAsString());
}
endpointDataMap.put(data.getProduct(), data);
}
}
@Override
public Endpoint getEndpoint(String region, String product) throws ClientException {
EndpointData endpointData = this.endpointDataMap.get(product.toLowerCase());
if (endpointData == null) {
return null;
}
// get regional endpoint
if (endpointData.getRegionalEndpoint().containsKey(region)) {
String endpoint = endpointData.getRegionalEndpoint().get(region);
return packageToEndpoint(product, region, endpoint);
}
// get global endpoint
if (endpointData.getGlobalEndpoint() != null && endpointData.getGlobalEndpoint().length() > 0) {
return packageToEndpoint(product, region, endpointData.getGlobalEndpoint());
}
return null;
}
public Endpoint packageToEndpoint(String product, String regionId, String endpoint) {
Set regionIds = new HashSet();
regionIds.add(regionId);
List productDomainList = new ArrayList();
productDomainList.add(new ProductDomain(product, endpoint));
Endpoint result = new Endpoint(regionId, regionIds, productDomainList);
return result;
}
@Override
public Endpoint getEndpoint(String region, String product, String serviceCode, String endpointType,
Credential credential, LocationConfig locationConfig) throws ClientException {
throw new UnsupportedOperationException();
}
private class EndpointData {
private String product;
private String globalEndpoint;
private Map regionalEndpoint = new HashMap();
public String getProduct() {
return product;
}
public void setProduct(String product) {
this.product = product;
}
public String getGlobalEndpoint() {
return globalEndpoint;
}
public void setGlobalEndpoint(String globalEndpoint) {
this.globalEndpoint = globalEndpoint;
}
public Map getRegionalEndpoint() {
return regionalEndpoint;
}
public void setRegionalEndpoint(Map regionalEndpoint) {
this.regionalEndpoint = regionalEndpoint;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy