oracle.toplink.essentials.internal.queryframework.ReportItem Maven / Gradle / Ivy
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* glassfish/bootstrap/legal/CDDLv1.0.txt or
* https://glassfish.dev.java.net/public/CDDLv1.0.html.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable,
* add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your
* own identifying information: Portions Copyright [yyyy]
* [name of copyright owner]
*/
// Copyright (c) 1998, 2007, Oracle. All rights reserved.
package oracle.toplink.essentials.internal.queryframework;
import java.util.List;
import oracle.toplink.essentials.exceptions.*;
import oracle.toplink.essentials.expressions.*;
import oracle.toplink.essentials.mappings.*;
import oracle.toplink.essentials.descriptors.ClassDescriptor;
import oracle.toplink.essentials.queryframework.*;
import oracle.toplink.essentials.internal.expressions.FunctionExpression;
import oracle.toplink.essentials.internal.expressions.QueryKeyExpression;
/**
* Purpose: represents an item requested (i.e. field for SELECT)
*
* @author Doug Clarke
* @since 2.0
*/
public class ReportItem implements java.io.Serializable {
/** Expression (partial) describing the attribute wanted */
protected Expression attributeExpression;
/** Name given for item, can be used to retieve value from result. Useful if same field retrieved multipe times */
protected String name;
/** Mapping which relates field to attribute, used to convert value and determine reference descriptor */
protected DatabaseMapping mapping;
/** Desriptor for object result that is not based on an expression */
protected ClassDescriptor descriptor;
/** Result type for this report item. */
protected Class resultType;
/** Stores the Join information for this item */
protected JoinedAttributeManager joinManager;
/** Stores the row index for this item, given multiple results and joins */
protected int resultIndex;
public ReportItem() {
super();
}
public ReportItem(String name, Expression attributeExpression) {
this.name = name;
this.attributeExpression = attributeExpression;
this.joinManager = new JoinedAttributeManager();
}
public Expression getAttributeExpression() {
return attributeExpression;
}
public ClassDescriptor getDescriptor(){
return this.descriptor;
}
/**
* INTERNAL:
* Set the list of expressions that represent elements that are joined because of their
* mapping for this query.
*/
public JoinedAttributeManager getJoinedAttributeManager() {
return this.joinManager;
}
public DatabaseMapping getMapping() {
return mapping;
}
public String getName() {
return name;
}
public int getResultIndex() {
return resultIndex;
}
public Class getResultType() {
return resultType;
}
/**
* INTERNAL:
* Looks up mapping for attribute during preExecute of ReportQuery
*/
public void initialize(ReportQuery query) throws QueryException {
if (getMapping() == null) {
DatabaseMapping mapping = query.getLeafMappingFor(getAttributeExpression(), query.getDescriptor());
if (mapping == null){
if (getAttributeExpression() != null){
if (getAttributeExpression().isExpressionBuilder()) {
Class resultClass = ((ExpressionBuilder)getAttributeExpression()).getQueryClass();
if (resultClass == null){
resultClass = query.getReferenceClass();
}
setDescriptor(query.getSession().getDescriptor(resultClass));
if (getDescriptor().hasInheritance()){
((ExpressionBuilder)getAttributeExpression()).setShouldUseOuterJoinForMultitableInheritance(true);
}
}
}
}else{
//Bug4942640 Widen the check to support collection mapping too
if (mapping.isForeignReferenceMapping()){
setDescriptor(mapping.getReferenceDescriptor());
if (getDescriptor().hasInheritance()){
((QueryKeyExpression)getAttributeExpression()).setShouldUseOuterJoinForMultitableInheritance(true);
}
} else if (mapping.isAbstractDirectMapping()){
setMapping((DatabaseMapping)mapping);
} else {
throw QueryException.invalidExpressionForQueryItem(getAttributeExpression(), query);
}
}
this.joinManager.setDescriptor(this.descriptor);
this.joinManager.setBaseQuery(query);
if (getAttributeExpression() != null){
if (getAttributeExpression().getBuilder().wasQueryClassSetInternally()){
//rebuild if class was not set by user this ensures the query has the same base
this.attributeExpression = getAttributeExpression().rebuildOn(query.getExpressionBuilder());
}
this.joinManager.setBaseExpressionBuilder(this.attributeExpression.getBuilder());
}else{
this.joinManager.setBaseExpressionBuilder(query.getExpressionBuilder());
}
this.joinManager.prepareJoinExpressions(query.getSession());
}
}
public boolean isContructorItem(){
return false;
}
/**
* @return true if there is no expression (null)
*/
public boolean isPlaceHolder() {
return getAttributeExpression() == null;
}
public void setDescriptor(ClassDescriptor descriptor){
this.descriptor = descriptor;
}
public void setMapping(DatabaseMapping mapping) {
this.mapping = mapping;
}
public void setResultIndex(int resultIndex) {
this.resultIndex = resultIndex;
this.joinManager.setParentResultIndex(resultIndex);
}
public void setResultType(Class resultType) {
this.resultType = resultType;
// Set it on the attribute expression as well if it is a function.
if (getAttributeExpression()!=null && getAttributeExpression().isFunctionExpression()) {
((FunctionExpression) getAttributeExpression()).setResultType(resultType);
}
}
public String toString() {
return "ReportQueryItem(" + getName() + " -> " + getAttributeExpression() + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy