data.rs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. use std::{collections::HashMap, fmt::Display, slice::{SliceIndex, Iter, IterMut}};
  2. #[cfg(feature = "shared")]
  3. use crate::Shared;
  4. #[cfg(not(feature = "serde"))]
  5. #[derive(Debug, PartialEq, Clone)]
  6. pub enum Data {
  7. None,
  8. String(String),
  9. I8(i8),
  10. I16(i16),
  11. I32(i32),
  12. I64(i64),
  13. I128(i128),
  14. U8(u8),
  15. U16(u16),
  16. U32(u32),
  17. U64(u64),
  18. U128(u128),
  19. F32(f32),
  20. F64(f64),
  21. Bool(bool),
  22. Vec(Vec<Data>),
  23. Map(HashMap<String, Data>),
  24. }
  25. #[cfg(feature="serde")]
  26. #[derive(Debug, PartialEq, Clone, serde::Serialize, serde::Deserialize)]
  27. pub enum Data {
  28. None,
  29. String(String),
  30. I8(i8),
  31. I16(i16),
  32. I32(i32),
  33. I64(i64),
  34. I128(i128),
  35. U8(u8),
  36. U16(u16),
  37. U32(u32),
  38. U64(u64),
  39. U128(u128),
  40. F32(f32),
  41. F64(f64),
  42. Bool(bool),
  43. Vec(Vec<Data>),
  44. Map(HashMap<String, Data>),
  45. }
  46. impl Default for Data {
  47. fn default() -> Self {
  48. Self::None
  49. }
  50. }
  51. impl Display for Data {
  52. fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
  53. match self {
  54. Self::None => f.write_str("None"),
  55. Self::String(s) => f.write_str(s),
  56. Self::I8(i) => f.write_str(format!("{}", i).as_str()),
  57. Self::I16(i) => f.write_str(format!("{}", i).as_str()),
  58. Self::I32(i) => f.write_str(format!("{}", i).as_str()),
  59. Self::I64(i) => f.write_str(format!("{}", i).as_str()),
  60. Self::I128(i) => f.write_str(format!("{}", i).as_str()),
  61. Self::U8(i) => f.write_str(format!("{}", i).as_str()),
  62. Self::U16(i) => f.write_str(format!("{}", i).as_str()),
  63. Self::U32(i) => f.write_str(format!("{}", i).as_str()),
  64. Self::U64(i) => f.write_str(format!("{}", i).as_str()),
  65. Self::U128(i) => f.write_str(format!("{}", i).as_str()),
  66. Self::F32(v) => f.write_str(format!("{}", v).as_str()),
  67. Self::F64(v) => f.write_str(format!("{}", v).as_str()),
  68. Self::Bool(b) => f.write_str(format!("{}", b).as_str()),
  69. Self::Vec(v) => {
  70. let mut out: String = "[".to_string();
  71. for d in v.iter() {
  72. if out != "[" {
  73. out.push_str(", ");
  74. }
  75. out.push_str(format!("{}", d).as_str());
  76. }
  77. out.push(']');
  78. f.write_str(out.as_str())
  79. },
  80. Self::Map(hm) => {
  81. let mut out: String = "{".to_string();
  82. for (k, v) in hm.iter() {
  83. if out != "{" {
  84. out.push_str(", ");
  85. }
  86. out.push_str(format!("{}: {}", k, v).as_str());
  87. }
  88. out.push('}');
  89. f.write_str(out.as_str())
  90. },
  91. }
  92. }
  93. }
  94. impl From<String> for Data {
  95. fn from(value: String) -> Self {
  96. Self::String(value)
  97. }
  98. }
  99. impl From<i8> for Data {
  100. fn from(value: i8) -> Self {
  101. Self::I8(value)
  102. }
  103. }
  104. impl From<i16> for Data {
  105. fn from(value: i16) -> Self {
  106. Self::I16(value)
  107. }
  108. }
  109. impl From<i32> for Data {
  110. fn from(value: i32) -> Self {
  111. Self::I32(value)
  112. }
  113. }
  114. impl From<i64> for Data {
  115. fn from(value: i64) -> Self {
  116. Self::I64(value)
  117. }
  118. }
  119. impl From<i128> for Data {
  120. fn from(value: i128) -> Self {
  121. Self::I128(value)
  122. }
  123. }
  124. impl From<u8> for Data {
  125. fn from(value: u8) -> Self {
  126. Self::U8(value)
  127. }
  128. }
  129. impl From<u16> for Data {
  130. fn from(value: u16) -> Self {
  131. Self::U16(value)
  132. }
  133. }
  134. impl From<u32> for Data {
  135. fn from(value: u32) -> Self {
  136. Self::U32(value)
  137. }
  138. }
  139. impl From<u64> for Data {
  140. fn from(value: u64) -> Self {
  141. Self::U64(value)
  142. }
  143. }
  144. impl From<u128> for Data {
  145. fn from(value: u128) -> Self {
  146. Self::U128(value)
  147. }
  148. }
  149. impl From<f32> for Data {
  150. fn from(value: f32) -> Self {
  151. Self::F32(value)
  152. }
  153. }
  154. impl From<f64> for Data {
  155. fn from(value: f64) -> Self {
  156. Self::F64(value)
  157. }
  158. }
  159. impl From<bool> for Data {
  160. fn from(value: bool) -> Self {
  161. Self::Bool(value)
  162. }
  163. }
  164. impl From<Vec<Data>> for Data {
  165. fn from(value: Vec<Data>) -> Self {
  166. Self::Vec(value)
  167. }
  168. }
  169. impl From<HashMap<String, Data>> for Data {
  170. fn from(value: HashMap<String, Data>) -> Self {
  171. Self::Map(value)
  172. }
  173. }
  174. #[cfg(not(feature = "cast_into"))]
  175. impl TryInto<String> for Data {
  176. type Error = ();
  177. fn try_into(self) -> Result<String, Self::Error> {
  178. match self {
  179. Self::String(s) => Ok(s),
  180. _ => Err(()),
  181. }
  182. }
  183. }
  184. #[cfg(feature = "cast_into")]
  185. impl TryInto<String> for Data {
  186. type Error = ();
  187. fn try_into(self) -> Result<String, Self::Error> {
  188. Ok(format!("{}", self)) // Reuse Display trait
  189. }
  190. }
  191. // i8 is the smallest bit variant... so no cast_into feature
  192. impl TryInto<i8> for Data {
  193. type Error = ();
  194. fn try_into(self) -> Result<i8, Self::Error> {
  195. match self {
  196. Self::I8(v) => Ok(v),
  197. _ => Err(()),
  198. }
  199. }
  200. }
  201. #[cfg(not(feature = "cast_into"))]
  202. impl TryInto<i16> for Data {
  203. type Error = ();
  204. fn try_into(self) -> Result<i16, Self::Error> {
  205. match self {
  206. Self::I16(v) => Ok(v),
  207. _ => Err(()),
  208. }
  209. }
  210. }
  211. #[cfg(feature = "cast_into")]
  212. impl TryInto<i16> for Data {
  213. type Error = ();
  214. fn try_into(self) -> Result<i16, Self::Error> {
  215. match self {
  216. Self::I8(v) => Ok(v as i16), // bump up
  217. Self::I16(v) => Ok(v),
  218. _ => Err(()),
  219. }
  220. }
  221. }
  222. #[cfg(not(feature = "cast_into"))]
  223. impl TryInto<i32> for Data {
  224. type Error = ();
  225. fn try_into(self) -> Result<i32, Self::Error> {
  226. match self {
  227. Self::I32(v) => Ok(v),
  228. _ => Err(()),
  229. }
  230. }
  231. }
  232. #[cfg(feature = "cast_into")]
  233. impl TryInto<i32> for Data {
  234. type Error = ();
  235. fn try_into(self) -> Result<i32, Self::Error> {
  236. match self {
  237. Self::I8(v) => Ok(v as i32), // bump up
  238. Self::I16(v) => Ok(v as i32), // bump up
  239. Self::I32(v) => Ok(v),
  240. _ => Err(()),
  241. }
  242. }
  243. }
  244. #[cfg(not(feature = "cast_into"))]
  245. impl TryInto<i64> for Data {
  246. type Error = ();
  247. fn try_into(self) -> Result<i64, Self::Error> {
  248. match self {
  249. Self::I64(v) => Ok(v),
  250. _ => Err(()),
  251. }
  252. }
  253. }
  254. #[cfg(feature = "cast_into")]
  255. impl TryInto<i64> for Data {
  256. type Error = ();
  257. fn try_into(self) -> Result<i64, Self::Error> {
  258. match self {
  259. Self::I8(v) => Ok(v as i64), // bump up
  260. Self::I16(v) => Ok(v as i64), // bump up
  261. Self::I32(v) => Ok(v as i64), // bump up
  262. Self::I64(v) => Ok(v),
  263. _ => Err(()),
  264. }
  265. }
  266. }
  267. #[cfg(not(feature = "cast_into"))]
  268. impl TryInto<i128> for Data {
  269. type Error = ();
  270. fn try_into(self) -> Result<i128, Self::Error> {
  271. match self {
  272. Self::I128(v) => Ok(v),
  273. _ => Err(()),
  274. }
  275. }
  276. }
  277. #[cfg(feature = "cast_into")]
  278. impl TryInto<i128> for Data {
  279. type Error = ();
  280. fn try_into(self) -> Result<i128, Self::Error> {
  281. match self {
  282. Self::I8(v) => Ok(v as i128), // bump up
  283. Self::I16(v) => Ok(v as i128), // bump up
  284. Self::I32(v) => Ok(v as i128), // bump up
  285. Self::I64(v) => Ok(v as i128), // bump up
  286. Self::I128(v) => Ok(v),
  287. _ => Err(()),
  288. }
  289. }
  290. }
  291. // u8 is the smallest bit variant, so no cast_into
  292. impl TryInto<u8> for Data {
  293. type Error = ();
  294. fn try_into(self) -> Result<u8, Self::Error> {
  295. match self {
  296. Self::U8(v) => Ok(v),
  297. _ => Err(()),
  298. }
  299. }
  300. }
  301. #[cfg(not(feature = "cast_into"))]
  302. impl TryInto<u16> for Data {
  303. type Error = ();
  304. fn try_into(self) -> Result<u16, Self::Error> {
  305. match self {
  306. Self::U16(v) => Ok(v),
  307. _ => Err(()),
  308. }
  309. }
  310. }
  311. #[cfg(feature = "cast_into")]
  312. impl TryInto<u16> for Data {
  313. type Error = ();
  314. fn try_into(self) -> Result<u16, Self::Error> {
  315. match self {
  316. Self::U8(v) => Ok(v as u16), // bump up
  317. Self::U16(v) => Ok(v),
  318. _ => Err(()),
  319. }
  320. }
  321. }
  322. #[cfg(not(feature = "cast_into"))]
  323. impl TryInto<u32> for Data {
  324. type Error = ();
  325. fn try_into(self) -> Result<u32, Self::Error> {
  326. match self {
  327. Self::U32(v) => Ok(v),
  328. _ => Err(()),
  329. }
  330. }
  331. }
  332. #[cfg(feature = "cast_into")]
  333. impl TryInto<u32> for Data {
  334. type Error = ();
  335. fn try_into(self) -> Result<u32, Self::Error> {
  336. match self {
  337. Self::U8(v) => Ok(v as u32), // bump up
  338. Self::U16(v) => Ok(v as u32), // bump up
  339. Self::U32(v) => Ok(v),
  340. _ => Err(()),
  341. }
  342. }
  343. }
  344. #[cfg(not(feature = "cast_into"))]
  345. impl TryInto<u64> for Data {
  346. type Error = ();
  347. fn try_into(self) -> Result<u64, Self::Error> {
  348. match self {
  349. Self::U64(v) => Ok(v),
  350. _ => Err(()),
  351. }
  352. }
  353. }
  354. #[cfg(feature = "cast_into")]
  355. impl TryInto<u64> for Data {
  356. type Error = ();
  357. fn try_into(self) -> Result<u64, Self::Error> {
  358. match self {
  359. Self::U8(v) => Ok(v as u64), // bump up
  360. Self::U16(v) => Ok(v as u64), // bump up
  361. Self::U32(v) => Ok(v as u64), // bump up
  362. Self::U64(v) => Ok(v),
  363. _ => Err(()),
  364. }
  365. }
  366. }
  367. #[cfg(not(feature = "cast_into"))]
  368. impl TryInto<u128> for Data {
  369. type Error = ();
  370. fn try_into(self) -> Result<u128, Self::Error> {
  371. match self {
  372. Self::U128(v) => Ok(v),
  373. _ => Err(()),
  374. }
  375. }
  376. }
  377. #[cfg(feature = "cast_into")]
  378. impl TryInto<u128> for Data {
  379. type Error = ();
  380. fn try_into(self) -> Result<u128, Self::Error> {
  381. match self {
  382. Self::U8(v) => Ok(v as u128), // bump up
  383. Self::U16(v) => Ok(v as u128), // bump up
  384. Self::U32(v) => Ok(v as u128), // bump up
  385. Self::U64(v) => Ok(v as u128), // bump up
  386. Self::U128(v) => Ok(v),
  387. _ => Err(()),
  388. }
  389. }
  390. }
  391. // because float only has 32 or 64, f32 will have no cast_into
  392. impl TryInto<f32> for Data {
  393. type Error = ();
  394. fn try_into(self) -> Result<f32, Self::Error> {
  395. match self {
  396. Self::F32(v) => Ok(v),
  397. _ => Err(()),
  398. }
  399. }
  400. }
  401. #[cfg(not(feature = "cast_into"))]
  402. impl TryInto<f64> for Data {
  403. type Error = ();
  404. fn try_into(self) -> Result<f64, Self::Error> {
  405. match self {
  406. Self::F64(v) => Ok(v),
  407. _ => Err(()),
  408. }
  409. }
  410. }
  411. #[cfg(feature = "cast_into")]
  412. impl TryInto<f64> for Data {
  413. type Error = ();
  414. fn try_into(self) -> Result<f64, Self::Error> {
  415. match self {
  416. Self::F32(v) => Ok(v as f64), // bump up
  417. Self::F64(v) => Ok(v),
  418. _ => Err(()),
  419. }
  420. }
  421. }
  422. #[cfg(not(feature = "cast_into"))]
  423. impl TryInto<bool> for Data {
  424. type Error = ();
  425. fn try_into(self) -> Result<bool, Self::Error> {
  426. match self {
  427. Self::Bool(v) => Ok(v),
  428. _ => Err(()),
  429. }
  430. }
  431. }
  432. #[cfg(feature = "cast_into")]
  433. impl TryInto<bool> for Data {
  434. type Error = ();
  435. fn try_into(self) -> Result<bool, Self::Error> {
  436. match self {
  437. Self::String(s) => Ok(!s.is_empty()),
  438. Self::I8(v) => Ok(v != 0),
  439. Self::I16(v) => Ok(v != 0),
  440. Self::I32(v) => Ok(v != 0),
  441. Self::I64(v) => Ok(v != 0),
  442. Self::I128(v) => Ok(v != 0),
  443. Self::U8(v) => Ok(v != 0),
  444. Self::U16(v) => Ok(v != 0),
  445. Self::U32(v) => Ok(v != 0),
  446. Self::U64(v) => Ok(v != 0),
  447. Self::U128(v) => Ok(v != 0),
  448. Self::F32(v) => Ok(v != 0.0),
  449. Self::F64(v) => Ok(v != 0.0),
  450. Self::Bool(b) => Ok(b),
  451. _ => Err(()),
  452. }
  453. }
  454. }
  455. // cast_into doesn't make sense here
  456. impl TryInto<Vec<Data>> for Data {
  457. type Error = ();
  458. fn try_into(self) -> Result<Vec<Data>, Self::Error> {
  459. match self {
  460. Self::Vec(v) => Ok(v),
  461. _ => Err(()),
  462. }
  463. }
  464. }
  465. // cast_into doesn't make sense here
  466. impl TryInto<HashMap<String, Data>> for Data {
  467. type Error = ();
  468. fn try_into(self) -> Result<HashMap<String, Data>, Self::Error> {
  469. match self {
  470. Self::Map(v) => Ok(v),
  471. _ => Err(()),
  472. }
  473. }
  474. }
  475. // To cast Data into `Shared<Data>`
  476. // (Because we're still in the crate, we can do this)
  477. #[cfg(feature = "shared")]
  478. impl From<Data> for Shared<Data> {
  479. fn from(v: Data) -> Self {
  480. Shared::new(v)
  481. }
  482. }
  483. impl Data {
  484. /// Constructs a new empty Vec of `Vec<Data>`
  485. pub fn new_vec() -> Self {
  486. Self::Vec(Vec::new())
  487. }
  488. /// Constructs a new empty Map of `HashMap<String, Data>`
  489. pub fn new_map() -> Self {
  490. Self::Map(HashMap::new())
  491. }
  492. /// Constructs a new Vec with capacity
  493. pub fn vec_with_capacity(cap: usize) -> Self {
  494. Self::Vec(Vec::with_capacity(cap))
  495. }
  496. /// Constructs a new Map with capacity
  497. pub fn map_with_capacity(cap: usize) -> Self {
  498. Self::Map(HashMap::with_capacity(cap))
  499. }
  500. /// Is Data not the variant None
  501. ///
  502. /// This is useful for using Data similar to a Option
  503. pub fn is_some(&self) -> bool {
  504. !matches!(self, Self::None)
  505. }
  506. /// Is Data the variant None
  507. pub fn is_none(&self) -> bool {
  508. matches!(self, Self::None)
  509. }
  510. /// Is Data a String
  511. pub fn is_string(&self) -> bool {
  512. matches!(self, Self::String(_))
  513. }
  514. /// Is Data a signed/unsigned integer or float
  515. ///
  516. /// JSON Number's can hold both a whole number (i.e. signed/unsigned integers) and floats
  517. pub fn is_number(&self) -> bool {
  518. matches!(self, Self::I8(_) | Self::I16(_) | Self::I32(_) | Self::I64(_) | Self::I128(_) | Self::U8(_) | Self::U16(_) | Self::U32(_) | Self::U64(_) | Self::U128(_) | Self::F32(_) | Self::F64(_))
  519. }
  520. /// Is Data a signed integer (Regardless of bits)
  521. ///
  522. /// i.e. i8, i16, i32, i64, i128 or neither
  523. pub fn is_int(&self) -> bool {
  524. matches!(self, Self::I8(_) | Self::I16(_) | Self::I32(_) | Self::I64(_) | Self::I128(_))
  525. }
  526. /// Is Data a unsigned integer (Regardless of bits)
  527. ///
  528. /// i.e. u8, u16, u32, u64, or u128 or neither
  529. pub fn is_uint(&self) -> bool {
  530. matches!(self, Self::U8(_) | Self::U16(_) | Self::U32(_) | Self::U64(_) | Self::U128(_))
  531. }
  532. /// Is Data a f32 or f64 or neither
  533. pub fn is_float(&self) -> bool {
  534. matches!(self, Self::F32(_) | Self::F64(_))
  535. }
  536. /// Does Data contain something that holds other Data
  537. ///
  538. /// `Vec<Data>` or `HashMap<String, Data>` are examples of "nested" Data
  539. pub fn is_nested(&self) -> bool {
  540. matches!(self, Self::Vec(_) | Self::Map(_))
  541. }
  542. /// Is Data the Data::Vec variant (`Vec<Data>`)
  543. pub fn is_vec(&self) -> bool {
  544. matches!(self, Self::Vec(_))
  545. }
  546. /// Is Data the Data::Map variant (`HashMap<String, Data>`)
  547. pub fn is_map(&self) -> bool {
  548. matches!(self, Self::Map(_))
  549. }
  550. /// Push a value into the Data
  551. ///
  552. /// Must be a Vec or no-op
  553. pub fn vec_push(&mut self, v: Data) {
  554. if let Self::Vec(vec) = self {
  555. vec.push(v);
  556. }
  557. }
  558. /// Assigns/Reassigns a key the value into the Data
  559. ///
  560. /// Must be a Map or no-op
  561. pub fn map_insert(&mut self, k: String, v: Data) {
  562. if let Self::Map(hm) = self {
  563. hm.insert(k, v);
  564. }
  565. }
  566. /// Obtains the length of String, Vec or Map
  567. ///
  568. /// All other variants of Data will return 0
  569. pub fn len(&self) -> usize {
  570. match self {
  571. Self::String(s) => s.len(),
  572. Self::Vec(v) => v.len(),
  573. Self::Map(m) => m.len(),
  574. _ => 0,
  575. }
  576. }
  577. /// Obtains the capacity of Vec or Map
  578. ///
  579. /// All other variants of Data return 0
  580. pub fn capacity(&self) -> usize {
  581. match self {
  582. Self::Vec(v) => v.capacity(),
  583. Self::Map(m) => m.capacity(),
  584. _ => 0,
  585. }
  586. }
  587. /// Reserve {additional} in a Vec or Map
  588. ///
  589. /// This no-op's if the Data variants are not Vec or Map
  590. pub fn reserve(&mut self, additional: usize) {
  591. match self {
  592. Self::Vec(v) => v.reserve(additional),
  593. Self::Map(m) => m.reserve(additional),
  594. _ => (),
  595. }
  596. }
  597. /// Shrinks a Vec or Map to fit all that is within it
  598. pub fn shrink_to_fit(&mut self) {
  599. match self {
  600. Self::Vec(v) => v.shrink_to_fit(),
  601. Self::Map(m) => m.shrink_to_fit(),
  602. _ => (),
  603. }
  604. }
  605. /// Shrinks to a given minimum length for Vec or Map
  606. pub fn shrink_to(&mut self, min: usize) {
  607. match self {
  608. Self::Vec(v) => v.shrink_to(min),
  609. Self::Map(m) => m.shrink_to(min),
  610. _ => (),
  611. }
  612. }
  613. /// Truncates Vec to a set length, see [Vec::truncate]
  614. pub fn vec_truncate(&mut self, len: usize) {
  615. if let Self::Vec(v) = self { v.truncate(len) }
  616. }
  617. /// Removes Vec at given index, see [Vec::remove]
  618. pub fn vec_remove(&mut self, index: usize) -> Data {
  619. match self {
  620. Self::Vec(v) => v.remove(index),
  621. _ => Data::None,
  622. }
  623. }
  624. /// Removes the last item in the Vec, see [Vec::pop]
  625. ///
  626. /// This will return None also if the Data isn't a Vec
  627. pub fn vec_pop(&mut self) -> Option<Data> {
  628. match self {
  629. Self::Vec(v) => v.pop(),
  630. _ => None,
  631. }
  632. }
  633. /// Clears all in a String, Vec or Map
  634. pub fn clear(&mut self) {
  635. match self {
  636. Self::String(s) => s.clear(),
  637. Self::Vec(v) => v.clear(),
  638. Self::Map(m) => m.clear(),
  639. _ => (),
  640. }
  641. }
  642. /// Returns if String, Vec or Map is empty (has no elements)
  643. pub fn is_empty(&self) -> bool {
  644. match self {
  645. Self::String(s) => s.is_empty(),
  646. Self::Vec(v) => v.is_empty(),
  647. Self::Map(m) => m.is_empty(),
  648. _ => false,
  649. }
  650. }
  651. /// Resizes the Vec with the given length, assigning new with value
  652. pub fn vec_resize(&mut self, len: usize, value: Data) {
  653. if let Self::Vec(v) = self { v.resize(len, value) }
  654. }
  655. /// Obtains the first element in Vec
  656. pub fn vec_first(&self) -> Option<&Data> {
  657. match self {
  658. Self::Vec(v) => v.first(),
  659. _ => None,
  660. }
  661. }
  662. /// Similar to [Data::vec_first] except it obtains as mutable
  663. pub fn vec_first_mut(&mut self) -> Option<&mut Data> {
  664. match self {
  665. Self::Vec(v) => v.first_mut(),
  666. _ => None,
  667. }
  668. }
  669. /// Similar to [Data::vec_first] except obtains the last element of Vec
  670. pub fn vec_last(&self) -> Option<&Data> {
  671. match self {
  672. Self::Vec(v) => v.last(),
  673. _ => None,
  674. }
  675. }
  676. /// Similar to [Data::vec_last] except obtains as mutable
  677. pub fn vec_last_mut(&mut self) -> Option<&mut Data> {
  678. match self {
  679. Self::Vec(v) => v.last_mut(),
  680. _ => None,
  681. }
  682. }
  683. /// Gets by index or range for a Vec
  684. pub fn vec_get<I>(&self, index: I) -> Option<&I::Output>
  685. where
  686. I: SliceIndex<[Data]>,
  687. {
  688. match self {
  689. Self::Vec(v) => v.get::<I>(index),
  690. _ => None,
  691. }
  692. }
  693. /// Gets like [Data::vec_get] except as mutable
  694. pub fn vec_get_mut<I>(&mut self, index: I) -> Option<&mut I::Output>
  695. where
  696. I: SliceIndex<[Data]>,
  697. {
  698. match self {
  699. Self::Vec(v) => v.get_mut::<I>(index),
  700. _ => None,
  701. }
  702. }
  703. pub fn map_contains_key(&self, key: &String) -> bool {
  704. match self {
  705. Self::Map(hm) => hm.contains_key(key),
  706. _ => false,
  707. }
  708. }
  709. /// Get for a Map, see [HashMap::get]
  710. pub fn map_get(&self, key: &String) -> Option<&Data> {
  711. match self {
  712. Self::Map(hm) => hm.get(key),
  713. _ => None
  714. }
  715. }
  716. /// Get as mutable for a Map
  717. pub fn map_get_mut(&mut self, key: &String) -> Option<&mut Data> {
  718. match self {
  719. Self::Map(hm) => hm.get_mut(key),
  720. _ => None
  721. }
  722. }
  723. /// Get Key & Value for a Map
  724. pub fn map_get_key_value(&self, key: &String) -> Option<(&String, &Data)> {
  725. match self {
  726. Self::Map(hm) => hm.get_key_value(key),
  727. _ => None
  728. }
  729. }
  730. /// Removes for a Map
  731. pub fn map_remove(&mut self, key: &String) -> Option<Data> {
  732. match self {
  733. Self::Map(hm) => hm.remove(key),
  734. _ => None
  735. }
  736. }
  737. /// Swaps a with b in a Vec
  738. pub fn vec_swap(&mut self, a: usize, b: usize) {
  739. if let Self::Vec(v) = self { v.swap(a, b) }
  740. }
  741. /// Reverses the order of a Vec
  742. pub fn vec_reverse(&mut self) {
  743. if let Self::Vec(v) = self { v.reverse() }
  744. }
  745. /// Attempts to form an iterator for Vec
  746. ///
  747. /// This can fail if Data isn't a Vec
  748. pub fn vec_iter(&self) -> Option<Iter<'_, Data>> {
  749. match self {
  750. Self::Vec(v) => Some(v.iter()),
  751. _ => None,
  752. }
  753. }
  754. /// Attempts to form a mutable iterator for Vec
  755. ///
  756. /// This can fail if Data isn't a Vec
  757. pub fn vec_iter_mut(&mut self) -> Option<IterMut<'_, Data>> {
  758. match self {
  759. Self::Vec(v) => Some(v.iter_mut()),
  760. _ => None,
  761. }
  762. }
  763. /// This will determine the size of signed or unsigned integers and floats
  764. ///
  765. /// i.e. i32 is 32, u64 is 64, f32 is 32, u128 is 128 (Meanwhile, anything else is 0, String is 0, Bool is 0, etc.)
  766. pub fn bit_variant(&self) -> u8 {
  767. match self {
  768. Self::I8(_) | Self::U8(_) => 8,
  769. Self::I16(_) | Self::U16(_) => 16,
  770. Self::I32(_) | Self::U32(_) | Self::F32(_) => 32,
  771. Self::I64(_) | Self::U64(_) | Self::F64(_) => 64,
  772. Self::I128(_) | Self::U128(_) => 128,
  773. _ => 0
  774. }
  775. }
  776. }