2022-04-24 08:28:46 -04:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2022-04-25 10:56:47 -04:00
|
|
|
use super::buffer::ZeroCopyBuf;
|
2022-04-24 08:28:46 -04:00
|
|
|
use super::transl8::{FromV8, ToV8};
|
|
|
|
use crate::magic::transl8::impl_magic;
|
|
|
|
use crate::Error;
|
2021-10-20 09:40:20 -04:00
|
|
|
use std::ops::Deref;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2022-04-24 08:28:46 -04:00
|
|
|
pub enum StringOrBuffer {
|
2022-04-25 10:56:47 -04:00
|
|
|
Buffer(ZeroCopyBuf),
|
2022-04-24 08:28:46 -04:00
|
|
|
String(String),
|
2021-10-20 09:40:20 -04:00
|
|
|
}
|
|
|
|
|
2022-04-24 08:28:46 -04:00
|
|
|
impl_magic!(StringOrBuffer);
|
2021-10-26 16:00:01 -04:00
|
|
|
|
2022-04-24 08:28:46 -04:00
|
|
|
impl Deref for StringOrBuffer {
|
|
|
|
type Target = [u8];
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
match self {
|
|
|
|
Self::Buffer(b) => b.as_ref(),
|
|
|
|
Self::String(s) => s.as_bytes(),
|
|
|
|
}
|
2021-10-20 09:40:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-24 08:28:46 -04:00
|
|
|
impl ToV8 for StringOrBuffer {
|
|
|
|
fn to_v8<'a>(
|
|
|
|
&self,
|
|
|
|
scope: &mut v8::HandleScope<'a>,
|
|
|
|
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
|
|
|
|
match self {
|
|
|
|
Self::Buffer(buf) => crate::to_v8(scope, buf),
|
|
|
|
Self::String(s) => crate::to_v8(scope, s),
|
|
|
|
}
|
|
|
|
}
|
2021-10-20 09:40:20 -04:00
|
|
|
}
|
|
|
|
|
2022-04-24 08:28:46 -04:00
|
|
|
impl FromV8 for StringOrBuffer {
|
|
|
|
fn from_v8(
|
|
|
|
scope: &mut v8::HandleScope,
|
|
|
|
value: v8::Local<v8::Value>,
|
|
|
|
) -> Result<Self, crate::Error> {
|
2022-04-25 10:56:47 -04:00
|
|
|
if let Ok(buf) = ZeroCopyBuf::from_v8(scope, value) {
|
2022-04-24 08:28:46 -04:00
|
|
|
return Ok(Self::Buffer(buf));
|
|
|
|
} else if let Ok(s) = crate::from_v8(scope, value) {
|
|
|
|
return Ok(Self::String(s));
|
2021-10-20 09:40:20 -04:00
|
|
|
}
|
2022-04-24 08:28:46 -04:00
|
|
|
Err(Error::ExpectedBuffer)
|
2021-10-20 09:40:20 -04:00
|
|
|
}
|
|
|
|
}
|
2022-05-13 06:53:13 -04:00
|
|
|
|
|
|
|
impl From<StringOrBuffer> for bytes::Bytes {
|
|
|
|
fn from(sob: StringOrBuffer) -> Self {
|
|
|
|
match sob {
|
|
|
|
StringOrBuffer::Buffer(b) => b.into(),
|
|
|
|
StringOrBuffer::String(s) => s.into_bytes().into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|