Skip to content

Commit f1a732a

Browse files
committed
Remove flawed Runtime::options
1 parent d751c94 commit f1a732a

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

src/inner_runtime.rs

+9-13
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ impl Default for RuntimeOptions {
131131
pub struct InnerRuntime {
132132
pub module_loader: Rc<RustyLoader>,
133133
pub deno_runtime: JsRuntime,
134-
pub options: RuntimeOptions,
134+
135+
pub default_entrypoint: Option<String>,
135136
}
136137
impl InnerRuntime {
137138
pub fn new(options: RuntimeOptions) -> Result<Self, Error> {
@@ -156,7 +157,7 @@ impl InnerRuntime {
156157

157158
source_map_getter: Some(module_loader.clone()),
158159
create_params: options.isolate_params,
159-
shared_array_buffer_store: options.shared_array_buffer_store,
160+
shared_array_buffer_store: options.shared_array_buffer_store.clone(),
160161

161162
startup_snapshot: options.startup_snapshot,
162163
extensions,
@@ -167,11 +168,8 @@ impl InnerRuntime {
167168
Ok(Self {
168169
deno_runtime,
169170
module_loader,
170-
options: RuntimeOptions {
171-
timeout: options.timeout,
172-
default_entrypoint: options.default_entrypoint,
173-
..Default::default()
174-
},
171+
172+
default_entrypoint: options.default_entrypoint,
175173
})
176174
}
177175

@@ -470,8 +468,9 @@ impl InnerRuntime {
470468
pub fn get_module_entrypoint(
471469
&mut self,
472470
module_context: &mut ModuleHandle,
473-
default: Option<&str>,
474471
) -> Result<Option<v8::Global<v8::Function>>, Error> {
472+
let default = self.default_entrypoint.clone();
473+
475474
// Try to get an entrypoint from a call to `rustyscript.register_entrypoint` first
476475
let state = self.deno_runtime.op_state();
477476
let mut deep_state = state.try_borrow_mut()?;
@@ -492,7 +491,7 @@ impl InnerRuntime {
492491
}
493492

494493
// Try to get an entrypoint from the default entrypoint
495-
if let Some(default) = default {
494+
if let Some(default) = default.as_deref() {
496495
if let Ok(f) = self.get_function_by_name(Some(module_context), default) {
497496
return Ok(Some(f));
498497
}
@@ -512,8 +511,6 @@ impl InnerRuntime {
512511
main_module: Option<&Module>,
513512
side_modules: Vec<&Module>,
514513
) -> Result<ModuleHandle, Error> {
515-
let default_entrypoint = self.options.default_entrypoint.clone();
516-
517514
if main_module.is_none() && side_modules.is_empty() {
518515
return Err(Error::Runtime(
519516
"Internal error: attempt to load no modules".to_string(),
@@ -579,8 +576,7 @@ impl InnerRuntime {
579576
}
580577

581578
// Try to get the default entrypoint
582-
let entrypoint =
583-
self.get_module_entrypoint(&mut module_handle_stub, default_entrypoint.as_deref())?;
579+
let entrypoint = self.get_module_entrypoint(&mut module_handle_stub)?;
584580

585581
Ok(ModuleHandle::new(
586582
module_handle_stub.module(),

src/runtime.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ pub type Undefined = crate::js_value::Value;
2929
pub struct Runtime {
3030
inner: InnerRuntime,
3131
tokio: Rc<tokio::runtime::Runtime>,
32+
timeout: std::time::Duration,
3233
}
3334

3435
impl Runtime {
@@ -92,6 +93,7 @@ impl Runtime {
9293
tokio: Rc<tokio::runtime::Runtime>,
9394
) -> Result<Self, Error> {
9495
Ok(Self {
96+
timeout: options.timeout,
9597
inner: InnerRuntime::new(options)?,
9698
tokio,
9799
})
@@ -108,13 +110,10 @@ impl Runtime {
108110
self.tokio.clone()
109111
}
110112

111-
/// Access the options used to create this runtime
112-
///
113-
/// Warning: Not all options can be accessed in this way
114-
/// Extensions, for example, are consumed during runtime creation
113+
/// Returns the timeout for the runtime
115114
#[must_use]
116-
pub fn options(&self) -> &RuntimeOptions {
117-
&self.inner.options
115+
pub fn timeout(&self) -> std::time::Duration {
116+
self.timeout
118117
}
119118

120119
/// Destroy the v8 runtime, releasing all resources
@@ -1053,7 +1052,7 @@ impl Runtime {
10531052
U: std::future::Future<Output = Result<T, Error>>,
10541053
F: FnOnce(&'a mut Runtime) -> U,
10551054
{
1056-
let timeout = self.options().timeout;
1055+
let timeout = self.timeout();
10571056
let rt = self.tokio_runtime();
10581057
rt.block_on(async move { tokio::time::timeout(timeout, f(self)).await })?
10591058
}

0 commit comments

Comments
 (0)