2 * Copyright (c) 2017 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
26 #import "SFAnalyticsMultiSampler+Internal.h"
27 #import "SFAnalytics+Internal.h"
28 #import "SFAnalyticsDefines.h"
29 #import "utilities/debugging.h"
31 #include <dispatch/dispatch.h>
33 @implementation SFAnalyticsMultiSampler {
34 NSTimeInterval _samplingInterval;
35 dispatch_source_t _timer;
37 MultiSamplerDictionary (^_block)(void);
38 int _notificationToken;
44 @synthesize name = _name;
45 @synthesize samplingInterval = _samplingInterval;
46 @synthesize oncePerReport = _oncePerReport;
48 - (instancetype)initWithName:(NSString*)name interval:(NSTimeInterval)interval block:(MultiSamplerDictionary (^)(void))block clientClass:(Class)clientClass
50 if (self = [super init]) {
51 if (![clientClass isSubclassOfClass:[SFAnalytics class]]) {
52 secerror("SFAnalyticsSampler created without valid client class (%@)", clientClass);
56 if (!name || (interval < 1.0f && interval != SFAnalyticsSamplerIntervalOncePerReport) || !block) {
57 secerror("SFAnalyticsSampler created without proper data");
61 _clientClass = clientClass;
64 _samplingInterval = interval;
76 _oncePerReport = (_samplingInterval == SFAnalyticsSamplerIntervalOncePerReport);
78 [self setupOnceTimer];
80 [self setupPeriodicTimer];
84 - (void)setupOnceTimer
86 __weak __typeof(self) weakSelf = self;
87 notify_register_dispatch(SFAnalyticsFireSamplersNotification, &_notificationToken, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(int token) {
88 __strong __typeof(self) strongSelf = weakSelf;
90 secnotice("SFAnalyticsSampler", "sampler went away before we could run its once-per-report block");
95 MultiSamplerDictionary data = strongSelf->_block();
96 [data enumerateKeysAndObjectsUsingBlock:^(NSString * _Nonnull key, NSNumber * _Nonnull obj, BOOL * _Nonnull stop) {
97 [[strongSelf->_clientClass logger] logMetric:obj withName:key oncePerReport:strongSelf->_oncePerReport];
103 - (void)setupPeriodicTimer
105 _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0));
106 dispatch_source_set_timer(_timer, dispatch_walltime(0, _samplingInterval * NSEC_PER_SEC), _samplingInterval * NSEC_PER_SEC, _samplingInterval * NSEC_PER_SEC / 50.0); // give 2% leeway on timer
108 __weak __typeof(self) weakSelf = self;
109 dispatch_source_set_event_handler(_timer, ^{
110 __strong __typeof(self) strongSelf = weakSelf;
112 secnotice("SFAnalyticsSampler", "sampler went away before we could run its once-per-report block");
116 MultiSamplerDictionary data = strongSelf->_block();
117 [data enumerateKeysAndObjectsUsingBlock:^(NSString * _Nonnull key, NSNumber * _Nonnull obj, BOOL * _Nonnull stop) {
118 [[strongSelf->_clientClass logger] logMetric:obj withName:key oncePerReport:strongSelf->_oncePerReport];
121 dispatch_resume(_timer);
126 - (void)setSamplingInterval:(NSTimeInterval)interval
128 if (interval < 1.0f && !(interval == SFAnalyticsSamplerIntervalOncePerReport)) {
129 secerror("SFAnalyticsSampler: interval %f is not supported", interval);
133 _samplingInterval = interval;
137 - (NSTimeInterval)samplingInterval {
138 return _samplingInterval;
141 - (MultiSamplerDictionary)sampleNow
143 MultiSamplerDictionary data = _block();
144 [data enumerateKeysAndObjectsUsingBlock:^(NSString * _Nonnull key, NSNumber * _Nonnull obj, BOOL * _Nonnull stop) {
145 [[self->_clientClass logger] logMetric:obj withName:key oncePerReport:self->_oncePerReport];
150 - (void)pauseSampling
156 if (_oncePerReport) {
157 notify_cancel(_notificationToken);
158 _notificationToken = 0;
160 dispatch_source_cancel(_timer);
165 - (void)resumeSampling
172 [self pauseSampling];