nsIRequest
Last changed in Gecko 19.0 (Firefox 19.0 / Thunderbird 19.0 / SeaMonkey 2.16)Once a channel is created (via nsIIOService.newChannel()
), parameters for that request may be set by using the channel attributes, or by calling QueryInterface() to retrieve a subclass of nsIChannel
for protocol-specific parameters. Then, the URI
can be fetched by calling open()
or asyncOpen()
. After a request has been completed, the channel is still valid for accessing protocol-specific results. For example, QueryInterfacing to nsIHttpChannel
allows response headers to be retrieved for the corresponding http transaction.
This interface must be used only from the XPCOM main thread.
Implemented by netwerk/base/src/nsBaseChannel.cpp
and netwerk/protocol/http/src/nsHttpChannel.cpp
.
Method overview
void asyncOpen(in nsIStreamListener aListener, in nsISupports aContext); |
nsIInputStream open(); |
Attributes
Attribute | Type | Description |
contentCharset |
ACString |
The character set of the channel's content if available and if applicable. This attribute only applies to textual data. Setting contentCharset before the channel has been opened provides a hint to the channel on what the charset should be. The behavior is similar to contentType. The value of the contentCharset attribute is a mixed case string. |
contentLength |
int64_t |
The length of the data associated with the channel if available. A value of -1 indicates that the content length is unknown. Note: As of Gecko 19.0, this parameter changed from |
contentType |
ACString |
The MIME type of the channel's content if available. Note: The content type can often be wrongly specified (For example wrong file extension, wrong MIME type, wrong document type stored on a server and so on.), and the caller most likely wants to verify with the actual data.
Setting contentType before the channel has been opened provides a hint to the channel as to what the MIME type is. The channel may ignore this hint in deciding on the actual MIME type that it will report. Setting contentType after onStartRequest has been fired or after Setting contentType between the time that The value of the contentType attribute is a lowercase string. A value assigned to this attribute will be parsed and normalized as follows:
|
notificationCallbacks |
|
The notification callbacks for the channel. This is set by clients, who wish to provide a means to receive progress, status and protocol-specific notifications. If this value is Interfaces commonly requested include: When the channel is done, it must not continue holding references to this object. Note: A channel implementation should take care when "caching" an interface pointer queried from its notification callbacks. If the notification callbacks are changed, then a cached interface pointer may become invalid and may therefore need to be re-queried. |
originalURI |
|
The original URI used to construct the channel. This is used in the case of a redirect or URI "resolution" (For example resolving a resource: URI to a file: URI) so that the original pre-redirect URI can still be obtained. This is also used as the RI of the document resulting from the channel, unless the channel has the LOAD_REPLACE flag set. This is never Note: This is distinctly different from the http Referer (referring URI), which is typically the page that contained the original URI (accessible from nsIHttpChannel .) |
owner |
|
The owner, corresponding to the entity that is responsible for this channel. Used by the security manager to grant or deny privileges to mobile code loaded from this channel. Note: This is a strong reference to the owner, so if the owner is also holding a strong reference to the channel, care must be taken to explicitly drop its reference to the channel. |
securityInfo |
|
Transport-level security information (if any, else null) corresponding to the channel, normally presented through the interfaces nsITransportSecurityInfo and nsISSLStatusProvider Read only. |
URI |
|
The URI corresponding to the channel. Its value is immutable. Read only. |
Constants
Channel specific load flags:
Bits 23-31 are reserved for future use by this interface or one of its derivatives (For an example see nsICachingChannel
).
Constant | Value | Description |
LOAD_DOCUMENT_URI |
16 |
Set (for example by the docshell) to indicate whether or not the channel corresponds to a document URI. |
LOAD_RETARGETED_DOCUMENT_URI |
17 |
If the end consumer for this load has been retargeted after discovering its content, this flag will be set: |
LOAD_REPLACE |
18 |
This flag is set to indicate that this channel is replacing another channel. This means that:
onStopRequest with another onStartRequest /onStopRequest pair, each pair for a different request). |
LOAD_INITIAL_DOCUMENT_URI |
19 |
Set (for example by the docshell) to indicate whether or not the channel corresponds to an initial document URI load (for example link click). |
LOAD_TARGETED |
20 |
Set (For example by the URILoader ) to indicate whether or not the end consumer for this load has been determined. |
LOAD_CALL_CONTENT_SNIFFERS |
21 |
If this flag is set, the channel should call the content sniffers as described in Note: Channels may ignore this flag; however, new channel implementations should only do so with good reason. |
LOAD_CLASSIFY_URI |
22 |
This flag tells the channel to use URI classifier service to check the URI when opening the channel. |
Methods
asyncOpen()
Asynchronously open this channel. Data is fed to the specified stream listener as it becomes available. The stream listener's methods are called on the thread that calls asyncOpen and are not called until after asyncOpen returns. If asyncOpen returns successfully, the channel promises to call at least onStartRequest and onStopRequest.
If the nsIRequest
object passed to the stream listener's methods is not this channel, an appropriate onChannelRedirect notification needs to be sent to the notification callbacks before onStartRequest is called. Once onStartRequest is called, all following method calls on aListener will get the request that was passed to onStartRequest.
If the channel's and loadgroup's notification callbacks do not provide an nsIChannelEventSink
when onChannelRedirect would be called, that's equivalent to having called onChannelRedirect.
If asyncOpen returns successfully, the channel is responsible for keeping itself alive until it has called onStopRequest on aListener or called onChannelRedirect.
Implementations are allowed to synchronously add themselves to the associated load group (if any).
void asyncOpen( in nsIStreamListener aListener, in nsISupports aContext );
Parameters
aListener
- The
nsIStreamListener
implementation. aContext
- An opaque parameter forwarded to aListener's methods.
Exceptions thrown
NS_ERROR_ALREADY_OPENED
- If the channel is reopened
NS_ERROR_PORT_ACCESS_NOT_ALLOWED
- If the specified port is in the
nsIOService
forbidden port list.
open()
Synchronously open the channel.
nsIChannel
implementations are not required to implement this method. Moreover, since this method may block the calling thread, it should not be called on a thread that processes UI events. Like any other nsIChannel
method it must not be called on any thread other than the XPCOM main thread.nsIInputStream open();
Parameters
None.
Return value
Blocking input stream to the channel's data.
Exceptions thrown
NS_ERROR_IN_PROGRESS
- If the channel is reopened.
See also
nsIChannelEventSink
foronChannelRedirect