io.helidon.dbclient.DbRowBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helidon-dbclient Show documentation
Show all versions of helidon-dbclient Show documentation
Helidon Database Client API
/*
* Copyright (c) 2023 Oracle and/or its affiliates.
*
* 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.helidon.dbclient;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Consumer;
import java.util.function.Function;
import io.helidon.common.GenericType;
import io.helidon.common.mapper.MapperException;
/**
* Base {@link DbRow} implementation.
*/
public abstract class DbRowBase implements DbRow {
private final DbMapperManager dbMapperManager;
private final DbColumnBase[] columns;
private final Map namesIndex;
protected DbRowBase(DbColumnBase[] columns, DbMapperManager dbMapperManager) {
this.columns = columns;
this.dbMapperManager = dbMapperManager;
this.namesIndex = new HashMap<>(columns.length);
for (DbColumnBase column : columns) {
namesIndex.put(column.name(), column);
}
}
@Override
public DbColumn column(String name) {
DbColumn column = namesIndex.get(name);
if (column != null) {
return column;
}
throw new DbClientException(String.format("Column with name %s does not exist", name));
}
@Override
public DbColumn column(int index) {
if (index < 1 || index > columns.length) {
throw new IndexOutOfBoundsException(String.format("Column with index %d does not exist", index));
}
return columns[index - 1];
}
@Override
public void forEach(Consumer super DbColumn> columnAction) {
namesIndex.values().forEach(columnAction);
}
@Override
public T as(Class type) throws MapperException {
return dbMapperManager.read(this, type);
}
@Override
public T as(GenericType type) throws MapperException {
return dbMapperManager.read(this, type);
}
@Override
public T as(Function mapper) {
return mapper.apply(this);
}
}