io.vertx.pgclient.impl.codec.QueryCommandBaseCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-pg-client Show documentation
Show all versions of vertx-pg-client Show documentation
The Reactive PostgreSQL Client
/*
* Copyright (C) 2018 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.pgclient.impl.codec;
import io.vertx.sqlclient.Row;
import io.vertx.sqlclient.impl.RowDesc;
import io.vertx.sqlclient.impl.command.QueryCommandBase;
import java.util.stream.Collector;
abstract class QueryCommandBaseCodec> extends PgCommandCodec {
RowResultDecoder, T> decoder;
QueryCommandBaseCodec(C cmd) {
super(cmd);
}
@Override
public void handleCommandComplete(int updated) {
this.result = false;
T result;
Throwable failure;
int size;
RowDesc desc;
if (decoder != null) {
failure = decoder.complete();
result = decoder.result();
desc = decoder.desc;
size = decoder.size();
decoder.reset();
} else {
failure = null;
result = emptyResult(cmd.collector());
size = 0;
desc = null;
}
cmd.resultHandler().handleResult(updated, size, desc, result, failure);
}
@Override
public void handleErrorResponse(ErrorResponse errorResponse) {
failure = errorResponse.toException();
}
private static T emptyResult(Collector collector) {
return collector.finisher().apply(collector.supplier().get());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy