2023-12-26 15:42:40 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2023 Fluence Labs Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use crate::JValue;
|
|
|
|
|
|
|
|
use serde::Deserialize;
|
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
|
|
#[serde(transparent)]
|
2024-01-09 21:22:11 +04:00
|
|
|
#[derive(::rkyv::Archive, ::rkyv::Serialize, ::rkyv::Deserialize)]
|
|
|
|
#[archive(check_bytes)]
|
2023-12-26 15:42:40 +04:00
|
|
|
pub struct RawValue {
|
|
|
|
raw: Box<str>,
|
|
|
|
|
|
|
|
#[serde(skip)]
|
2024-01-09 21:22:11 +04:00
|
|
|
#[with(::rkyv::with::Skip)]
|
2023-12-26 15:42:40 +04:00
|
|
|
parsed: RefCell<Option<Rc<JValue>>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RawValue {
|
|
|
|
pub fn from_value(value: impl Into<Rc<JValue>>) -> Self {
|
|
|
|
let value = value.into();
|
|
|
|
let raw = value.to_string().into();
|
|
|
|
Self {
|
|
|
|
raw,
|
|
|
|
parsed: Some(value).into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_value(&self) -> Rc<JValue> {
|
|
|
|
let mut parsed_guard = self.parsed.borrow_mut();
|
|
|
|
|
|
|
|
let parsed_value = parsed_guard
|
|
|
|
.get_or_insert_with(|| serde_json::from_str(&self.raw).expect("TODO handle error"));
|
|
|
|
parsed_value.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn as_inner(&self) -> &str {
|
|
|
|
&self.raw
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<JValue> for RawValue {
|
|
|
|
fn from(value: JValue) -> Self {
|
|
|
|
Self::from_value(value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for RawValue {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.get_value() == other.get_value()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO is it implemented for JValue?
|
|
|
|
impl Eq for RawValue {}
|