/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * 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 org.jkiss.dbeaver.model.data; import org.jkiss.code.NotNull; import org.jkiss.code.Nullable; import org.jkiss.dbeaver.model.*; import org.jkiss.dbeaver.model.exec.DBCException; import org.jkiss.dbeaver.model.struct.DBSAttributeBase; import org.jkiss.dbeaver.model.struct.DBSEntity; import org.jkiss.dbeaver.model.struct.DBSEntityAttribute; import org.jkiss.dbeaver.model.struct.DBSObject; /** * Type attribute value binding info */ public class DBDAttributeBindingType extends DBDAttributeBindingNested implements DBPImageProvider { @NotNull private final DBSAttributeBase attribute; public DBDAttributeBindingType( @NotNull DBDAttributeBinding parent, @NotNull DBSAttributeBase attribute) { super(parent, DBUtils.findValueHandler(parent.getDataSource(), attribute)); this.attribute = attribute; } /** * Attribute index in result set * @return attribute index (zero based) */ @Override public int getOrdinalPosition() { return attribute.getOrdinalPosition(); } @Override public boolean isRequired() { return attribute.isRequired(); } @Override public boolean isAutoGenerated() { return attribute.isAutoGenerated(); } @Override public boolean isPseudoAttribute() { return false; } @Nullable @Override public DBSObject getSource() { if (attribute instanceof DBSObject) { return ((DBSObject)attribute).getParentObject(); } return null; } /** * Attribute label */ @NotNull public String getLabel() { return attribute.getName(); } @Nullable @Override public String getEntityName() { DBSObject source = getSource(); if (source instanceof DBSEntity) { return source.getName(); } return null; } /** * Attribute name */ @NotNull public String getName() { return attribute.getName(); } /** * Entity attribute */ @Nullable public DBSEntityAttribute getEntityAttribute() { if (attribute instanceof DBSEntityAttribute) { return (DBSEntityAttribute) attribute; } return null; } @NotNull @Override public DBSAttributeBase getAttribute() { return attribute; } @Nullable @Override public Object extractNestedValue(@NotNull Object ownerValue) throws DBCException { assert parent != null; if (parent.getDataKind() == DBPDataKind.ARRAY) { // If we have a collection then use first element if (ownerValue instanceof DBDCollection) { DBDCollection collection = (DBDCollection) ownerValue; if (collection.getItemCount() > 0) { ownerValue = collection.getItem(0); } else { return null; } } } if (ownerValue instanceof DBDComposite) { return ((DBDComposite) ownerValue).getAttributeValue(attribute); } throw new DBCException("Unsupported value type: " + ownerValue.getClass().getName()); } @Nullable @Override public DBPImage getObjectImage() { return DBValueFormatting.getObjectImage(attribute); } @Override public String getTypeName() { return attribute.getTypeName(); } @Override public String getFullTypeName() { return DBUtils.getFullTypeName(attribute); } @Override public int getTypeID() { return attribute.getTypeID(); } @Override public DBPDataKind getDataKind() { return attribute.getDataKind(); } @Override public int getScale() { return attribute.getScale(); } @Override public int getPrecision() { return attribute.getPrecision(); } @Override public long getMaxLength() { return attribute.getMaxLength(); } }