Bug 1627646 - Avoid creating a Port object when there are no listeners r=mixedpuppy
[gecko.git] / widget / nsIdleService.h
blob5a9b040bc1fa576a40f3fcc6cd2d577f97df242d
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=2:tabstop=2:
3 */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef nsIdleService_h__
9 #define nsIdleService_h__
11 #include "nsIIdleServiceInternal.h"
12 #include "nsCOMPtr.h"
13 #include "nsITimer.h"
14 #include "nsTArray.h"
15 #include "nsIObserver.h"
16 #include "nsIIdleService.h"
17 #include "nsCategoryCache.h"
18 #include "nsWeakReference.h"
19 #include "mozilla/TimeStamp.h"
21 /**
22 * Class we can use to store an observer with its associated idle time
23 * requirement and whether or not the observer thinks it's "idle".
25 class IdleListener {
26 public:
27 nsCOMPtr<nsIObserver> observer;
28 uint32_t reqIdleTime;
29 bool isIdle;
31 IdleListener(nsIObserver* obs, uint32_t reqIT, bool aIsIdle = false)
32 : observer(obs), reqIdleTime(reqIT), isIdle(aIsIdle) {}
33 ~IdleListener() = default;
36 // This one will be declared later.
37 class nsIdleService;
39 /**
40 * Class to handle the daily idle timer.
42 class nsIdleServiceDaily : public nsIObserver, public nsSupportsWeakReference {
43 public:
44 NS_DECL_ISUPPORTS
45 NS_DECL_NSIOBSERVER
47 explicit nsIdleServiceDaily(nsIIdleService* aIdleService);
49 /**
50 * Initializes the daily idle observer.
51 * Keep this separated from the constructor, since it could cause pointer
52 * corruption due to AddRef/Release of "this".
54 void Init();
56 private:
57 virtual ~nsIdleServiceDaily();
59 /**
60 * StageIdleDaily is the interim call made when an idle-daily event is due.
61 * However we don't want to fire idle-daily until the user is idle for this
62 * session, so this sets up a short wait for an idle event which triggers
63 * the actual idle-daily event.
65 * @param aHasBeenLongWait Pass true indicating nsIdleServiceDaily is having
66 * trouble getting the idle-daily event fired. If true StageIdleDaily will
67 * use a shorter idle wait time before firing idle-daily.
69 void StageIdleDaily(bool aHasBeenLongWait);
71 /**
72 * @note This is a normal pointer, part to avoid creating a cycle with the
73 * idle service, part to avoid potential pointer corruption due to this class
74 * being instantiated in the constructor of the service itself.
76 nsIIdleService* mIdleService;
78 /**
79 * Place to hold the timer used by this class to determine when a day has
80 * passed, after that it will wait for idle time to be detected.
82 nsCOMPtr<nsITimer> mTimer;
84 /**
85 * Function that is called back once a day.
87 static void DailyCallback(nsITimer* aTimer, void* aClosure);
89 /**
90 * Cache of observers for the "idle-daily" category.
92 nsCategoryCache<nsIObserver> mCategoryObservers;
94 /**
95 * Boolean set to true when daily idle notifications should be disabled.
97 bool mShutdownInProgress;
99 /**
100 * Next time we expect an idle-daily timer to fire, in case timers aren't
101 * very reliable on the platform. Value is in PR_Now microsecond units.
103 PRTime mExpectedTriggerTime;
106 * Tracks which idle daily observer callback we ask for. There are two: a
107 * regular long idle wait and a shorter wait if we've been waiting to fire
108 * idle daily for an extended period. Set by StageIdleDaily.
110 int32_t mIdleDailyTriggerWait;
113 class nsIdleService : public nsIIdleServiceInternal {
114 public:
115 NS_DECL_ISUPPORTS
116 NS_DECL_NSIIDLESERVICE
117 NS_DECL_NSIIDLESERVICEINTERNAL
119 protected:
120 static already_AddRefed<nsIdleService> GetInstance();
122 nsIdleService();
123 virtual ~nsIdleService();
126 * If there is a platform specific function to poll the system idel time
127 * then that must be returned in this function, and the function MUST return
128 * true, otherwise then the function should be left unimplemented or made
129 * to return false (this can also be used for systems where it depends on
130 * the configuration of the system if the idle time can be determined)
132 * @param aIdleTime
133 * The idle time in ms.
135 * @return true if the idle time could be polled, false otherwise.
137 * @note The time returned by this function can be different than the one
138 * returned by GetIdleTime, as that is corrected by any calls to
139 * ResetIdleTimeOut(), unless you overwrite that function too...
141 virtual bool PollIdleTime(uint32_t* aIdleTime);
144 * Function that determines if we are in poll mode or not.
146 * @return true if polling is supported, false otherwise.
148 virtual bool UsePollMode();
150 private:
152 * Ensure that the timer is expiring at least at the given time
154 * The function might not restart the timer if there is one running currently
156 * @param aNextTimeout
157 * The last absolute time the timer should expire
159 void SetTimerExpiryIfBefore(mozilla::TimeStamp aNextTimeout);
162 * Stores the next timeout time, 0 means timer not running
164 mozilla::TimeStamp mCurrentlySetToTimeoutAt;
167 * mTimer holds the internal timer used by this class to detect when to poll
168 * for idle time, when to check if idle timers should expire etc.
170 nsCOMPtr<nsITimer> mTimer;
173 * Array of listeners that wants to be notified about idle time.
175 nsTArray<IdleListener> mArrayListeners;
178 * Object keeping track of the daily idle thingy.
180 RefPtr<nsIdleServiceDaily> mDailyIdle;
183 * Number of observers currently in idle mode.
185 uint32_t mIdleObserverCount;
188 * Delta time from last non idle time to when the next observer should switch
189 * to idle mode
191 * Time in seconds
193 * If this value is 0 it means there are no active observers
195 uint32_t mDeltaToNextIdleSwitchInS;
198 * If true, the idle service is temporarily disabled, and all idle events
199 * will be ignored.
201 bool mDisabled = false;
204 * Absolute value for when the last user interaction took place.
206 mozilla::TimeStamp mLastUserInteraction;
209 * Function that ensures the timer is running with at least the minimum time
210 * needed. It will kill the timer if there are no active observers.
212 void ReconfigureTimer(void);
215 * Callback function that is called when the internal timer expires.
217 * This in turn calls the IdleTimerCallback that does the real processing
219 static void StaticIdleTimerCallback(nsITimer* aTimer, void* aClosure);
222 * Function that handles when a timer has expired
224 void IdleTimerCallback(void);
227 #endif // nsIdleService_h__