mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
723 lines
21 KiB
C++
723 lines
21 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 sts=2 et cin: */
|
|
/* ***** 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.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Brian Ryner.
|
|
* Portions created by the Initial Developer are Copyright (C) 2000
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Scott MacGregor <mscott@netscape.com>
|
|
* Neil Rashbrook <neil@parkwaycc.co.uk>
|
|
* IBM Corp.
|
|
* Rich Walsh <dragtext@e-vertise.com>
|
|
*
|
|
* 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 ***** */
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
#include "nsIconChannel.h"
|
|
#include "nsIIconURI.h"
|
|
#include "nsReadableUtils.h"
|
|
#include "nsMemory.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsInt64.h"
|
|
#include "nsILocalFile.h"
|
|
#include "nsIFileURL.h"
|
|
#include "nsDirectoryServiceDefs.h"
|
|
#include "nsIRwsService.h"
|
|
|
|
#define INCL_PM
|
|
#include <os2.h>
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Due to byte swap, the second nibble is the first pixel of the pair
|
|
#define FIRSTPEL(x) (0xF & (x >> 4))
|
|
#define SECONDPEL(x) (0xF & x)
|
|
|
|
// nbr of bytes per row, rounded up to the nearest dword boundary
|
|
#define ALIGNEDBPR(cx,bits) ((( ((cx)*(bits)) + 31) / 32) * 4)
|
|
|
|
// nbr of bytes per row, rounded up to the nearest byte boundary
|
|
#define UNALIGNEDBPR(cx,bits) (( ((cx)*(bits)) + 7) / 8)
|
|
|
|
// native icon functions
|
|
static HPOINTER GetIcon(nsCString& file, PRBool fExists,
|
|
PRBool fMini, PRBool *fWpsIcon);
|
|
static void DestroyIcon(HPOINTER hIcon, PRBool fWpsIcon);
|
|
|
|
void ConvertColorBitMap(PRUint8 *inBuf, PBITMAPINFO2 pBMInfo,
|
|
PRUint8 *outBuf, PRBool fShrink);
|
|
void ConvertMaskBitMap(PRUint8 *inBuf, PBITMAPINFO2 pBMInfo,
|
|
PRUint8 *outBuf, PRBool fShrink);
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// reduces overhead by preventing calls to nsRws when it isn't present
|
|
static PRBool sUseRws = PR_TRUE;
|
|
|
|
//------------------------------------------------------------------------
|
|
// nsIconChannel methods
|
|
|
|
nsIconChannel::nsIconChannel()
|
|
{
|
|
}
|
|
|
|
nsIconChannel::~nsIconChannel()
|
|
{}
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS4(nsIconChannel,
|
|
nsIChannel,
|
|
nsIRequest,
|
|
nsIRequestObserver,
|
|
nsIStreamListener)
|
|
|
|
nsresult nsIconChannel::Init(nsIURI* uri)
|
|
{
|
|
NS_ASSERTION(uri, "no uri");
|
|
mUrl = uri;
|
|
mOriginalURI = uri;
|
|
nsresult rv;
|
|
mPump = do_CreateInstance(NS_INPUTSTREAMPUMP_CONTRACTID, &rv);
|
|
return rv;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
// nsIRequest methods:
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetName(nsACString &result)
|
|
{
|
|
return mUrl->GetSpec(result);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::IsPending(PRBool *result)
|
|
{
|
|
return mPump->IsPending(result);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetStatus(nsresult *status)
|
|
{
|
|
return mPump->GetStatus(status);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::Cancel(nsresult status)
|
|
{
|
|
return mPump->Cancel(status);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::Suspend(void)
|
|
{
|
|
return mPump->Suspend();
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::Resume(void)
|
|
{
|
|
return mPump->Resume();
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetLoadGroup(nsILoadGroup* *aLoadGroup)
|
|
{
|
|
*aLoadGroup = mLoadGroup;
|
|
NS_IF_ADDREF(*aLoadGroup);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetLoadGroup(nsILoadGroup* aLoadGroup)
|
|
{
|
|
mLoadGroup = aLoadGroup;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetLoadFlags(PRUint32 *aLoadAttributes)
|
|
{
|
|
return mPump->GetLoadFlags(aLoadAttributes);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetLoadFlags(PRUint32 aLoadAttributes)
|
|
{
|
|
return mPump->SetLoadFlags(aLoadAttributes);
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
// nsIChannel methods:
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetOriginalURI(nsIURI* *aURI)
|
|
{
|
|
*aURI = mOriginalURI;
|
|
NS_ADDREF(*aURI);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetOriginalURI(nsIURI* aURI)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aURI);
|
|
mOriginalURI = aURI;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetURI(nsIURI* *aURI)
|
|
{
|
|
*aURI = mUrl;
|
|
NS_IF_ADDREF(*aURI);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsIconChannel::Open(nsIInputStream **_retval)
|
|
{
|
|
return MakeInputStream(_retval, PR_FALSE);
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::AsyncOpen(nsIStreamListener *aListener, nsISupports *ctxt)
|
|
{
|
|
nsCOMPtr<nsIInputStream> inStream;
|
|
nsresult rv = MakeInputStream(getter_AddRefs(inStream), PR_TRUE);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
// Init our streampump
|
|
rv = mPump->Init(inStream, nsInt64(-1), nsInt64(-1), 0, 0, PR_FALSE);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
rv = mPump->AsyncRead(this, ctxt);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
// Store our real listener
|
|
mListener = aListener;
|
|
// Add ourself to the load group, if available
|
|
if (mLoadGroup)
|
|
mLoadGroup->AddRequest(this, nsnull);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
nsresult nsIconChannel::ExtractIconInfoFromUrl(nsIFile ** aLocalFile, PRUint32 * aDesiredImageSize, nsACString &aContentType, nsACString &aFileExtension)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
nsCOMPtr<nsIMozIconURI> iconURI (do_QueryInterface(mUrl, &rv));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
iconURI->GetImageSize(aDesiredImageSize);
|
|
iconURI->GetContentType(aContentType);
|
|
iconURI->GetFileExtension(aFileExtension);
|
|
|
|
nsCOMPtr<nsIURI> fileURI;
|
|
rv = iconURI->GetIconFile(getter_AddRefs(fileURI));
|
|
if (NS_FAILED(rv) || !fileURI) return NS_OK;
|
|
|
|
nsCOMPtr<nsIFileURL> fileURL = do_QueryInterface(fileURI, &rv);
|
|
if (NS_FAILED(rv) || !fileURL) return NS_OK;
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
rv = fileURL->GetFile(getter_AddRefs(file));
|
|
if (NS_FAILED(rv) || !file) return NS_OK;
|
|
|
|
*aLocalFile = file;
|
|
NS_IF_ADDREF(*aLocalFile);
|
|
return NS_OK;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// retrieves a native icon with 16, 256, or 16M colors and converts it to cairo
|
|
// format; Note: this implementation ignores the file's MIME-type because
|
|
// using it virtually guarantees we'll end up with an inappropriate icon (i.e.
|
|
// an .exe icon)
|
|
|
|
nsresult nsIconChannel::MakeInputStream(nsIInputStream **_retval,
|
|
PRBool nonBlocking)
|
|
{
|
|
|
|
// get some details about this icon
|
|
nsCOMPtr<nsIFile> localFile;
|
|
PRUint32 desiredImageSize;
|
|
nsXPIDLCString contentType;
|
|
nsCAutoString filePath;
|
|
nsresult rv = ExtractIconInfoFromUrl(getter_AddRefs(localFile),
|
|
&desiredImageSize, contentType,
|
|
filePath);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// if the file exists, get its path
|
|
PRBool fileExists = PR_FALSE;
|
|
if (localFile) {
|
|
localFile->GetNativePath(filePath);
|
|
localFile->Exists(&fileExists);
|
|
}
|
|
|
|
// get the file's icon from either the WPS or PM
|
|
PRBool fWpsIcon = PR_FALSE;
|
|
HPOINTER hIcon = GetIcon(filePath, fileExists,
|
|
desiredImageSize <= 16, &fWpsIcon);
|
|
if (hIcon == NULLHANDLE)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
// get the color & mask bitmaps used by the icon
|
|
POINTERINFO IconInfo;
|
|
if (!WinQueryPointerInfo(hIcon, &IconInfo)) {
|
|
DestroyIcon(hIcon, fWpsIcon);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
// if we need a mini-icon, use those bitmaps if present;
|
|
// otherwise, signal that the icon needs to be shrunk
|
|
PRBool fShrink = FALSE;
|
|
if (desiredImageSize <= 16) {
|
|
if (IconInfo.hbmMiniPointer) {
|
|
IconInfo.hbmColor = IconInfo.hbmMiniColor;
|
|
IconInfo.hbmPointer = IconInfo.hbmMiniPointer;
|
|
} else {
|
|
fShrink = TRUE;
|
|
}
|
|
}
|
|
|
|
// various resources to be allocated
|
|
PBITMAPINFO2 pBMInfo = 0;
|
|
PRUint8* pInBuf = 0;
|
|
PRUint8* pOutBuf = 0;
|
|
HDC hdc = 0;
|
|
HPS hps = 0;
|
|
|
|
// using this dummy do{...}while(0) "loop" guarantees that resources will
|
|
// be deallocated, but eliminates the need for nesting, and generally makes
|
|
// testing for & dealing with errors pretty painless (just 'break')
|
|
do {
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
// get the details for the color bitmap; if there isn't one
|
|
// or this is 1-bit color, exit
|
|
BITMAPINFOHEADER2 BMHeader;
|
|
BMHeader.cbFix = sizeof(BMHeader);
|
|
if (!IconInfo.hbmColor ||
|
|
!GpiQueryBitmapInfoHeader(IconInfo.hbmColor, &BMHeader) ||
|
|
BMHeader.cBitCount == 1)
|
|
break;
|
|
|
|
// alloc space for the color bitmap's info, including its color table
|
|
PRUint32 cbBMInfo = sizeof(BITMAPINFO2) + (sizeof(RGB2) * 255);
|
|
pBMInfo = (PBITMAPINFO2)nsMemory::Alloc(cbBMInfo);
|
|
if (!pBMInfo)
|
|
break;
|
|
|
|
// alloc space for the color bitmap data
|
|
PRUint32 cbInRow = ALIGNEDBPR(BMHeader.cx, BMHeader.cBitCount);
|
|
PRUint32 cbInBuf = cbInRow * BMHeader.cy;
|
|
pInBuf = (PRUint8*)nsMemory::Alloc(cbInBuf);
|
|
if (!pInBuf)
|
|
break;
|
|
memset(pInBuf, 0, cbInBuf);
|
|
|
|
// alloc space for the BGRA32 bitmap we're creating
|
|
PRUint32 cxOut = fShrink ? BMHeader.cx / 2 : BMHeader.cx;
|
|
PRUint32 cyOut = fShrink ? BMHeader.cy / 2 : BMHeader.cy;
|
|
PRUint32 cbOutBuf = 2 + ALIGNEDBPR(cxOut, 32) * cyOut;
|
|
pOutBuf = (PRUint8*)nsMemory::Alloc(cbOutBuf);
|
|
if (!pOutBuf)
|
|
break;
|
|
memset(pOutBuf, 0, cbOutBuf);
|
|
|
|
// create a DC and PS
|
|
DEVOPENSTRUC dop = {NULL, "DISPLAY", NULL, NULL, NULL, NULL, NULL, NULL, NULL};
|
|
hdc = DevOpenDC((HAB)0, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&dop, NULLHANDLE);
|
|
if (!hdc)
|
|
break;
|
|
|
|
SIZEL sizel = {0,0};
|
|
hps = GpiCreatePS((HAB)0, hdc, &sizel, GPIA_ASSOC | PU_PELS | GPIT_MICRO);
|
|
if (!hps)
|
|
break;
|
|
|
|
// get the color bits
|
|
memset(pBMInfo, 0, cbBMInfo);
|
|
*((PBITMAPINFOHEADER2)pBMInfo) = BMHeader;
|
|
GpiSetBitmap(hps, IconInfo.hbmColor);
|
|
if (GpiQueryBitmapBits(hps, 0L, (LONG)BMHeader.cy,
|
|
(BYTE*)pInBuf, pBMInfo) <= 0)
|
|
break;
|
|
|
|
// The first 2 bytes are the width & height of the icon in pixels,
|
|
// the remaining bytes are BGRA32 (B in first byte, A in last)
|
|
PRUint8* outPtr = pOutBuf;
|
|
*outPtr++ = (PRUint8)cxOut;
|
|
*outPtr++ = (PRUint8)cyOut;
|
|
|
|
// convert the color bitmap
|
|
pBMInfo->cbImage = cbInBuf;
|
|
ConvertColorBitMap(pInBuf, pBMInfo, outPtr, fShrink);
|
|
|
|
// now we need to tack on the alpha data, so jump back to the first
|
|
// pixel in the output buffer
|
|
outPtr = pOutBuf+2;
|
|
|
|
// Get the mask info
|
|
BMHeader.cbFix = sizeof(BMHeader);
|
|
if (!GpiQueryBitmapInfoHeader(IconInfo.hbmPointer, &BMHeader))
|
|
break;
|
|
|
|
// if the existing input buffer isn't large enough, reallocate it
|
|
cbInRow = ALIGNEDBPR(BMHeader.cx, BMHeader.cBitCount);
|
|
if ((cbInRow * BMHeader.cy) > cbInBuf) // Need more for mask
|
|
{
|
|
cbInBuf = cbInRow * BMHeader.cy;
|
|
nsMemory::Free(pInBuf);
|
|
pInBuf = (PRUint8*)nsMemory::Alloc(cbInBuf);
|
|
memset(pInBuf, 0, cbInBuf);
|
|
}
|
|
|
|
// get the mask/alpha bits
|
|
memset(pBMInfo, 0, cbBMInfo);
|
|
*((PBITMAPINFOHEADER2)pBMInfo) = BMHeader;
|
|
GpiSetBitmap(hps, IconInfo.hbmPointer);
|
|
if (GpiQueryBitmapBits(hps, 0L, (LONG)BMHeader.cy,
|
|
(BYTE*)pInBuf, pBMInfo) <= 0)
|
|
break;
|
|
|
|
// convert the mask/alpha bitmap
|
|
pBMInfo->cbImage = cbInBuf;
|
|
ConvertMaskBitMap(pInBuf, pBMInfo, outPtr, fShrink);
|
|
|
|
// create a pipe
|
|
nsCOMPtr<nsIInputStream> inStream;
|
|
nsCOMPtr<nsIOutputStream> outStream;
|
|
rv = NS_NewPipe(getter_AddRefs(inStream), getter_AddRefs(outStream),
|
|
cbOutBuf, cbOutBuf, nonBlocking);
|
|
if (NS_FAILED(rv))
|
|
break;
|
|
|
|
// put our data into the pipe
|
|
PRUint32 written;
|
|
rv = outStream->Write(reinterpret_cast<const char*>(pOutBuf),
|
|
cbOutBuf, &written);
|
|
if (NS_FAILED(rv))
|
|
break;
|
|
|
|
// success! so addref the pipe
|
|
NS_ADDREF(*_retval = inStream);
|
|
} while (0);
|
|
|
|
// free all the resources we allocated
|
|
if (pOutBuf)
|
|
nsMemory::Free(pOutBuf);
|
|
if (pInBuf)
|
|
nsMemory::Free(pInBuf);
|
|
if (pBMInfo)
|
|
nsMemory::Free(pBMInfo);
|
|
if (hps) {
|
|
GpiAssociate(hps, NULLHANDLE);
|
|
GpiDestroyPS(hps);
|
|
}
|
|
if (hdc)
|
|
DevCloseDC(hdc);
|
|
if (hIcon)
|
|
DestroyIcon(hIcon, fWpsIcon);
|
|
|
|
return rv;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// get the file's icon from either the WPS or PM
|
|
|
|
static HPOINTER GetIcon(nsCString& file, PRBool fExists,
|
|
PRBool fMini, PRBool *fWpsIcon)
|
|
{
|
|
HPOINTER hRtn = 0;
|
|
*fWpsIcon = PR_FALSE;
|
|
|
|
if (file.IsEmpty()) {
|
|
// append something so that we get at least the generic icon
|
|
file.Append("pmwrlw");
|
|
}
|
|
|
|
// if RWS is enabled, try to get the icon from the WPS
|
|
if (sUseRws) {
|
|
nsCOMPtr<nsIRwsService> rwsSvc(do_GetService("@mozilla.org/rwsos2;1"));
|
|
if (!rwsSvc)
|
|
sUseRws = PR_FALSE;
|
|
else {
|
|
if (fExists) {
|
|
rwsSvc->IconFromPath(file.get(), PR_FALSE, fMini, (PRUint32*)&hRtn);
|
|
} else {
|
|
const char *ptr = file.get();
|
|
if (*ptr == '.')
|
|
ptr++;
|
|
rwsSvc->IconFromExtension(ptr, fMini, (PRUint32*)&hRtn);
|
|
}
|
|
}
|
|
}
|
|
|
|
// if we got an icon from the WPS, set the flag & exit
|
|
if (hRtn) {
|
|
*fWpsIcon = PR_TRUE;
|
|
return hRtn;
|
|
}
|
|
|
|
// if the file exists already, get its icon
|
|
if (fExists)
|
|
return WinLoadFileIcon(file.get(), FALSE);
|
|
|
|
// otherwise, create a temporary file with the correct extension,
|
|
// then retrieve whatever icon PM assigns it
|
|
if (file.First() == '.')
|
|
file.Insert("moztmp", 0);
|
|
|
|
nsCOMPtr<nsIFile> tempPath;
|
|
if (NS_FAILED(NS_GetSpecialDirectory(NS_OS_TEMP_DIR, getter_AddRefs(tempPath))) ||
|
|
NS_FAILED(tempPath->AppendNative(file)))
|
|
return 0;
|
|
|
|
nsCAutoString pathStr;
|
|
tempPath->GetNativePath(pathStr);
|
|
FILE* fp = fopen(pathStr.get(), "wb+");
|
|
if (fp) {
|
|
fclose(fp);
|
|
hRtn = WinLoadFileIcon(pathStr.get(), FALSE);
|
|
remove(pathStr.get());
|
|
}
|
|
|
|
return hRtn;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
static void DestroyIcon(HPOINTER hIcon, PRBool fWpsIcon)
|
|
{
|
|
if (fWpsIcon)
|
|
WinDestroyPointer(hIcon);
|
|
else
|
|
WinFreeFileIcon(hIcon);
|
|
|
|
return;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// converts 16, 256, & 16M color bitmaps to BGRA32 format; the alpha
|
|
// channel byte is left open & will be filled in by ConvertMaskBitMap();
|
|
// since the scanlines in OS/2 bitmaps run bottom-to-top, it starts at the
|
|
// end of the input buffer & works its way back; Note: only 4-bit, 20x20
|
|
// icons contain input padding that has to be ignored
|
|
|
|
void ConvertColorBitMap(PRUint8 *inBuf, PBITMAPINFO2 pBMInfo,
|
|
PRUint8 *outBuf, PRBool fShrink)
|
|
{
|
|
PRUint32 next = fShrink ? 2 : 1;
|
|
PRUint32 bprIn = ALIGNEDBPR(pBMInfo->cx, pBMInfo->cBitCount);
|
|
PRUint8 *pIn = inBuf + (pBMInfo->cy - 1) * bprIn;
|
|
PRUint8 *pOut = outBuf;
|
|
PRGB2 pColorTable = &pBMInfo->argbColor[0];
|
|
|
|
if (pBMInfo->cBitCount == 4) {
|
|
PRUint32 ubprIn = UNALIGNEDBPR(pBMInfo->cx, pBMInfo->cBitCount);
|
|
PRUint32 padIn = bprIn - ubprIn;
|
|
|
|
for (PRUint32 row = pBMInfo->cy; row > 0; row -= next) {
|
|
for (PRUint32 ndx = 0; ndx < ubprIn; ndx++, pIn++) {
|
|
pOut = 4 + (PRUint8*)memcpy(pOut, &pColorTable[FIRSTPEL(*pIn)], 3);
|
|
if (!fShrink) {
|
|
pOut = 4 + (PRUint8*)memcpy(pOut, &pColorTable[SECONDPEL(*pIn)], 3);
|
|
}
|
|
}
|
|
pIn -= ((next + 1) * bprIn) - padIn;
|
|
}
|
|
} else if (pBMInfo->cBitCount == 8) {
|
|
for (PRUint32 row = pBMInfo->cy; row > 0; row -= next) {
|
|
for (PRUint32 ndx = 0; ndx < bprIn; ndx += next, pIn += next) {
|
|
pOut = 4 + (PRUint8*)memcpy(pOut, &pColorTable[*pIn], 3);
|
|
}
|
|
pIn -= (next + 1) * bprIn;
|
|
}
|
|
} else if (pBMInfo->cBitCount == 24) {
|
|
PRUint32 next3 = next * 3;
|
|
for (PRUint32 row = pBMInfo->cy; row > 0; row -= next) {
|
|
for (PRUint32 ndx = 0; ndx < bprIn; ndx += next3, pIn += next3) {
|
|
pOut = 4 + (PRUint8*)memcpy(pOut, pIn, 3);
|
|
}
|
|
pIn -= (next + 1) * bprIn;
|
|
}
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// converts an icon's AND mask into 8-bit alpha data and stores it in the
|
|
// high-order bytes of the BGRA32 bitmap created by ConvertColorBitMap();
|
|
// the AND mask is the 2nd half of a pair of bitmaps & the scanlines run
|
|
// bottom-to-top - starting at the end and working back to the midpoint
|
|
// converts the entire bitmap; since each row is dword-aligned, 16, 20,
|
|
// and 40-pixel icons all have padding bits at the end of every row that
|
|
// must be skipped over
|
|
|
|
void ConvertMaskBitMap(PRUint8 *inBuf, PBITMAPINFO2 pBMInfo,
|
|
PRUint8 *outBuf, PRBool fShrink)
|
|
{
|
|
PRUint32 next = (fShrink ? 2 : 1);
|
|
PRUint32 bprIn = ALIGNEDBPR(pBMInfo->cx, pBMInfo->cBitCount);
|
|
PRUint32 padIn = bprIn - UNALIGNEDBPR(pBMInfo->cx, pBMInfo->cBitCount);
|
|
PRUint8 *pIn = inBuf + (pBMInfo->cy - 1) * bprIn;
|
|
PRUint8 *pOut = outBuf + 3;
|
|
|
|
// for each row or every other row
|
|
for (PRUint32 row = pBMInfo->cy/2; row > 0; row -= next) {
|
|
|
|
// for all of the non-padding bits in the row
|
|
for (PRUint32 bits = pBMInfo->cx; bits; pIn++) {
|
|
PRUint8 src = ~(*pIn);
|
|
PRUint8 srcMask = 0x80;
|
|
|
|
// for each bit or every other bit in the current byte
|
|
for ( ; srcMask && bits; srcMask >>= next, bits -= next, pOut += 4) {
|
|
if (src & srcMask) {
|
|
*pOut = 0xff;
|
|
}
|
|
}
|
|
}
|
|
|
|
// if the row just completed had padding, pIn won't be pointing
|
|
// at the first byte in the next row; padIn compensates for this
|
|
pIn -= ((next + 1) * bprIn) - padIn;
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetContentType(nsACString &aContentType)
|
|
{
|
|
aContentType.AssignLiteral("image/icon");
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsIconChannel::SetContentType(const nsACString &aContentType)
|
|
{
|
|
// It doesn't make sense to set the content-type on this type
|
|
// of channel...
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetContentCharset(nsACString &aContentCharset)
|
|
{
|
|
aContentCharset.Truncate();
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsIconChannel::SetContentCharset(const nsACString &aContentCharset)
|
|
{
|
|
// It doesn't make sense to set the content-charset on this type
|
|
// of channel...
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetContentLength(PRInt32 *aContentLength)
|
|
{
|
|
*aContentLength = mContentLength;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetContentLength(PRInt32 aContentLength)
|
|
{
|
|
NS_NOTREACHED("nsIconChannel::SetContentLength");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetOwner(nsISupports* *aOwner)
|
|
{
|
|
*aOwner = mOwner.get();
|
|
NS_IF_ADDREF(*aOwner);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetOwner(nsISupports* aOwner)
|
|
{
|
|
mOwner = aOwner;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetNotificationCallbacks(nsIInterfaceRequestor* *aNotificationCallbacks)
|
|
{
|
|
*aNotificationCallbacks = mCallbacks.get();
|
|
NS_IF_ADDREF(*aNotificationCallbacks);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::SetNotificationCallbacks(nsIInterfaceRequestor* aNotificationCallbacks)
|
|
{
|
|
mCallbacks = aNotificationCallbacks;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::GetSecurityInfo(nsISupports * *aSecurityInfo)
|
|
{
|
|
*aSecurityInfo = nsnull;
|
|
return NS_OK;
|
|
}
|
|
|
|
// nsIRequestObserver methods
|
|
NS_IMETHODIMP nsIconChannel::OnStartRequest(nsIRequest* aRequest, nsISupports* aContext)
|
|
{
|
|
if (mListener)
|
|
return mListener->OnStartRequest(this, aContext);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsIconChannel::OnStopRequest(nsIRequest* aRequest, nsISupports* aContext, nsresult aStatus)
|
|
{
|
|
if (mListener) {
|
|
mListener->OnStopRequest(this, aContext, aStatus);
|
|
mListener = nsnull;
|
|
}
|
|
|
|
// Remove from load group
|
|
if (mLoadGroup)
|
|
mLoadGroup->RemoveRequest(this, nsnull, aStatus);
|
|
|
|
// Drop notification callbacks to prevent cycles.
|
|
mCallbacks = nsnull;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
// nsIStreamListener methods
|
|
NS_IMETHODIMP nsIconChannel::OnDataAvailable(nsIRequest* aRequest,
|
|
nsISupports* aContext,
|
|
nsIInputStream* aStream,
|
|
PRUint32 aOffset,
|
|
PRUint32 aCount)
|
|
{
|
|
if (mListener)
|
|
return mListener->OnDataAvailable(this, aContext, aStream, aOffset, aCount);
|
|
return NS_OK;
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|