Files
BD2PS/data/src/exceldb/characterpictorialbooktable.rs
yoncodes e58fd190b4 pushing
2025-10-28 21:21:28 -04:00

81 lines
2.2 KiB
Rust

// Auto-generated from JSON data
// Do not edit manually
use serde::{Deserialize, Serialize};
use anyhow::Result;
use std::collections::HashMap;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Characterpictorialbooktable {
#[serde(rename = "charId")]
pub char_id: Vec<i32>,
#[serde(rename = "collectionBuffId")]
pub collection_buff_id: i32,
#[serde(rename = "groupDescLocalTextId")]
pub group_desc_local_text_id: i32,
#[serde(rename = "groupLocalTextId")]
pub group_local_text_id: i32,
#[serde(rename = "id")]
pub id: i32,
#[serde(rename = "tabType")]
pub tab_type: i32,
}
pub struct CharacterpictorialbooktableTable {
records: Vec<Characterpictorialbooktable>,
by_id: HashMap<i32, usize>,
by_group: HashMap<i32, Vec<usize>>,
}
impl CharacterpictorialbooktableTable {
pub fn load(path: &str) -> Result<Self> {
let json = std::fs::read_to_string(path)?;
let records: Vec<Characterpictorialbooktable> = serde_json::from_str(&json)?;
let mut by_id = HashMap::with_capacity(records.len());
let mut by_group: HashMap<i32, Vec<usize>> = HashMap::new();
for (idx, record) in records.iter().enumerate() {
by_id.insert(record.id, idx);
by_group.entry(record.group_desc_local_text_id).or_insert_with(Vec::new).push(idx);
}
Ok(Self {
records,
by_id,
by_group,
})
}
#[inline]
pub fn get(&self, id: i32) -> Option<&Characterpictorialbooktable> {
self.by_id.get(&id).map(|&idx| &self.records[idx])
}
pub fn by_group(&self, group_id: i32) -> impl Iterator<Item = &Characterpictorialbooktable> + '_ {
self.by_group
.get(&group_id)
.into_iter()
.flat_map(|indices| indices.iter())
.map(|&idx| &self.records[idx])
}
#[inline]
pub fn all(&self) -> &[Characterpictorialbooktable] {
&self.records
}
#[inline]
pub fn iter(&self) -> std::slice::Iter<Characterpictorialbooktable> {
self.records.iter()
}
pub fn len(&self) -> usize {
self.records.len()
}
pub fn is_empty(&self) -> bool {
self.records.is_empty()
}
}