/*
* Copyright 2016 ANI Technologies Pvt. Ltd.
*
* 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 com.olacabs.fabric.executor.impl;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.olacabs.fabric.common.util.MesosDnsResolver;
import com.olacabs.fabric.executor.MetadataSource;
import com.olacabs.fabric.model.computation.ComputationSpec;
import com.spotify.dns.LookupResult;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.InetAddress;
import java.util.List;
/**
* TODO doc.
*/
public class HttpMetadataSource implements MetadataSource {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpMetadataSource.class);
private final ObjectMapper mapper;
private HttpClient httpClient = HttpClients.createDefault();
private MesosDnsResolver dnsResolver;
public HttpMetadataSource(ObjectMapper mapper, MesosDnsResolver dnsResolver) {
this.mapper = mapper;
this.dnsResolver = dnsResolver;
}
@Override
public ComputationSpec load(String url) throws Exception {
//First resolve to a real host-port combo if it's Mesos DNS
String specEndpoint = url;
String specHost = specEndpoint.split("//")[1].split("/")[0];
if (specHost.endsWith(".")) {
// Need to do a srv record resolution
List<LookupResult> results = dnsResolver.dnsSrvLookup(specHost);
if (!results.isEmpty()) {
specHost = InetAddress.getByName(results.get(0).host()).getHostAddress() + ":" + results.get(0).port();
LOGGER.info("Setting spec host to: " + specHost);
} else {
throw new RuntimeException(String.format("Dns Srv Resolution for spec host failed: %s", specHost));
}
specEndpoint = specEndpoint.split("//")[0] + "//" + specHost + "/" + specEndpoint.split("//")[1]
.replaceFirst(".*\\./", "");
}
HttpGet getRequest = new HttpGet(specEndpoint);
HttpResponse response = httpClient.execute(getRequest);
if (HttpStatus.SC_OK != response.getStatusLine().getStatusCode()) {
throw new Exception("Received: " + response.getStatusLine().getStatusCode() + " from spec url: " + url);
}
return mapper.readValue(EntityUtils.toByteArray(response.getEntity()), ComputationSpec.class);
}
}