summaryrefslogtreecommitdiffstats
path: root/dom/quota/test/modules/system/worker/Utils.js
blob: ca9b54a92aa3ec81bd87bb081707a96067f6e293 (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
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

let UtilsChild;

async function ensureUtilsChild() {
  if (UtilsChild) {
    return;
  }

  try {
    const { UtilsChild: importedUtilsChild } = await import(
      "/dom/quota/test/modules/worker/UtilsChild.js"
    );

    UtilsChild = importedUtilsChild;

    throw Error("Please switch to dynamic module import");
  } catch (e) {
    if (e.message == "Please switch to dynamic module import") {
      throw e;
    }

    importScripts("/dom/quota/test/modules/worker/UtilsChild.js");

    const { UtilsChild: importedUtilsChild } = globalThis.importUtilsChild();

    UtilsChild = importedUtilsChild;
  }
}

const Utils = {
  async getCachedOriginUsage() {
    await ensureUtilsChild();

    const result = await UtilsChild.getCachedOriginUsage();
    return result;
  },

  async shrinkStorageSize(size) {
    await ensureUtilsChild();

    const result = await UtilsChild.shrinkStorageSize(size);
    return result;
  },

  async restoreStorageSize() {
    await ensureUtilsChild();

    const result = await UtilsChild.restoreStorageSize();
    return result;
  },
};