1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00

chore(serde_v8): take mutable reference in ToV8::to_v8 (#15707)

This commit is contained in:
Divy Srivastava 2022-09-01 15:54:40 +05:30 committed by GitHub
parent 805ce6fdf7
commit e267ec6ed5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 19 additions and 17 deletions

View file

@ -99,7 +99,7 @@ pub enum OpResult {
impl OpResult {
pub fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, serde_v8::Error> {
match self {

View file

@ -1944,7 +1944,7 @@ impl JsRuntime {
// and then each tuple is used to resolve or reject promises
let mut args = vec![];
for (promise_id, resp) in results.into_iter() {
for (promise_id, mut resp) in results.into_iter() {
args.push(v8::Integer::new(scope, promise_id).into());
args.push(resp.to_v8(scope).unwrap());
}

View file

@ -103,7 +103,7 @@ impl From<Vec<u8>> for ZeroCopyBuf {
impl ToV8 for ZeroCopyBuf {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
let buf: Box<[u8]> = match self {
@ -112,7 +112,9 @@ impl ToV8 for ZeroCopyBuf {
value.into()
}
Self::Temp(_) => unreachable!(),
Self::ToV8(x) => x.lock().unwrap().take().expect("ZeroCopyBuf was empty"),
Self::ToV8(x) => {
x.get_mut().unwrap().take().expect("ZeroCopyBuf was empty")
}
};
if buf.is_empty() {

View file

@ -32,7 +32,7 @@ const _: () =
impl ToV8 for ByteString {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
let v =

View file

@ -41,7 +41,7 @@ impl DerefMut for DetachedBuffer {
impl ToV8 for DetachedBuffer {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
let buffer = v8::ArrayBuffer::with_backing_store(scope, &self.0.store);

View file

@ -23,7 +23,7 @@ impl From<Global> for v8::Global<v8::Value> {
impl ToV8 for Global {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
Ok(v8::Local::new(scope, self.v8_value.clone()))

View file

@ -25,7 +25,7 @@ impl Deref for StringOrBuffer {
impl ToV8 for StringOrBuffer {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
match self {

View file

@ -14,7 +14,7 @@ pub(crate) trait MagicType {
pub(crate) trait ToV8 {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error>;
}
@ -104,7 +104,7 @@ pub(crate) unsafe fn opaque_recv<T: ?Sized>(ptr: &T) -> u64 {
}
/// Transmutes an "opaque" ptr back into a reference
pub(crate) unsafe fn opaque_deref<'a, T>(ptr: u64) -> &'a T {
pub(crate) unsafe fn opaque_deref_mut<'a, T>(ptr: u64) -> &'a mut T {
std::mem::transmute(ptr as usize)
}

View file

@ -8,7 +8,7 @@ impl_magic!(U16String);
impl ToV8 for U16String {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
let maybe_v =

View file

@ -29,7 +29,7 @@ impl<'s> From<Value<'s>> for v8::Local<'s, v8::Value> {
impl ToV8 for Value<'_> {
fn to_v8<'a>(
&self,
&mut self,
_scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
// SAFETY: not fully safe, since lifetimes are detached from original scope

View file

@ -7,7 +7,7 @@ use std::cell::RefCell;
use crate::error::{Error, Result};
use crate::keys::v8_struct_key;
use crate::magic::transl8::MAGIC_FIELD;
use crate::magic::transl8::{opaque_deref, opaque_recv, MagicType, ToV8};
use crate::magic::transl8::{opaque_deref_mut, opaque_recv, MagicType, ToV8};
use crate::{
magic, ByteString, DetachedBuffer, StringOrBuffer, U16String, ZeroCopyBuf,
};
@ -253,7 +253,7 @@ impl<'a, 'b, 'c, T: MagicType + ToV8> ser::SerializeStruct
fn end(self) -> JsResult<'a> {
// SAFETY: transerialization assumptions imply `T` is still alive.
let x: &T = unsafe { opaque_deref(self.opaque) };
let x: &mut T = unsafe { opaque_deref_mut(self.opaque) };
let scope = &mut *self.scope.borrow_mut();
x.to_v8(scope)
}

View file

@ -12,7 +12,7 @@ use crate::ZeroCopyBuf;
/// (and thus doesn't have to have generic outputs, etc...)
pub trait Serializable {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error>;
}
@ -20,7 +20,7 @@ pub trait Serializable {
/// Allows all implementors of `serde::Serialize` to implement Serializable
impl<T: serde::Serialize> Serializable for T {
fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
crate::to_v8(scope, self)
@ -36,7 +36,7 @@ pub enum SerializablePkg {
impl SerializablePkg {
pub fn to_v8<'a>(
&self,
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
match self {