1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Bartek Iwańczuk 46c0cab763
refactor(core): simplify Deno.core initialisation, remove stale TODO (#8847)
This commit rewrites initialisation of the "shared queue" and
in effect prevents from double execution of "core/core.js" and
"core/error.js".

Previously both of these files were executed every time a "JsRuntime"
was created. That lead to a situation where one copy of each script
was included in the snapshot and then another copy would be
executed after loading the snapshot.

Effectively "JsRuntime::shared_init" was removed; instead execution
of those scripts and actual initialisation of shared queue
was split into two helper functions: "JsRuntime::js_init" and
"JsRuntime::share_queue_init".

Additionally stale TODO comments were removed.
2021-01-05 22:10:50 +01:00
..
examples core: fix http_bench_json_ops, register Error (#8860) 2020-12-22 18:01:07 +01:00
async_cancel.rs upgrade: Rust 1.49.0 (#8955) 2021-01-02 13:52:42 +01:00
async_cell.rs refactor: rewrite ops to use ResourceTable2 (#8512) 2020-12-16 17:14:12 +01:00
bindings.rs fix: align encoding APIs to spec using WPT (#9004) 2021-01-05 19:50:40 +01:00
Cargo.toml chore: release crates (#8931) 2020-12-30 15:29:17 +01:00
core.js refactor(core): simplify Deno.core initialisation, remove stale TODO (#8847) 2021-01-05 22:10:50 +01:00
core_test.js fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
encode_decode_test.js build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
error.js refactor(core): stack trace mapping (#8660) 2020-12-10 14:45:41 +01:00
error.rs refactor(core): simplify Deno.core initialisation, remove stale TODO (#8847) 2021-01-05 22:10:50 +01:00
flags.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
gotham_state.rs test(core): type aliases in OpState (#8653) 2020-12-09 15:55:05 +01:00
lib.rs refactor: rewrite ops to use ResourceTable2 (#8512) 2020-12-16 17:14:12 +01:00
module_specifier.rs fix(cli): make output of deno info --json deterministic (#8483) 2020-11-27 16:51:47 -05:00
modules.rs Revert "fix: TLA in web worker (#8809)" (#8839) 2020-12-20 15:14:19 +01:00
normalize_path.rs fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
ops.rs refactor(core): simplify Deno.core initialisation, remove stale TODO (#8847) 2021-01-05 22:10:50 +01:00
plugin_api.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
README.md reland JsRuntime/Worker is not a Future (#7924) 2020-10-11 13:20:40 +02:00
resources.rs refactor: rewrite ops to use ResourceTable2 (#8512) 2020-12-16 17:14:12 +01:00
runtime.rs refactor(core): simplify Deno.core initialisation, remove stale TODO (#8847) 2021-01-05 22:10:50 +01:00
shared_queue.rs refactor(cli+core): various cleanups in Rust (#8336) 2020-11-13 09:17:31 +11:00
zero_copy_buf.rs chore: add copyright (#7593) 2020-09-21 08:26:41 -04: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.