FileDocCategorySizeDatePackage
ContentHandlerServer.javaAPI DocphoneME MR2 API (J2ME)13227Wed May 02 18:00:44 BST 2007javax.microedition.content

ContentHandlerServer

public interface ContentHandlerServer implements ContentHandler
ContentHandlerServer provides methods to get new Invocation requests, to finish the processing of requests and to get the access control information. This server interface extends {@link ContentHandler} to make available the registration information for types, suffixes, actions, ID, etc. Instances are thread safe.

Responding to an Invocation

Content handler applications process requests using either blocking calls to {@link #getRequest getRequest} or can be notified of new requests with the {@link #setListener setListener} method. A content handler receives an Invocation by calling {@link #getRequest getRequest}. The content handler should use the {@link Invocation#getAction Invocation.getAction} method to determine the requested action and act on the content appropriately. The content handler will typically call the {@link Invocation#open Invocation.open} method to read the content. The open method returns a Connection from the Generic Connection framework that provides access to the content. When the content handler is finished processing the Invocation, it must call the {@link #finish finish} method to report the status. If a response was required the status and parameters are returned to the invoking application.

Required Response to the Invoking Application

The invoking application decides whether it needs a response and sets the request state before calling {@link Registry#invoke Registry.invoke}. When an Invocation is completed either by using the {@link #finish finish} method or when the AMS is handling an error condition, the {@link Invocation#getResponseRequired Invocation.getResponseRequired} method is checked. If it is true, then the values from the Invocation are queued to the invoking application with the status set by the ContentHandler or AMS. When a response is queued, it will be dispatched to the invoking application. If a response is not required, it is not delivered to the invoking application and the invoking application is not started.

Chaining Content Handlers

Content handlers link Invocations that are part of a user-driven task and depend on each other as part of a transaction. Suppose an application A creates an invocation a. When invoked, it is dispatched to content handler B which in-turn creates an invocation b and it is dispatched to content handler C. C displays the content and returns a response b' to B, B in turn completes processing and returns a response a' to A.

The implementation MUST have the capacity and mechanisms to support the chaining of requests required for an application to invoke a content handler, and the content handler invoking another content handler, and for each content handler to return a response. This chain length of two active invocations is the minimum requirement. The implementation should not artificially limit the number of invocations and responses that are supported except as constrained by the resources of the device.

To maintain continuity across the applications, chained invocations are part of the same transaction. Invoking an Invocation places it in a transaction. The transaction maintains the sequence of invocations across all of the applications involved. The transaction maintains the invocations regardless of whether a single application can run at a time or the applications execute in parallel in different runtime environments. The transaction is used to record and manage the steps in processing and dispatching to applications.

For simple non-chaining use cases that involve only two applications with a single invocation and response, only the methods {@link #getRequest getRequest}, {@link #finish finish}, {@link Registry#invoke Registry.invoke}, and {@link Registry#getResponse Registry.getResponse} are needed.

For chained use cases, the methods {@link Registry#invoke Registry.invoke} and {@link Invocation#getPrevious Invocation.getPrevious} are used to establish the sequence and to retrieve the previous Invocation. The {@link Registry#invoke Registry.invoke} method places the new Invocation in the same transaction as a previous Invocation. The previous Invocation will be held in the transaction until the new Invocation is completed. When the response to the new Invocation is returned, the previously active Invocation can be retrieved with {@link Invocation#getPrevious Invocation.getPrevious} so the content handler can complete its processing.

An Invocation can be delegated to another handler with the {@link Registry#reinvoke Registry.reinvoke} method. Responses to the reinvocation will be queued to the original invoking application.

Handling Faults

If the content handler cannot or does not correctly handle the Invocation, then the AMS MUST handle it correctly. These actions prevent an incorrectly written content handler from being unresponsive or being run repeatedly but never processing queued invocations.
  • If an Invocation with a status of ACTIVE is dequeued by the content handler, but the handler does not call {@link #finish finish} or make a request to chain a new Invocation to the ACTIVE invocation before the content handler exits, then the AMS MUST complete the request with an ERROR status. This ensures that the invoking application will always get a response, if required, for each invocation regardless of whether the content handler correctly handles it.
  • If the content handler is not running, or exits before processing all queued requests or responses, then it MUST be started. The content handler is expected to dequeue at least one invocation that was queued before it was started. If it does not dequeue any pending Invocations or can not be started, then Invocations that were in the queue for the content handler before it was started MUST be handled as follows:
    • Invocation requests with a status of ACTIVE are completed with the ERROR status.
    • Invocation responses are discarded.
    • Invocations queued after the content handler was started are retained and will require it to be restarted.
    This serialization of queued requests and starting the content handler addresses a race condition. This condition may occur when the content handler is active but exits before processing Invocations that were queued after it was started or it last called {@link #getRequest getRequest} or {@link Registry#getResponse Registry.getResponse}.

Invocations and invocation state MUST NOT be preserved across soft and hard restarts of the device software including unexpected power interruptions.

Fields Summary
Constructors Summary
Methods Summary
public intaccessAllowedCount()
Gets the number of IDs allowed access by the content handler. The number of IDs MUST be equal to the length of the array of accessAllowed passed to {@link Registry#register Registry.register}. If the number of IDs is zero then all applications and content handlers are allowed access.

return
the number of IDs allowed access

public voidcancelGetRequest()
Cancels a pending getRequest. This method will force all threads blocked in a call to the getRequest method for this ContentHandlerServer to return. If no threads are blocked; this call has no effect.

public booleanfinish(Invocation invocation, int status)
Finishes the Invocation and sets the status for the response. The finish method can only be called when the Invocation has a status of ACTIVE or HOLD.

The content handler may modify the URL, type, action, or arguments before invoking finish. If the method {@link Invocation#getResponseRequired Invocation.getResponseRequired} returns true, then the modified values MUST be returned to the invoking application.

param
invocation the Invocation to finish
param
status the new status of the Invocation; MUST be either OK, CANCELLED or INITIATED
return
true if the application MUST voluntarily exit to allow pending responses or requests to be handled; false otherwise
exception
IllegalArgumentException if the new status of the Invocation is not OK, CANCELLED, or INITIATED
exception
IllegalStateException if the current status of the Invocation is not ACTIVE or HOLD
exception
NullPointerException if the invocation is null

public java.lang.StringgetAccessAllowed(int index)
Gets the ID at the specified index of an application or content handler allowed access to this content handler. The ID returned for each index must be the equal to the ID at the same index in the accessAllowed array passed to {@link Registry#register Registry.register}.

param
index the index of the ID
return
the ID at the specified index
exception
IndexOutOfBoundsException if index is less than zero or greater than or equal to the value of the {@link #accessAllowedCount accessAllowedCount} method.

public InvocationgetRequest(boolean wait)
Gets the next Invocation request pending for this ContentHandlerServer. The method can be unblocked with a call to {@link #cancelGetRequest cancelGetRequest}. The application should process the Invocation as a request to perform the action on the content.

param
wait true if the method must wait for an Invocation if one is not available; false if the method MUST NOT wait.
return
the next pending Invocation or null if no Invocation is available; null if cancelled with {@link #cancelGetRequest cancelGetRequest}
see
Registry#invoke
see
#finish

public booleanisAccessAllowed(java.lang.String ID)
Determines if an ID MUST be allowed access by the content handler. Access MUST be allowed if the ID has a prefix that exactly matches any of the IDs returned by {@link #getAccessAllowed}. The prefix comparison is equivalent to java.lang.String.startsWith.

param
ID the ID for which to check access
return
true if access MUST be allowed by the content handler; false otherwise
exception
NullPointerException if ID is null

public voidsetListener(RequestListener listener)
Sets the listener to be notified when a new request is available for this content handler. The request is retrieved using {@link #getRequest getRequest}. If the listener is non-null and a request is available, the listener MUST be notified.

param
listener the listener to register; null to remove the listener.