rune/runtime/bytes.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
//! A container of bytes, corresponding to the [Value::Bytes] type.
//!
//! [Value::Bytes]: crate::Value::Bytes.
use core::fmt;
use core::ops;
use serde::de;
use serde::ser;
use crate as rune;
use crate::alloc::prelude::*;
use crate::alloc::{self, Box, Vec};
use crate::runtime::VmResult;
use crate::TypeHash as _;
use crate::{Any, FromValue};
use super::{
IntoOutput, Range, RangeFrom, RangeFull, RangeInclusive, RangeTo, RangeToInclusive,
RawAnyGuard, Ref, RuntimeError, UnsafeToRef, Value, VmErrorKind,
};
/// A vector of bytes.
#[derive(Any, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[rune(item = ::std::bytes)]
pub struct Bytes {
bytes: Vec<u8>,
}
impl Bytes {
/// Construct a new byte array.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let bytes = Bytes::new();
/// assert_eq!(bytes, b"");
/// ```
#[inline]
pub const fn new() -> Self {
Bytes { bytes: Vec::new() }
}
/// Construct a byte array with the given preallocated capacity.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::with_capacity(32)?;
/// assert_eq!(bytes, b"");
/// bytes.extend(b"abcd")?;
/// assert_eq!(bytes, b"abcd");
/// # Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn with_capacity(cap: usize) -> alloc::Result<Self> {
Ok(Self {
bytes: Vec::try_with_capacity(cap)?,
})
}
/// Convert the byte array into a vector of bytes.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
/// use rune::alloc::prelude::*;
/// use rune::alloc::try_vec;
///
/// let bytes = Bytes::from_vec(try_vec![b'a', b'b', b'c', b'd']);
/// assert_eq!(bytes.into_vec(), [b'a', b'b', b'c', b'd']);
///
/// Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn into_vec(self) -> Vec<u8> {
self.bytes
}
/// Access bytes as a slice.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
/// use rune::alloc::try_vec;
///
/// let bytes = Bytes::from_vec(try_vec![b'a', b'b', b'c', b'd']);
/// assert_eq!(bytes.as_slice(), &[b'a', b'b', b'c', b'd']);
///
/// Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn as_slice(&self) -> &[u8] {
&self.bytes
}
/// Convert a slice into bytes.
///
/// Calling this function allocates bytes internally.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let bytes = Bytes::from_slice(vec![b'a', b'b', b'c', b'd'])?;
/// assert_eq!(bytes, b"abcd");
///
/// # Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn from_slice<B>(bytes: B) -> alloc::Result<Self>
where
B: AsRef<[u8]>,
{
Ok(Self {
bytes: Vec::try_from(bytes.as_ref())?,
})
}
/// Convert a byte array into bytes.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
/// use rune::alloc::try_vec;
///
/// let bytes = Bytes::from_vec(try_vec![b'a', b'b', b'c', b'd']);
/// assert_eq!(bytes, b"abcd");
/// # Ok::<_, rune::support::Error>(())
/// ```
#[inline]
pub fn from_vec(bytes: Vec<u8>) -> Self {
Self { bytes }
}
/// Extend these bytes with another collection of bytes.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
/// use rune::alloc::try_vec;
///
/// let mut bytes = Bytes::from_vec(try_vec![b'a', b'b', b'c', b'd']);
/// bytes.extend(b"efgh");
/// assert_eq!(bytes, b"abcdefgh");
///
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn extend<O>(&mut self, other: O) -> alloc::Result<()>
where
O: AsRef<[u8]>,
{
self.bytes.try_extend_from_slice(other.as_ref())
}
/// Test if the collection is empty.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::new();
/// assert!(bytes.is_empty());
/// ```
pub fn is_empty(&self) -> bool {
self.bytes.is_empty()
}
/// Get the length of the bytes collection.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::new();
/// assert_eq!(bytes.len(), 0);
/// bytes.extend(b"abcd");
/// assert_eq!(bytes.len(), 4);
/// ```
pub fn len(&self) -> usize {
self.bytes.len()
}
/// Get the capacity of the bytes collection.
pub fn capacity(&self) -> usize {
self.bytes.capacity()
}
/// Get the bytes collection.
pub fn clear(&mut self) {
self.bytes.clear();
}
/// Reserve additional space.
///
/// The exact amount is unspecified.
pub fn reserve(&mut self, additional: usize) -> alloc::Result<()> {
self.bytes.try_reserve(additional)
}
/// Resever additional space to the exact amount specified.
pub fn reserve_exact(&mut self, additional: usize) -> alloc::Result<()> {
self.bytes.try_reserve_exact(additional)
}
/// Shrink to fit the amount of bytes in the container.
pub fn shrink_to_fit(&mut self) -> alloc::Result<()> {
self.bytes.try_shrink_to_fit()
}
/// Pop the last byte.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::from_slice(b"abcd")?;
/// assert_eq!(bytes.pop(), Some(b'd'));
/// assert_eq!(bytes, b"abc");
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn pop(&mut self) -> Option<u8> {
self.bytes.pop()
}
/// Append a byte to the back.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::from_slice(b"abcd")?;
/// bytes.push(b'e');
/// assert_eq!(bytes, b"abcde");
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn push(&mut self, value: u8) -> alloc::Result<()> {
self.bytes.try_push(value)
}
/// Removes the byte at the specified index.
///
/// # Panics
///
/// Panics if `index` is out of bounds.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::from_slice(b"abcd")?;
/// bytes.remove(2);
/// assert_eq!(bytes, b"abd");
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn remove(&mut self, index: usize) -> u8 {
self.bytes.remove(index)
}
/// Inserts a byte at position index within the vector, shifting all
/// elements after it to the right.
///
/// # Panics
///
/// Panics if `index` is out of bounds.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::from_slice(b"abcd")?;
/// bytes.insert(2, b'e');
/// assert_eq!(bytes, b"abecd");
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn insert(&mut self, index: usize, value: u8) -> alloc::Result<()> {
self.bytes.try_insert(index, value)
}
/// Returns a subslice of Bytes.
///
/// - If given a position, returns the byte at that position or `None` if
/// out of bounds.
/// - If given a range, returns the subslice corresponding to that range, or
/// `None` if out of bounds.
pub(crate) fn index_get(&self, index: Value) -> VmResult<Option<Value>> {
bytes_slice_index_get(&self.bytes, index)
}
/// Set by index
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let mut bytes = Bytes::from_slice(b"abcd")?;
/// bytes.set(0, b'A');
/// assert_eq!(bytes, b"Abcd");
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn set(&mut self, index: usize, value: u8) -> VmResult<()> {
let Some(v) = self.bytes.get_mut(index) else {
return VmResult::err(VmErrorKind::OutOfRange {
index: index.into(),
length: self.len().into(),
});
};
*v = value;
VmResult::Ok(())
}
/// Get the first byte.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let bytes = Bytes::from_slice(b"abcd")?;
/// assert_eq!(bytes.first(), Some(b'a'));
///
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn first(&self) -> Option<u8> {
self.bytes.first().copied()
}
/// Get the last byte.
///
/// # Examples
///
/// ```
/// use rune::runtime::Bytes;
///
/// let bytes = Bytes::from_slice(b"abcd")?;
/// assert_eq!(bytes.last(), Some(b'd'));
///
/// Ok::<_, rune::support::Error>(())
/// ```
pub fn last(&self) -> Option<u8> {
self.bytes.last().copied()
}
}
impl TryClone for Bytes {
#[inline]
fn try_clone(&self) -> alloc::Result<Self> {
Ok(Self {
bytes: self.bytes.try_clone()?,
})
}
}
impl From<Vec<u8>> for Bytes {
#[inline]
fn from(bytes: Vec<u8>) -> Self {
Self { bytes }
}
}
#[cfg(feature = "alloc")]
impl TryFrom<&[u8]> for Bytes {
type Error = alloc::Error;
#[inline]
fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
let mut bytes = Vec::try_with_capacity(value.len())?;
bytes.try_extend_from_slice(value)?;
Ok(Self { bytes })
}
}
#[cfg(feature = "alloc")]
impl TryFrom<::rust_alloc::vec::Vec<u8>> for Bytes {
type Error = alloc::Error;
#[inline]
fn try_from(bytes: ::rust_alloc::vec::Vec<u8>) -> Result<Self, Self::Error> {
Ok(Self {
bytes: Vec::try_from(bytes)?,
})
}
}
impl From<Box<[u8]>> for Bytes {
#[inline]
fn from(bytes: Box<[u8]>) -> Self {
Self {
bytes: Vec::from(bytes),
}
}
}
#[cfg(feature = "alloc")]
impl TryFrom<::rust_alloc::boxed::Box<[u8]>> for Bytes {
type Error = alloc::Error;
#[inline]
fn try_from(bytes: ::rust_alloc::boxed::Box<[u8]>) -> Result<Self, Self::Error> {
Ok(Self {
bytes: Vec::try_from(bytes.as_ref())?,
})
}
}
impl fmt::Debug for Bytes {
#[inline]
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_list().entries(&self.bytes).finish()
}
}
impl ops::Deref for Bytes {
type Target = [u8];
#[inline]
fn deref(&self) -> &Self::Target {
&self.bytes
}
}
impl ops::DerefMut for Bytes {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.bytes
}
}
impl AsRef<[u8]> for Bytes {
#[inline]
fn as_ref(&self) -> &[u8] {
&self.bytes
}
}
impl UnsafeToRef for [u8] {
type Guard = RawAnyGuard;
#[inline]
unsafe fn unsafe_to_ref<'a>(value: Value) -> Result<(&'a Self, Self::Guard), RuntimeError> {
let (value, guard) = Ref::into_raw(value.into_ref::<Bytes>()?);
Ok((value.as_ref().as_slice(), guard))
}
}
impl<const N: usize> PartialEq<[u8; N]> for Bytes {
#[inline]
fn eq(&self, other: &[u8; N]) -> bool {
self.bytes == other[..]
}
}
impl<const N: usize> PartialEq<&[u8; N]> for Bytes {
#[inline]
fn eq(&self, other: &&[u8; N]) -> bool {
self.bytes == other[..]
}
}
impl<const N: usize> PartialEq<Bytes> for [u8; N] {
#[inline]
fn eq(&self, other: &Bytes) -> bool {
self[..] == other.bytes
}
}
impl<const N: usize> PartialEq<Bytes> for &[u8; N] {
#[inline]
fn eq(&self, other: &Bytes) -> bool {
self[..] == other.bytes
}
}
impl PartialEq<[u8]> for Bytes {
#[inline]
fn eq(&self, other: &[u8]) -> bool {
self.bytes == other
}
}
impl PartialEq<Bytes> for [u8] {
#[inline]
fn eq(&self, other: &Bytes) -> bool {
self == other.bytes
}
}
impl ser::Serialize for Bytes {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
serializer.serialize_bytes(&self.bytes)
}
}
impl<'de> de::Deserialize<'de> for Bytes {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
impl de::Visitor<'_> for Visitor {
type Value = Bytes;
#[inline]
fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "a byte array")
}
#[inline]
fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E>
where
E: de::Error,
{
Bytes::from_slice(v).map_err(E::custom)
}
}
deserializer.deserialize_bytes(Visitor)
}
}
impl TryFrom<&[u8]> for Value {
type Error = alloc::Error;
#[inline]
fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
Value::new(Bytes::try_from(value)?)
}
}
impl IntoOutput for &[u8] {
#[inline]
fn into_output(self) -> Result<Value, RuntimeError> {
Ok(Value::try_from(self)?)
}
}
/// This is a common index get implementation that is helpfull for custom type to impl `INDEX_GET` protocol.
pub fn bytes_slice_index_get(this: &[u8], index: Value) -> VmResult<Option<Value>> {
let slice: Option<&[u8]> = 'out: {
if let Some(value) = index.as_any() {
match value.type_hash() {
RangeFrom::HASH => {
let range = vm_try!(value.borrow_ref::<RangeFrom>());
let start = vm_try!(range.start.as_usize());
break 'out this.get(start..);
}
RangeFull::HASH => {
_ = vm_try!(value.borrow_ref::<RangeFull>());
break 'out this.get(..);
}
RangeInclusive::HASH => {
let range = vm_try!(value.borrow_ref::<RangeInclusive>());
let start = vm_try!(range.start.as_usize());
let end = vm_try!(range.end.as_usize());
break 'out this.get(start..=end);
}
RangeToInclusive::HASH => {
let range = vm_try!(value.borrow_ref::<RangeToInclusive>());
let end = vm_try!(range.end.as_usize());
break 'out this.get(..=end);
}
RangeTo::HASH => {
let range = vm_try!(value.borrow_ref::<RangeTo>());
let end = vm_try!(range.end.as_usize());
break 'out this.get(..end);
}
Range::HASH => {
let range = vm_try!(value.borrow_ref::<Range>());
let start = vm_try!(range.start.as_usize());
let end = vm_try!(range.end.as_usize());
break 'out this.get(start..end);
}
_ => {}
}
};
let index = vm_try!(usize::from_value(index));
let Some(value) = this.get(index) else {
return VmResult::Ok(None);
};
return VmResult::Ok(Some((*value).into()));
};
let Some(values) = slice else {
return VmResult::Ok(None);
};
let bytes = vm_try!(Bytes::try_from(values));
VmResult::Ok(Some(vm_try!(bytes.try_into())))
}