mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
AudioContext.suspend() implementation
This commit is contained in:
parent
01f3951c66
commit
9f15bdd6cc
2 changed files with 46 additions and 8 deletions
|
@ -6,9 +6,12 @@ use dom::baseaudiocontext::{BaseAudioContext, BaseAudioContextOptions};
|
||||||
use dom::bindings::codegen::Bindings::AudioContextBinding;
|
use dom::bindings::codegen::Bindings::AudioContextBinding;
|
||||||
use dom::bindings::codegen::Bindings::AudioContextBinding::{AudioContextMethods, AudioContextOptions};
|
use dom::bindings::codegen::Bindings::AudioContextBinding::{AudioContextMethods, AudioContextOptions};
|
||||||
use dom::bindings::codegen::Bindings::AudioContextBinding::{AudioContextLatencyCategory, AudioTimestamp};
|
use dom::bindings::codegen::Bindings::AudioContextBinding::{AudioContextLatencyCategory, AudioTimestamp};
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::codegen::Bindings::BaseAudioContextBinding::AudioContextState;
|
||||||
|
use dom::bindings::codegen::Bindings::BaseAudioContextBinding::BaseAudioContextBinding::BaseAudioContextMethods;
|
||||||
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::inheritance::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
|
use dom::bindings::refcounted::Trusted;
|
||||||
use dom::bindings::reflector::{DomObject, reflect_dom_object};
|
use dom::bindings::reflector::{DomObject, reflect_dom_object};
|
||||||
use dom::bindings::root::DomRoot;
|
use dom::bindings::root::DomRoot;
|
||||||
use dom::globalscope::GlobalScope;
|
use dom::globalscope::GlobalScope;
|
||||||
|
@ -17,6 +20,7 @@ use dom::window::Window;
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
use servo_media::audio::graph::{LatencyCategory, RealTimeAudioGraphOptions};
|
use servo_media::audio::graph::{LatencyCategory, RealTimeAudioGraphOptions};
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
use task_source::TaskSource;
|
||||||
|
|
||||||
#[dom_struct]
|
#[dom_struct]
|
||||||
pub struct AudioContext {
|
pub struct AudioContext {
|
||||||
|
@ -59,10 +63,7 @@ impl AudioContext {
|
||||||
#[allow(unrooted_must_root)]
|
#[allow(unrooted_must_root)]
|
||||||
pub fn new(global: &GlobalScope,
|
pub fn new(global: &GlobalScope,
|
||||||
options: &AudioContextOptions) -> DomRoot<AudioContext> {
|
options: &AudioContextOptions) -> DomRoot<AudioContext> {
|
||||||
let context = AudioContext::new_inherited(
|
let context = AudioContext::new_inherited(global, options);
|
||||||
global,
|
|
||||||
options,
|
|
||||||
); // TODO
|
|
||||||
reflect_dom_object(Box::new(context), global, AudioContextBinding::Wrap)
|
reflect_dom_object(Box::new(context), global, AudioContextBinding::Wrap)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,10 +92,43 @@ impl AudioContextMethods for AudioContext {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// https://webaudio.github.io/web-audio-api/#dom-audiocontext-suspend
|
||||||
#[allow(unrooted_must_root)]
|
#[allow(unrooted_must_root)]
|
||||||
fn Suspend(&self) -> Rc<Promise> {
|
fn Suspend(&self) -> Rc<Promise> {
|
||||||
// TODO
|
// Step 1.
|
||||||
Promise::new(&self.global())
|
let promise = Promise::new(&self.global());
|
||||||
|
|
||||||
|
// Step 2.
|
||||||
|
let state = self.context.State();
|
||||||
|
if state == AudioContextState::Closed {
|
||||||
|
promise.reject_error(Error::InvalidState);
|
||||||
|
return promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Step 3.
|
||||||
|
if state == AudioContextState::Suspended {
|
||||||
|
promise.resolve_native(&());
|
||||||
|
return promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Steps 4 and 5.
|
||||||
|
let window = DomRoot::downcast::<Window>(self.global()).unwrap();
|
||||||
|
let task_source = window.dom_manipulation_task_source();
|
||||||
|
|
||||||
|
let this = Trusted::new(self);
|
||||||
|
task_source.queue(task!(suspend: move || {
|
||||||
|
let this = this.root();
|
||||||
|
this.context.audio_graph().suspend();
|
||||||
|
}), window.upcast()).unwrap();
|
||||||
|
|
||||||
|
task_source.queue_simple_event(
|
||||||
|
self.upcast(),
|
||||||
|
atom!("statechange"),
|
||||||
|
&window
|
||||||
|
);
|
||||||
|
|
||||||
|
// Step 6.
|
||||||
|
promise
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unrooted_must_root)]
|
#[allow(unrooted_must_root)]
|
||||||
|
|
|
@ -79,6 +79,10 @@ impl BaseAudioContext {
|
||||||
context
|
context
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn audio_graph(&self) -> &AudioGraph {
|
||||||
|
&self.audio_graph
|
||||||
|
}
|
||||||
|
|
||||||
pub fn create_node_engine(&self, node_type: AudioNodeType) -> NodeId {
|
pub fn create_node_engine(&self, node_type: AudioNodeType) -> NodeId {
|
||||||
self.audio_graph.create_node(node_type)
|
self.audio_graph.create_node(node_type)
|
||||||
}
|
}
|
||||||
|
@ -103,7 +107,7 @@ impl BaseAudioContext {
|
||||||
task_source.queue_simple_event(
|
task_source.queue_simple_event(
|
||||||
self.upcast(),
|
self.upcast(),
|
||||||
atom!("statechange"),
|
atom!("statechange"),
|
||||||
&window,
|
&window
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue