com.facebook.presto.client.QueryResults Maven / Gradle / Ivy
/*
* 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.facebook.presto.client;
import com.facebook.presto.spi.type.TypeSignature;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.Objects;
import com.google.common.collect.ImmutableList;
import com.google.common.io.BaseEncoding;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import javax.validation.constraints.NotNull;
import java.net.URI;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static com.facebook.presto.spi.type.TypeSignature.parseTypeSignature;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.collect.Iterables.unmodifiableIterable;
import static java.util.Collections.unmodifiableList;
@Immutable
public class QueryResults
{
private final String id;
private final URI infoUri;
private final URI partialCancelUri;
private final URI nextUri;
private final List columns;
private final Iterable> data;
private final StatementStats stats;
private final QueryError error;
@JsonCreator
public QueryResults(
@JsonProperty("id") String id,
@JsonProperty("infoUri") URI infoUri,
@JsonProperty("partialCancelUri") URI partialCancelUri,
@JsonProperty("nextUri") URI nextUri,
@JsonProperty("columns") List columns,
@JsonProperty("data") List> data,
@JsonProperty("stats") StatementStats stats,
@JsonProperty("error") QueryError error)
{
this(id, infoUri, partialCancelUri, nextUri, columns, fixData(columns, data), stats, error);
}
public QueryResults(
String id,
URI infoUri,
URI partialCancelUri,
URI nextUri,
List columns,
Iterable> data,
StatementStats stats,
QueryError error)
{
this.id = checkNotNull(id, "id is null");
this.infoUri = checkNotNull(infoUri, "infoUri is null");
this.partialCancelUri = partialCancelUri;
this.nextUri = nextUri;
this.columns = (columns != null) ? ImmutableList.copyOf(columns) : null;
this.data = (data != null) ? unmodifiableIterable(data) : null;
this.stats = checkNotNull(stats, "stats is null");
this.error = error;
}
@NotNull
@JsonProperty
public String getId()
{
return id;
}
@NotNull
@JsonProperty
public URI getInfoUri()
{
return infoUri;
}
@Nullable
@JsonProperty
public URI getPartialCancelUri()
{
return partialCancelUri;
}
@Nullable
@JsonProperty
public URI getNextUri()
{
return nextUri;
}
@Nullable
@JsonProperty
public List getColumns()
{
return columns;
}
@Nullable
@JsonProperty
public Iterable> getData()
{
return data;
}
@NotNull
@JsonProperty
public StatementStats getStats()
{
return stats;
}
@Nullable
@JsonProperty
public QueryError getError()
{
return error;
}
@Override
public String toString()
{
return Objects.toStringHelper(this)
.add("id", id)
.add("infoUri", infoUri)
.add("partialCancelUri", partialCancelUri)
.add("nextUri", nextUri)
.add("columns", columns)
.add("hasData", data != null)
.add("stats", stats)
.add("error", error)
.toString();
}
private static Iterable> fixData(List columns, List> data)
{
if (data == null) {
return null;
}
checkNotNull(columns, "columns is null");
ImmutableList.Builder> rows = ImmutableList.builder();
for (List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy