com.clickhouse.client.ClickHouseResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-client Show documentation
Show all versions of clickhouse-client Show documentation
Unified Java client for ClickHouse
package com.clickhouse.client;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Serializable;
import java.io.UncheckedIOException;
import java.util.Collections;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Spliterator;
import java.util.Spliterators;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
import com.clickhouse.client.config.ClickHouseClientOption;
import com.clickhouse.data.ClickHouseChecker;
import com.clickhouse.data.ClickHouseColumn;
import com.clickhouse.data.ClickHouseDataConfig;
import com.clickhouse.data.ClickHouseInputStream;
import com.clickhouse.data.ClickHouseRecord;
/**
* This encapsulates a server reponse. Depending on concrete implementation, it
* could be either an in-memory list or a wrapped input stream with
* {@link com.clickhouse.data.ClickHouseDataProcessor} attached for
* deserialization. To get data returned from server, depending on actual needs,
* you have 3 options:
*
*
* - use {@link #records()} or {@link #stream()} to get deserialized
* {@link ClickHouseRecord} one at a time
* - use {@link #firstRecord()} if you're certain that all you need is the
* first {@link ClickHouseRecord}
* - use {@link #getInputStream()} or {@link #pipe(OutputStream, int)} if you
* prefer to handle stream instead of deserialized data
*
*/
public interface ClickHouseResponse extends AutoCloseable, Serializable {
/**
* Empty response that can never be closed.
*/
static final ClickHouseResponse EMPTY = new ClickHouseResponse() {
@Override
public List getColumns() {
return Collections.emptyList();
}
@Override
public ClickHouseResponseSummary getSummary() {
return ClickHouseResponseSummary.EMPTY;
}
@Override
public ClickHouseInputStream getInputStream() {
return ClickHouseInputStream.empty();
}
@Override
public Iterable records() {
return Collections.emptyList();
}
@Override
public Iterable records(Class objClass) {
return Collections.emptyList();
}
@Override
public void close() {
// do nothing
}
@Override
public boolean isClosed() {
// ensure the instance is "stateless"
return false;
}
};
/**
* Gets list of columns.
*
* @return non-null list of column
*/
List getColumns();
/**
* Gets summary of this response. Keep in mind that the summary may change over
* time until response is closed.
*
* @return non-null summary of this response
*/
ClickHouseResponseSummary getSummary();
/**
* Gets input stream of the response. In general, this is the most
* memory-efficient way for streaming data from server to client. However, this
* also means additional work is required for deserialization, especially when
* using a binary format.
*
* @return non-null input stream for getting raw data returned from server
*/
ClickHouseInputStream getInputStream();
/**
* Gets the first record only. Please use {@link #records()} instead if you need
* to access the rest of records.
*
* @return the first record
* @throws NoSuchElementException when there's no record at all
* @throws UncheckedIOException when failed to read data(e.g. deserialization)
*/
default ClickHouseRecord firstRecord() {
return records().iterator().next();
}
/**
* Gets the first record as mapped object. Please use {@link #records(Class)}
* instead if you need to access the rest of records.
*
* @param type of the mapped object
* @param objClass non-null class of the mapped object
* @return mapped object of the first record
* @throws NoSuchElementException when there's no record at all
* @throws UncheckedIOException when failed to read data(e.g. deserialization)
*/
default T firstRecord(Class objClass) {
return records(objClass).iterator().next();
}
/**
* Returns an iterable collection of records which can be walked through in a
* foreach loop. Please pay attention that: 1) {@link UncheckedIOException}
* might be thrown when iterating through the collection; and 2) it's not
* supposed to be called for more than once.
*
* @return non-null iterable collection
* @throws UncheckedIOException when failed to read data(e.g. deserialization)
*/
Iterable records();
/**
* Returns an iterable collection of mapped objects which can be walked through
* in a foreach loop. When {@code objClass} is null or {@link ClickHouseRecord},
* it's same as calling {@link #records()}.
*
* @param type of the mapped object
* @param objClass non-null class of the mapped object
* @return non-null iterable collection
* @throws UncheckedIOException when failed to read data(e.g. deserialization)
*/
Iterable records(Class objClass);
/**
* Pipes the contents of this response into the given output stream. Keep in
* mind that it's caller's responsibility to flush and close the output stream.
*
* @param output non-null output stream, which will remain open
* @param bufferSize buffer size, 0 or negative value will be treated as
* {@link ClickHouseClientOption#BUFFER_SIZE}
* @throws IOException when error occurred reading or writing data
*/
default void pipe(OutputStream output, int bufferSize) throws IOException {
ClickHouseInputStream.pipe(getInputStream(), ClickHouseChecker.nonNull(output, "output"),
ClickHouseDataConfig.getBufferSize(bufferSize,
(int) ClickHouseClientOption.BUFFER_SIZE.getDefaultValue(),
(int) ClickHouseClientOption.MAX_BUFFER_SIZE.getDefaultValue()));
}
/**
* Gets stream of records to process.
*
* @return stream of records
*/
default Stream stream() {
return StreamSupport.stream(Spliterators.spliteratorUnknownSize(records().iterator(),
Spliterator.IMMUTABLE | Spliterator.NONNULL | Spliterator.ORDERED), false);
}
/**
* Gets stream of mapped objects to process.
*
* @return stream of mapped objects
*/
default Stream stream(Class objClass) {
return StreamSupport.stream(Spliterators.spliteratorUnknownSize(records(objClass).iterator(),
Spliterator.IMMUTABLE | Spliterator.NONNULL | Spliterator.ORDERED), false);
}
@Override
void close();
/**
* Checks whether the response has been closed or not.
*
* @return true if the response has been closed; false otherwise
*/
boolean isClosed();
}