mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
156 lines
5.1 KiB
C++
156 lines
5.1 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* ***** 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
|
|
* Mozilla Foundation
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Alex Pakhotin <alexp@mozilla.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 <stdlib.h>
|
|
#include "mozilla/dom/ContentChild.h"
|
|
#include "nsIURL.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "AndroidBridge.h"
|
|
#include "nsIconChannel.h"
|
|
|
|
NS_IMPL_ISUPPORTS2(nsIconChannel,
|
|
nsIRequest,
|
|
nsIChannel)
|
|
|
|
using namespace mozilla;
|
|
using mozilla::dom::ContentChild;
|
|
|
|
static nsresult
|
|
GetIconForExtension(const nsACString& aFileExt, PRUint32 aIconSize, PRUint8 * const aBuf)
|
|
{
|
|
if (!AndroidBridge::Bridge())
|
|
return NS_ERROR_FAILURE;
|
|
|
|
AndroidBridge::Bridge()->GetIconForExtension(aFileExt, aIconSize, aBuf);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
static nsresult
|
|
CallRemoteGetIconForExtension(const nsACString& aFileExt, PRUint32 aIconSize, PRUint8 * const aBuf)
|
|
{
|
|
NS_ENSURE_TRUE(aBuf != nsnull, NS_ERROR_NULL_POINTER);
|
|
|
|
// An array has to be used to get data from remote process
|
|
InfallibleTArray<PRUint8> bits;
|
|
PRUint32 bufSize = aIconSize * aIconSize * 4;
|
|
|
|
if (!ContentChild::GetSingleton()->SendGetIconForExtension(PromiseFlatCString(aFileExt), aIconSize, &bits))
|
|
return NS_ERROR_FAILURE;
|
|
|
|
NS_ASSERTION(bits.Length() == bufSize, "Pixels array is incomplete");
|
|
if (bits.Length() != bufSize)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
memcpy(aBuf, bits.Elements(), bufSize);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
static nsresult
|
|
moz_icon_to_channel(nsIURI *aURI, const nsACString& aFileExt, PRUint32 aIconSize, nsIChannel **aChannel)
|
|
{
|
|
NS_ENSURE_TRUE(aIconSize < 256 && aIconSize > 0, NS_ERROR_UNEXPECTED);
|
|
|
|
int width = aIconSize;
|
|
int height = aIconSize;
|
|
|
|
// moz-icon data should have two bytes for the size,
|
|
// then the ARGB pixel values with pre-multiplied Alpha
|
|
const int channels = 4;
|
|
long int buf_size = 2 + channels * height * width;
|
|
PRUint8 * const buf = (PRUint8*)NS_Alloc(buf_size);
|
|
NS_ENSURE_TRUE(buf, NS_ERROR_OUT_OF_MEMORY);
|
|
PRUint8 * out = buf;
|
|
|
|
*(out++) = width;
|
|
*(out++) = height;
|
|
|
|
nsresult rv;
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default)
|
|
rv = GetIconForExtension(aFileExt, aIconSize, out);
|
|
else
|
|
rv = CallRemoteGetIconForExtension(aFileExt, aIconSize, out);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// Encode the RGBA data
|
|
const PRUint8 * in = out;
|
|
for (int y = 0; y < height; ++y) {
|
|
for (int x = 0; x < width; ++x) {
|
|
PRUint8 r = *(in++);
|
|
PRUint8 g = *(in++);
|
|
PRUint8 b = *(in++);
|
|
PRUint8 a = *(in++);
|
|
#define DO_PREMULTIPLY(c_) PRUint8(PRUint16(c_) * PRUint16(a) / PRUint16(255))
|
|
*(out++) = DO_PREMULTIPLY(b);
|
|
*(out++) = DO_PREMULTIPLY(g);
|
|
*(out++) = DO_PREMULTIPLY(r);
|
|
*(out++) = a;
|
|
#undef DO_PREMULTIPLY
|
|
}
|
|
}
|
|
|
|
nsCOMPtr<nsIStringInputStream> stream =
|
|
do_CreateInstance("@mozilla.org/io/string-input-stream;1", &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = stream->AdoptData((char*)buf, buf_size);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return NS_NewInputStreamChannel(aChannel, aURI, stream,
|
|
NS_LITERAL_CSTRING("image/icon"));
|
|
}
|
|
|
|
nsresult
|
|
nsIconChannel::Init(nsIURI* aURI)
|
|
{
|
|
nsCOMPtr<nsIMozIconURI> iconURI = do_QueryInterface(aURI);
|
|
NS_ASSERTION(iconURI, "URI is not an nsIMozIconURI");
|
|
|
|
nsCAutoString stockIcon;
|
|
iconURI->GetStockIcon(stockIcon);
|
|
|
|
PRUint32 desiredImageSize;
|
|
iconURI->GetImageSize(&desiredImageSize);
|
|
|
|
nsCAutoString iconFileExt;
|
|
iconURI->GetFileExtension(iconFileExt);
|
|
|
|
return moz_icon_to_channel(iconURI, iconFileExt, desiredImageSize, getter_AddRefs(mRealChannel));
|
|
}
|