0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/core/ops_builtin.rs

73 lines
1.6 KiB
Rust
Raw Normal View History

use crate::error::bad_resource_id;
use crate::error::type_error;
use crate::error::AnyError;
use crate::include_js_files;
use crate::op_sync;
use crate::resources::ResourceId;
use crate::Extension;
use crate::OpState;
2021-05-03 08:51:32 -04:00
use std::io::{stderr, stdout, Write};
pub(crate) fn init_builtins() -> Extension {
Extension::builder()
.js(include_js_files!(
prefix "deno:core",
"core.js",
"error.js",
))
.ops(vec![
("op_close", op_sync(op_close)),
("op_print", op_sync(op_print)),
("op_resources", op_sync(op_resources)),
])
.build()
}
/// Return map of resources with id as key
/// and string representation as value.
pub fn op_resources(
state: &mut OpState,
_args: (),
_: (),
) -> Result<Vec<(ResourceId, String)>, AnyError> {
let serialized_resources = state
.resource_table
.names()
.map(|(rid, name)| (rid, name.to_string()))
.collect();
Ok(serialized_resources)
}
/// Remove a resource from the resource table.
pub fn op_close(
state: &mut OpState,
rid: Option<ResourceId>,
_: (),
) -> Result<(), AnyError> {
// TODO(@AaronO): drop Option after improving type-strictness balance in serde_v8
let rid = rid.ok_or_else(|| type_error("missing or invalid `rid`"))?;
state
.resource_table
.close(rid)
.ok_or_else(bad_resource_id)?;
Ok(())
}
/// Builtin utility to print to stdout/stderr
pub fn op_print(
_state: &mut OpState,
args: (String, bool),
_: (),
) -> Result<(), AnyError> {
let (msg, is_err) = args;
if is_err {
eprint!("{}", msg);
2021-05-03 08:51:32 -04:00
stderr().flush().unwrap();
} else {
print!("{}", msg);
stdout().flush().unwrap();
}
Ok(())
}