123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
- /* 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 "PermissionObserver.h"
- #include "mozilla/dom/PermissionStatus.h"
- #include "mozilla/Services.h"
- #include "mozilla/UniquePtr.h"
- #include "nsIObserverService.h"
- #include "nsIPermission.h"
- #include "PermissionUtils.h"
- namespace mozilla {
- namespace dom {
- namespace {
- PermissionObserver* gInstance = nullptr;
- } // namespace
- NS_IMPL_ISUPPORTS(PermissionObserver,
- nsIObserver,
- nsISupportsWeakReference)
- PermissionObserver::PermissionObserver()
- {
- MOZ_ASSERT(!gInstance);
- }
- PermissionObserver::~PermissionObserver()
- {
- MOZ_ASSERT(mSinks.IsEmpty());
- MOZ_ASSERT(gInstance == this);
- gInstance = nullptr;
- }
- /* static */ already_AddRefed<PermissionObserver>
- PermissionObserver::GetInstance()
- {
- RefPtr<PermissionObserver> instance = gInstance;
- if (!instance) {
- instance = new PermissionObserver();
- nsCOMPtr<nsIObserverService> obs = services::GetObserverService();
- if (NS_WARN_IF(!obs)) {
- return nullptr;
- }
- nsresult rv = obs->AddObserver(instance, "perm-changed", true);
- if (NS_WARN_IF(NS_FAILED(rv))) {
- return nullptr;
- }
- gInstance = instance;
- }
- return instance.forget();
- }
- void
- PermissionObserver::AddSink(PermissionStatus* aSink)
- {
- MOZ_ASSERT(aSink);
- MOZ_ASSERT(!mSinks.Contains(aSink));
- mSinks.AppendElement(aSink);
- }
- void
- PermissionObserver::RemoveSink(PermissionStatus* aSink)
- {
- MOZ_ASSERT(aSink);
- MOZ_ASSERT(mSinks.Contains(aSink));
- mSinks.RemoveElement(aSink);
- }
- void
- PermissionObserver::Notify(PermissionName aName, nsIPrincipal& aPrincipal)
- {
- for (auto* sink : mSinks) {
- if (sink->mName != aName) {
- continue;
- }
- nsCOMPtr<nsIPrincipal> sinkPrincipal = sink->GetPrincipal();
- if (NS_WARN_IF(!sinkPrincipal) || !aPrincipal.Equals(sinkPrincipal)) {
- continue;
- }
- sink->PermissionChanged();
- }
- }
- NS_IMETHODIMP
- PermissionObserver::Observe(nsISupports* aSubject,
- const char* aTopic,
- const char16_t* aData)
- {
- MOZ_ASSERT(!strcmp(aTopic, "perm-changed"));
- if (mSinks.IsEmpty()) {
- return NS_OK;
- }
- nsCOMPtr<nsIPermission> perm = do_QueryInterface(aSubject);
- if (!perm) {
- return NS_OK;
- }
- nsCOMPtr<nsIPrincipal> principal;
- perm->GetPrincipal(getter_AddRefs(principal));
- if (!principal) {
- return NS_OK;
- }
- nsAutoCString type;
- perm->GetType(type);
- Maybe<PermissionName> permission = TypeToPermissionName(type.get());
- if (permission) {
- Notify(permission.value(), *principal);
- }
- return NS_OK;
- }
- } // namespace dom
- } // namespace mozilla
|