mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
c08eaf90ca
- Bug 1142761 - Move CallSetter into ScriptedIndirectProxyHandler so it will eventually be deleted along with its only remaining caller. (a5a0b3f6b) - Bug 1143810 - Remove some XPConnect JSClass::setProperty hooks that are not needed anymore. (4eda6a60b) - Bug 1142195 - Remove some unused class declarations in the DOM Cache code (afd802623) - Bug 1145345 - Account for a greater variety of rounding errors when comparing coordinates (6a41f34f3) - Bug 1145787 - Put a misplaced assertion into its proper place. (7f760a66d) - Bug 1146059 - Remove Response.finalURL. (230d9fa50) - Bug 1134324 - Set CORS mode and credentials on Fetch event Request. r=michal (772fcac8f) - Bug 1136200 - Verify request type is not no-cors if response is opaque (396c9bfb4) - Bug 1144249 - fix fetch no-cors mode. r=bkelly (af9656291) - Bug 1144876 - Stop spamming stderr with a warning every time that we encounter a document that is not controlled by a service worker; (0a5c5fbfd) - Bug 1117172 part 1. Allow passing an optional aGivenProto to binding Wrap methods. (8aea85046) - Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv (13146be83) - Bug 1117172 part 3. Change the wrappercached WrapObject methods to al low passing in aGivenProto. r=peterv (1621ef48d) - Bug 1146293 - Fix coding style break (intent and line length) caused by Bug 1117172 and Bug 1145631. (0822709f1) - Bug 1121298 - Part 1: refactor MozNDEFRecord cstor. (6e57a37ec) - Bug 1121298 - Part 2: Add Constructor(uri) for MozNDEFRecord. (46f921bcf) - Bug 1121298 - Part 3. add getAsURI. (e67cad94b) - Bug 1138886 - Structured Clone for MozNDEFRecord. (With adaptations of Bug 1117172 part 3) (b83b7f684) - Bug 1143504 - Disconnect the Cache object from its actor when it gets cycle collected. (dae58dcdd)
296 lines
6.6 KiB
C++
296 lines
6.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 sw=2 et tw=79: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsMimeTypeArray.h"
|
|
|
|
#include "mozilla/dom/MimeTypeArrayBinding.h"
|
|
#include "mozilla/dom/MimeTypeBinding.h"
|
|
#include "nsIDOMNavigator.h"
|
|
#include "nsPluginArray.h"
|
|
#include "nsIMIMEService.h"
|
|
#include "nsIMIMEInfo.h"
|
|
#include "Navigator.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsMimeTypeArray)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsMimeTypeArray)
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsMimeTypeArray)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(nsMimeTypeArray,
|
|
mWindow,
|
|
mMimeTypes,
|
|
mHiddenMimeTypes)
|
|
|
|
nsMimeTypeArray::nsMimeTypeArray(nsPIDOMWindow* aWindow)
|
|
: mWindow(aWindow)
|
|
{
|
|
}
|
|
|
|
nsMimeTypeArray::~nsMimeTypeArray()
|
|
{
|
|
}
|
|
|
|
JSObject*
|
|
nsMimeTypeArray::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return MimeTypeArrayBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
void
|
|
nsMimeTypeArray::Refresh()
|
|
{
|
|
mMimeTypes.Clear();
|
|
mHiddenMimeTypes.Clear();
|
|
}
|
|
|
|
nsPIDOMWindow*
|
|
nsMimeTypeArray::GetParentObject() const
|
|
{
|
|
MOZ_ASSERT(mWindow);
|
|
return mWindow;
|
|
}
|
|
|
|
nsMimeType*
|
|
nsMimeTypeArray::Item(uint32_t aIndex)
|
|
{
|
|
bool unused;
|
|
return IndexedGetter(aIndex, unused);
|
|
}
|
|
|
|
nsMimeType*
|
|
nsMimeTypeArray::NamedItem(const nsAString& aName)
|
|
{
|
|
bool unused;
|
|
return NamedGetter(aName, unused);
|
|
}
|
|
|
|
nsMimeType*
|
|
nsMimeTypeArray::IndexedGetter(uint32_t aIndex, bool &aFound)
|
|
{
|
|
aFound = false;
|
|
|
|
EnsurePluginMimeTypes();
|
|
|
|
if (aIndex >= mMimeTypes.Length()) {
|
|
return nullptr;
|
|
}
|
|
|
|
aFound = true;
|
|
|
|
return mMimeTypes[aIndex];
|
|
}
|
|
|
|
static nsMimeType*
|
|
FindMimeType(const nsTArray<nsRefPtr<nsMimeType> >& aMimeTypes,
|
|
const nsAString& aType)
|
|
{
|
|
for (uint32_t i = 0; i < aMimeTypes.Length(); ++i) {
|
|
nsMimeType* mimeType = aMimeTypes[i];
|
|
if (aType.Equals(mimeType->Type())) {
|
|
return mimeType;
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
nsMimeType*
|
|
nsMimeTypeArray::NamedGetter(const nsAString& aName, bool &aFound)
|
|
{
|
|
aFound = false;
|
|
|
|
EnsurePluginMimeTypes();
|
|
|
|
nsString lowerName(aName);
|
|
ToLowerCase(lowerName);
|
|
|
|
nsMimeType* mimeType = FindMimeType(mMimeTypes, lowerName);
|
|
if (!mimeType) {
|
|
mimeType = FindMimeType(mHiddenMimeTypes, lowerName);
|
|
}
|
|
|
|
if (mimeType) {
|
|
aFound = true;
|
|
return mimeType;
|
|
}
|
|
|
|
// Now let's check with the MIME service.
|
|
nsCOMPtr<nsIMIMEService> mimeSrv = do_GetService("@mozilla.org/mime;1");
|
|
if (!mimeSrv) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsIMIMEInfo> mimeInfo;
|
|
mimeSrv->GetFromTypeAndExtension(NS_ConvertUTF16toUTF8(lowerName),
|
|
EmptyCString(), getter_AddRefs(mimeInfo));
|
|
if (!mimeInfo) {
|
|
return nullptr;
|
|
}
|
|
|
|
// Now we check whether we can really claim to support this type
|
|
nsHandlerInfoAction action = nsIHandlerInfo::saveToDisk;
|
|
mimeInfo->GetPreferredAction(&action);
|
|
if (action != nsIMIMEInfo::handleInternally) {
|
|
bool hasHelper = false;
|
|
mimeInfo->GetHasDefaultHandler(&hasHelper);
|
|
|
|
if (!hasHelper) {
|
|
nsCOMPtr<nsIHandlerApp> helper;
|
|
mimeInfo->GetPreferredApplicationHandler(getter_AddRefs(helper));
|
|
|
|
if (!helper) {
|
|
// mime info from the OS may not have a PreferredApplicationHandler
|
|
// so just check for an empty default description
|
|
nsAutoString defaultDescription;
|
|
mimeInfo->GetDefaultDescription(defaultDescription);
|
|
|
|
if (defaultDescription.IsEmpty()) {
|
|
// no support; just leave
|
|
return nullptr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// If we got here, we support this type! Say so.
|
|
aFound = true;
|
|
|
|
// We don't want navigator.mimeTypes enumeration to expose MIME types with
|
|
// application handlers, so add them to the list of hidden MIME types.
|
|
nsMimeType *mt = new nsMimeType(mWindow, lowerName);
|
|
mHiddenMimeTypes.AppendElement(mt);
|
|
|
|
return mt;
|
|
}
|
|
|
|
bool
|
|
nsMimeTypeArray::NameIsEnumerable(const nsAString& aName)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
uint32_t
|
|
nsMimeTypeArray::Length()
|
|
{
|
|
EnsurePluginMimeTypes();
|
|
|
|
return mMimeTypes.Length();
|
|
}
|
|
|
|
void
|
|
nsMimeTypeArray::GetSupportedNames(unsigned, nsTArray< nsString >& aRetval)
|
|
{
|
|
EnsurePluginMimeTypes();
|
|
|
|
for (uint32_t i = 0; i < mMimeTypes.Length(); ++i) {
|
|
aRetval.AppendElement(mMimeTypes[i]->Type());
|
|
}
|
|
}
|
|
|
|
void
|
|
nsMimeTypeArray::EnsurePluginMimeTypes()
|
|
{
|
|
if (!mMimeTypes.IsEmpty() || !mHiddenMimeTypes.IsEmpty() || !mWindow) {
|
|
return;
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMNavigator> navigator;
|
|
mWindow->GetNavigator(getter_AddRefs(navigator));
|
|
|
|
if (!navigator) {
|
|
return;
|
|
}
|
|
|
|
ErrorResult rv;
|
|
nsPluginArray *pluginArray =
|
|
static_cast<Navigator*>(navigator.get())->GetPlugins(rv);
|
|
if (!pluginArray) {
|
|
return;
|
|
}
|
|
|
|
pluginArray->GetMimeTypes(mMimeTypes, mHiddenMimeTypes);
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(nsMimeType, AddRef)
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(nsMimeType, Release)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(nsMimeType, mWindow, mPluginElement)
|
|
|
|
nsMimeType::nsMimeType(nsPIDOMWindow* aWindow, nsPluginElement* aPluginElement,
|
|
uint32_t aPluginTagMimeIndex, const nsAString& aType)
|
|
: mWindow(aWindow),
|
|
mPluginElement(aPluginElement),
|
|
mPluginTagMimeIndex(aPluginTagMimeIndex),
|
|
mType(aType)
|
|
{
|
|
}
|
|
|
|
nsMimeType::nsMimeType(nsPIDOMWindow* aWindow, const nsAString& aType)
|
|
: mWindow(aWindow),
|
|
mPluginElement(nullptr),
|
|
mPluginTagMimeIndex(0),
|
|
mType(aType)
|
|
{
|
|
}
|
|
|
|
nsMimeType::~nsMimeType()
|
|
{
|
|
}
|
|
|
|
nsPIDOMWindow*
|
|
nsMimeType::GetParentObject() const
|
|
{
|
|
MOZ_ASSERT(mWindow);
|
|
return mWindow;
|
|
}
|
|
|
|
JSObject*
|
|
nsMimeType::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return MimeTypeBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
void
|
|
nsMimeType::GetDescription(nsString& retval) const
|
|
{
|
|
retval.Truncate();
|
|
|
|
if (mPluginElement) {
|
|
CopyUTF8toUTF16(mPluginElement->PluginTag()->
|
|
mMimeDescriptions[mPluginTagMimeIndex], retval);
|
|
}
|
|
}
|
|
|
|
nsPluginElement*
|
|
nsMimeType::GetEnabledPlugin() const
|
|
{
|
|
return (mPluginElement && mPluginElement->PluginTag()->IsEnabled()) ?
|
|
mPluginElement : nullptr;
|
|
}
|
|
|
|
void
|
|
nsMimeType::GetSuffixes(nsString& retval) const
|
|
{
|
|
retval.Truncate();
|
|
|
|
if (mPluginElement) {
|
|
CopyUTF8toUTF16(mPluginElement->PluginTag()->
|
|
mExtensions[mPluginTagMimeIndex], retval);
|
|
}
|
|
}
|
|
|
|
void
|
|
nsMimeType::GetType(nsString& aRetval) const
|
|
{
|
|
aRetval = mType;
|
|
}
|