summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/ShutdownLeaksCollector.jsm
blob: e6cd95831ddf8b4eccf534cabd12bc37b8b19044 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
const { setTimeout } = ChromeUtils.import("resource://gre/modules/Timer.jsm");

var EXPORTED_SYMBOLS = ["ContentCollector"];

// This listens for the message "browser-test:collect-request". When it gets it,
// it runs some GCs and CCs, then prints out a message indicating the collections
// are complete. Mochitest uses this information to determine when windows and
// docshells should be destroyed.

var ContentCollector = {
  init() {
    let processType = Services.appinfo.processType;
    if (processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT) {
      // In the main process, we handle triggering collections in browser-test.js
      return;
    }

    Services.cpmm.addMessageListener("browser-test:collect-request", this);
  },

  receiveMessage(aMessage) {
    switch (aMessage.name) {
      case "browser-test:collect-request":
        Services.obs.notifyObservers(null, "memory-pressure", "heap-minimize");

        Cu.forceGC();
        Cu.forceCC();

        let shutdownCleanup = aCallback => {
          Cu.schedulePreciseShrinkingGC(() => {
            // Run the GC and CC a few times to make sure that as much
            // as possible is freed.
            Cu.forceGC();
            Cu.forceCC();
            aCallback();
          });
        };

        shutdownCleanup(() => {
          setTimeout(() => {
            shutdownCleanup(() => {
              this.finish();
            });
          }, 1000);
        });

        break;
    }
  },

  finish() {
    let pid = Services.appinfo.processID;
    dump("Completed ShutdownLeaks collections in process " + pid + "\n");

    Services.cpmm.removeMessageListener("browser-test:collect-request", this);
  },
};
ContentCollector.init();