blob: f9e4bf800024deafd6e3032405fadc85d0dc705a [file] [log] [blame]
cdumez@apple.come4615f42015-03-17 23:42:46 +00001/*
fpizlo@apple.comf7a5acc2016-11-05 03:02:39 +00002 * Copyright (C) 2006-2016 Apple Inc. All rights reserved.
cdumez@apple.come4615f42015-03-17 23:42:46 +00003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#import "config.h"
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +000027#import "MainThreadSharedTimer.h"
cdumez@apple.come4615f42015-03-17 23:42:46 +000028
cdumez@apple.com3def78e2015-03-25 00:55:11 +000029#include <wtf/AutodrainedPool.h>
30
cdumez@apple.come4615f42015-03-17 23:42:46 +000031#if PLATFORM(MAC)
32#import "PowerObserverMac.h"
33#elif PLATFORM(IOS)
aakash_jain@apple.comb3901542017-02-15 05:19:57 +000034#import "WebCoreThreadInternal.h"
cdumez@apple.come4615f42015-03-17 23:42:46 +000035#import "WebCoreThreadRun.h"
36#endif
37
38namespace WebCore {
39
40static CFRunLoopTimerRef sharedTimer;
cdumez@apple.come4615f42015-03-17 23:42:46 +000041static void timerFired(CFRunLoopTimerRef, void*);
42static void restartSharedTimer();
43
44static const CFTimeInterval kCFTimeIntervalDistantFuture = std::numeric_limits<CFTimeInterval>::max();
45
46#if PLATFORM(IOS)
47static void applicationDidBecomeActive(CFNotificationCenterRef, void*, CFStringRef, const void*, CFDictionaryRef)
48{
49 WebThreadRun(^{
50 restartSharedTimer();
51 });
52}
53#endif
54
55static void setupPowerObserver()
56{
57#if PLATFORM(MAC)
58 static PowerObserver* powerObserver;
59 if (!powerObserver)
cdumez@apple.comddfab7a2017-06-21 22:53:14 +000060 powerObserver = std::make_unique<PowerObserver>(restartSharedTimer).release();
cdumez@apple.come4615f42015-03-17 23:42:46 +000061#elif PLATFORM(IOS)
62 static bool registeredForApplicationNotification = false;
63 if (!registeredForApplicationNotification) {
64 registeredForApplicationNotification = true;
65 CFNotificationCenterRef notificationCenter = CFNotificationCenterGetLocalCenter();
cdumez@apple.com3def78e2015-03-25 00:55:11 +000066 CFNotificationCenterAddObserver(notificationCenter, nullptr, applicationDidBecomeActive, CFSTR("UIApplicationDidBecomeActiveNotification"), nullptr, CFNotificationSuspensionBehaviorCoalesce);
cdumez@apple.come4615f42015-03-17 23:42:46 +000067 }
68#endif
69}
70
cdumez@apple.come4615f42015-03-17 23:42:46 +000071static void timerFired(CFRunLoopTimerRef, void*)
72{
cdumez@apple.com3def78e2015-03-25 00:55:11 +000073 AutodrainedPool pool;
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +000074 MainThreadSharedTimer::singleton().fired();
cdumez@apple.come4615f42015-03-17 23:42:46 +000075}
76
77static void restartSharedTimer()
78{
79 if (!sharedTimer)
80 return;
81
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +000082 MainThreadSharedTimer::singleton().stop();
cdumez@apple.come4615f42015-03-17 23:42:46 +000083 timerFired(0, 0);
84}
85
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +000086void MainThreadSharedTimer::invalidate()
cdumez@apple.come4615f42015-03-17 23:42:46 +000087{
88 if (!sharedTimer)
89 return;
90
91 CFRunLoopTimerInvalidate(sharedTimer);
92 CFRelease(sharedTimer);
93 sharedTimer = nullptr;
94}
95
fpizlo@apple.comf7a5acc2016-11-05 03:02:39 +000096void MainThreadSharedTimer::setFireInterval(Seconds interval)
cdumez@apple.come4615f42015-03-17 23:42:46 +000097{
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +000098 ASSERT(m_firedFunction);
cdumez@apple.come4615f42015-03-17 23:42:46 +000099
fpizlo@apple.comf7a5acc2016-11-05 03:02:39 +0000100 CFAbsoluteTime fireDate = CFAbsoluteTimeGetCurrent() + interval.value();
cdumez@apple.come4615f42015-03-17 23:42:46 +0000101 if (!sharedTimer) {
102 sharedTimer = CFRunLoopTimerCreate(nullptr, fireDate, kCFTimeIntervalDistantFuture, 0, 0, timerFired, nullptr);
cdumez@apple.comd5e8ad22015-03-24 23:10:03 +0000103#if PLATFORM(IOS)
104 CFRunLoopAddTimer(WebThreadRunLoop(), sharedTimer, kCFRunLoopCommonModes);
105#else
cdumez@apple.come4615f42015-03-17 23:42:46 +0000106 CFRunLoopAddTimer(CFRunLoopGetCurrent(), sharedTimer, kCFRunLoopCommonModes);
cdumez@apple.comd5e8ad22015-03-24 23:10:03 +0000107#endif
cdumez@apple.come4615f42015-03-17 23:42:46 +0000108
109 setupPowerObserver();
110
111 return;
112 }
113
114 CFRunLoopTimerSetNextFireDate(sharedTimer, fireDate);
115}
116
carlosgc@webkit.orgf8ef8382015-10-30 13:25:26 +0000117void MainThreadSharedTimer::stop()
cdumez@apple.come4615f42015-03-17 23:42:46 +0000118{
119 if (!sharedTimer)
120 return;
121
122 CFRunLoopTimerSetNextFireDate(sharedTimer, kCFTimeIntervalDistantFuture);
123}
124
125} // namespace WebCore