2018-09-20 14:34:01 +03:00
|
|
|
/* -*- 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "AudioWorkletImpl.h"
|
|
|
|
|
|
|
|
#include "AudioContext.h"
|
2019-10-02 13:23:02 +03:00
|
|
|
#include "AudioNodeTrack.h"
|
2018-09-20 14:34:01 +03:00
|
|
|
#include "mozilla/dom/AudioWorkletBinding.h"
|
|
|
|
#include "mozilla/dom/AudioWorkletGlobalScope.h"
|
|
|
|
#include "mozilla/dom/Worklet.h"
|
|
|
|
#include "mozilla/dom/WorkletThread.h"
|
|
|
|
#include "nsGlobalWindowInner.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<dom::Worklet> AudioWorkletImpl::CreateWorklet(
|
|
|
|
dom::AudioContext* aContext, ErrorResult& aRv) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindowInner> window = aContext->GetOwner();
|
|
|
|
if (NS_WARN_IF(!window)) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIPrincipal> principal =
|
|
|
|
nsGlobalWindowInner::Cast(window)->GetPrincipal();
|
|
|
|
if (NS_WARN_IF(!principal)) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-30 05:28:34 +03:00
|
|
|
RefPtr<AudioWorkletImpl> impl =
|
2019-10-02 13:23:02 +03:00
|
|
|
new AudioWorkletImpl(window, principal, aContext->DestinationTrack());
|
2019-01-31 10:16:31 +03:00
|
|
|
|
|
|
|
// The Worklet owns a reference to the AudioContext so as to keep the graph
|
|
|
|
// thread running as long as the Worklet is alive by keeping the
|
|
|
|
// AudioDestinationNode alive.
|
|
|
|
return MakeAndAddRef<dom::Worklet>(window, std::move(impl),
|
|
|
|
ToSupports(aContext));
|
2018-09-20 14:34:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioWorkletImpl::AudioWorkletImpl(nsPIDOMWindowInner* aWindow,
|
2018-11-30 05:28:34 +03:00
|
|
|
nsIPrincipal* aPrincipal,
|
2019-10-02 13:23:02 +03:00
|
|
|
AudioNodeTrack* aDestinationTrack)
|
|
|
|
: WorkletImpl(aWindow, aPrincipal), mDestinationTrack(aDestinationTrack) {}
|
2018-09-20 14:34:01 +03:00
|
|
|
|
|
|
|
AudioWorkletImpl::~AudioWorkletImpl() = default;
|
|
|
|
|
|
|
|
JSObject* AudioWorkletImpl::WrapWorklet(JSContext* aCx, dom::Worklet* aWorklet,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
return dom::AudioWorklet_Binding::Wrap(aCx, aWorklet, aGivenProto);
|
|
|
|
}
|
|
|
|
|
2018-12-20 10:58:13 +03:00
|
|
|
nsresult AudioWorkletImpl::SendControlMessage(
|
|
|
|
already_AddRefed<nsIRunnable> aRunnable) {
|
2019-10-02 13:23:02 +03:00
|
|
|
mDestinationTrack->SendRunnable(std::move(aRunnable));
|
2018-12-20 10:58:13 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2018-09-20 14:34:01 +03:00
|
|
|
already_AddRefed<dom::WorkletGlobalScope>
|
|
|
|
AudioWorkletImpl::ConstructGlobalScope() {
|
|
|
|
dom::WorkletThread::AssertIsOnWorkletThread();
|
|
|
|
|
|
|
|
return MakeAndAddRef<dom::AudioWorkletGlobalScope>(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|