GitXplorerGitXplorer
f

dodrio

public
1241 stars
49 forks
26 issues

Commits

List of commits on branch master.
Verified
f1ba4fd55666d6ce492fc07c3ffc25d516a8fb6f

Merge pull request #167 from fitzgen/dependabot/cargo/serde_json-1.0.57

ddependabot-preview[bot] committed 4 years ago
Verified
f73f8b1b30ec3f513be08ef1448a9843bb4ec38c

Bump serde_json from 1.0.56 to 1.0.57

ddependabot-preview[bot] committed 4 years ago
Verified
09b408831062a6431d8c5e4a7ad6446f5ca639ff

Merge pull request #166 from fitzgen/dependabot/cargo/log-0.4.11

ddependabot-preview[bot] committed 5 years ago
Verified
eab05fb009ed96a4bdf711aba3a04aa17a0e6b11

Bump log from 0.4.8 to 0.4.11

ddependabot-preview[bot] committed 5 years ago
Verified
3697ce23b1cefaf9caa20dd05da830616a350d40

Merge pull request #165 from fitzgen/dependabot/cargo/criterion-0.3.3

ddependabot-preview[bot] committed 5 years ago
Verified
50473450fbdca5a5c15bd8e587b484d5792e5d32

Bump criterion from 0.3.2 to 0.3.3

ddependabot-preview[bot] committed 5 years ago

README

The README file for this repository.

Dodrio

A fast, bump-allocated virtual DOM library for Rust and WebAssembly. Note that Dodrio is still experimental.

Warning

I reiterate that Dodrio is in a very experimental state. It probably has bugs, and no one is using it in production.

Examples

Here is the classic "Hello, World!" example:

struct Hello {
    who: String,
}

impl Render for Hello {
    fn render<'a>(&self, cx: &mut RenderContext<a>) -> Node<'a> {
        let who = bumpalo::format!(in cx.bump, "Hello, {}!", self.who);
        div(cx)
            .children([text(who.into_bump_str())])
            .finish()
    }
}

More examples can be found in the examples directory, including:

  • counter: Incrementing and decrementing a counter.
  • input-form: Reading an <input> and displaying its contents.
  • todomvc: An implementation of the infamous TodoMVC application.
  • moire: The WebRender Moiré patterns demo.
  • game-of-life: The Rust and WebAssembly book's Game of Life tutorial rendered with Dodrio instead of to 2D canvas.
  • js-component: Defines a rendering component in JavaScript with the dodrio-js-api crate.

Cargo Features

  • log — enable debugging-oriented log messages with the log crate's facade. You still have to initialize a logger for the messages to go anywhere, such as console_log.

  • serde — enable serde::{Serialize, Deserialize} implementations for Cached<R> where R is serializable and deserializable.

Design

Bump Allocation

Bump allocation is essentially the fastest method of allocating objects. It has constraints, but works particularly well when allocation lifetimes match program phases. And virtual DOMs are very phase oriented.

Dodrio maintains three bump allocation arenas:

  1. The newest, most up-to-date virtual DOM. The virtual DOM nodes themselves and any temporary containers needed while creating them are allocated into this arena.
  2. The previous virtual DOM. This reflects the current state of the physical DOM.
  3. The difference between (1) and (2). This is a sequence of DOM mutation operations — colloquially known as a "change list" — which if applied to the physical DOM, will make the physical DOM match (1).

Rendering happens as follows:

  1. The application state is rendered into bump allocation arena (1).
  2. (1) is diffed with (2) and the changes are emitted into (3).
  3. JavaScript code applies the change list in (3) to the physical DOM.
  4. (1) and (2) are swapped, double-buffering style, and the new (1) has its bump allocation pointer reset, as does (3).
  5. Rinse and repeat.

Change List as Stack Machine

The change list that represents the difference between how the physical DOM currently looks, and our ideal virtual DOM state is encoded in a tiny stack machine language. A stack machine works particularly well for applying DOM diffs, a task that is essentially a tree traversal.

Library — Not Framework

Dodrio is just a library. (And did I mention it is experimental?!) It is not a full-fledged, complete, batteries-included solution for all frontend Web development. And it never intends to become that either.