Revising nsIChannel to allow for overlapped i/o. This consists of three parts: 1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport. 2. Derive the nsIChannel from a nsIRequest. 2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface. This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport. This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections for FTP, HTTP, and Imap (and potentially other protocols). The problem with the existing nsIChannel interface is that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active. r=darin@netscape.com sr=rpotts@netscape.com git-svn-id: svn://10.0.0.236/trunk@87587 18797224-902f-48f8-a5cc-f745e15eee43
342 lines
8.4 KiB
C++
342 lines
8.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
// datetime implementation
|
|
|
|
#include "nsDateTimeChannel.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsILoadGroup.h"
|
|
#include "nsIInterfaceRequestor.h"
|
|
#include "nsXPIDLString.h"
|
|
#include "nsISocketTransportService.h"
|
|
#include "nsITransport.h"
|
|
#include "nsIProgressEventSink.h"
|
|
|
|
static NS_DEFINE_CID(kSocketTransportServiceCID, NS_SOCKETTRANSPORTSERVICE_CID);
|
|
|
|
// nsDateTimeChannel methods
|
|
nsDateTimeChannel::nsDateTimeChannel() {
|
|
NS_INIT_REFCNT();
|
|
mContentLength = -1;
|
|
mPort = -1;
|
|
}
|
|
|
|
nsDateTimeChannel::~nsDateTimeChannel() {
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS4(nsDateTimeChannel,
|
|
nsIChannel,
|
|
nsIRequest,
|
|
nsIStreamListener,
|
|
nsIStreamObserver)
|
|
|
|
nsresult
|
|
nsDateTimeChannel::Init(nsIURI* uri)
|
|
{
|
|
nsresult rv;
|
|
|
|
NS_ASSERTION(uri, "no uri");
|
|
|
|
mUrl = uri;
|
|
|
|
rv = mUrl->GetPort(&mPort);
|
|
if (NS_FAILED(rv) || mPort < 1)
|
|
mPort = DATETIME_PORT;
|
|
|
|
rv = mUrl->GetPath(getter_Copies(mHost));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (!*(const char *)mHost) return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_METHOD
|
|
nsDateTimeChannel::Create(nsISupports* aOuter, const nsIID& aIID, void* *aResult)
|
|
{
|
|
nsDateTimeChannel* dc = new nsDateTimeChannel();
|
|
if (dc == nsnull)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
NS_ADDREF(dc);
|
|
nsresult rv = dc->QueryInterface(aIID, aResult);
|
|
NS_RELEASE(dc);
|
|
return rv;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// nsIRequest methods:
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetName(PRUnichar* *result)
|
|
{
|
|
NS_NOTREACHED("nsDateTimeChannel::GetName");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::IsPending(PRBool *result)
|
|
{
|
|
NS_NOTREACHED("nsDateTimeChannel::IsPending");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetStatus(nsresult *status)
|
|
{
|
|
*status = NS_OK;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::Cancel(nsresult status)
|
|
{
|
|
NS_ASSERTION(NS_FAILED(status), "shouldn't cancel with a success code");
|
|
NS_NOTREACHED("nsDateTimeChannel::Cancel");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::Suspend(void)
|
|
{
|
|
NS_NOTREACHED("nsDateTimeChannel::Suspend");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::Resume(void)
|
|
{
|
|
NS_NOTREACHED("nsDateTimeChannel::Resume");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// nsIChannel methods:
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetOriginalURI(nsIURI* *aURI)
|
|
{
|
|
*aURI = mOriginalURI ? mOriginalURI : mUrl;
|
|
NS_ADDREF(*aURI);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetOriginalURI(nsIURI* aURI)
|
|
{
|
|
mOriginalURI = aURI;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetURI(nsIURI* *aURI)
|
|
{
|
|
*aURI = mUrl;
|
|
NS_IF_ADDREF(*aURI);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetURI(nsIURI* aURI)
|
|
{
|
|
mUrl = aURI;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::Open(nsIInputStream **_retval)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
|
|
NS_WITH_SERVICE(nsISocketTransportService, socketService, kSocketTransportServiceCID, &rv);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsITransport> transport;
|
|
rv = socketService->CreateTransport(mHost, mPort, nsnull, -1, 32, 32, getter_AddRefs(transport));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (mCallbacks) {
|
|
nsCOMPtr<nsIProgressEventSink> sink = do_GetInterface(mCallbacks);
|
|
if (sink)
|
|
transport->SetProgressEventSink(sink);
|
|
}
|
|
|
|
return transport->OpenInputStream(0, -1, 0, _retval);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::AsyncOpen(nsIStreamListener *aListener, nsISupports *ctxt)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
|
|
NS_WITH_SERVICE(nsISocketTransportService, socketService, kSocketTransportServiceCID, &rv);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsITransport> transport;
|
|
rv = socketService->CreateTransport(mHost, mPort, nsnull, -1, 32, 32, getter_AddRefs(transport));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (mCallbacks) {
|
|
nsCOMPtr<nsIProgressEventSink> sink = do_GetInterface(mCallbacks);
|
|
if (sink)
|
|
transport->SetProgressEventSink(sink);
|
|
}
|
|
|
|
mListener = aListener;
|
|
|
|
nsCOMPtr<nsIRequest> request;
|
|
return transport->AsyncRead(this, ctxt, 0, -1, 0, getter_AddRefs(request));
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetLoadAttributes(PRUint32 *aLoadAttributes)
|
|
{
|
|
*aLoadAttributes = mLoadAttributes;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetLoadAttributes(PRUint32 aLoadAttributes)
|
|
{
|
|
mLoadAttributes = aLoadAttributes;
|
|
return NS_OK;
|
|
}
|
|
|
|
#define DATETIME_TYPE "text/plain"
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetContentType(char* *aContentType) {
|
|
if (!aContentType) return NS_ERROR_NULL_POINTER;
|
|
|
|
*aContentType = nsCRT::strdup(DATETIME_TYPE);
|
|
if (!*aContentType) return NS_ERROR_OUT_OF_MEMORY;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetContentType(const char *aContentType)
|
|
{
|
|
//It doesn't make sense to set the content-type on this type
|
|
// of channel...
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetContentLength(PRInt32 *aContentLength)
|
|
{
|
|
*aContentLength = mContentLength;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetContentLength(PRInt32 aContentLength)
|
|
{
|
|
NS_NOTREACHED("nsDateTimeChannel::SetContentLength");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetLoadGroup(nsILoadGroup* *aLoadGroup)
|
|
{
|
|
*aLoadGroup = mLoadGroup;
|
|
NS_IF_ADDREF(*aLoadGroup);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetLoadGroup(nsILoadGroup* aLoadGroup)
|
|
{
|
|
if (mLoadGroup) // if we already had a load group remove ourselves...
|
|
(void)mLoadGroup->RemoveRequest(this, nsnull, NS_OK, nsnull);
|
|
|
|
mLoadGroup = aLoadGroup;
|
|
if (mLoadGroup) {
|
|
return mLoadGroup->AddRequest(this, nsnull);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetOwner(nsISupports* *aOwner)
|
|
{
|
|
*aOwner = mOwner.get();
|
|
NS_IF_ADDREF(*aOwner);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetOwner(nsISupports* aOwner)
|
|
{
|
|
mOwner = aOwner;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetNotificationCallbacks(nsIInterfaceRequestor* *aNotificationCallbacks)
|
|
{
|
|
*aNotificationCallbacks = mCallbacks.get();
|
|
NS_IF_ADDREF(*aNotificationCallbacks);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::SetNotificationCallbacks(nsIInterfaceRequestor* aNotificationCallbacks)
|
|
{
|
|
mCallbacks = aNotificationCallbacks;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::GetSecurityInfo(nsISupports **sec)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(sec);
|
|
*sec = nsnull;
|
|
return NS_OK;
|
|
}
|
|
|
|
// nsIStreamObserver methods
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::OnStartRequest(nsIRequest *request, nsISupports *aContext) {
|
|
return mListener->OnStartRequest(this, aContext);
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::OnStopRequest(nsIRequest *request, nsISupports* aContext,
|
|
nsresult aStatus, const PRUnichar* aStatusArg) {
|
|
if (mLoadGroup) {
|
|
nsresult rv = mLoadGroup->RemoveRequest(this, nsnull, aStatus, aStatusArg);
|
|
if (NS_FAILED(rv)) return rv;
|
|
}
|
|
return mListener->OnStopRequest(this, aContext, aStatus, aStatusArg);
|
|
}
|
|
|
|
|
|
// nsIStreamListener method
|
|
NS_IMETHODIMP
|
|
nsDateTimeChannel::OnDataAvailable(nsIRequest *request, nsISupports* aContext,
|
|
nsIInputStream *aInputStream, PRUint32 aSourceOffset,
|
|
PRUint32 aLength) {
|
|
mContentLength = aLength;
|
|
return mListener->OnDataAvailable(this, aContext, aInputStream, aSourceOffset, aLength);
|
|
}
|
|
|