WebObjects 5.2.3

com.webobjects.eoaccess
Class EODatabaseChannel

java.lang.Object
  extended bycom.webobjects.eoaccess.EODatabaseChannel

public class EODatabaseChannel
extends Object

An EODatabaseChannel represents an independent communication channel to the database server. It is associated with an EODatabaseContext and an EODatabase. These three classes form the database level of Enterprise Objects Framework's access layer.

An EODatabaseChannel has an EOAdaptorChannel that it uses to connect to the database server represented by its EODatabase object. An EODatabaseChannel fetches database records as instances of Enterprise Object classes that are specified in its EODatabase's EOModel objects.

An EODatabaseChannel also has an EODatabaseContext, which uses the channel to perform fetches and to lock rows in the database.

All of the database level objects are used automatically by EOEditingContexts and other components of Enterprise Objects Framework. You rarely need to interact with them directly. In particular, you wouldn't ordinarily use an EODatabaseChannel directly. Rather, you'd use an EOEditingContext to select and fetch Enterprise Objects.

See Also:
EOAdaptorChannel, EODatabase, EODatabaseContext

Constructor Summary
EODatabaseChannel(EODatabaseContext databaseContext)
          Constructs a new EODatabaseChannel with databaseContext as its parent.
 
Method Summary
 EOAdaptorChannel adaptorChannel()
          Returns the EOAdaptorChannel used by the receiver for communication with the database server.
 void cancelFetch()
          Cancels any fetch currently in progress.
 EODatabaseContext databaseContext()
          Returns the EODatabaseContext that controls transactions for the receiver.
 Object fetchObject()
          Fetches and returns the next object in the result set produced by a selectObjectsWithFetchSpecification message, or null if there are no more objects in the current result set or if an error occurs.
 boolean isFetchInProgress()
          Returns true if the receiver is fetching, false otherwise.
 boolean isLocking()
          Returns true if the receiver is locking the database rows for the selected objects, as determined by its EODatabaseContext's update strategy or the EOFetchSpecification used to perform the select.
 boolean isRefreshingObjects()
          Returns true if the receiver overwrites existing snapshots with fetched values and causes the current EOEditingContext to overwrite existing Enterprise Objects with those values as well.
 void selectObjectsWithFetchSpecification(EOFetchSpecification fetchSpecification, EOEditingContext context)
          Selects objects described by fetchSpecification to be fetched into context.
 void setCurrentEditingContext(EOEditingContext context)
          Sets the EOEditingContext into which objects are fetched to context.
 void setCurrentEntity(EOEntity entity)
          Sets the EOEntity used when fetching Enterprise Objects to entity.
 void setIsLocking(boolean isLocking)
          Sets whether the receiver locks the database records it selects.
 void setIsRefreshingObjects(boolean isRefreshingObjects)
          Sets whether the receiver causes existing snapshots and enterprise objects to be overwritten with fetched values.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EODatabaseChannel

public EODatabaseChannel(EODatabaseContext databaseContext)
Constructs a new EODatabaseChannel with databaseContext as its parent. Throws an exception if no more adaptor channels can be associated with databaseContext.

Typically, you don't need to programmatically create EODatabaseChannel objects. They are created automatically by the control layer. If you do programmatically create an EODatabaseChannel object, note that the new channel is not automatically registered in the channel pool for its parent database context. Call the EODatabaseContext method registerChannel to add it.

Parameters:
databaseContext - The EODatabaseContext in which the channel works.
Throws:
IllegalStateException - if the underlying adaptor context can't create a corresponding adaptor channel.
See Also:
EOAdaptorChannel, EODatabase, EODatabaseContext, databaseContext(), adaptorChannel()
Method Detail

adaptorChannel

public EOAdaptorChannel adaptorChannel()
Returns the EOAdaptorChannel used by the receiver for communication with the database server.

Returns:
The EOAdaptorChannel used by the receiver for communication with database server.
See Also:
EODatabaseChannel(com.webobjects.eoaccess.EODatabaseContext)

cancelFetch

public void cancelFetch()
Cancels any fetch currently in progress.

See Also:
isFetchInProgress(), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext), fetchObject()

databaseContext

public EODatabaseContext databaseContext()
Returns the EODatabaseContext that controls transactions for the receiver.

Returns:
The EODatabaseContext that controls transactions for the receiver.
See Also:
EODatabaseChannel(com.webobjects.eoaccess.EODatabaseContext)

fetchObject

public Object fetchObject()
Fetches and returns the next object in the result set produced by a selectObjectsWithFetchSpecification message, or null if there are no more objects in the current result set or if an error occurs.

This method uses the receiver's EOAdaptorChannel to fetch a row, records a snapshot with the EODatabaseContext if necessary, and creates an Enterprise Object from the row if a corresponding object doesn't already exist. The new object is sent an awakeFromFetch message to allow it to finish setting up its state.

If no snapshot exists for the fetched object, the receiver sends its EODatabase a recordSnapshotForGlobalID message to record one. If a snapshot already exists (because the object was previously fetched), the receiver checks whether it should overwrite the old snapshot with the new one by asking the delegate with a databaseContextShouldUpdateCurrentSnapshot message. If the delegate doesn't respond to this method, the EODatabaseChannel overwrites the snapshot if it is locking or refreshing fetched objects.

Further, if the EODatabaseChannel is refreshing fetched objects, it posts an ObjectsChangedInStoreNotification on behalf of its EODatabaseContext, which causes any EOEditingContext using that EODatabaseContext to update its Enterprise Object with the values recorded in the new snapshot.

Ordinarily, you don't directly use an EODatabaseChannel to fetch objects. Rather, you use an EOEditingContext, which uses an underlying EODatabaseChannel to do its work.

Returns:
The next object in the result set produced by a selectObjectsWithFetchSpecification message.
See Also:
cancelFetch(), isFetchInProgress(), isLocking(), isRefreshingObjects(), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext), EOEditingContext

isFetchInProgress

public boolean isFetchInProgress()
Returns true if the receiver is fetching, false otherwise. An EODatabaseChannel is fetching if it has been sent a successful selectObjectsWithFetchSpecification message. An EODatabaseChannel stops fetching when there are no more objects to fetch or when it is sent a cancelFetch message.

Returns:
true if the receiver is fetching, false otherwise.
See Also:
selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext), cancelFetch()

isLocking

public boolean isLocking()
Returns true if the receiver is locking the database rows for the selected objects, as determined by its EODatabaseContext's update strategy or the EOFetchSpecification used to perform the select. Returns false otherwise. This method always returns false when no fetch is in progress.

Useful when fetching objects that result from a direct call to the EOAdaptorChannels evaluateExpression method, or when fetching multiple result sets. Note that the isLocking state is reset to false after each result set, so when multiple result sets are being fetched with locks it must be explicitly reset to true using setIsLocking before each result set is retrieved.

Returns:
true if the receiver is locking rows while fetching.
See Also:
setIsLocking(boolean), EOFetchSpecification.locksObjects()

isRefreshingObjects

public boolean isRefreshingObjects()
Returns true if the receiver overwrites existing snapshots with fetched values and causes the current EOEditingContext to overwrite existing Enterprise Objects with those values as well. Returns false otherwise. This behavior is controlled by the EOFetchSpecification used in a call to selectObjectsWithFetchSpecification].

Returns:
true if the receiver overwrites existing snapshots with fetched values.
See Also:
fetchObject(), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext), EOFetchSpecification.refreshesRefetchedObjects(), EOEditingContext

selectObjectsWithFetchSpecification

public void selectObjectsWithFetchSpecification(EOFetchSpecification fetchSpecification,
                                                EOEditingContext context)
Selects objects described by fetchSpecification to be fetched into context. The selected objects compose one or more result sets, each object of which will be returned by subsequent fetchObject messages in the order prescribed by fetchSpecification's EOSortOrderings.

Throws an exception if an error occurs. The particular exception depends on the specific error, and is indicated in the exception's description. Some possible reasons for failure are:



This method invokes the delegate methods databaseContextShouldSelectObjects, databaseContextShouldUsePessimisticLock, and databaseContextDidSelectObjects.

You wouldn't ordinarily invoke this method directly; rather, you should use an EOEditingContext to select and fetch Enterprise Objects.

Parameters:
fetchSpecification - The criteria to select and order a group of database records.
context - The EOEditingContext into which to fetch Enterprise Objects.
See Also:
fetchObject(), EODatabaseContext, EOEditingContext

setCurrentEditingContext

public void setCurrentEditingContext(EOEditingContext context)
Sets the EOEditingContext into which objects are fetched to context.

This method is automatically invoked by selectObjectsWithFetchSpecification. You should never invoke it directly.

Parameters:
context - The EOEditingContext into which to fetch Enterprise Objects.
See Also:
EOEditingContext, setCurrentEntity(com.webobjects.eoaccess.EOEntity), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext)

setCurrentEntity

public void setCurrentEntity(EOEntity entity)
Sets the EOEntity used when fetching Enterprise Objects to entity. The fetchObject method uses entity to determine the class of object to fetch.

This method is invoked automatically by selectObjectsWithFetchSpecification. You should never need to invoke it directly.

Parameters:
entity - The EOEntity object that determines the class of objects to fetch.
See Also:
setCurrentEditingContext(com.webobjects.eocontrol.EOEditingContext), fetchObject(), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext)

setIsLocking

public void setIsLocking(boolean isLocking)
Sets whether the receiver locks the database records it selects. A EODatabaseChannel modifies its interaction with the database server and its snapshotting behavior based on this setting. If isLocking is true, the EODatabaseChannel modifies its fetching behavior to lock objects. If isLocking is false it simply fetches them.

An EODatabaseChannel automatically sets this flag according to the fetch specification used in a call to selectObjectsWithFetchSpecification.. You might invoke this method directly if evaluating SQL directly with EOAdaptorChannel's evaluateExpression method.

Parameters:
isLocking - Boolean flag to determine whether or not to lock rows while fetching.
See Also:
isLocking(), EOFetchSpecification.locksObjects(), selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext)

setIsRefreshingObjects

public void setIsRefreshingObjects(boolean isRefreshingObjects)
Sets whether the receiver causes existing snapshots and enterprise objects to be overwritten with fetched values. If isRefreshingObjects is true, the receiver overwrites existing snapshots with fetched values and posts an ObjectsChangedInStoreNotification on behalf of its EODatabaseContext (which typically causes the an existing object's EOEditingContext to replace its values with the new ones). If isRefreshingObjects is false, the receiver relies on the delegate to determine whether snapshots should be overwritten, and doesn't cause Enterprise Objects to be overwritten.

An EODatabaseChannel automatically sets this flag according to the fetch specification used in a selectObjectsWithFetchSpecification message. You might invoke this method directly if evaluating SQL directly with EOAdaptorChannel's evaluateExpression method.

Parameters:
isRefreshingObjects - Boolean flag that determines whether or not the receiver overwrites existing snapshots with fetched values.
See Also:
selectObjectsWithFetchSpecification(com.webobjects.eocontrol.EOFetchSpecification, com.webobjects.eocontrol.EOEditingContext), EOFetchSpecification.refreshesRefetchedObjects()

Last updated Thu Oct 21 15:04:16 PDT 2004.

Copyright © 2004 Apple Computer, Inc.