1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Aaron O'Mullan 375ce63c63
feat(core): streams (#12596)
This allows resources to be "streams" by implementing read/write/shutdown. These streams are implicit since their nature (read/write/duplex) isn't known until called, but we could easily add another method to explicitly tag resources as streams.

`op_read/op_write/op_shutdown` are now builtin ops provided by `deno_core`

Note: this current implementation is simple & straightforward but it results in an additional alloc per read/write call

Closes #12556
2021-11-09 19:26:17 +01:00
..
examples feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
00_primordials.js feat(fmt): add basic JS doc formatting (#11902) 2021-09-02 18:28:12 -04:00
01_core.js feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
02_error.js fix(cli/fmt_errors): Abbreviate long data URLs in stack traces (#12127) 2021-09-18 15:40:04 +02:00
async_cancel.rs fix(core): avoid polling future after cancellation (#12385) 2021-10-17 15:16:10 +02:00
async_cell.rs perf(core): optimize waker capture in AsyncRefCell (#12332) 2021-11-08 12:49:10 -08:00
bindings.rs feat(compat): add .code to dyn import error (#12633) 2021-11-08 16:02:40 +09:00
Cargo.toml chore: bump crate versions for 1.16.0 (#12706) 2021-11-09 13:03:17 +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.rs chore: update to Rust edition 2021 (#12578) 2021-11-02 10:03:37 -04:00
error_builder_test.js refactor: use primordials in runtime, extensions and core (#11500) 2021-07-26 13:52:59 +02:00
error_codes.rs feat(runtime): give OS errors .code attributes (#12591) 2021-11-04 16:44:34 +01:00
extensions.rs core: don't include_str extension js code (#10786) 2021-05-29 16:20:52 +02:00
flags.rs chore: update to rusty_v8 0.33.0 (#12564) 2021-10-27 23:26:15 +02:00
gotham_state.rs fix(core): better "missing type" GothamState error (#10189) 2021-04-14 23:11:39 +02:00
icudtl.dat upgrade: rusty_v8 0.23.0 (V8 9.2.230.12) (#11113) 2021-06-25 12:54:53 +02:00
inspector.rs chore: update to rusty_v8 0.33.0 (#12564) 2021-10-27 23:26:15 +02:00
internal.d.ts chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
lib.deno_core.d.ts feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
lib.rs feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
module_specifier.rs fix(doc): fix rustdoc bare_urls warning (#11921) 2021-09-05 16:22:45 +02:00
modules.rs chore: update to Rust edition 2021 (#12578) 2021-11-02 10:03:37 -04:00
normalize_path.rs fix(doc): fix rustdoc bare_urls warning (#11921) 2021-09-05 16:22:45 +02:00
ops.rs feat(runtime): give OS errors .code attributes (#12591) 2021-11-04 16:44:34 +01:00
ops_builtin.rs feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
ops_json.rs feat(serde_v8): allow all values to deserialize to unit type (#12504) 2021-10-20 23:17:12 +02:00
ops_metrics.rs fix(core): avoid op_state.borrow_mut() for OpsTracker (#12525) 2021-10-24 19:30:55 +02:00
README.md docs(core): replaces dispatch references with op (#11054) 2021-06-20 17:12:55 +02:00
resources.rs feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
runtime.rs fix: Deno.emit crashes with BorrowMutError (#12627) 2021-11-03 09:27:36 -04:00
serialize_deserialize_test.js feat(extensions/web): add structuredClone function (#11572) 2021-08-09 10:39:00 +02: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.opSync() and Deno.core.opAsync() functions to trigger the "op_fn" callback in JsRuntime::register_op on Rust side. A conventional way to handle "op_fn" callbacks is to use the op_sync and op_async functions.

Documentation for this crate is thin at the moment. Please see hello_world.rs and http_bench_json_ops.rs as examples of usage.

TypeScript support and lots of other functionality are not available at this layer. See the CLI for that.