summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/activity/ActivityManager.jsm
blob: c808cb33542a229f6c3276a48c03987fb2f8fdc7 (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
/* -*- Mode: JavaScript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

var EXPORTED_SYMBOLS = ["ActivityManager"];

function ActivityManager() {}

ActivityManager.prototype = {
  log: console.createInstance({
    prefix: "mail.activity",
    maxLogLevel: "Warn",
    maxLogLevelPref: "mail.activity.loglevel",
  }),
  _listeners: [],
  _processCount: 0,
  _db: null,
  _idCounter: 1,
  _activities: new Map(),

  get processCount() {
    let count = 0;
    for (let value of this._activities.values()) {
      if (value instanceof Ci.nsIActivityProcess) {
        count++;
      }
    }

    return count;
  },

  getProcessesByContext(aContextType, aContextObj) {
    let list = [];
    for (let activity of this._activities.values()) {
      if (
        activity instanceof Ci.nsIActivityProcess &&
        activity.contextType == aContextType &&
        activity.contextObj == aContextObj
      ) {
        list.push(activity);
      }
    }
    return list;
  },

  get db() {
    return null;
  },

  get nextId() {
    return this._idCounter++;
  },

  addActivity(aActivity) {
    try {
      this.log.info("adding Activity");
      // get the next valid id for this activity
      let id = this.nextId;
      aActivity.id = id;

      // add activity into the activities table
      this._activities.set(id, aActivity);
      // notify all the listeners
      for (let value of this._listeners) {
        try {
          value.onAddedActivity(id, aActivity);
        } catch (e) {
          this.log.error("Exception calling onAddedActivity" + e);
        }
      }
      return id;
    } catch (e) {
      // for some reason exceptions don't end up on the console if we don't
      // explicitly log them.
      this.log.error("Exception: " + e);
      throw e;
    }
  },

  removeActivity(aID) {
    let activity = this.getActivity(aID);
    if (!activity) {
      return; // Nothing to remove.
    }

    // make sure that the activity is not in-progress state
    if (
      activity instanceof Ci.nsIActivityProcess &&
      activity.state == Ci.nsIActivityProcess.STATE_INPROGRESS
    ) {
      throw Components.Exception(`Activity in progress`, Cr.NS_ERROR_FAILURE);
    }

    // remove the activity
    this._activities.delete(aID);

    // notify all the listeners
    for (let value of this._listeners) {
      try {
        value.onRemovedActivity(aID);
      } catch (e) {
        // ignore the exception
      }
    }
  },

  cleanUp() {
    // Get the list of aIDs.
    this.log.info("cleanUp\n");
    for (let [id, activity] of this._activities) {
      if (activity instanceof Ci.nsIActivityProcess) {
        // Note: The .state property will return undefined if you aren't in
        //       this if-instanceof block.
        let state = activity.state;
        if (
          state != Ci.nsIActivityProcess.STATE_INPROGRESS &&
          state != Ci.nsIActivityProcess.STATE_PAUSED &&
          state != Ci.nsIActivityProcess.STATE_WAITINGFORINPUT &&
          state != Ci.nsIActivityProcess.STATE_WAITINGFORRETRY
        ) {
          this.removeActivity(id);
        }
      } else {
        this.removeActivity(id);
      }
    }
  },

  getActivity(aID) {
    return this._activities.get(aID);
  },

  containsActivity(aID) {
    return this._activities.has(aID);
  },

  getActivities() {
    return [...this._activities.values()];
  },

  addListener(aListener) {
    this.log.info("addListener\n");
    this._listeners.push(aListener);
  },

  removeListener(aListener) {
    this.log.info("removeListener\n");
    for (let i = 0; i < this._listeners.length; i++) {
      if (this._listeners[i] == aListener) {
        this._listeners.splice(i, 1);
      }
    }
  },

  QueryInterface: ChromeUtils.generateQI(["nsIActivityManager"]),
};