diff.rs 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086
  1. //! This module contains the stateful DiffMachine and all methods to diff VNodes, their properties, and their children.
  2. //!
  3. //! The [`DiffMachine`] calculates the diffs between the old and new frames, updates the new nodes, and generates a set
  4. //! of mutations for the RealDom to apply.
  5. //!
  6. //! ## Notice:
  7. //!
  8. //! The inspiration and code for this module was originally taken from Dodrio (@fitzgen) and then modified to support
  9. //! Components, Fragments, Suspense, SubTree memoization, incremental diffing, cancelation, NodeRefs, pausing, priority
  10. //! scheduling, and additional batching operations.
  11. //!
  12. //! ## Implementation Details:
  13. //!
  14. //! ### IDs for elements
  15. //! --------------------
  16. //! All nodes are addressed by their IDs. The RealDom provides an imperative interface for making changes to these nodes.
  17. //! We don't necessarily require that DOM changes happen instantly during the diffing process, so the implementor may choose
  18. //! to batch nodes if it is more performant for their application. The element IDs are indicies into the internal element
  19. //! array. The expectation is that implemenetors will use the ID as an index into a Vec of real nodes, allowing for passive
  20. //! garbage collection as the VirtualDOM replaces old nodes.
  21. //!
  22. //! When new vnodes are created through `cx.render`, they won't know which real node they correspond to. During diffing,
  23. //! we always make sure to copy over the ID. If we don't do this properly, the ElementId will be populated incorrectly
  24. //! and brick the user's page.
  25. //!
  26. //! ### Fragment Support
  27. //! --------------------
  28. //! Fragments (nodes without a parent) are supported through a combination of "replace with" and anchor vnodes. Fragments
  29. //! can be particularly challenging when they are empty, so the anchor node lets us "reserve" a spot for the empty
  30. //! fragment to be replaced with when it is no longer empty. This is guaranteed by logic in the NodeFactory - it is
  31. //! impossible to craft a fragment with 0 elements - they must always have at least a single placeholder element. Adding
  32. //! "dummy" nodes _is_ inefficient, but it makes our diffing algorithm faster and the implementation is completely up to
  33. //! the platform.
  34. //!
  35. //! Other implementations either don't support fragments or use a "child + sibling" pattern to represent them. Our code is
  36. //! vastly simpler and more performant when we can just create a placeholder element while the fragment has no children.
  37. //!
  38. //! ### Suspense
  39. //! ------------
  40. //! Dioxus implements suspense slightly differently than React. In React, each fiber is manually progressed until it runs
  41. //! into a promise-like value. React will then work on the next "ready" fiber, checking back on the previous fiber once
  42. //! it has finished its new work. In Dioxus, we use a similar approach, but try to completely render the tree before
  43. //! switching sub-fibers. Instead, each future is submitted into a futures-queue and the node is manually loaded later on.
  44. //! Due to the frequent calls to "yield_now" we can get the pure "fetch-as-you-render" behavior of React fiber.
  45. //!
  46. //! We're able to use this approach because we use placeholder nodes - futures that aren't ready still get submitted to
  47. //! DOM, but as a placeholder.
  48. //!
  49. //! Right now, the "suspense" queue is intertwined the hooks. In the future, we should allow any future to drive attributes
  50. //! and contents, without the need for the "use_suspense" hook. In the interim, this is the quickest way to get suspense working.
  51. //!
  52. //! ## Subtree Memoization
  53. //! -----------------------
  54. //! We also employ "subtree memoization" which saves us from having to check trees which take no dynamic content. We can
  55. //! detect if a subtree is "static" by checking if its children are "static". Since we dive into the tree depth-first, the
  56. //! calls to "create" propogate this information upwards. Structures like the one below are entirely static:
  57. //! ```rust
  58. //! rsx!( div { class: "hello world", "this node is entirely static" } )
  59. //! ```
  60. //! Because the subtrees won't be diffed, their "real node" data will be stale (invalid), so its up to the reconciler to
  61. //! track nodes created in a scope and clean up all relevant data. Support for this is currently WIP and depends on comp-time
  62. //! hashing of the subtree from the rsx! macro. We do a very limited form of static analysis via static string pointers as
  63. //! a way of short-circuiting the most expensive checks.
  64. //!
  65. //! ## Bloom Filter and Heuristics
  66. //! ------------------------------
  67. //! For all components, we employ some basic heuristics to speed up allocations and pre-size bump arenas. The heuristics are
  68. //! currently very rough, but will get better as time goes on. The information currently tracked includes the size of a
  69. //! bump arena after first render, the number of hooks, and the number of nodes in the tree.
  70. //!
  71. //! ## Garbage Collection
  72. //! ---------------------
  73. //! Dioxus uses a passive garbage collection system to clean up old nodes once the work has been completed. This garabge
  74. //! collection is done internally once the main diffing work is complete. After the "garbage" is collected, Dioxus will then
  75. //! start to re-use old keys for new nodes. This results in a passive memory management system that is very efficient.
  76. //!
  77. //! The IDs used by the key/map are just an index into a vec. This means that Dioxus will drive the key allocation strategy
  78. //! so the client only needs to maintain a simple list of nodes. By default, Dioxus will not manually clean up old nodes
  79. //! for the client. As new nodes are created, old nodes will be over-written.
  80. //!
  81. //! ## Further Reading and Thoughts
  82. //! ----------------------------
  83. //! There are more ways of increasing diff performance here that are currently not implemented.
  84. //! - Strong memoization of subtrees.
  85. //! - Guided diffing.
  86. //! - Certain web-dom-specific optimizations.
  87. //!
  88. //! More info on how to improve this diffing algorithm:
  89. //! - https://hacks.mozilla.org/2019/03/fast-bump-allocated-virtual-doms-with-rust-and-wasm/
  90. use crate::{innerlude::*, scheduler::Scheduler};
  91. use fxhash::{FxHashMap, FxHashSet};
  92. use DomEdit::*;
  93. /// Our DiffMachine is an iterative tree differ.
  94. ///
  95. /// It uses techniques of a stack machine to allow pausing and restarting of the diff algorithm. This
  96. /// was origially implemented using recursive techniques, but Rust lacks the abilty to call async functions recursively,
  97. /// meaning we could not "pause" the original diffing algorithm.
  98. ///
  99. /// Instead, we use a traditional stack machine approach to diff and create new nodes. The diff algorithm periodically
  100. /// calls "yield_now" which allows the machine to pause and return control to the caller. The caller can then wait for
  101. /// the next period of idle time, preventing our diff algorithm from blocking the main thread.
  102. ///
  103. /// Funnily enough, this stack machine's entire job is to create instructions for another stack machine to execute. It's
  104. /// stack machines all the way down!
  105. pub struct DiffMachine<'bump> {
  106. vdom: &'bump Scheduler,
  107. pub mutations: &'bump mut Mutations<'bump>,
  108. pub stack: DiffStack<'bump>,
  109. pub diffed: FxHashSet<ScopeId>,
  110. pub seen_scopes: FxHashSet<ScopeId>,
  111. }
  112. impl<'bump> DiffMachine<'bump> {
  113. pub(crate) fn new(
  114. edits: &'bump mut Mutations<'bump>,
  115. cur_scope: ScopeId,
  116. shared: &'bump Scheduler,
  117. ) -> Self {
  118. Self {
  119. stack: DiffStack::new(cur_scope),
  120. mutations: edits,
  121. vdom: shared,
  122. diffed: FxHashSet::default(),
  123. seen_scopes: FxHashSet::default(),
  124. }
  125. }
  126. // pub fn new_headless(shared: &'bump SharedResources) -> Self {
  127. // let edits = Mutations::new();
  128. // let cur_scope = ScopeId(0);
  129. // Self::new(edits, cur_scope, shared)
  130. // }
  131. //
  132. pub async fn diff_scope(&mut self, id: ScopeId) {
  133. if let Some(component) = self.vdom.get_scope_mut(id) {
  134. let (old, new) = (component.frames.wip_head(), component.frames.fin_head());
  135. self.stack.push(DiffInstruction::DiffNode { new, old });
  136. self.work().await;
  137. }
  138. }
  139. /// Progress the diffing for this "fiber"
  140. ///
  141. /// This method implements a depth-first iterative tree traversal.
  142. ///
  143. /// We do depth-first to maintain high cache locality (nodes were originally generated recursively).
  144. pub async fn work(&mut self) {
  145. // defer to individual functions so the compiler produces better code
  146. // large functions tend to be difficult for the compiler to work with
  147. while let Some(instruction) = self.stack.pop() {
  148. // todo: call this less frequently, there is a bit of overhead involved
  149. yield_now().await;
  150. match instruction {
  151. DiffInstruction::PopScope => {
  152. self.stack.pop_scope();
  153. }
  154. DiffInstruction::DiffNode { old, new, .. } => {
  155. self.diff_node(old, new);
  156. }
  157. DiffInstruction::DiffChildren { old, new } => {
  158. self.diff_children(old, new);
  159. }
  160. DiffInstruction::Create { node } => {
  161. self.create_node(node);
  162. }
  163. DiffInstruction::Mount { and } => {
  164. self.mount(and);
  165. }
  166. DiffInstruction::PrepareMoveNode { node } => {
  167. log::debug!("Preparing to move node: {:?}", node);
  168. for el in RealChildIterator::new(node, self.vdom) {
  169. self.mutations.push_root(el.direct_id());
  170. self.stack.add_child_count(1);
  171. }
  172. }
  173. };
  174. }
  175. }
  176. fn mount(&mut self, and: MountType<'bump>) {
  177. let nodes_created = self.stack.pop_nodes_created();
  178. match and {
  179. // add the nodes from this virtual list to the parent
  180. // used by fragments and components
  181. MountType::Absorb => {
  182. self.stack.add_child_count(nodes_created);
  183. }
  184. MountType::Append => {
  185. self.mutations.edits.push(AppendChildren {
  186. many: nodes_created as u32,
  187. });
  188. }
  189. MountType::Replace { old } => {
  190. let mut iter = RealChildIterator::new(old, self.vdom);
  191. let first = iter.next().unwrap();
  192. self.mutations
  193. .replace_with(first.direct_id(), nodes_created as u32);
  194. self.remove_nodes(iter);
  195. }
  196. MountType::ReplaceByElementId { el: old } => {
  197. self.mutations.replace_with(old, nodes_created as u32);
  198. }
  199. MountType::InsertAfter { other_node } => {
  200. let root = self.find_last_element(other_node).unwrap();
  201. self.mutations.insert_after(root, nodes_created as u32);
  202. }
  203. MountType::InsertBefore { other_node } => {
  204. let root = self.find_first_element_id(other_node).unwrap();
  205. self.mutations.insert_before(root, nodes_created as u32);
  206. }
  207. }
  208. }
  209. // =================================
  210. // Tools for creating new nodes
  211. // =================================
  212. fn create_node(&mut self, node: &'bump VNode<'bump>) {
  213. match node {
  214. VNode::Text(vtext) => self.create_text_node(vtext),
  215. VNode::Suspended(suspended) => self.create_suspended_node(suspended),
  216. VNode::Anchor(anchor) => self.create_anchor_node(anchor),
  217. VNode::Element(element) => self.create_element_node(element),
  218. VNode::Fragment(frag) => self.create_fragment_node(frag),
  219. VNode::Component(component) => self.create_component_node(component),
  220. }
  221. }
  222. fn create_text_node(&mut self, vtext: &'bump VText<'bump>) {
  223. let real_id = self.vdom.reserve_node();
  224. self.mutations.create_text_node(vtext.text, real_id);
  225. vtext.dom_id.set(Some(real_id));
  226. self.stack.add_child_count(1);
  227. }
  228. fn create_suspended_node(&mut self, suspended: &'bump VSuspended) {
  229. let real_id = self.vdom.reserve_node();
  230. self.mutations.create_placeholder(real_id);
  231. suspended.node.set(Some(real_id));
  232. self.stack.add_child_count(1);
  233. }
  234. fn create_anchor_node(&mut self, anchor: &'bump VAnchor) {
  235. let real_id = self.vdom.reserve_node();
  236. self.mutations.create_placeholder(real_id);
  237. anchor.dom_id.set(Some(real_id));
  238. self.stack.add_child_count(1);
  239. }
  240. fn create_element_node(&mut self, element: &'bump VElement<'bump>) {
  241. let VElement {
  242. tag_name,
  243. listeners,
  244. attributes,
  245. children,
  246. namespace,
  247. dom_id,
  248. ..
  249. } = element;
  250. let real_id = self.vdom.reserve_node();
  251. dom_id.set(Some(real_id));
  252. self.mutations.create_element(tag_name, *namespace, real_id);
  253. self.stack.add_child_count(1);
  254. let cur_scope_id = self.stack.current_scope().unwrap();
  255. let scope = self.vdom.get_scope(cur_scope_id).unwrap();
  256. listeners.iter().for_each(|listener| {
  257. self.attach_listener_to_scope(listener, scope);
  258. listener.mounted_node.set(Some(real_id));
  259. self.mutations
  260. .new_event_listener(listener, cur_scope_id.clone());
  261. });
  262. for attr in *attributes {
  263. self.mutations.set_attribute(attr);
  264. }
  265. if children.len() > 0 {
  266. self.stack.create_children(children, MountType::Append);
  267. }
  268. }
  269. fn create_fragment_node(&mut self, frag: &'bump VFragment<'bump>) {
  270. self.stack.create_children(frag.children, MountType::Absorb);
  271. }
  272. fn create_component_node(&mut self, vcomponent: &'bump VComponent<'bump>) {
  273. let caller = vcomponent.caller.clone();
  274. let parent_idx = self.stack.current_scope().unwrap();
  275. let shared = self.vdom.channel.clone();
  276. // Insert a new scope into our component list
  277. let new_idx = self.vdom.insert_scope_with_key(|new_idx| {
  278. let parent_scope = self.vdom.get_scope(parent_idx).unwrap();
  279. let height = parent_scope.height + 1;
  280. Scope::new(
  281. caller,
  282. new_idx,
  283. Some(parent_idx),
  284. height,
  285. ScopeChildren(vcomponent.children),
  286. shared,
  287. )
  288. });
  289. // Actually initialize the caller's slot with the right address
  290. vcomponent.ass_scope.set(Some(new_idx));
  291. if !vcomponent.can_memoize {
  292. let cur_scope = self.vdom.get_scope_mut(parent_idx).unwrap();
  293. let extended = vcomponent as *const VComponent;
  294. let extended: *const VComponent<'static> = unsafe { std::mem::transmute(extended) };
  295. cur_scope.borrowed_props.borrow_mut().push(extended);
  296. }
  297. // TODO:
  298. // add noderefs to current noderef list Noderefs
  299. // add effects to current effect list Effects
  300. let new_component = self.vdom.get_scope_mut(new_idx).unwrap();
  301. // Run the scope for one iteration to initialize it
  302. match new_component.run_scope() {
  303. Ok(_g) => {
  304. // all good, new nodes exist
  305. }
  306. Err(err) => {
  307. // failed to run. this is the first time the component ran, and it failed
  308. // we manually set its head node to an empty fragment
  309. panic!("failing components not yet implemented");
  310. }
  311. }
  312. // Take the node that was just generated from running the component
  313. let nextnode = new_component.frames.fin_head();
  314. self.stack.create_component(new_idx, nextnode);
  315. // Finally, insert this scope as a seen node.
  316. self.seen_scopes.insert(new_idx);
  317. }
  318. // =================================
  319. // Tools for diffing nodes
  320. // =================================
  321. pub fn diff_node(&mut self, old_node: &'bump VNode<'bump>, new_node: &'bump VNode<'bump>) {
  322. use VNode::*;
  323. match (old_node, new_node) {
  324. // Check the most common cases first
  325. (Text(old), Text(new)) => self.diff_text_nodes(old, new),
  326. (Component(old), Component(new)) => self.diff_component_nodes(old, new),
  327. (Fragment(old), Fragment(new)) => self.diff_fragment_nodes(old, new),
  328. (Anchor(old), Anchor(new)) => new.dom_id.set(old.dom_id.get()),
  329. (Suspended(old), Suspended(new)) => new.node.set(old.node.get()),
  330. (Element(old), Element(new)) => self.diff_element_nodes(old, new),
  331. // Anything else is just a basic replace and create
  332. (
  333. Component(_) | Fragment(_) | Text(_) | Element(_) | Anchor(_) | Suspended(_),
  334. Component(_) | Fragment(_) | Text(_) | Element(_) | Anchor(_) | Suspended(_),
  335. ) => self
  336. .stack
  337. .create_node(new_node, MountType::Replace { old: old_node }),
  338. }
  339. }
  340. fn diff_text_nodes(&mut self, old: &'bump VText<'bump>, new: &'bump VText<'bump>) {
  341. let root = old.dom_id.get().unwrap();
  342. if old.text != new.text {
  343. self.mutations.push_root(root);
  344. self.mutations.set_text(new.text);
  345. self.mutations.pop();
  346. }
  347. new.dom_id.set(Some(root));
  348. }
  349. fn diff_element_nodes(&mut self, old: &'bump VElement<'bump>, new: &'bump VElement<'bump>) {
  350. let root = old.dom_id.get().unwrap();
  351. // If the element type is completely different, the element needs to be re-rendered completely
  352. // This is an optimization React makes due to how users structure their code
  353. //
  354. // This case is rather rare (typically only in non-keyed lists)
  355. if new.tag_name != old.tag_name || new.namespace != old.namespace {
  356. // maybe make this an instruction?
  357. // issue is that we need the "vnode" but this method only has the velement
  358. self.stack.push_nodes_created(0);
  359. self.stack.push(DiffInstruction::Mount {
  360. and: MountType::ReplaceByElementId {
  361. el: old.dom_id.get().unwrap(),
  362. },
  363. });
  364. self.create_element_node(new);
  365. return;
  366. }
  367. new.dom_id.set(Some(root));
  368. // Don't push the root if we don't have to
  369. let mut has_comitted = false;
  370. let mut please_commit = |edits: &mut Vec<DomEdit>| {
  371. if !has_comitted {
  372. has_comitted = true;
  373. edits.push(PushRoot { id: root.as_u64() });
  374. }
  375. };
  376. // Diff Attributes
  377. //
  378. // It's extraordinarily rare to have the number/order of attributes change
  379. // In these cases, we just completely erase the old set and make a new set
  380. //
  381. // TODO: take a more efficient path than this
  382. if old.attributes.len() == new.attributes.len() {
  383. for (old_attr, new_attr) in old.attributes.iter().zip(new.attributes.iter()) {
  384. if old_attr.value != new_attr.value {
  385. please_commit(&mut self.mutations.edits);
  386. self.mutations.set_attribute(new_attr);
  387. }
  388. }
  389. } else {
  390. // TODO: provide some sort of report on how "good" the diffing was
  391. please_commit(&mut self.mutations.edits);
  392. for attribute in old.attributes {
  393. self.mutations.remove_attribute(attribute);
  394. }
  395. for attribute in new.attributes {
  396. self.mutations.set_attribute(attribute)
  397. }
  398. }
  399. // Diff listeners
  400. //
  401. // It's extraordinarily rare to have the number/order of listeners change
  402. // In the cases where the listeners change, we completely wipe the data attributes and add new ones
  403. //
  404. // We also need to make sure that all listeners are properly attached to the parent scope (fix_listener)
  405. //
  406. // TODO: take a more efficient path than this
  407. let cur_scope_id = self.stack.current_scope().unwrap();
  408. let scope = self.vdom.get_scope(cur_scope_id).unwrap();
  409. if old.listeners.len() == new.listeners.len() {
  410. for (old_l, new_l) in old.listeners.iter().zip(new.listeners.iter()) {
  411. if old_l.event != new_l.event {
  412. please_commit(&mut self.mutations.edits);
  413. self.mutations.remove_event_listener(old_l.event);
  414. self.mutations.new_event_listener(new_l, cur_scope_id);
  415. }
  416. new_l.mounted_node.set(old_l.mounted_node.get());
  417. self.attach_listener_to_scope(new_l, scope);
  418. }
  419. } else {
  420. please_commit(&mut self.mutations.edits);
  421. for listener in old.listeners {
  422. self.mutations.remove_event_listener(listener.event);
  423. }
  424. for listener in new.listeners {
  425. listener.mounted_node.set(Some(root));
  426. self.mutations.new_event_listener(listener, cur_scope_id);
  427. self.attach_listener_to_scope(listener, scope);
  428. }
  429. }
  430. if has_comitted {
  431. self.mutations.pop();
  432. }
  433. self.diff_children(old.children, new.children);
  434. }
  435. fn diff_component_nodes(
  436. &mut self,
  437. old: &'bump VComponent<'bump>,
  438. new: &'bump VComponent<'bump>,
  439. ) {
  440. let scope_addr = old.ass_scope.get().unwrap();
  441. // Make sure we're dealing with the same component (by function pointer)
  442. if old.user_fc == new.user_fc {
  443. //
  444. self.stack.scope_stack.push(scope_addr);
  445. // Make sure the new component vnode is referencing the right scope id
  446. new.ass_scope.set(Some(scope_addr));
  447. // make sure the component's caller function is up to date
  448. let scope = self.vdom.get_scope_mut(scope_addr).unwrap();
  449. scope.update_scope_dependencies(new.caller.clone(), ScopeChildren(new.children));
  450. // React doesn't automatically memoize, but we do.
  451. let compare = old.comparator.unwrap();
  452. match compare(new) {
  453. true => {
  454. // the props are the same...
  455. }
  456. false => {
  457. // the props are different...
  458. scope.run_scope().unwrap();
  459. self.diff_node(scope.frames.wip_head(), scope.frames.fin_head());
  460. }
  461. }
  462. self.stack.scope_stack.pop();
  463. self.seen_scopes.insert(scope_addr);
  464. } else {
  465. todo!();
  466. // let mut old_iter = RealChildIterator::new(old_node, &self.vdom);
  467. // let first = old_iter
  468. // .next()
  469. // .expect("Components should generate a placeholder root");
  470. // // remove any leftovers
  471. // for to_remove in old_iter {
  472. // self.mutations.push_root(to_remove.direct_id());
  473. // self.mutations.remove();
  474. // }
  475. // // seems like we could combine this into a single instruction....
  476. // self.replace_node_with_node(first.direct_id(), old_node, new_node);
  477. // // Wipe the old one and plant the new one
  478. // let old_scope = old.ass_scope.get().unwrap();
  479. // self.destroy_scopes(old_scope);
  480. }
  481. }
  482. fn diff_fragment_nodes(&mut self, old: &'bump VFragment<'bump>, new: &'bump VFragment<'bump>) {
  483. // This is the case where options or direct vnodes might be used.
  484. // In this case, it's faster to just skip ahead to their diff
  485. if old.children.len() == 1 && new.children.len() == 1 {
  486. self.diff_node(&old.children[0], &new.children[0]);
  487. return;
  488. }
  489. self.diff_children(old.children, new.children);
  490. }
  491. // =============================================
  492. // Utilites for creating new diff instructions
  493. // =============================================
  494. // Diff the given set of old and new children.
  495. //
  496. // The parent must be on top of the change list stack when this function is
  497. // entered:
  498. //
  499. // [... parent]
  500. //
  501. // the change list stack is in the same state when this function returns.
  502. //
  503. // If old no anchors are provided, then it's assumed that we can freely append to the parent.
  504. //
  505. // Remember, non-empty lists does not mean that there are real elements, just that there are virtual elements.
  506. //
  507. // Frament nodes cannot generate empty children lists, so we can assume that when a list is empty, it belongs only
  508. // to an element, and appending makes sense.
  509. fn diff_children(&mut self, old: &'bump [VNode<'bump>], new: &'bump [VNode<'bump>]) {
  510. // Remember, fragments can never be empty (they always have a single child)
  511. match (old, new) {
  512. ([], []) => {}
  513. ([], _) => {
  514. self.stack.create_children(new, MountType::Append);
  515. }
  516. (_, []) => {
  517. for node in old {
  518. self.remove_nodes(Some(node));
  519. }
  520. }
  521. ([VNode::Anchor(old_anchor)], [VNode::Anchor(new_anchor)]) => {
  522. old_anchor.dom_id.set(new_anchor.dom_id.get());
  523. }
  524. ([VNode::Anchor(anchor)], _) => {
  525. let el = anchor.dom_id.get().unwrap();
  526. self.stack
  527. .create_children(new, MountType::ReplaceByElementId { el });
  528. }
  529. (_, [VNode::Anchor(_)]) => {
  530. self.replace_and_create_many_with_one(old, &new[0]);
  531. }
  532. _ => {
  533. let new_is_keyed = new[0].key().is_some();
  534. let old_is_keyed = old[0].key().is_some();
  535. debug_assert!(
  536. new.iter().all(|n| n.key().is_some() == new_is_keyed),
  537. "all siblings must be keyed or all siblings must be non-keyed"
  538. );
  539. debug_assert!(
  540. old.iter().all(|o| o.key().is_some() == old_is_keyed),
  541. "all siblings must be keyed or all siblings must be non-keyed"
  542. );
  543. if new_is_keyed && old_is_keyed {
  544. self.diff_keyed_children(old, new);
  545. } else {
  546. self.diff_non_keyed_children(old, new);
  547. }
  548. }
  549. }
  550. }
  551. // Diff children that are not keyed.
  552. //
  553. // The parent must be on the top of the change list stack when entering this
  554. // function:
  555. //
  556. // [... parent]
  557. //
  558. // the change list stack is in the same state when this function returns.
  559. fn diff_non_keyed_children(&mut self, old: &'bump [VNode<'bump>], new: &'bump [VNode<'bump>]) {
  560. // Handled these cases in `diff_children` before calling this function.
  561. log::debug!("diffing non-keyed case");
  562. debug_assert!(!new.is_empty());
  563. debug_assert!(!old.is_empty());
  564. for (new, old) in new.iter().zip(old.iter()).rev() {
  565. self.stack.push(DiffInstruction::DiffNode { new, old });
  566. }
  567. if old.len() > new.len() {
  568. self.remove_nodes(&old[new.len()..]);
  569. } else if new.len() > old.len() {
  570. log::debug!("Calling create children on array differences");
  571. self.stack.create_children(
  572. &new[old.len()..],
  573. MountType::InsertAfter {
  574. other_node: old.last().unwrap(),
  575. },
  576. );
  577. }
  578. }
  579. // Diffing "keyed" children.
  580. //
  581. // With keyed children, we care about whether we delete, move, or create nodes
  582. // versus mutate existing nodes in place. Presumably there is some sort of CSS
  583. // transition animation that makes the virtual DOM diffing algorithm
  584. // observable. By specifying keys for nodes, we know which virtual DOM nodes
  585. // must reuse (or not reuse) the same physical DOM nodes.
  586. //
  587. // This is loosely based on Inferno's keyed patching implementation. However, we
  588. // have to modify the algorithm since we are compiling the diff down into change
  589. // list instructions that will be executed later, rather than applying the
  590. // changes to the DOM directly as we compare virtual DOMs.
  591. //
  592. // https://github.com/infernojs/inferno/blob/36fd96/packages/inferno/src/DOM/patching.ts#L530-L739
  593. //
  594. // The stack is empty upon entry.
  595. fn diff_keyed_children(&mut self, old: &'bump [VNode<'bump>], new: &'bump [VNode<'bump>]) {
  596. if cfg!(debug_assertions) {
  597. let mut keys = fxhash::FxHashSet::default();
  598. let mut assert_unique_keys = |children: &'bump [VNode<'bump>]| {
  599. keys.clear();
  600. for child in children {
  601. let key = child.key();
  602. debug_assert!(
  603. key.is_some(),
  604. "if any sibling is keyed, all siblings must be keyed"
  605. );
  606. keys.insert(key);
  607. }
  608. debug_assert_eq!(
  609. children.len(),
  610. keys.len(),
  611. "keyed siblings must each have a unique key"
  612. );
  613. };
  614. assert_unique_keys(old);
  615. assert_unique_keys(new);
  616. }
  617. // First up, we diff all the nodes with the same key at the beginning of the
  618. // children.
  619. //
  620. // `shared_prefix_count` is the count of how many nodes at the start of
  621. // `new` and `old` share the same keys.
  622. let (left_offset, right_offset) = match self.diff_keyed_ends(old, new) {
  623. Some(count) => count,
  624. None => return,
  625. };
  626. log::debug!(
  627. "Left offset, right offset, {}, {}",
  628. left_offset,
  629. right_offset,
  630. );
  631. // Ok, we now hopefully have a smaller range of children in the middle
  632. // within which to re-order nodes with the same keys, remove old nodes with
  633. // now-unused keys, and create new nodes with fresh keys.
  634. self.diff_keyed_middle(
  635. &old[left_offset..(old.len() - right_offset)],
  636. &new[left_offset..(new.len() - right_offset)],
  637. );
  638. }
  639. /// Diff both ends of the children that share keys.
  640. ///
  641. /// Returns a left offset and right offset of that indicates a smaller section to pass onto the middle diffing.
  642. ///
  643. /// If there is no offset, then this function returns None and the diffing is complete.
  644. fn diff_keyed_ends(
  645. &mut self,
  646. old: &'bump [VNode<'bump>],
  647. new: &'bump [VNode<'bump>],
  648. ) -> Option<(usize, usize)> {
  649. let mut left_offset = 0;
  650. for (old, new) in old.iter().zip(new.iter()) {
  651. // abort early if we finally run into nodes with different keys
  652. if old.key() != new.key() {
  653. break;
  654. }
  655. self.stack.push(DiffInstruction::DiffNode { old, new });
  656. left_offset += 1;
  657. }
  658. // If that was all of the old children, then create and append the remaining
  659. // new children and we're finished.
  660. if left_offset == old.len() {
  661. self.stack.create_children(
  662. &new[left_offset..],
  663. MountType::InsertAfter {
  664. other_node: old.last().unwrap(),
  665. },
  666. );
  667. return None;
  668. }
  669. // And if that was all of the new children, then remove all of the remaining
  670. // old children and we're finished.
  671. if left_offset == new.len() {
  672. self.remove_nodes(&old[left_offset..]);
  673. return None;
  674. }
  675. // if the shared prefix is less than either length, then we need to walk backwards
  676. let mut right_offset = 0;
  677. for (old, new) in old.iter().rev().zip(new.iter().rev()) {
  678. // abort early if we finally run into nodes with different keys
  679. if old.key() != new.key() {
  680. break;
  681. }
  682. self.diff_node(old, new);
  683. right_offset += 1;
  684. }
  685. Some((left_offset, right_offset))
  686. }
  687. // The most-general, expensive code path for keyed children diffing.
  688. //
  689. // We find the longest subsequence within `old` of children that are relatively
  690. // ordered the same way in `new` (via finding a longest-increasing-subsequence
  691. // of the old child's index within `new`). The children that are elements of
  692. // this subsequence will remain in place, minimizing the number of DOM moves we
  693. // will have to do.
  694. //
  695. // Upon entry to this function, the change list stack must be empty.
  696. //
  697. // This function will load the appropriate nodes onto the stack and do diffing in place.
  698. //
  699. // Upon exit from this function, it will be restored to that same state.
  700. fn diff_keyed_middle(&mut self, old: &'bump [VNode<'bump>], new: &'bump [VNode<'bump>]) {
  701. /*
  702. 1. Map the old keys into a numerical ordering based on indicies.
  703. 2. Create a map of old key to its index
  704. 3. Map each new key to the old key, carrying over the old index.
  705. - IE if we have ABCD becomes BACD, our sequence would be 1,0,2,3
  706. - if we have ABCD to ABDE, our sequence would be 0,1,3,MAX because E doesn't exist
  707. now, we should have a list of integers that indicates where in the old list the new items map to.
  708. 4. Compute the LIS of this list
  709. - this indicates the longest list of new children that won't need to be moved.
  710. 5. Identify which nodes need to be removed
  711. 6. Identify which nodes will need to be diffed
  712. 7. Going along each item in the new list, create it and insert it before the next closest item in the LIS.
  713. - if the item already existed, just move it to the right place.
  714. 8. Finally, generate instructions to remove any old children.
  715. 9. Generate instructions to finally diff children that are the same between both
  716. */
  717. // 0. Debug sanity checks
  718. // Should have already diffed the shared-key prefixes and suffixes.
  719. debug_assert_ne!(new.first().map(|n| n.key()), old.first().map(|o| o.key()));
  720. debug_assert_ne!(new.last().map(|n| n.key()), old.last().map(|o| o.key()));
  721. // 1. Map the old keys into a numerical ordering based on indicies.
  722. // 2. Create a map of old key to its index
  723. // IE if the keys were A B C, then we would have (A, 1) (B, 2) (C, 3).
  724. let old_key_to_old_index = old
  725. .iter()
  726. .enumerate()
  727. .map(|(i, o)| (o.key().unwrap(), i))
  728. .collect::<FxHashMap<_, _>>();
  729. let mut shared_keys = FxHashSet::default();
  730. // 3. Map each new key to the old key, carrying over the old index.
  731. let new_index_to_old_index = new
  732. .iter()
  733. .map(|node| {
  734. let key = node.key().unwrap();
  735. if let Some(&index) = old_key_to_old_index.get(&key) {
  736. shared_keys.insert(key);
  737. index
  738. } else {
  739. u32::MAX as usize
  740. }
  741. })
  742. .collect::<Vec<_>>();
  743. // If none of the old keys are reused by the new children, then we remove all the remaining old children and
  744. // create the new children afresh.
  745. if shared_keys.is_empty() {
  746. self.replace_and_create_many_with_many(old, new);
  747. return;
  748. }
  749. // 4. Compute the LIS of this list
  750. let mut lis_sequence = Vec::default();
  751. lis_sequence.reserve(new_index_to_old_index.len());
  752. let mut predecessors = vec![0; new_index_to_old_index.len()];
  753. let mut starts = vec![0; new_index_to_old_index.len()];
  754. longest_increasing_subsequence::lis_with(
  755. &new_index_to_old_index,
  756. &mut lis_sequence,
  757. |a, b| a < b,
  758. &mut predecessors,
  759. &mut starts,
  760. );
  761. // the lis comes out backwards, I think. can't quite tell.
  762. lis_sequence.sort_unstable();
  763. // if a new node gets u32 max and is at the end, then it might be part of our LIS (because u32 max is a valid LIS)
  764. if lis_sequence.last().map(|f| new_index_to_old_index[*f]) == Some(u32::MAX as usize) {
  765. lis_sequence.pop();
  766. }
  767. let apply = |new_idx, new_node: &'bump VNode<'bump>, stack: &mut DiffStack<'bump>| {
  768. let old_index = new_index_to_old_index[new_idx];
  769. if old_index == u32::MAX as usize {
  770. stack.create_node(new_node, MountType::Absorb);
  771. } else {
  772. // this funciton should never take LIS indicies
  773. stack.push(DiffInstruction::PrepareMoveNode { node: new_node });
  774. stack.push(DiffInstruction::DiffNode {
  775. new: new_node,
  776. old: &old[old_index],
  777. });
  778. }
  779. };
  780. // add mount instruction for the last items not covered by the lis
  781. let first_lis = *lis_sequence.first().unwrap();
  782. if first_lis > 0 {
  783. self.stack.push_nodes_created(0);
  784. self.stack.push(DiffInstruction::Mount {
  785. and: MountType::InsertBefore {
  786. other_node: &new[first_lis],
  787. },
  788. });
  789. for (idx, new_node) in new[..first_lis].iter().enumerate().rev() {
  790. apply(idx, new_node, &mut self.stack);
  791. }
  792. }
  793. // for each spacing, generate a mount instruction
  794. let mut lis_iter = lis_sequence.iter().rev();
  795. let mut last = *lis_iter.next().unwrap();
  796. while let Some(&next) = lis_iter.next() {
  797. if last - next > 1 {
  798. self.stack.push_nodes_created(0);
  799. self.stack.push(DiffInstruction::Mount {
  800. and: MountType::InsertBefore {
  801. other_node: &new[last],
  802. },
  803. });
  804. for (idx, new_node) in new[(next + 1)..last].iter().enumerate().rev() {
  805. apply(idx + next + 1, new_node, &mut self.stack);
  806. }
  807. }
  808. last = next;
  809. }
  810. // add mount instruction for the first items not covered by the lis
  811. let last = *lis_sequence.last().unwrap();
  812. if last < (new.len() - 1) {
  813. self.stack.push_nodes_created(0);
  814. self.stack.push(DiffInstruction::Mount {
  815. and: MountType::InsertAfter {
  816. other_node: &new[last],
  817. },
  818. });
  819. for (idx, new_node) in new[(last + 1)..].iter().enumerate().rev() {
  820. apply(idx + last + 1, new_node, &mut self.stack);
  821. }
  822. }
  823. for idx in lis_sequence.iter().rev() {
  824. self.stack.push(DiffInstruction::DiffNode {
  825. new: &new[*idx],
  826. old: &old[new_index_to_old_index[*idx]],
  827. });
  828. }
  829. }
  830. // =====================
  831. // Utilities
  832. // =====================
  833. fn find_last_element(&mut self, vnode: &'bump VNode<'bump>) -> Option<ElementId> {
  834. let mut search_node = Some(vnode);
  835. loop {
  836. match &search_node.take().unwrap() {
  837. VNode::Text(t) => break t.dom_id.get(),
  838. VNode::Element(t) => break t.dom_id.get(),
  839. VNode::Suspended(t) => break t.node.get(),
  840. VNode::Anchor(t) => break t.dom_id.get(),
  841. VNode::Fragment(frag) => {
  842. search_node = frag.children.last();
  843. }
  844. VNode::Component(el) => {
  845. let scope_id = el.ass_scope.get().unwrap();
  846. let scope = self.vdom.get_scope(scope_id).unwrap();
  847. search_node = Some(scope.root());
  848. }
  849. }
  850. }
  851. }
  852. fn find_first_element_id(&mut self, vnode: &'bump VNode<'bump>) -> Option<ElementId> {
  853. let mut search_node = Some(vnode);
  854. loop {
  855. match &search_node.take().unwrap() {
  856. // the ones that have a direct id
  857. VNode::Fragment(frag) => {
  858. search_node = Some(&frag.children[0]);
  859. }
  860. VNode::Component(el) => {
  861. let scope_id = el.ass_scope.get().unwrap();
  862. let scope = self.vdom.get_scope(scope_id).unwrap();
  863. search_node = Some(scope.root());
  864. }
  865. VNode::Text(t) => break t.dom_id.get(),
  866. VNode::Element(t) => break t.dom_id.get(),
  867. VNode::Suspended(t) => break t.node.get(),
  868. VNode::Anchor(t) => break t.dom_id.get(),
  869. }
  870. }
  871. }
  872. fn replace_and_create_many_with_one(
  873. &mut self,
  874. old: &'bump [VNode<'bump>],
  875. new: &'bump VNode<'bump>,
  876. ) {
  877. if let Some(first_old) = old.get(0) {
  878. self.remove_nodes(&old[1..]);
  879. self.stack
  880. .create_node(new, MountType::Replace { old: first_old });
  881. } else {
  882. self.stack.create_node(new, MountType::Append {});
  883. }
  884. }
  885. /// schedules nodes for garbage collection and pushes "remove" to the mutation stack
  886. /// remove can happen whenever
  887. fn remove_nodes(&mut self, nodes: impl IntoIterator<Item = &'bump VNode<'bump>>) {
  888. // or cache the vec on the diff machine
  889. for node in nodes {
  890. match node {
  891. VNode::Text(t) => {
  892. t.dom_id.get().map(|id| {
  893. self.mutations.remove(id.as_u64());
  894. self.vdom.collect_garbage(id);
  895. });
  896. }
  897. VNode::Suspended(s) => {
  898. s.node.get().map(|id| {
  899. self.mutations.remove(id.as_u64());
  900. self.vdom.collect_garbage(id);
  901. });
  902. }
  903. VNode::Anchor(a) => {
  904. a.dom_id.get().map(|id| {
  905. self.mutations.remove(id.as_u64());
  906. self.vdom.collect_garbage(id);
  907. });
  908. }
  909. VNode::Element(e) => {
  910. e.dom_id.get().map(|id| self.mutations.remove(id.as_u64()));
  911. }
  912. VNode::Fragment(f) => {
  913. self.remove_nodes(f.children);
  914. }
  915. VNode::Component(c) => {
  916. let scope_id = c.ass_scope.get().unwrap();
  917. let scope = self.vdom.get_scope(scope_id).unwrap();
  918. let root = scope.root();
  919. self.remove_nodes(Some(root));
  920. }
  921. }
  922. }
  923. }
  924. /// Remove all the old nodes and replace them with newly created new nodes.
  925. ///
  926. /// The new nodes *will* be created - don't create them yourself!
  927. fn replace_and_create_many_with_many(
  928. &mut self,
  929. old: &'bump [VNode<'bump>],
  930. new: &'bump [VNode<'bump>],
  931. ) {
  932. if let Some(first_old) = old.get(0) {
  933. self.remove_nodes(&old[1..]);
  934. self.stack
  935. .create_children(new, MountType::Replace { old: first_old })
  936. } else {
  937. self.stack.create_children(new, MountType::Append {});
  938. }
  939. }
  940. fn create_garbage(&mut self, node: &'bump VNode<'bump>) {
  941. match self
  942. .stack
  943. .current_scope()
  944. .and_then(|id| self.vdom.get_scope(id))
  945. {
  946. Some(scope) => {
  947. let garbage: &'bump VNode<'static> = unsafe { std::mem::transmute(node) };
  948. scope.pending_garbage.borrow_mut().push(garbage);
  949. }
  950. None => {
  951. log::info!("No scope to collect garbage into")
  952. }
  953. }
  954. }
  955. /// Adds a listener closure to a scope during diff.
  956. fn attach_listener_to_scope<'a>(&mut self, listener: &'a Listener<'a>, scope: &Scope) {
  957. let mut queue = scope.listeners.borrow_mut();
  958. let long_listener: &'a Listener<'static> = unsafe { std::mem::transmute(listener) };
  959. queue.push(long_listener as *const _)
  960. }
  961. }