cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 1 | /* |
fpizlo@apple.com | f7a5acc | 2016-11-05 03:02:39 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006-2016 Apple Inc. All rights reserved. |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 3 | * |
| 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.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 27 | #import "MainThreadSharedTimer.h" |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 28 | |
cdumez@apple.com | 3def78e | 2015-03-25 00:55:11 +0000 | [diff] [blame] | 29 | #include <wtf/AutodrainedPool.h> |
| 30 | |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 31 | #if PLATFORM(MAC) |
| 32 | #import "PowerObserverMac.h" |
| 33 | #elif PLATFORM(IOS) |
aakash_jain@apple.com | b390154 | 2017-02-15 05:19:57 +0000 | [diff] [blame] | 34 | #import "WebCoreThreadInternal.h" |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 35 | #import "WebCoreThreadRun.h" |
| 36 | #endif |
| 37 | |
| 38 | namespace WebCore { |
| 39 | |
| 40 | static CFRunLoopTimerRef sharedTimer; |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 41 | static void timerFired(CFRunLoopTimerRef, void*); |
| 42 | static void restartSharedTimer(); |
| 43 | |
| 44 | static const CFTimeInterval kCFTimeIntervalDistantFuture = std::numeric_limits<CFTimeInterval>::max(); |
| 45 | |
| 46 | #if PLATFORM(IOS) |
| 47 | static void applicationDidBecomeActive(CFNotificationCenterRef, void*, CFStringRef, const void*, CFDictionaryRef) |
| 48 | { |
| 49 | WebThreadRun(^{ |
| 50 | restartSharedTimer(); |
| 51 | }); |
| 52 | } |
| 53 | #endif |
| 54 | |
| 55 | static void setupPowerObserver() |
| 56 | { |
| 57 | #if PLATFORM(MAC) |
| 58 | static PowerObserver* powerObserver; |
| 59 | if (!powerObserver) |
cdumez@apple.com | ddfab7a | 2017-06-21 22:53:14 +0000 | [diff] [blame] | 60 | powerObserver = std::make_unique<PowerObserver>(restartSharedTimer).release(); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 61 | #elif PLATFORM(IOS) |
| 62 | static bool registeredForApplicationNotification = false; |
| 63 | if (!registeredForApplicationNotification) { |
| 64 | registeredForApplicationNotification = true; |
| 65 | CFNotificationCenterRef notificationCenter = CFNotificationCenterGetLocalCenter(); |
cdumez@apple.com | 3def78e | 2015-03-25 00:55:11 +0000 | [diff] [blame] | 66 | CFNotificationCenterAddObserver(notificationCenter, nullptr, applicationDidBecomeActive, CFSTR("UIApplicationDidBecomeActiveNotification"), nullptr, CFNotificationSuspensionBehaviorCoalesce); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 67 | } |
| 68 | #endif |
| 69 | } |
| 70 | |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 71 | static void timerFired(CFRunLoopTimerRef, void*) |
| 72 | { |
cdumez@apple.com | 3def78e | 2015-03-25 00:55:11 +0000 | [diff] [blame] | 73 | AutodrainedPool pool; |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 74 | MainThreadSharedTimer::singleton().fired(); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static void restartSharedTimer() |
| 78 | { |
| 79 | if (!sharedTimer) |
| 80 | return; |
| 81 | |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 82 | MainThreadSharedTimer::singleton().stop(); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 83 | timerFired(0, 0); |
| 84 | } |
| 85 | |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 86 | void MainThreadSharedTimer::invalidate() |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 87 | { |
| 88 | if (!sharedTimer) |
| 89 | return; |
| 90 | |
| 91 | CFRunLoopTimerInvalidate(sharedTimer); |
| 92 | CFRelease(sharedTimer); |
| 93 | sharedTimer = nullptr; |
| 94 | } |
| 95 | |
fpizlo@apple.com | f7a5acc | 2016-11-05 03:02:39 +0000 | [diff] [blame] | 96 | void MainThreadSharedTimer::setFireInterval(Seconds interval) |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 97 | { |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 98 | ASSERT(m_firedFunction); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 99 | |
fpizlo@apple.com | f7a5acc | 2016-11-05 03:02:39 +0000 | [diff] [blame] | 100 | CFAbsoluteTime fireDate = CFAbsoluteTimeGetCurrent() + interval.value(); |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 101 | if (!sharedTimer) { |
| 102 | sharedTimer = CFRunLoopTimerCreate(nullptr, fireDate, kCFTimeIntervalDistantFuture, 0, 0, timerFired, nullptr); |
cdumez@apple.com | d5e8ad2 | 2015-03-24 23:10:03 +0000 | [diff] [blame] | 103 | #if PLATFORM(IOS) |
| 104 | CFRunLoopAddTimer(WebThreadRunLoop(), sharedTimer, kCFRunLoopCommonModes); |
| 105 | #else |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 106 | CFRunLoopAddTimer(CFRunLoopGetCurrent(), sharedTimer, kCFRunLoopCommonModes); |
cdumez@apple.com | d5e8ad2 | 2015-03-24 23:10:03 +0000 | [diff] [blame] | 107 | #endif |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 108 | |
| 109 | setupPowerObserver(); |
| 110 | |
| 111 | return; |
| 112 | } |
| 113 | |
| 114 | CFRunLoopTimerSetNextFireDate(sharedTimer, fireDate); |
| 115 | } |
| 116 | |
carlosgc@webkit.org | f8ef838 | 2015-10-30 13:25:26 +0000 | [diff] [blame] | 117 | void MainThreadSharedTimer::stop() |
cdumez@apple.com | e4615f4 | 2015-03-17 23:42:46 +0000 | [diff] [blame] | 118 | { |
| 119 | if (!sharedTimer) |
| 120 | return; |
| 121 | |
| 122 | CFRunLoopTimerSetNextFireDate(sharedTimer, kCFTimeIntervalDistantFuture); |
| 123 | } |
| 124 | |
| 125 | } // namespace WebCore |