/* -*- 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): */ #include "nsCOMPtr.h" #include "nsIModule.h" #include "nsIGenericFactory.h" #include "nsIComponentManager.h" #include "nsIServiceManager.h" #include "nsICategoryManager.h" #include "nsIOService.h" #include "nsNetModuleMgr.h" #include "nsFileTransportService.h" #include "nsSocketTransportService.h" #include "nsSocketProviderService.h" #include "nscore.h" #include "nsStdURLParser.h" #include "nsAuthURLParser.h" #include "nsNoAuthURLParser.h" #include "nsStdURL.h" #include "nsSimpleURI.h" #include "nsDnsService.h" #include "nsLoadGroup.h" #include "nsInputStreamChannel.h" #include "nsStreamLoader.h" #include "nsAsyncStreamListener.h" #include "nsSyncStreamListener.h" #include "nsFileStreams.h" #include "nsBufferedStreams.h" #include "nsProtocolProxyService.h" #include "nsSOCKSSocketProvider.h" /////////////////////////////////////////////////////////////////////////////// #include "nsStreamConverterService.h" /////////////////////////////////////////////////////////////////////////////// #include "nsINetDataCache.h" #include "nsINetDataCacheManager.h" #include "nsMemCacheCID.h" #include "nsMemCache.h" #include "nsNetDiskCache.h" #include "nsNetDiskCacheCID.h" #include "nsCacheManager.h" // Factory method to create a new nsMemCache instance. Used // by nsNetDataCacheModule NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsMemCache, Init) NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsNetDiskCache, Init) NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsCacheManager, Init) /////////////////////////////////////////////////////////////////////////////// #include "nsMIMEService.h" #include "nsXMLMIMEDataSource.h" #include "nsMIMEInfoImpl.h" NS_GENERIC_FACTORY_CONSTRUCTOR(nsMIMEInfoImpl); /////////////////////////////////////////////////////////////////////////////// #include "nsIHTTPProtocolHandler.h" #include "nsHTTPHandler.h" #include "nsHTTPSHandler.h" #include "nsBasicAuth.h" NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHTTPHandler, Init); //NS_GENERIC_FACTORY_CONSTRUCTOR(nsHTTPSHandler); #define NS_HTTPS_HANDLER_FACTORY_CID { 0xd2771480, 0xcac4, 0x11d3, { 0x8c, 0xaf, 0x0, 0x0, 0x64, 0x65, 0x73, 0x74 } } NS_GENERIC_FACTORY_CONSTRUCTOR(nsBasicAuth); #define NS_BASICAUTH_CID { 0xd5c9bc48, 0x1dd1, 0x11b2, { 0x9a, 0x0b, 0xf7, 0x3f, 0x59, 0x53, 0x19, 0xae } } #define NS_BASICAUTH_PROGID "mozilla.network.http-basic-auth.1" /* XXX this should all be data-driven, via NS_IMPL_GETMODULE_WITH_CATEGORIES */ static NS_METHOD RegisterBasicAuth(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const char *componentType) { nsresult rv; nsCOMPtr catman = do_GetService(NS_CATEGORYMANAGER_PROGID, &rv); if (NS_FAILED(rv)) return rv; nsXPIDLCString previous; return catman->AddCategoryEntry("http-auth", "basic", NS_BASICAUTH_PROGID, PR_TRUE, PR_TRUE, getter_Copies(previous)); } static NS_METHOD UnregisterBasicAuth(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation) { nsresult rv; nsCOMPtr catman = do_GetService(NS_CATEGORYMANAGER_PROGID, &rv); if (NS_FAILED(rv)) return rv; nsXPIDLCString basicAuth; rv = catman->GetCategoryEntry("http-auth", "basic", getter_Copies(basicAuth)); if (NS_FAILED(rv)) return rv; // only unregister if we're the current Basic-auth handler if (!strcmp(basicAuth, NS_BASICAUTH_PROGID)) return catman->DeleteCategoryEntry("http-auth", "basic", PR_TRUE, getter_Copies(basicAuth)); return NS_OK; } /////////////////////////////////////////////////////////////////////////////// #include "nsFileChannel.h" #include "nsFileProtocolHandler.h" #include "nsDataHandler.h" #include "nsJARProtocolHandler.h" #include "nsResProtocolHandler.h" #include "nsAboutProtocolHandler.h" #include "nsAboutBlank.h" #include "nsAboutBloat.h" #include "nsAboutCredits.h" #include "mzAboutMozilla.h" #include "nsKeywordProtocolHandler.h" /////////////////////////////////////////////////////////////////////////////// #include "nsFTPDirListingConv.h" #include "nsMultiMixedConv.h" #include "nsHTTPChunkConv.h" #include "nsHTTPCompressConv.h" #include "mozTXTToHTMLConv.h" #include "nsUnknownDecoder.h" #include "nsTXTToHTMLConv.h" nsresult NS_NewFTPDirListingConv(nsFTPDirListingConv** result); nsresult NS_NewMultiMixedConv (nsMultiMixedConv** result); nsresult MOZ_NewTXTToHTMLConv (mozTXTToHTMLConv** result); nsresult NS_NewHTTPChunkConv (nsHTTPChunkConv ** result); nsresult NS_NewHTTPCompressConv (nsHTTPCompressConv ** result); nsresult NS_NewNSTXTToHTMLConv(nsTXTToHTMLConv** result); static NS_IMETHODIMP CreateNewFTPDirListingConv(nsISupports* aOuter, REFNSIID aIID, void **aResult) { if (!aResult) { return NS_ERROR_INVALID_POINTER; } if (aOuter) { *aResult = nsnull; return NS_ERROR_NO_AGGREGATION; } nsFTPDirListingConv* inst = nsnull; nsresult rv = NS_NewFTPDirListingConv(&inst); if (NS_FAILED(rv)) { *aResult = nsnull; return rv; } rv = inst->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) { *aResult = nsnull; } NS_RELEASE(inst); /* get rid of extra refcnt */ return rv; } static NS_IMETHODIMP CreateNewMultiMixedConvFactory(nsISupports* aOuter, REFNSIID aIID, void **aResult) { if (!aResult) { return NS_ERROR_INVALID_POINTER; } if (aOuter) { *aResult = nsnull; return NS_ERROR_NO_AGGREGATION; } nsMultiMixedConv* inst = nsnull; nsresult rv = NS_NewMultiMixedConv(&inst); if (NS_FAILED(rv)) { *aResult = nsnull; return rv; } rv = inst->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) { *aResult = nsnull; } NS_RELEASE(inst); /* get rid of extra refcnt */ return rv; } static NS_IMETHODIMP CreateNewTXTToHTMLConvFactory(nsISupports* aOuter, REFNSIID aIID, void **aResult) { if (!aResult) { return NS_ERROR_INVALID_POINTER; } if (aOuter) { *aResult = nsnull; return NS_ERROR_NO_AGGREGATION; } mozTXTToHTMLConv* inst = nsnull; nsresult rv = MOZ_NewTXTToHTMLConv(&inst); if (NS_FAILED(rv)) { *aResult = nsnull; return rv; } rv = inst->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) { *aResult = nsnull; } NS_RELEASE(inst); /* get rid of extra refcnt */ return rv; } static NS_IMETHODIMP CreateNewHTTPChunkConvFactory (nsISupports* aOuter, REFNSIID aIID, void **aResult) { if (!aResult) { return NS_ERROR_INVALID_POINTER; } if (aOuter) { *aResult = nsnull; return NS_ERROR_NO_AGGREGATION; } nsHTTPChunkConv* inst = nsnull; nsresult rv = NS_NewHTTPChunkConv (&inst); if (NS_FAILED(rv)) { *aResult = nsnull; return rv; } rv = inst->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) { *aResult = nsnull; } NS_RELEASE(inst); /* get rid of extra refcnt */ return rv; } static NS_IMETHODIMP CreateNewHTTPCompressConvFactory (nsISupports* aOuter, REFNSIID aIID, void **aResult) { if (!aResult) { return NS_ERROR_INVALID_POINTER; } if (aOuter) { *aResult = nsnull; return NS_ERROR_NO_AGGREGATION; } nsHTTPCompressConv* inst = nsnull; nsresult rv = NS_NewHTTPCompressConv (&inst); if (NS_FAILED(rv)) { *aResult = nsnull; return rv; } rv = inst->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) { *aResult = nsnull; } NS_RELEASE(inst); /* get rid of extra refcnt */ return rv; } static NS_IMETHODIMP CreateNewUnknownDecoderFactory(nsISupports *aOuter, REFNSIID aIID, void **aResult) { nsresult rv; if (!aResult) { return NS_ERROR_NULL_POINTER; } *aResult = nsnull; if (aOuter) { return NS_ERROR_NO_AGGREGATION; } nsUnknownDecoder *inst; inst = new nsUnknownDecoder(); if (!inst) { return NS_ERROR_OUT_OF_MEMORY; } NS_ADDREF(inst); rv = inst->QueryInterface(aIID, aResult); NS_RELEASE(inst); return rv; } static NS_IMETHODIMP CreateNewNSTXTToHTMLConvFactory(nsISupports *aOuter, REFNSIID aIID, void **aResult) { nsresult rv; if (!aResult) { return NS_ERROR_NULL_POINTER; } *aResult = nsnull; if (aOuter) { return NS_ERROR_NO_AGGREGATION; } nsTXTToHTMLConv *inst; inst = new nsTXTToHTMLConv(); if (!inst) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(inst); rv = inst->Init(); if (NS_FAILED(rv)) { delete inst; return rv; } rv = inst->QueryInterface(aIID, aResult); NS_RELEASE(inst); return rv; } /////////////////////////////////////////////////////////////////////////////// // Module implementation for the net library // Necko module shutdown hook static void PR_CALLBACK nsNeckoShutdown(nsIModule *neckoModule) { // Release the url parser that the stdurl is holding. nsStdURL::ShutdownGlobalObjects(); } static nsModuleComponentInfo gNetModuleInfo[] = { { "I/O Service", NS_IOSERVICE_CID, "component://netscape/network/io-service", nsIOService::Create }, { "File Transport Service", NS_FILETRANSPORTSERVICE_CID, "component://netscape/network/file-transport-service", nsFileTransportService::Create }, { "Socket Transport Service", NS_SOCKETTRANSPORTSERVICE_CID, "component://netscape/network/socket-transport-service", nsSocketTransportService::Create }, { "Socket Provider Service", NS_SOCKETPROVIDERSERVICE_CID, "component://netscape/network/socket-provider-service", nsSocketProviderService::Create }, { "DNS Service", NS_DNSSERVICE_CID, "component://netscape/network/dns-service", nsDNSService::Create }, { "Standard URL Implementation", NS_STANDARDURL_CID, "component://netscape/network/standard-url", nsStdURL::Create }, { "Simple URI Implementation", NS_SIMPLEURI_CID, "component://netscape/network/simple-uri", nsSimpleURI::Create }, { "External Module Manager", NS_NETMODULEMGR_CID, "component://netscape/network/net-extern-mod", nsNetModuleMgr::Create }, { NS_FILEIO_CLASSNAME, NS_FILEIO_CID, NS_FILEIO_PROGID, nsFileIO::Create }, { NS_INPUTSTREAMIO_CLASSNAME, NS_INPUTSTREAMIO_CID, NS_INPUTSTREAMIO_PROGID, nsInputStreamIO::Create }, { NS_STREAMIOCHANNEL_CLASSNAME, NS_STREAMIOCHANNEL_CID, NS_STREAMIOCHANNEL_PROGID, nsStreamIOChannel::Create }, { "Unichar Stream Loader", NS_STREAMLOADER_CID, "component://netscape/network/stream-loader", nsStreamLoader::Create }, { "Async Stream Observer", NS_ASYNCSTREAMOBSERVER_CID, "component://netscape/network/async-stream-observer", nsAsyncStreamObserver::Create }, { "Async Stream Listener", NS_ASYNCSTREAMLISTENER_CID, "component://netscape/network/async-stream-listener", nsAsyncStreamListener::Create }, { "Sync Stream Listener", NS_SYNCSTREAMLISTENER_CID, "component://netscape/network/sync-stream-listener", nsSyncStreamListener::Create }, { "Load Group", NS_LOADGROUP_CID, "component://netscape/network/load-group", nsLoadGroup::Create }, { NS_LOCALFILEINPUTSTREAM_CLASSNAME, NS_LOCALFILEINPUTSTREAM_CID, NS_LOCALFILEINPUTSTREAM_PROGID, nsFileInputStream::Create }, { NS_LOCALFILEOUTPUTSTREAM_CLASSNAME, NS_LOCALFILEOUTPUTSTREAM_CID, NS_LOCALFILEOUTPUTSTREAM_PROGID, nsFileOutputStream::Create }, { "StdURLParser", NS_STANDARDURLPARSER_CID, "component://netscape/network/standard-urlparser", nsStdURLParser::Create }, { "AuthURLParser", NS_AUTHORITYURLPARSER_CID, "component://netscape/network/authority-urlparser", nsAuthURLParser::Create }, { "NoAuthURLParser", NS_NOAUTHORITYURLPARSER_CID, "component://netscape/network/no-authority-urlparser", nsNoAuthURLParser::Create }, { NS_BUFFEREDINPUTSTREAM_CLASSNAME, NS_BUFFEREDINPUTSTREAM_CID, NS_BUFFEREDINPUTSTREAM_PROGID, nsBufferedInputStream::Create }, { NS_BUFFEREDOUTPUTSTREAM_CLASSNAME, NS_BUFFEREDOUTPUTSTREAM_CID, NS_BUFFEREDOUTPUTSTREAM_PROGID, nsBufferedOutputStream::Create }, { "Protocol Proxy Service", NS_PROTOCOLPROXYSERVICE_CID, "component::/netscape/network/protocol-proxy-service", nsProtocolProxyService::Create }, // from netwerk/streamconv: { "Stream Converter Service", NS_STREAMCONVERTERSERVICE_CID, "component:||netscape|streamConverters", nsStreamConverterService::Create }, // from netwerk/streamconv/converters: { "FTPDirListingConverter", NS_FTPDIRLISTINGCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=text/ftp-dir-unix?to=application/http-index-format", CreateNewFTPDirListingConv }, { "FTPDirListingConverter", NS_FTPDIRLISTINGCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=text/ftp-dir-nt?to=application/http-index-format", CreateNewFTPDirListingConv }, { "MultiMixedConverter", NS_MULTIMIXEDCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=multipart/x-mixed-replace?to=*/*", CreateNewMultiMixedConvFactory }, // There are servers that hand back "multipart/mixed" to // indicate they want x-mixed-replace behavior. { "MultiMixedConverter2", NS_MULTIMIXEDCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=multipart/mixed?to=*/*", CreateNewMultiMixedConvFactory }, { "Unknown Content-Type Decoder", NS_UNKNOWNDECODER_CID, NS_ISTREAMCONVERTER_KEY "?from=application/x-unknown-content-type?to=*/*", CreateNewUnknownDecoderFactory }, { "HttpChunkConverter", NS_HTTPCHUNKCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=chunked?to=unchunked", CreateNewHTTPChunkConvFactory }, { "HttpChunkConverter", NS_HTTPCHUNKCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=unchunked?to=chunked", CreateNewHTTPChunkConvFactory }, { "HttpCompressConverter", NS_HTTPCOMPRESSCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=gzip?to=uncompressed", CreateNewHTTPCompressConvFactory }, { "HttpCompressConverter", NS_HTTPCOMPRESSCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=x-gzip?to=uncompressed", CreateNewHTTPCompressConvFactory }, { "HttpCompressConverter", NS_HTTPCOMPRESSCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=compress?to=uncompressed", CreateNewHTTPCompressConvFactory }, { "HttpCompressConverter", NS_HTTPCOMPRESSCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=x-compress?to=uncompressed", CreateNewHTTPCompressConvFactory }, { "HttpCompressConverter", NS_HTTPCOMPRESSCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=deflate?to=uncompressed", CreateNewHTTPCompressConvFactory }, { "NSTXTToHTMLConverter", NS_NSTXTTOHTMLCONVERTER_CID, NS_ISTREAMCONVERTER_KEY "?from=text/plain?to=text/html", CreateNewNSTXTToHTMLConvFactory }, // This is not a real stream converter, it's just // registering it's cid factory here. { "HACK-TXTToHTMLConverter", MOZITXTTOHTMLCONV_CID, NS_ISTREAMCONVERTER_KEY, CreateNewTXTToHTMLConvFactory }, // from netwerk/cache: { "Memory Cache", NS_MEM_CACHE_FACTORY_CID, NS_NETWORK_MEMORY_CACHE_PROGID, nsMemCacheConstructor }, { "File Cache", NS_NETDISKCACHE_CID, NS_NETWORK_FILE_CACHE_PROGID, nsNetDiskCacheConstructor }, { "Cache Manager",NS_CACHE_MANAGER_CID, NS_NETWORK_CACHE_MANAGER_PROGID,nsCacheManagerConstructor }, // from netwerk/mime: { "The MIME mapping service", NS_MIMESERVICE_CID, "component:||netscape|mimeold", nsMIMEService::Create }, { "xml mime datasource", NS_XMLMIMEDATASOURCE_CID, NS_XMLMIMEDATASOURCE_PROGID, nsXMLMIMEDataSource::Create }, { "xml mime INFO", NS_MIMEINFO_CID, NS_MIMEINFO_PROGID, nsMIMEInfoImplConstructor }, // from netwerk/protocol/file: { "File Protocol Handler", NS_FILEPROTOCOLHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "file", nsFileProtocolHandler::Create }, { NS_LOCALFILECHANNEL_CLASSNAME, NS_LOCALFILECHANNEL_CID, NS_LOCALFILECHANNEL_PROGID, nsFileChannel::Create }, // from netwerk/protocol/http: { "HTTP Handler", NS_IHTTPHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "http", nsHTTPHandlerConstructor }, { "HTTPS Handler", NS_HTTPS_HANDLER_FACTORY_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "https", nsHTTPSHandler::Create }, { "Basic Auth Encoder", NS_BASICAUTH_CID, NS_BASICAUTH_PROGID, nsBasicAuthConstructor, RegisterBasicAuth, UnregisterBasicAuth }, // from netwerk/protocol/data: { "Data Protocol Handler", NS_DATAHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "data", nsDataHandler::Create}, // from netwerk/protocol/jar: { "JAR Protocol Handler", NS_JARPROTOCOLHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "jar", nsJARProtocolHandler::Create }, // from netwerk/protocol/res: { "The Resource Protocol Handler", NS_RESPROTOCOLHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "resource", nsResProtocolHandler::Create }, // from netwerk/protocol/about: { "About Protocol Handler", NS_ABOUTPROTOCOLHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "about", nsAboutProtocolHandler::Create }, { "about:blank", NS_ABOUT_BLANK_MODULE_CID, NS_ABOUT_MODULE_PROGID_PREFIX "blank", nsAboutBlank::Create }, { "about:bloat", NS_ABOUT_BLOAT_MODULE_CID, NS_ABOUT_MODULE_PROGID_PREFIX "bloat", nsAboutBloat::Create }, { "about:credits", NS_ABOUT_CREDITS_MODULE_CID, NS_ABOUT_MODULE_PROGID_PREFIX "credits", nsAboutCredits::Create }, { "about:mozilla", MZ_ABOUT_MOZILLA_MODULE_CID, NS_ABOUT_MODULE_PROGID_PREFIX "mozilla", mzAboutMozilla::Create }, // from netwerk/protocol/keyword: { "The Keyword Protocol Handler", NS_KEYWORDPROTOCOLHANDLER_CID, NS_NETWORK_PROTOCOL_PROGID_PREFIX "keyword", nsKeywordProtocolHandler::Create }, { NS_ISOCKSSOCKETPROVIDER_CLASSNAME, NS_SOCKSSOCKETPROVIDER_CID, NS_ISOCKSSOCKETPROVIDER_PROGID, nsSOCKSSocketProvider::Create } }; NS_IMPL_NSGETMODULE_WITH_DTOR("necko core and primary protocols", gNetModuleInfo, nsNeckoShutdown)