blob: 926e703c5d9e1f91e87f319e73754d188c0d9c7f [file] [log] [blame]
/**
* 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.drill.exec.client;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.drill.common.config.DrillConfig;
import org.apache.drill.exec.client.QuerySubmitter.Format;
import org.apache.drill.exec.exception.SchemaChangeException;
import org.apache.drill.exec.memory.BufferAllocator;
import org.apache.drill.exec.memory.TopLevelAllocator;
import org.apache.drill.exec.proto.UserBitShared.QueryId;
import org.apache.drill.exec.record.RecordBatchLoader;
import org.apache.drill.exec.rpc.RpcException;
import org.apache.drill.exec.rpc.user.ConnectionThrottle;
import org.apache.drill.exec.rpc.user.QueryResultBatch;
import org.apache.drill.exec.rpc.user.UserResultsListener;
import org.apache.drill.exec.util.VectorUtil;
public class PrintingResultsListener implements UserResultsListener {
AtomicInteger count = new AtomicInteger();
private CountDownLatch latch = new CountDownLatch(1);
RecordBatchLoader loader;
Format format;
int columnWidth;
BufferAllocator allocator;
volatile Exception exception;
QueryId queryId;
public PrintingResultsListener(DrillConfig config, Format format, int columnWidth) {
this.allocator = new TopLevelAllocator(config);
loader = new RecordBatchLoader(allocator);
this.format = format;
this.columnWidth = columnWidth;
}
@Override
public void submissionFailed(RpcException ex) {
exception = ex;
System.out.println("Exception (no rows returned): " + ex );
latch.countDown();
}
@Override
public void resultArrived(QueryResultBatch result, ConnectionThrottle throttle) {
int rows = result.getHeader().getRowCount();
if (result.getData() != null) {
count.addAndGet(rows);
try {
loader.load(result.getHeader().getDef(), result.getData());
} catch (SchemaChangeException e) {
submissionFailed(new RpcException(e));
}
switch(format) {
case TABLE:
VectorUtil.showVectorAccessibleContent(loader, columnWidth);
break;
case TSV:
VectorUtil.showVectorAccessibleContent(loader, "\t");
break;
case CSV:
VectorUtil.showVectorAccessibleContent(loader, ",");
break;
}
loader.clear();
}
boolean isLastChunk = result.getHeader().getIsLastChunk();
result.release();
if (isLastChunk) {
allocator.close();
latch.countDown();
System.out.println("Total rows returned: " + count.get());
}
}
public int await() throws Exception {
latch.await();
if (exception != null) {
throw exception;
}
return count.get();
}
public QueryId getQueryId() {
return queryId;
}
@Override
public void queryIdArrived(QueryId queryId) {
this.queryId = queryId;
}
}