use std::borrow::Cow; use crate::{ imfs::{Imfs, ImfsEntry, ImfsFetcher}, snapshot::InstanceSnapshot, }; use super::{ context::InstanceSnapshotContext, middleware::{SnapshotInstanceResult, SnapshotMiddleware}, util::match_file_name, }; pub struct SnapshotRbxmx; impl SnapshotMiddleware for SnapshotRbxmx { fn from_imfs( _context: &mut InstanceSnapshotContext, imfs: &mut Imfs, entry: &ImfsEntry, ) -> SnapshotInstanceResult<'static> { if entry.is_directory() { return Ok(None); } let instance_name = match match_file_name(entry.path(), ".rbxmx") { Some(name) => name, None => return Ok(None), }; let options = rbx_xml::DecodeOptions::new() .property_behavior(rbx_xml::DecodePropertyBehavior::ReadUnknown); let temp_tree = rbx_xml::from_reader(entry.contents(imfs)?, options) .expect("TODO: Handle rbx_xml errors"); let root_instance = temp_tree.get_instance(temp_tree.get_root_id()).unwrap(); let children = root_instance.get_children_ids(); if children.len() == 1 { let mut snapshot = InstanceSnapshot::from_tree(&temp_tree, children[0]); snapshot.name = Cow::Owned(instance_name.to_owned()); snapshot.metadata.instigating_source = Some(entry.path().to_path_buf().into()); snapshot.metadata.relevant_paths = vec![entry.path().to_path_buf()]; Ok(Some(snapshot)) } else { panic!("Rojo doesn't have support for model files with zero or more than one top-level instances yet."); } } } #[cfg(test)] mod test { use super::*; use std::collections::HashMap; use crate::imfs::{ImfsDebug, ImfsSnapshot, NoopFetcher}; #[test] fn model_from_imfs() { let mut imfs = Imfs::new(NoopFetcher); let file = ImfsSnapshot::file( r#" THIS NAME IS IGNORED "#, ); imfs.debug_load_snapshot("/foo.rbxmx", file); let entry = imfs.get("/foo.rbxmx").unwrap(); let instance_snapshot = SnapshotRbxmx::from_imfs(&mut InstanceSnapshotContext::default(), &mut imfs, &entry) .unwrap() .unwrap(); assert_eq!(instance_snapshot.name, "foo"); assert_eq!(instance_snapshot.class_name, "Folder"); assert_eq!(instance_snapshot.properties, HashMap::new()); assert_eq!(instance_snapshot.children, Vec::new()); } }