oracle.toplink.essentials.queryframework.DataReadQuery 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.queryframework;
import java.util.*;
import oracle.toplink.essentials.internal.helper.*;
import oracle.toplink.essentials.exceptions.*;
import oracle.toplink.essentials.internal.queryframework.*;
import oracle.toplink.essentials.internal.sessions.AbstractRecord;
/**
* Purpose:
* Concrete class to perform read using raw SQL.
*
*
Responsibilities:
* Execute a selecting raw SQL string.
* This returns a Collection of the DatabaseRows representing the result set.
*
* @author Yvon Lavoie
* @since TOPLink/Java 1.0
*/
public class DataReadQuery extends ReadQuery {
protected ContainerPolicy containerPolicy;
//** For EJB 3 support returns results without using the AbstractRecord */
protected boolean useAbstractRecord = true;
/**
* PUBLIC:
* Initialize the state of the query.
*/
public DataReadQuery() {
super();
this.shouldMaintainCache = false;
useAbstractRecord = true;
setContainerPolicy(ContainerPolicy.buildPolicyFor(ClassConstants.Vector_class));
}
/**
* PUBLIC:
* Initialize the query to use the specified SQL string.
*/
public DataReadQuery(String sqlString) {
this();
setSQLString(sqlString);
}
/**
* PUBLIC:
* Initialize the query to use the specified call.
*/
public DataReadQuery(Call call) {
this();
setCall(call);
}
/**
* INTERNAL:
* Clone the query.
*/
public Object clone() {
DataReadQuery cloneQuery = (DataReadQuery)super.clone();
cloneQuery.setContainerPolicy(getContainerPolicy().clone(cloneQuery));
return cloneQuery;
}
/**
* INTERNAL:
* Execute the query.
* Perform the work to execute the SQL string.
* @exception DatabaseException an error has occurred on the database
* @return a collection or cursor of DatabaseRows representing the result set
*/
public Object executeDatabaseQuery() throws DatabaseException {
if (getContainerPolicy().overridesRead()) {
return getContainerPolicy().execute();
}
return executeNonCursor();
}
/**
* INTERNAL:
* The results are *not* in a cursor, build the collection.
*/
protected Object executeNonCursor() throws DatabaseException {
Vector rows = getQueryMechanism().executeSelect();
if (useAbstractRecord ){
Object results = getContainerPolicy().buildContainerFromVector(rows, getSession());
return results;
}
ContainerPolicy containerPolicy = getContainerPolicy();
Object reportResults = containerPolicy.containerInstance(rows.size());
for (Iterator rowsEnum = rows.iterator(); rowsEnum.hasNext();) {
containerPolicy.addInto( ((AbstractRecord)rowsEnum.next()).getValues() , reportResults, getSession());
}
return reportResults;
}
/**
* PUBLIC:
* Return the query's ContainerPolicy.
* @return oracle.toplink.essentials.internal.queryframework.ContainerPolicy
*/
public ContainerPolicy getContainerPolicy() {
return containerPolicy;
}
/**
* PUBLIC:
* Return if this is a data read query.
*/
public boolean isDataReadQuery() {
return true;
}
/**
* INTERNAL:
* Prepare the receiver for execution in a session.
*/
protected void prepare() {
super.prepare();
getContainerPolicy().prepare(this, getSession());
if (getContainerPolicy().overridesRead()) {
return;
}
getQueryMechanism().prepareExecuteSelect();
}
/**
* INTERNAL:
* Prepare the receiver for execution in a session.
*/
public void prepareForExecution() throws QueryException {
super.prepareForExecution();
getContainerPolicy().prepareForExecution();
}
/**
* PUBLIC:
* Set the container policy.
*/
public void setContainerPolicy(ContainerPolicy containerPolicy) {
// Fix for BUG 3337003 - TopLink OX will try to set this to null if
// it is not set in the deployment XML. So don't allow it to do that.
if (containerPolicy == null) {
return;
}
this.containerPolicy = containerPolicy;
}
/**
* PUBLIC:
* Configure the query to use an instance of the specified container class
* to hold the target objects.
* The container class must implement (directly or indirectly) the Collection interface.
*/
public void useCollectionClass(Class concreteClass) {
setContainerPolicy(ContainerPolicy.buildPolicyFor(concreteClass));
}
/**
* INTERNAL:
* Allow changing the default behaviour so that AbstractRecords are not returned as query results.
*/
public void setUseAbstractRecord(boolean useAbstractRecord){
this.useAbstractRecord = useAbstractRecord;
}
}