2002-09-12 05:07:28 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2002-09-12 05:07:28 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
2004-04-18 22:01:16 +00:00
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2002-09-12 05:07:28 +00:00
|
|
|
* Stuart Parmenter <pavlov@netscape.com>
|
2004-04-18 22:01:16 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 02:36:18 +00:00
|
|
|
#ifdef XP_MAC
|
|
|
|
#define IMG_BUILD_gif 1
|
|
|
|
#define IMG_BUILD_bmp 1
|
|
|
|
#define IMG_BUILD_png 1
|
|
|
|
#define IMG_BUILD_jpeg 1
|
|
|
|
#define IMG_BUILD_xbm 1
|
|
|
|
#endif
|
|
|
|
|
2002-09-12 05:07:28 +00:00
|
|
|
#include "nsIGenericFactory.h"
|
|
|
|
#include "nsIModule.h"
|
2003-02-27 13:51:55 +00:00
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsXPCOMCID.h"
|
2004-11-24 22:48:45 +00:00
|
|
|
#include "nsServiceManagerUtils.h"
|
2002-09-12 05:07:28 +00:00
|
|
|
|
|
|
|
#include "imgCache.h"
|
|
|
|
#include "imgContainer.h"
|
|
|
|
#include "imgLoader.h"
|
|
|
|
#include "imgRequest.h"
|
|
|
|
#include "imgRequestProxy.h"
|
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_gif
|
2002-09-12 05:07:28 +00:00
|
|
|
// gif
|
2002-10-07 21:49:33 +00:00
|
|
|
#include "imgContainerGIF.h"
|
2002-09-12 05:07:28 +00:00
|
|
|
#include "nsGIFDecoder2.h"
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_bmp
|
2002-09-12 05:07:28 +00:00
|
|
|
// bmp/ico
|
|
|
|
#include "nsBMPDecoder.h"
|
|
|
|
#include "nsICODecoder.h"
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_png
|
2002-09-12 05:07:28 +00:00
|
|
|
// png
|
|
|
|
#include "nsPNGDecoder.h"
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_jpeg
|
2002-09-17 23:29:29 +00:00
|
|
|
// jpeg
|
|
|
|
#include "nsJPEGDecoder.h"
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-17 23:29:29 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_xbm
|
2002-09-12 05:07:28 +00:00
|
|
|
// xbm
|
|
|
|
#include "nsXBMDecoder.h"
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
|
|
|
// objects that just require generic constructors
|
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(imgCache)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(imgContainer)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(imgLoader)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(imgRequestProxy)
|
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_gif
|
2002-09-12 05:07:28 +00:00
|
|
|
// gif
|
2002-10-07 21:49:33 +00:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(imgContainerGIF)
|
2002-09-12 05:07:28 +00:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsGIFDecoder2)
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_jpeg
|
2002-09-12 05:07:28 +00:00
|
|
|
// jpeg
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsJPEGDecoder)
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_bmp
|
2002-09-12 05:07:28 +00:00
|
|
|
// bmp
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsICODecoder)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsBMPDecoder)
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_png
|
2002-09-12 05:07:28 +00:00
|
|
|
// png
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPNGDecoder)
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_xbm
|
2002-09-12 05:07:28 +00:00
|
|
|
// xbm
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsXBMDecoder)
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-02-27 13:51:55 +00:00
|
|
|
static const char* gImageMimeTypes[] = {
|
|
|
|
#ifdef IMG_BUILD_gif
|
|
|
|
"image/gif",
|
|
|
|
#endif
|
|
|
|
#ifdef IMG_BUILD_jpeg
|
|
|
|
"image/jpeg",
|
|
|
|
"image/pjpeg",
|
|
|
|
"image/jpg",
|
|
|
|
#endif
|
|
|
|
#ifdef IMG_BUILD_bmp
|
|
|
|
"image/x-icon",
|
2004-08-10 20:37:32 +00:00
|
|
|
"image/vnd.microsoft.icon",
|
2003-02-27 13:51:55 +00:00
|
|
|
"image/bmp",
|
|
|
|
#endif
|
2003-02-27 15:09:39 +00:00
|
|
|
#ifdef IMG_BUILD_png
|
2003-02-27 13:51:55 +00:00
|
|
|
"image/png",
|
|
|
|
"image/x-png",
|
|
|
|
#endif
|
|
|
|
#ifdef IMG_BUILD_xbm
|
|
|
|
"image/x-xbitmap",
|
|
|
|
"image/x-xbm",
|
2003-05-31 10:42:33 +00:00
|
|
|
"image/xbm"
|
2003-02-27 13:51:55 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static NS_METHOD ImageRegisterProc(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
|
|
|
const char *registryLocation,
|
|
|
|
const char *componentType,
|
|
|
|
const nsModuleComponentInfo *info) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsICategoryManager> catMan(do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2004-07-19 18:53:02 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(gImageMimeTypes)/sizeof(*gImageMimeTypes); i++) {
|
2003-02-27 13:51:55 +00:00
|
|
|
catMan->AddCategoryEntry("Gecko-Content-Viewers", gImageMimeTypes[i],
|
|
|
|
"@mozilla.org/content/document-loader-factory;1",
|
|
|
|
PR_TRUE, PR_TRUE, nsnull);
|
|
|
|
}
|
2004-07-19 18:53:02 +00:00
|
|
|
|
|
|
|
catMan->AddCategoryEntry("content-sniffing-services", "@mozilla.org/image/loader;1",
|
|
|
|
"@mozilla.org/image/loader;1", PR_TRUE, PR_TRUE,
|
|
|
|
nsnull);
|
2003-02-27 13:51:55 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_METHOD ImageUnregisterProc(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
|
|
|
const char *registryLocation,
|
|
|
|
const nsModuleComponentInfo *info) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsICategoryManager> catMan(do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2004-07-19 18:53:02 +00:00
|
|
|
for (unsigned i = 0; i < sizeof(gImageMimeTypes)/sizeof(*gImageMimeTypes); i++)
|
2003-02-27 13:51:55 +00:00
|
|
|
catMan->DeleteCategoryEntry("Gecko-Content-Viewers", gImageMimeTypes[i], PR_TRUE);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-09-12 05:07:28 +00:00
|
|
|
static const nsModuleComponentInfo components[] =
|
|
|
|
{
|
|
|
|
{ "image cache",
|
|
|
|
NS_IMGCACHE_CID,
|
|
|
|
"@mozilla.org/image/cache;1",
|
|
|
|
imgCacheConstructor, },
|
|
|
|
{ "image container",
|
|
|
|
NS_IMGCONTAINER_CID,
|
|
|
|
"@mozilla.org/image/container;1",
|
|
|
|
imgContainerConstructor, },
|
|
|
|
{ "image loader",
|
|
|
|
NS_IMGLOADER_CID,
|
|
|
|
"@mozilla.org/image/loader;1",
|
2003-02-27 13:51:55 +00:00
|
|
|
imgLoaderConstructor,
|
|
|
|
ImageRegisterProc, /* register the decoder mime types here */
|
|
|
|
ImageUnregisterProc, },
|
2002-09-12 05:07:28 +00:00
|
|
|
{ "image request proxy",
|
|
|
|
NS_IMGREQUESTPROXY_CID,
|
|
|
|
"@mozilla.org/image/request;1",
|
|
|
|
imgRequestProxyConstructor, },
|
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_gif
|
2002-09-12 05:07:28 +00:00
|
|
|
// gif
|
2002-10-07 21:49:33 +00:00
|
|
|
{ "GIF image container",
|
|
|
|
NS_GIFCONTAINER_CID,
|
|
|
|
"@mozilla.org/image/container;1?type=image/gif",
|
|
|
|
imgContainerGIFConstructor, },
|
2002-09-12 05:07:28 +00:00
|
|
|
{ "GIF Decoder",
|
|
|
|
NS_GIFDECODER2_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/gif",
|
|
|
|
nsGIFDecoder2Constructor, },
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IMG_BUILD_jpeg
|
2002-09-12 05:07:28 +00:00
|
|
|
// jpeg
|
|
|
|
{ "JPEG decoder",
|
|
|
|
NS_JPEGDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/jpeg",
|
|
|
|
nsJPEGDecoderConstructor, },
|
|
|
|
{ "JPEG decoder",
|
|
|
|
NS_JPEGDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/pjpeg",
|
|
|
|
nsJPEGDecoderConstructor, },
|
|
|
|
{ "JPEG decoder",
|
|
|
|
NS_JPEGDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/jpg",
|
|
|
|
nsJPEGDecoderConstructor, },
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IMG_BUILD_bmp
|
2002-09-12 05:07:28 +00:00
|
|
|
// bmp
|
|
|
|
{ "ICO Decoder",
|
|
|
|
NS_ICODECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/x-icon",
|
|
|
|
nsICODecoderConstructor, },
|
2004-08-10 20:37:32 +00:00
|
|
|
{ "ICO Decoder",
|
|
|
|
NS_ICODECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/vnd.microsoft.icon",
|
|
|
|
nsICODecoderConstructor, },
|
2002-09-12 05:07:28 +00:00
|
|
|
{ "BMP Decoder",
|
|
|
|
NS_BMPDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/bmp",
|
|
|
|
nsBMPDecoderConstructor, },
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IMG_BUILD_png
|
2002-09-12 05:07:28 +00:00
|
|
|
// png
|
|
|
|
{ "PNG Decoder",
|
|
|
|
NS_PNGDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/png",
|
|
|
|
nsPNGDecoderConstructor, },
|
|
|
|
{ "PNG Decoder",
|
|
|
|
NS_PNGDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/x-png",
|
|
|
|
nsPNGDecoderConstructor, },
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
|
2003-01-10 01:21:14 +00:00
|
|
|
#ifdef IMG_BUILD_xbm
|
2002-09-12 05:07:28 +00:00
|
|
|
// xbm
|
|
|
|
{ "XBM Decoder",
|
|
|
|
NS_XBMDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/x-xbitmap",
|
|
|
|
nsXBMDecoderConstructor, },
|
|
|
|
{ "XBM Decoder",
|
|
|
|
NS_XBMDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/x-xbm",
|
|
|
|
nsXBMDecoderConstructor, },
|
|
|
|
{ "XBM Decoder",
|
|
|
|
NS_XBMDECODER_CID,
|
|
|
|
"@mozilla.org/image/decoder;2?type=image/xbm",
|
|
|
|
nsXBMDecoderConstructor, },
|
2003-01-10 01:21:14 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(nsresult)
|
|
|
|
imglib_Initialize(nsIModule* aSelf)
|
|
|
|
{
|
|
|
|
imgCache::Init();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(void)
|
|
|
|
imglib_Shutdown(nsIModule* aSelf)
|
|
|
|
{
|
|
|
|
imgCache::Shutdown();
|
2003-01-10 03:36:36 +00:00
|
|
|
#ifdef IMG_BUILD_gif
|
2002-09-12 05:07:28 +00:00
|
|
|
nsGifShutdown();
|
2003-01-10 03:36:36 +00:00
|
|
|
#endif
|
2002-09-12 05:07:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_NSGETMODULE_WITH_CTOR_DTOR(nsImageLib2Module, components,
|
|
|
|
imglib_Initialize, imglib_Shutdown)
|
|
|
|
|