com.julienviet.pgclient.impl.PgClientBase 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 com.julienviet.pgclient.impl;
import com.julienviet.pgclient.*;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import java.util.List;
public abstract class PgClientBase implements PgClient {
protected abstract void schedule(CommandBase> cmd);
@Override
public C query(String sql, Handler>> handler) {
schedule(new SimpleQueryCommand<>(sql, new RowResultDecoder(), new SimpleQueryResultHandler<>(handler)));
return (C) this;
}
@Override
public C preparedQuery(String sql, Tuple arguments, Handler>> handler) {
schedule(new PrepareStatementCommand(sql, ar -> {
if (ar.succeeded()) {
schedule(new ExtendedQueryCommand<>(ar.result(), arguments, new RowResultDecoder(), new ExtendedQueryResultHandler<>(handler)));
} else {
handler.handle(Future.failedFuture(ar.cause()));
}
}));
return (C) this;
}
@Override
public C preparedQuery(String sql, Handler>> handler) {
return preparedQuery(sql, ArrayTuple.EMPTY, handler);
}
@Override
public C preparedBatch(String sql, List batch, Handler>> handler) {
schedule(new PrepareStatementCommand(sql, ar -> {
if (ar.succeeded()) {
schedule(new ExtendedBatchQueryCommand(
ar.result(),
batch.iterator(),
new RowResultDecoder()
, new BatchQueryResultHandler(batch.size(), handler)));
} else {
handler.handle(Future.failedFuture(ar.cause()));
}
}));
return (C) this;
}
}