All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.vertx.sqlclient.impl.CursorImpl Maven / Gradle / Ivy
/*
* Copyright (C) 2017 Julien Viet
*
* 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 io.vertx.sqlclient.impl;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Promise;
import io.vertx.core.impl.ContextInternal;
import io.vertx.core.impl.future.PromiseInternal;
import io.vertx.sqlclient.Cursor;
import io.vertx.sqlclient.Row;
import io.vertx.sqlclient.RowSet;
import java.util.UUID;
/**
* @author Julien Viet
*/
public class CursorImpl implements Cursor {
private final Connection conn;
private final PreparedStatementImpl ps;
private final ContextInternal context;
private final boolean autoCommit;
private final TupleInternal params;
private String id;
private boolean closed;
private QueryResultBuilder, RowSetImpl, RowSet> result;
CursorImpl(PreparedStatementImpl ps, Connection conn, ContextInternal context, boolean autoCommit, TupleInternal params) {
this.ps = ps;
this.conn = conn;
this.context = context;
this.autoCommit = autoCommit;
this.params = params;
}
@Override
public synchronized boolean hasMore() {
if (result == null) {
throw new IllegalStateException("No current cursor read");
}
return result.isSuspended();
}
@Override
public void read(int count, Handler>> handler) {
Future> fut = read(count);
if (handler != null) {
fut.onComplete(handler);
}
}
@Override
public synchronized Future> read(int count) {
PromiseInternal> promise = context.promise();
ps.withPreparedStatement(ps.options(), params, ar -> {
if (ar.succeeded()) {
PreparedStatement preparedStatement = ar.result();
QueryExecutor, RowSetImpl, RowSet> builder = new QueryExecutor<>(RowSetImpl.FACTORY, RowSetImpl.COLLECTOR);
if (id == null) {
id = UUID.randomUUID().toString();
this.result = builder.executeExtendedQuery(conn, preparedStatement, ps.options(), autoCommit, params, count, id, false, promise);
} else if (this.result.isSuspended()) {
this.result = builder.executeExtendedQuery(conn, preparedStatement, ps.options(), autoCommit, params, count, id, true, promise);
} else {
throw new IllegalStateException();
}
} else {
promise.fail(ar.cause());
}
});
return promise.future();
}
@Override
public synchronized boolean isClosed() {
return closed;
}
@Override
public synchronized void close(Handler> completionHandler) {
close (context.promise(completionHandler));
}
@Override
public synchronized Future close() {
Promise promise = context.promise();
close (promise);
return promise.future();
}
private synchronized void close(Promise promise) {
if (!closed) {
closed = true;
if (id == null) {
promise.complete();
} else {
String id = this.id;
this.id = null;
result = null;
ps.closeCursor(id, promise);
}
}
}
}