summaryrefslogtreecommitdiff
path: root/core/modules.rs
blob: b013b865547cf9660e4f156ba16bc89d179bd466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

// Implementation note: one could imagine combining this module with Isolate to
// provide a more intuitive high-level API. However, due to the complexity
// inherent in asynchronous module loading, we would like the Isolate to remain
// small and simple for users who do not use modules or if they do can load them
// synchronously. The isolate.rs module should never depend on this module.

use crate::isolate::Isolate;
use crate::js_errors::JSError;
use crate::libdeno::deno_mod;
use futures::Async;
use futures::Future;
use futures::Poll;
use std::collections::hash_map::Entry;
use std::collections::HashMap;

pub type SourceCodeFuture<E> = dyn Future<Item = String, Error = E> + Send;

pub trait Loader {
  type Behavior: crate::isolate::Behavior;
  type Error: std::error::Error + 'static;

  /// Returns an absolute URL.
  /// When implementing an spec-complaint VM, this should be exactly the
  /// algorithm described here:
  /// https://html.spec.whatwg.org/multipage/webappapis.html#resolve-a-module-specifier
  fn resolve(specifier: &str, referrer: &str) -> String;

  /// Given an absolute url, load its source code.
  fn load(&mut self, url: &str) -> Box<SourceCodeFuture<Self::Error>>;

  fn isolate_and_modules<'a: 'b + 'c, 'b, 'c>(
    &'a mut self,
  ) -> (&'b mut Isolate<Self::Behavior>, &'c mut Modules);

  fn isolate<'a: 'b, 'b>(&'a mut self) -> &'b mut Isolate<Self::Behavior> {
    let (isolate, _) = self.isolate_and_modules();
    isolate
  }

  fn modules<'a: 'b, 'b>(&'a mut self) -> &'b mut Modules {
    let (_, modules) = self.isolate_and_modules();
    modules
  }
}

// TODO(ry) This is basically the same thing as RustOrJsError. They should be
// combined into one type.
pub enum Either<E> {
  JSError(JSError),
  Other(E),
}

/// This future is used to implement parallel async module loading without
/// complicating the Isolate API.
pub struct RecursiveLoad<'l, L: Loader> {
  loader: &'l mut L,
  pending: HashMap<String, Box<SourceCodeFuture<<L as Loader>::Error>>>,
  root: String,
}

impl<'l, L: Loader> RecursiveLoad<'l, L> {
  /// Starts a new parallel load of the given URL.
  pub fn new(url: &str, loader: &'l mut L) -> Self {
    let root = L::resolve(url, ".");
    let mut recursive_load = Self {
      loader,
      root: root.clone(),
      pending: HashMap::new(),
    };
    recursive_load
      .pending
      .insert(root.clone(), recursive_load.loader.load(&root));
    recursive_load
  }
}

impl<'l, L: Loader> Future for RecursiveLoad<'l, L> {
  type Item = deno_mod;
  type Error = Either<L::Error>;

  fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
    let loader = &mut self.loader;
    let pending = &mut self.pending;
    let root = self.root.as_str();

    // Find all finished futures (those that are ready or that have errored).
    // Turn it into a list of (url, source_code) tuples.
    let mut finished_loads: Vec<(String, String)> = pending
      .iter_mut()
      .filter_map(|(url, fut)| match fut.poll() {
        Ok(Async::NotReady) => None,
        Ok(Async::Ready(source_code)) => Some(Ok((url.clone(), source_code))),
        Err(err) => Some(Err(Either::Other(err))),
      }).collect::<Result<_, _>>()?;

    while !finished_loads.is_empty() {
      // Instantiate and register the loaded modules, and discover new imports.
      // Build a list of (parent_url, Vec<child_url>) tuples.
      let parent_and_child_urls: Vec<(&str, Vec<String>)> = finished_loads
        .iter()
        .map(|(url, source_code)| {
          // Instantiate and register the module.
          let mod_id = loader
            .isolate()
            .mod_new(url == root, &url, &source_code)
            .map_err(Either::JSError)?;
          loader.modules().register(mod_id, &url);

          // Find child modules imported by the newly registered module.
          // Resolve all child import specifiers to URLs. Register all
          // imports as a children; however any modules that are already
          // known to the modules registry won't be stored in `child_urls`.
          let child_urls: Vec<String> = loader
            .isolate()
            .mod_get_imports(mod_id)
            .into_iter()
            .map(|specifier| L::resolve(&specifier, &url))
            .filter(|child_url| !loader.modules().add_child(mod_id, &child_url))
            .collect();
          Ok((url.as_str(), child_urls))
        }).collect::<Result<_, _>>()?;

      // Make updates to the `pending` hash map. If we find any more finished
      // futures, we'll loop and process `finished_loads` again.
      finished_loads = parent_and_child_urls
        .into_iter()
        .flat_map(|(url, child_urls)| {
          // Remove the parent module url that is done loading from `pending`.
          pending.remove(url);

          // Look for newly discovered child module imports.
          child_urls
            .into_iter()
            .filter_map(|child_url| {
              // If the url isn't present in the pending load table, create a
              // load future and associate it with the url in the hash map.
              match pending.entry(child_url.clone()) {
                Entry::Occupied(_) => None,
                Entry::Vacant(entry) => {
                  Some(entry.insert(Box::new(loader.load(&child_url))).poll())
                }
              }
              // Immediately poll any newly created futures and gather the
              // ones that are immediately ready or errored.
              .and_then(|poll_result| match poll_result {
                Ok(Async::NotReady) => None,
                Ok(Async::Ready(source_code)) => {
                  Some(Ok((child_url.clone(), source_code)))
                }
                Err(err) => Some(Err(Either::Other(err))),
              })
            }).collect::<Vec<_>>()
        }).collect::<Result<_, _>>()?;
    }

    if !self.pending.is_empty() {
      return Ok(Async::NotReady);
    }

    let (isolate, modules) = loader.isolate_and_modules();
    let root_id = modules.get_id(root).unwrap();
    let mut resolve = |specifier: &str, referrer_id: deno_mod| -> deno_mod {
      let referrer = modules.get_name(referrer_id).unwrap();
      let url = L::resolve(specifier, referrer);
      match modules.get_id(&url) {
        Some(id) => id,
        None => 0,
      }
    };
    isolate
      .mod_instantiate(root_id, &mut resolve)
      .map_err(Either::JSError)?;

    Ok(Async::Ready(root_id))
  }
}

struct ModuleInfo {
  name: String,
  children: Vec<String>,
}

impl ModuleInfo {
  fn has_child(&self, child_name: &str) -> bool {
    for c in self.children.iter() {
      if c == child_name {
        return true;
      }
    }
    false
  }
}

/// A collection of JS modules.
#[derive(Default)]
pub struct Modules {
  info: HashMap<deno_mod, ModuleInfo>,
  by_name: HashMap<String, deno_mod>,
}

impl Modules {
  pub fn new() -> Modules {
    Self {
      info: HashMap::new(),
      by_name: HashMap::new(),
    }
  }

  pub fn get_id(&self, name: &str) -> Option<deno_mod> {
    self.by_name.get(name).cloned()
  }

  pub fn get_children(&self, id: deno_mod) -> Option<&Vec<String>> {
    self.info.get(&id).map(|i| &i.children)
  }

  pub fn get_children2(&self, name: &str) -> Option<&Vec<String>> {
    self.get_id(name).and_then(|id| self.get_children(id))
  }

  pub fn get_name(&self, id: deno_mod) -> Option<&str> {
    self.info.get(&id).map(|i| i.name.as_str())
  }

  pub fn is_registered(&self, name: &str) -> bool {
    self.by_name.get(name).is_some()
  }

  // Returns true if the child name is a registered module, false otherwise.
  pub fn add_child(&mut self, parent_id: deno_mod, child_name: &str) -> bool {
    let parent = self.info.get_mut(&parent_id).unwrap();
    if !parent.has_child(&child_name) {
      parent.children.push(child_name.to_string());
    }
    self.is_registered(child_name)
  }

  pub fn register(&mut self, id: deno_mod, name: &str) {
    let name = String::from(name);
    debug!("register_complete {}", name);

    let _r = self.by_name.insert(name.clone(), id);
    // TODO should this be an assert or not ? assert!(r.is_none());

    self.info.insert(
      id,
      ModuleInfo {
        name,
        children: Vec::new(),
      },
    );
  }
}

#[cfg(test)]
mod tests {
  use super::*;
  use crate::isolate::js_check;
  use crate::isolate::tests::*;

  struct MockLoader {
    pub loads: Vec<String>,
    pub isolate: Isolate<TestBehavior>,
    pub modules: Modules,
  }

  impl MockLoader {
    fn new() -> Self {
      let modules = Modules::new();
      let isolate = TestBehavior::setup(TestBehaviorMode::AsyncImmediate);
      Self {
        loads: Vec::new(),
        isolate,
        modules,
      }
    }
  }

  impl Loader for MockLoader {
    type Behavior = TestBehavior;
    type Error = std::io::Error;

    fn resolve(specifier: &str, _referrer: &str) -> String {
      specifier.to_string()
    }

    fn load(&mut self, url: &str) -> Box<SourceCodeFuture<Self::Error>> {
      use std::io::{Error, ErrorKind};
      self.loads.push(url.to_string());
      let result = match url {
        "a.js" => Ok(A_SRC),
        "b.js" => Ok(B_SRC),
        "c.js" => Ok(C_SRC),
        "d.js" => Ok(D_SRC),
        "circular1.js" => Ok(CIRCULAR1_SRC),
        "circular2.js" => Ok(CIRCULAR2_SRC),
        _ => Err(Error::new(ErrorKind::Other, "oh no!")),
      };
      let result = result.map(|src| src.to_string());
      Box::new(futures::future::result(result))
    }

    fn isolate_and_modules<'a: 'b + 'c, 'b, 'c>(
      &'a mut self,
    ) -> (&'b mut Isolate<Self::Behavior>, &'c mut Modules) {
      (&mut self.isolate, &mut self.modules)
    }
  }

  const A_SRC: &str = r#"
    import { b } from "b.js";
    import { c } from "c.js";
    if (b() != 'b') throw Error();
    if (c() != 'c') throw Error();
    if (!import.meta.main) throw Error();
    if (import.meta.url != 'a.js') throw Error();
  "#;

  const B_SRC: &str = r#"
    import { c } from "c.js";
    if (c() != 'c') throw Error();
    export function b() { return 'b'; }
    if (import.meta.main) throw Error();
    if (import.meta.url != 'b.js') throw Error();
  "#;

  const C_SRC: &str = r#"
    import { d } from "d.js";
    export function c() { return 'c'; }
    if (d() != 'd') throw Error();
    if (import.meta.main) throw Error();
    if (import.meta.url != 'c.js') throw Error();
  "#;

  const D_SRC: &str = r#"
    export function d() { return 'd'; }
    if (import.meta.main) throw Error();
    if (import.meta.url != 'd.js') throw Error();
  "#;

  #[test]
  fn test_recursive_load() {
    let mut loader = MockLoader::new();
    let mut recursive_load = RecursiveLoad::new("a.js", &mut loader);

    let result = recursive_load.poll();
    assert!(result.is_ok());
    if let Async::Ready(a_id) = result.ok().unwrap() {
      js_check(loader.isolate.mod_evaluate(a_id));
      assert_eq!(loader.loads, vec!["a.js", "b.js", "c.js", "d.js"]);

      let modules = &loader.modules;

      assert_eq!(modules.get_id("a.js"), Some(a_id));
      let b_id = modules.get_id("b.js").unwrap();
      let c_id = modules.get_id("c.js").unwrap();
      let d_id = modules.get_id("d.js").unwrap();

      assert_eq!(
        modules.get_children(a_id),
        Some(&vec!["b.js".to_string(), "c.js".to_string()])
      );
      assert_eq!(modules.get_children(b_id), Some(&vec!["c.js".to_string()]));
      assert_eq!(modules.get_children(c_id), Some(&vec!["d.js".to_string()]));
      assert_eq!(modules.get_children(d_id), Some(&vec![]));
    } else {
      panic!("Future should be ready")
    }
  }

  const CIRCULAR1_SRC: &str = r#"
    import "circular2.js";
    Deno.core.print("circular1");
  "#;

  const CIRCULAR2_SRC: &str = r#"
    import "circular1.js";
    Deno.core.print("circular2");
  "#;

  #[test]
  fn test_circular_load() {
    let mut loader = MockLoader::new();
    let mut recursive_load = RecursiveLoad::new("circular1.js", &mut loader);

    let result = recursive_load.poll();
    assert!(result.is_ok());
    if let Async::Ready(circular1_id) = result.ok().unwrap() {
      js_check(loader.isolate.mod_evaluate(circular1_id));
      assert_eq!(loader.loads, vec!["circular1.js", "circular2.js"]);

      let modules = &loader.modules;

      assert_eq!(modules.get_id("circular1.js"), Some(circular1_id));
      let circular2_id = modules.get_id("circular2.js").unwrap();

      assert_eq!(
        modules.get_children(circular1_id),
        Some(&vec!["circular2.js".to_string()])
      );

      assert_eq!(
        modules.get_children(circular2_id),
        Some(&vec!["circular1.js".to_string()])
      );
    } else {
      panic!("Future should be ready")
    }
  }
}