Networking changes: Reworked nsIURL, adding setters, factoring Open. Unsigned arguments for nsIStreamListener.
git-svn-id: svn://10.0.0.236/trunk@16495 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
118
mozilla/network/module/nsHttpURLFactory.cpp
Normal file
118
mozilla/network/module/nsHttpURLFactory.cpp
Normal file
@@ -0,0 +1,118 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
*
|
||||
* The contents of this file are subject to the Netscape Public License
|
||||
* Version 1.0 (the "NPL"); you may not use this file except in
|
||||
* compliance with the NPL. You may obtain a copy of the NPL at
|
||||
* http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||||
* for the specific language governing rights and limitations under the
|
||||
* NPL.
|
||||
*
|
||||
* The Initial Developer of this code under the NPL is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
* Reserved.
|
||||
*/
|
||||
|
||||
#include "nsIProtocolURLFactory.h"
|
||||
#include "nsHttpUrl.h"
|
||||
#include "nsINetService.h"
|
||||
#include "nsIServiceManager.h"
|
||||
#include "nsString.h"
|
||||
|
||||
class nsHttpURLFactory : public nsIProtocolURLFactory
|
||||
{
|
||||
public:
|
||||
|
||||
NS_DECL_ISUPPORTS
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// nsIProtocolURLFactory:
|
||||
|
||||
NS_IMETHOD CreateURL(nsIURL* *aResult,
|
||||
const nsString& aSpec,
|
||||
const nsIURL* aContextURL = nsnull,
|
||||
nsISupports* aContainer = nsnull,
|
||||
nsIURLGroup* aGroup = nsnull);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// nsHttpURLFactory:
|
||||
|
||||
nsHttpURLFactory(void);
|
||||
virtual ~nsHttpURLFactory(void);
|
||||
|
||||
protected:
|
||||
|
||||
};
|
||||
|
||||
nsHttpURLFactory::nsHttpURLFactory(void)
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
}
|
||||
|
||||
nsHttpURLFactory::~nsHttpURLFactory(void)
|
||||
{
|
||||
}
|
||||
|
||||
static NS_DEFINE_IID(kIProtocolURLFactoryIID, NS_IPROTOCOLURLFACTORY_IID);
|
||||
NS_IMPL_ISUPPORTS(nsHttpURLFactory, kIProtocolURLFactoryIID);
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsHttpURLFactory::CreateURL(nsIURL* *aResult,
|
||||
const nsString& aSpec,
|
||||
const nsIURL* aContextURL,
|
||||
nsISupports* aContainer,
|
||||
nsIURLGroup* aGroup)
|
||||
{
|
||||
nsHttpUrlImpl* url = new nsHttpUrlImpl(aContainer, aGroup);
|
||||
if (url == NULL)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
NS_ADDREF(url);
|
||||
nsresult err = url->ParseURL(aSpec, aContextURL);
|
||||
if (err != NS_OK)
|
||||
return err;
|
||||
*aResult = url;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
static NS_DEFINE_IID(kINetServiceIID, NS_INETSERVICE_IID);
|
||||
static NS_DEFINE_IID(kNetServiceCID, NS_NETSERVICE_CID);
|
||||
|
||||
// XXX temporarily, until we have pluggable protocols...
|
||||
extern "C" NS_NET nsresult
|
||||
NS_InitializeHttpURLFactory(nsINetService* inet)
|
||||
{
|
||||
nsresult rv;
|
||||
nsHttpURLFactory* urlf = new nsHttpURLFactory();
|
||||
if (urlf == NULL)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
#if 0
|
||||
nsINetService *inet = nsnull;
|
||||
rv = nsServiceManager::GetService(kNetServiceCID,
|
||||
kINetServiceIID,
|
||||
(nsISupports **)&inet);
|
||||
if (rv != NS_OK) return rv;
|
||||
#endif
|
||||
rv = inet->RegisterProtocol(*new nsString("http"), urlf, NULL);
|
||||
if (rv != NS_OK) goto done;
|
||||
inet->RegisterProtocol(*new nsString("https"), urlf, NULL);
|
||||
if (rv != NS_OK) goto done;
|
||||
|
||||
// XXX Hacks until we have real urlf objects for these...
|
||||
inet->RegisterProtocol(*new nsString("resource"), urlf, NULL);
|
||||
if (rv != NS_OK) goto done;
|
||||
inet->RegisterProtocol(*new nsString("file"), urlf, NULL);
|
||||
if (rv != NS_OK) goto done;
|
||||
inet->RegisterProtocol(*new nsString("javascript"), urlf, NULL);
|
||||
if (rv != NS_OK) goto done;
|
||||
|
||||
done:
|
||||
#if 0
|
||||
nsServiceManager::ReleaseService(kNetServiceCID, inet);
|
||||
#endif
|
||||
return rv;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Reference in New Issue
Block a user