mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
* More helpers on `Promise` Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * Sync `GPUBuffer` Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * Set some good expectations Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * Some bad expect also on firefox Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * Extract DataBlock, DataView impl from GPUBuffer Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * Fix size check to work on 32bit platforms Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
509 lines
18 KiB
Rust
509 lines
18 KiB
Rust
/* 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/. */
|
|
|
|
#![allow(unsafe_code)]
|
|
|
|
use std::ffi::c_void;
|
|
use std::marker::PhantomData;
|
|
use std::ops::Range;
|
|
use std::ptr;
|
|
use std::sync::Arc;
|
|
|
|
use js::jsapi::{
|
|
Heap, JSObject, JS_GetArrayBufferViewBuffer, JS_IsArrayBufferViewObject, NewExternalArrayBuffer,
|
|
};
|
|
use js::rust::wrappers::DetachArrayBuffer;
|
|
use js::rust::{CustomAutoRooterGuard, Handle, MutableHandleObject};
|
|
use js::typedarray::{
|
|
ArrayBuffer, CreateWith, HeapArrayBuffer, TypedArray, TypedArrayElement,
|
|
TypedArrayElementCreator,
|
|
};
|
|
|
|
use crate::dom::globalscope::GlobalScope;
|
|
use crate::script_runtime::JSContext;
|
|
|
|
/// <https://webidl.spec.whatwg.org/#BufferSource>
|
|
#[allow(dead_code)]
|
|
pub enum BufferSource {
|
|
Int8Array(Box<Heap<*mut JSObject>>),
|
|
Int16Array(Box<Heap<*mut JSObject>>),
|
|
Int32Array(Box<Heap<*mut JSObject>>),
|
|
Uint8Array(Box<Heap<*mut JSObject>>),
|
|
Uint16Array(Box<Heap<*mut JSObject>>),
|
|
Uint32Array(Box<Heap<*mut JSObject>>),
|
|
Uint8ClampedArray(Box<Heap<*mut JSObject>>),
|
|
BigInt64Array(Box<Heap<*mut JSObject>>),
|
|
BigUint64Array(Box<Heap<*mut JSObject>>),
|
|
Float32Array(Box<Heap<*mut JSObject>>),
|
|
Float64Array(Box<Heap<*mut JSObject>>),
|
|
DataView(Box<Heap<*mut JSObject>>),
|
|
ArrayBuffer(Box<Heap<*mut JSObject>>),
|
|
Default(Box<Heap<*mut JSObject>>),
|
|
}
|
|
|
|
pub struct HeapBufferSource<T> {
|
|
buffer_source: BufferSource,
|
|
phantom: PhantomData<T>,
|
|
}
|
|
|
|
unsafe impl<T> crate::dom::bindings::trace::JSTraceable for HeapBufferSource<T> {
|
|
#[inline]
|
|
unsafe fn trace(&self, tracer: *mut js::jsapi::JSTracer) {
|
|
match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.trace(tracer);
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn new_initialized_heap_buffer_source<T>(
|
|
init: HeapTypedArrayInit,
|
|
) -> Result<HeapBufferSource<T>, ()>
|
|
where
|
|
T: TypedArrayElement + TypedArrayElementCreator,
|
|
T::Element: Clone + Copy,
|
|
{
|
|
let heap_buffer_source = match init {
|
|
HeapTypedArrayInit::Buffer(buffer_source) => HeapBufferSource {
|
|
buffer_source,
|
|
phantom: PhantomData,
|
|
},
|
|
HeapTypedArrayInit::Info { len, cx } => {
|
|
rooted!(in (*cx) let mut array = ptr::null_mut::<JSObject>());
|
|
let typed_array_result =
|
|
create_buffer_source_with_length::<T>(cx, len as usize, array.handle_mut());
|
|
if typed_array_result.is_err() {
|
|
return Err(());
|
|
}
|
|
let heap_buffer_source = HeapBufferSource::<T>::default();
|
|
|
|
match &heap_buffer_source.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.set(*array);
|
|
},
|
|
}
|
|
heap_buffer_source
|
|
},
|
|
};
|
|
Ok(heap_buffer_source)
|
|
}
|
|
|
|
pub enum HeapTypedArrayInit {
|
|
Buffer(BufferSource),
|
|
Info { len: u32, cx: JSContext },
|
|
}
|
|
|
|
impl<T> HeapBufferSource<T>
|
|
where
|
|
T: TypedArrayElement + TypedArrayElementCreator,
|
|
T::Element: Clone + Copy,
|
|
{
|
|
pub fn default() -> HeapBufferSource<T> {
|
|
HeapBufferSource {
|
|
buffer_source: BufferSource::Default(Box::default()),
|
|
phantom: PhantomData,
|
|
}
|
|
}
|
|
|
|
pub fn set_data(&self, cx: JSContext, data: &[T::Element]) -> Result<(), ()> {
|
|
rooted!(in (*cx) let mut array = ptr::null_mut::<JSObject>());
|
|
let _: TypedArray<T, *mut JSObject> = create_buffer_source(cx, data, array.handle_mut())?;
|
|
|
|
match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.set(*array);
|
|
},
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn acquire_data(&self, cx: JSContext) -> Result<Vec<T::Element>, ()> {
|
|
assert!(self.is_initialized());
|
|
|
|
typedarray!(in(*cx) let array: TypedArray = match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.get()
|
|
},
|
|
});
|
|
let data = if let Ok(array) =
|
|
array as Result<CustomAutoRooterGuard<'_, TypedArray<T, *mut JSObject>>, &mut ()>
|
|
{
|
|
let data = array.to_vec();
|
|
let _ = self.detach_buffer(cx);
|
|
Ok(data)
|
|
} else {
|
|
Err(())
|
|
};
|
|
|
|
match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.set(ptr::null_mut());
|
|
},
|
|
}
|
|
data
|
|
}
|
|
|
|
/// <https://tc39.es/ecma262/#sec-detacharraybuffer>
|
|
pub fn detach_buffer(&self, cx: JSContext) -> bool {
|
|
match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
assert!(self.is_initialized());
|
|
let mut is_shared = false;
|
|
unsafe {
|
|
if JS_IsArrayBufferViewObject(*buffer.handle()) {
|
|
// If it is an ArrayBuffer view, get the buffer using JS_GetArrayBufferViewBuffer
|
|
rooted!(in (*cx) let view_buffer =
|
|
JS_GetArrayBufferViewBuffer(*cx, buffer.handle(), &mut is_shared));
|
|
// This buffer is always created unshared
|
|
debug_assert!(!is_shared);
|
|
// Detach the ArrayBuffer
|
|
DetachArrayBuffer(*cx, view_buffer.handle())
|
|
} else {
|
|
// If it's not an ArrayBuffer view, Detach the buffer directly
|
|
DetachArrayBuffer(*cx, Handle::from_raw(buffer.handle()))
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
pub fn copy_data_to(
|
|
&self,
|
|
cx: JSContext,
|
|
dest: &mut [T::Element],
|
|
source_start: usize,
|
|
length: usize,
|
|
) -> Result<(), ()> {
|
|
assert!(self.is_initialized());
|
|
typedarray!(in(*cx) let array: TypedArray = match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.get()
|
|
},
|
|
});
|
|
let Ok(array) =
|
|
array as Result<CustomAutoRooterGuard<'_, TypedArray<T, *mut JSObject>>, &mut ()>
|
|
else {
|
|
return Err(());
|
|
};
|
|
unsafe {
|
|
let slice = (*array).as_slice();
|
|
dest.copy_from_slice(&slice[source_start..length]);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn copy_data_from(
|
|
&self,
|
|
cx: JSContext,
|
|
source: CustomAutoRooterGuard<TypedArray<T, *mut JSObject>>,
|
|
dest_start: usize,
|
|
length: usize,
|
|
) -> Result<(), ()> {
|
|
assert!(self.is_initialized());
|
|
typedarray!(in(*cx) let mut array: TypedArray = match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => {
|
|
buffer.get()
|
|
},
|
|
});
|
|
let Ok(mut array) =
|
|
array as Result<CustomAutoRooterGuard<'_, TypedArray<T, *mut JSObject>>, &mut ()>
|
|
else {
|
|
return Err(());
|
|
};
|
|
unsafe {
|
|
let slice = (*array).as_mut_slice();
|
|
let (_, dest) = slice.split_at_mut(dest_start);
|
|
dest[0..length].copy_from_slice(&source.as_slice()[0..length])
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn is_initialized(&self) -> bool {
|
|
match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => !buffer.get().is_null(),
|
|
}
|
|
}
|
|
|
|
pub fn get_buffer(&self) -> Result<TypedArray<T, *mut JSObject>, ()> {
|
|
TypedArray::from(match &self.buffer_source {
|
|
BufferSource::Int8Array(buffer) |
|
|
BufferSource::Int16Array(buffer) |
|
|
BufferSource::Int32Array(buffer) |
|
|
BufferSource::Uint8Array(buffer) |
|
|
BufferSource::Uint16Array(buffer) |
|
|
BufferSource::Uint32Array(buffer) |
|
|
BufferSource::Uint8ClampedArray(buffer) |
|
|
BufferSource::BigInt64Array(buffer) |
|
|
BufferSource::BigUint64Array(buffer) |
|
|
BufferSource::Float32Array(buffer) |
|
|
BufferSource::Float64Array(buffer) |
|
|
BufferSource::DataView(buffer) |
|
|
BufferSource::ArrayBuffer(buffer) |
|
|
BufferSource::Default(buffer) => buffer.get(),
|
|
})
|
|
}
|
|
|
|
pub fn buffer_to_option(&self) -> Option<TypedArray<T, *mut JSObject>> {
|
|
if self.is_initialized() {
|
|
Some(self.get_buffer().expect("Failed to get buffer."))
|
|
} else {
|
|
warn!("Buffer not initialized.");
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <https://webidl.spec.whatwg.org/#arraybufferview-create>
|
|
pub fn create_buffer_source<T>(
|
|
cx: JSContext,
|
|
data: &[T::Element],
|
|
dest: MutableHandleObject,
|
|
) -> Result<TypedArray<T, *mut JSObject>, ()>
|
|
where
|
|
T: TypedArrayElement + TypedArrayElementCreator,
|
|
{
|
|
let res = unsafe { TypedArray::<T, *mut JSObject>::create(*cx, CreateWith::Slice(data), dest) };
|
|
|
|
if res.is_err() {
|
|
Err(())
|
|
} else {
|
|
TypedArray::from(dest.get())
|
|
}
|
|
}
|
|
|
|
fn create_buffer_source_with_length<T>(
|
|
cx: JSContext,
|
|
len: usize,
|
|
dest: MutableHandleObject,
|
|
) -> Result<TypedArray<T, *mut JSObject>, ()>
|
|
where
|
|
T: TypedArrayElement + TypedArrayElementCreator,
|
|
{
|
|
let res = unsafe { TypedArray::<T, *mut JSObject>::create(*cx, CreateWith::Length(len), dest) };
|
|
|
|
if res.is_err() {
|
|
Err(())
|
|
} else {
|
|
TypedArray::from(dest.get())
|
|
}
|
|
}
|
|
|
|
#[derive(JSTraceable, MallocSizeOf)]
|
|
pub struct DataBlock {
|
|
#[ignore_malloc_size_of = "Arc"]
|
|
data: Arc<Box<[u8]>>,
|
|
/// Data views (mutable subslices of data)
|
|
data_views: Vec<DataView>,
|
|
}
|
|
|
|
/// Returns true if two non-inclusive ranges overlap
|
|
// https://stackoverflow.com/questions/3269434/whats-the-most-efficient-way-to-test-if-two-ranges-overlap
|
|
fn range_overlap<T: std::cmp::PartialOrd>(range1: &Range<T>, range2: &Range<T>) -> bool {
|
|
range1.start < range2.end && range2.start < range1.end
|
|
}
|
|
|
|
impl DataBlock {
|
|
pub fn new_zeroed(size: usize) -> Self {
|
|
let data = vec![0; size];
|
|
Self {
|
|
data: Arc::new(data.into_boxed_slice()),
|
|
data_views: Vec::new(),
|
|
}
|
|
}
|
|
|
|
/// Panics if there is any active view or src data is not same length
|
|
pub fn load(&mut self, src: &[u8]) {
|
|
// `Arc::get_mut` ensures there are no views
|
|
Arc::get_mut(&mut self.data).unwrap().clone_from_slice(src)
|
|
}
|
|
|
|
/// Panics if there is any active view
|
|
pub fn data(&mut self) -> &mut [u8] {
|
|
// `Arc::get_mut` ensures there are no views
|
|
Arc::get_mut(&mut self.data).unwrap()
|
|
}
|
|
|
|
pub fn clear_views(&mut self) {
|
|
self.data_views.clear()
|
|
}
|
|
|
|
/// Returns error if requested range is already mapped
|
|
pub fn view(&mut self, range: Range<usize>) -> Result<&DataView, ()> {
|
|
if self
|
|
.data_views
|
|
.iter()
|
|
.any(|view| range_overlap(&view.range, &range))
|
|
{
|
|
return Err(());
|
|
}
|
|
let cx = GlobalScope::get_cx();
|
|
/// `freeFunc()` must be threadsafe, should be safely callable from any thread
|
|
/// without causing conflicts, unexpected behavior.
|
|
unsafe extern "C" fn free_func(_contents: *mut c_void, free_user_data: *mut c_void) {
|
|
// Clippy warns about "creating a `Arc` from a void raw pointer" here, but suggests
|
|
// the exact same line to fix it. Doing the cast is tricky because of the use of
|
|
// a generic type in this parameter.
|
|
#[allow(clippy::from_raw_with_void_ptr)]
|
|
drop(Arc::from_raw(free_user_data as *const _));
|
|
}
|
|
let raw: *mut Box<[u8]> = Arc::into_raw(Arc::clone(&self.data)) as _;
|
|
rooted!(in(*cx) let object = unsafe {
|
|
NewExternalArrayBuffer(
|
|
*cx,
|
|
range.end - range.start,
|
|
// SAFETY: This is safe because we have checked there is no overlapping view
|
|
(*raw)[range.clone()].as_mut_ptr() as _,
|
|
Some(free_func),
|
|
raw as _,
|
|
)
|
|
});
|
|
self.data_views.push(DataView {
|
|
range,
|
|
buffer: HeapArrayBuffer::from(*object).unwrap(),
|
|
});
|
|
Ok(self.data_views.last().unwrap())
|
|
}
|
|
}
|
|
|
|
#[derive(JSTraceable, MallocSizeOf)]
|
|
pub struct DataView {
|
|
#[no_trace]
|
|
range: Range<usize>,
|
|
#[ignore_malloc_size_of = "defined in mozjs"]
|
|
buffer: HeapArrayBuffer,
|
|
}
|
|
|
|
impl DataView {
|
|
pub fn array_buffer(&self) -> ArrayBuffer {
|
|
unsafe { ArrayBuffer::from(self.buffer.underlying_object().get()).unwrap() }
|
|
}
|
|
}
|
|
|
|
impl Drop for DataView {
|
|
#[allow(unsafe_code)]
|
|
fn drop(&mut self) {
|
|
let cx = GlobalScope::get_cx();
|
|
assert!(unsafe {
|
|
js::jsapi::DetachArrayBuffer(*cx, self.buffer.underlying_object().handle())
|
|
})
|
|
}
|
|
}
|