summaryrefslogtreecommitdiffstats
path: root/dom/base/nsMimeTypeArray.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/base/nsMimeTypeArray.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/nsMimeTypeArray.cpp')
-rw-r--r--dom/base/nsMimeTypeArray.cpp255
1 files changed, 255 insertions, 0 deletions
diff --git a/dom/base/nsMimeTypeArray.cpp b/dom/base/nsMimeTypeArray.cpp
new file mode 100644
index 000000000..ec8a82557
--- /dev/null
+++ b/dom/base/nsMimeTypeArray.cpp
@@ -0,0 +1,255 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* 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 "nsPIDOMWindow.h"
+#include "nsPluginArray.h"
+#include "nsIMIMEService.h"
+#include "nsIMIMEInfo.h"
+#include "Navigator.h"
+#include "nsServiceManagerUtils.h"
+#include "nsContentUtils.h"
+#include "nsPluginTags.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,
+ mCTPMimeTypes)
+
+nsMimeTypeArray::nsMimeTypeArray(nsPIDOMWindowInner* aWindow)
+ : mWindow(aWindow)
+{
+}
+
+nsMimeTypeArray::~nsMimeTypeArray()
+{
+}
+
+static bool
+ResistFingerprinting() {
+ return !nsContentUtils::ThreadsafeIsCallerChrome() &&
+ nsContentUtils::ResistFingerprinting();
+}
+
+JSObject*
+nsMimeTypeArray::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
+{
+ return MimeTypeArrayBinding::Wrap(aCx, this, aGivenProto);
+}
+
+void
+nsMimeTypeArray::Refresh()
+{
+ mMimeTypes.Clear();
+ mCTPMimeTypes.Clear();
+}
+
+nsPIDOMWindowInner*
+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;
+
+ if (ResistFingerprinting()) {
+ return nullptr;
+ }
+
+ EnsurePluginMimeTypes();
+
+ if (aIndex >= mMimeTypes.Length()) {
+ return nullptr;
+ }
+
+ aFound = true;
+
+ return mMimeTypes[aIndex];
+}
+
+static nsMimeType*
+FindMimeType(const nsTArray<RefPtr<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;
+
+ if (ResistFingerprinting()) {
+ return nullptr;
+ }
+
+ EnsurePluginMimeTypes();
+
+ nsString lowerName(aName);
+ ToLowerCase(lowerName);
+
+ nsMimeType* mimeType = FindMimeType(mMimeTypes, lowerName);
+ if (mimeType) {
+ aFound = true;
+ return mimeType;
+ }
+ nsMimeType* hiddenType = FindMimeType(mCTPMimeTypes, lowerName);
+ if (hiddenType) {
+ nsPluginArray::NotifyHiddenPluginTouched(hiddenType->GetEnabledPlugin());
+ }
+
+ return nullptr;
+}
+
+uint32_t
+nsMimeTypeArray::Length()
+{
+ if (ResistFingerprinting()) {
+ return 0;
+ }
+
+ EnsurePluginMimeTypes();
+
+ return mMimeTypes.Length();
+}
+
+void
+nsMimeTypeArray::GetSupportedNames(nsTArray<nsString>& aRetval)
+{
+ EnsurePluginMimeTypes();
+
+ for (uint32_t i = 0; i < mMimeTypes.Length(); ++i) {
+ aRetval.AppendElement(mMimeTypes[i]->Type());
+ }
+}
+
+void
+nsMimeTypeArray::EnsurePluginMimeTypes()
+{
+ if (!mMimeTypes.IsEmpty() || !mWindow) {
+ return;
+ }
+
+ nsCOMPtr<nsIDOMNavigator> navigator = mWindow->GetNavigator();
+
+ if (!navigator) {
+ return;
+ }
+
+ ErrorResult rv;
+ nsPluginArray *pluginArray =
+ static_cast<Navigator*>(navigator.get())->GetPlugins(rv);
+ if (!pluginArray) {
+ return;
+ }
+
+ pluginArray->GetMimeTypes(mMimeTypes);
+ pluginArray->GetCTPMimeTypes(mCTPMimeTypes);
+}
+
+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(nsPIDOMWindowInner* aWindow,
+ nsPluginElement* aPluginElement,
+ const nsAString& aType,
+ const nsAString& aDescription,
+ const nsAString& aExtension)
+ : mWindow(aWindow),
+ mPluginElement(aPluginElement),
+ mType(aType),
+ mDescription(aDescription),
+ mExtension(aExtension)
+{
+ MOZ_ASSERT(aPluginElement);
+}
+
+nsMimeType::~nsMimeType()
+{
+}
+
+nsPIDOMWindowInner*
+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& aRetval) const
+{
+ aRetval = mDescription;
+}
+
+nsPluginElement*
+nsMimeType::GetEnabledPlugin() const
+{
+ // mPluginElement might be null if we got unlinked but are still somehow being
+ // called into.
+ if (!mPluginElement || !mPluginElement->PluginTag()->IsEnabled()) {
+ return nullptr;
+ }
+ return mPluginElement;
+}
+
+void
+nsMimeType::GetSuffixes(nsString& aRetval) const
+{
+ aRetval = mExtension;
+}
+
+void
+nsMimeType::GetType(nsString& aRetval) const
+{
+ aRetval = mType;
+}