Deno Worker

2020-06-24 17:04 更新

Deno 支持 Web Worker API. Worker 能夠用來在多個線程中運行代碼,Worker 的每個實例都會在一個單獨的線程中運行,這個線程專屬于它。 目前,Deno 只支持 module 類型的 worker,因此在創(chuàng)建新的 worker 時必須傳遞 type: "module" 選項。 目前,相對模塊說明符 (Relative module specifiers) 尚不支持。作為代替,您可以用 URL 構(gòu)造函數(shù)和 import.meta.url 來為附近的腳本創(chuàng)建說明符。

// Good
new Worker(new URL("worker.js", import.meta.url).href, { type: "module" });


// Bad
new Worker(new URL("worker.js", import.meta.url).href);
new Worker(new URL("worker.js", import.meta.url).href, { type: "classic" });
new Worker("./worker.js", { type: "module" });

權(quán)限

創(chuàng)建一個新的 Worker 實例的行為與動態(tài)導(dǎo)入類似,因此 Deno 需要適當?shù)臋?quán)限來做這個操作。 對于使用本地模塊的 worker,Deno 需要讀取 (--allow-read) 權(quán)限:

main.ts
new Worker(new URL("worker.ts", import.meta.url).href, { type: "module" });
worker.ts
console.log("hello world");
self.close();
$ deno run main.ts
error: Uncaught PermissionDenied: read access to "./worker.ts", run again with the --allow-read flag


$ deno run --allow-read main.ts
hello world

對于使用遠程模塊的 worker,Deno 需要網(wǎng)絡(luò) (--allow-net) 權(quán)限:

main.ts new Worker("https://example.com/worker.ts", { type: "module" }); worker.ts

console.log("hello world");
self.close();
$ deno run main.ts
error: Uncaught PermissionDenied: net access to "https://example.com/worker.ts", run again with the --allow-net flag




$ deno run --allow-net main.ts
hello world

在 Worker 中使用 Deno

這是一個不穩(wěn)定的 Deno 特性。 更多信息請查閱 穩(wěn)定性 默認情況下,Deno 命名空間在 worker 作用域中不可用。 要想啟用 Deno 命名空間,在創(chuàng)建新的 worker 時傳遞 deno: true 選項:

main.js

const worker = new Worker(new URL("worker.js", import.meta.url).href, {
  type: "module",
  deno: true,
});
worker.postMessage({ filename: "./log.txt" });

worker.js

self.onmessage = async (e) => {
  const { filename } = e.data;
  const text = await Deno.readTextFile(filename);
  console.log(text);
  self.close();
};

log.txt

hello world
$ deno run --allow-read --unstable main.js
hello world

當 Deno 命名空間在 worker 作用域中啟用時,此 worker 繼承創(chuàng)建者的權(quán)限(使用類似 --allow-* 的選項指定的權(quán)限)。 我們計劃提供 worker 權(quán)限的配置方法。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號