HttpTableValuedFunction.java
// 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.apache.doris.tablefunction;
import org.apache.doris.analysis.BrokerDesc;
import org.apache.doris.analysis.StorageBackend.StorageType;
import org.apache.doris.common.AnalysisException;
import org.apache.doris.datasource.property.storage.HttpProperties;
import org.apache.doris.datasource.property.storage.StorageProperties;
import org.apache.doris.httpv2.rest.manager.HttpUtils;
import org.apache.doris.thrift.TBrokerFileStatus;
import org.apache.doris.thrift.TFileType;
import java.util.List;
import java.util.Map;
/**
* The Implement of table valued function
* http("uri" = "https://example.com/data.csv", "FORMAT" = "csv").
*/
public class HttpTableValuedFunction extends ExternalFileTableValuedFunction {
public static final String NAME = "http";
private HttpProperties httpProperties;
private String uri;
public HttpTableValuedFunction(Map<String, String> properties) throws AnalysisException {
Map<String, String> props = super.parseCommonProperties(properties);
props.put(StorageProperties.FS_HTTP_SUPPORT, "true");
try {
this.storageProperties = StorageProperties.createPrimary(props);
if (!(storageProperties instanceof HttpProperties)) {
throw new AnalysisException("HttpTableValuedFunction only support http storage properties");
}
this.httpProperties = (HttpProperties) storageProperties;
this.uri = this.httpProperties.validateAndGetUri(props);
this.backendConnectProperties.putAll(storageProperties.getBackendConfigProperties());
generateFileStatus();
} catch (Exception e) {
throw new AnalysisException("Failed check http storage props, " + e.getMessage(), e);
}
}
private void generateFileStatus() throws Exception {
this.fileStatuses.clear();
if (this.uri.startsWith("http://") || this.uri.startsWith("https://")) {
this.fileStatuses.add(new TBrokerFileStatus(this.uri, false,
HttpUtils.getHttpFileSize(this.uri, this.httpProperties.getHeaders()), true));
} else if (this.uri.startsWith("hf://")) {
List<String> fileUrls = HFUtils.expandGlob(this.uri);
if (LOG.isDebugEnabled()) {
for (String fileUrl : fileUrls) {
LOG.debug("HttpTableValuedFunction expand hf glob uri: {}", fileUrl);
}
}
for (String fileUrl : fileUrls) {
this.fileStatuses.add(new TBrokerFileStatus(fileUrl, false,
HttpUtils.getHttpFileSize(fileUrl, this.httpProperties.getHeaders()), true));
}
} else {
throw new AnalysisException("HttpTableValuedFunction uri is invalid: " + this.uri);
}
}
@Override
public TFileType getTFileType() {
return TFileType.FILE_HTTP;
}
@Override
public String getFilePath() {
if (uri == null) {
throw new IllegalArgumentException("HttpTableValuedFunction uri is null");
}
return uri;
}
@Override
public BrokerDesc getBrokerDesc() {
return new BrokerDesc("HttpTvfBroker", StorageType.HTTP, processedParams);
}
@Override
public String getTableName() {
return "HttpTableValuedFunction";
}
}