1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Jared Beller b50691efed
refactor(core): Strongly typed deserialization of JSON ops (#9423)
This PR makes json_op_sync/async generic to all Deserialize/Serialize types
instead of the loosely-typed serde_json::Value. Since serde_json::Value
implements Deserialize/Serialize, very little existing code needs to be updated,
however as json_op_sync/async are now generic, type inference is broken in some
cases (see cli/build.rs:146). I've found this reduces a good bit of boilerplate,
as seen in the updated deno_core examples.

This change may also reduce serialization and deserialization overhead as serde
has a better idea of what types it is working with. I am currently working on
benchmarks to confirm this and I will update this PR with my findings.
2021-02-13 11:56:56 -05:00
..
examples refactor(core): Strongly typed deserialization of JSON ops (#9423) 2021-02-13 11:56:56 -05:00
async_cancel.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
async_cell.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
bindings.rs upgrade: rusty_v8 0.17.0, v8 9.0.123 (#9413) 2021-02-05 22:25:02 +01:00
Cargo.toml chore: release crates (#9481) 2021-02-12 16:23:39 +01:00
core.js refactor(core): Strongly typed deserialization of JSON ops (#9423) 2021-02-13 11:56:56 -05:00
core_test.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
encode_decode_test.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
error.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
error.rs fix(core): Handle prepareStackTrace() throws (#9211) 2021-01-21 20:48:04 +11:00
flags.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
gotham_state.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
lib.deno_core.d.ts refactor(core): Strongly typed deserialization of JSON ops (#9423) 2021-02-13 11:56:56 -05:00
lib.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
module_specifier.rs feat(lsp): add references code lens (#9316) 2021-02-01 14:30:41 +11:00
modules.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
normalize_path.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
ops.rs refactor(core): Strongly typed deserialization of JSON ops (#9423) 2021-02-13 11:56:56 -05:00
plugin_api.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
README.md reland JsRuntime/Worker is not a Future (#7924) 2020-10-11 13:20:40 +02:00
resources.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
runtime.rs chore: add flag to v8 (#9456) 2021-02-09 13:06:24 +01:00
shared_queue.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
zero_copy_buf.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the JsRuntime which provides a way to execute JavaScript.

The JsRuntime implements an event loop abstraction for the executed code that keeps track of all pending tasks (async ops, dynamic module loads). It is user's responsibility to drive that loop by using JsRuntime::run_event_loop method - it must be executed in the context of Rust's future executor (eg. tokio, smol).

In order to bind Rust functions into JavaScript, use the Deno.core.dispatch() function to trigger the "dispatch" callback in Rust. The user is responsible for encoding both the request and response into a Uint8Array.

Documentation for this crate is thin at the moment. Please see http_bench_bin_ops.rs and http_bench_json_ops.rs as a simple example of usage.

TypeScript support and a lot of other functionality is not available at this layer. See the CLI for that.