@@ -5,7 +5,7 @@ import os
5
5
private let log = OSLog ( subsystem: " io.github.mjm.Relay " , category: " garbage-collection " )
6
6
7
7
#if swift(>=5.3)
8
- @available ( iOS 14 . 0 , * )
8
+ @available ( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * )
9
9
private let logger = Logger ( log)
10
10
#endif
11
11
@@ -49,7 +49,7 @@ class GarbageCollector {
49
49
}
50
50
51
51
#if swift(>=5.3)
52
- if #available( iOS 14 . 0 , * ) {
52
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
53
53
logger. info ( " GC Release: \( operation. request. node. params. name, privacy: . public) , variables: \( operation. request. variables) " )
54
54
}
55
55
#endif
@@ -65,7 +65,7 @@ class GarbageCollector {
65
65
}
66
66
67
67
#if swift(>=5.3)
68
- if #available( iOS 14 . 0 , * ) {
68
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
69
69
logger. info ( " GC Retain: \( operation. request. node. params. name, privacy: . public) , variables: \( operation. request. variables) " )
70
70
}
71
71
#endif
@@ -108,7 +108,7 @@ class GarbageCollector {
108
108
holdCounter += 1
109
109
110
110
#if swift(>=5.3)
111
- if #available( iOS 14 . 0 , * ) {
111
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
112
112
let holdCounter = self . holdCounter
113
113
logger. info ( " GC Pause (hold counter: \( holdCounter) " )
114
114
}
@@ -120,7 +120,7 @@ class GarbageCollector {
120
120
self . holdCounter -= 1
121
121
122
122
#if swift(>=5.3)
123
- if #available( iOS 14 . 0 , * ) {
123
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
124
124
let holdCounter = self . holdCounter
125
125
logger. info ( " GC Unpause (hold counter: \( holdCounter) " )
126
126
}
@@ -133,7 +133,7 @@ class GarbageCollector {
133
133
}
134
134
} else {
135
135
#if swift(>=5.3)
136
- if #available( iOS 14 . 0 , * ) {
136
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
137
137
logger. error ( " GC Unpause when hold counter is already 0 " )
138
138
}
139
139
#endif
@@ -164,7 +164,7 @@ class GarbageCollector {
164
164
}
165
165
166
166
#if swift(>=5.3)
167
- if #available( iOS 14 . 0 , * ) {
167
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
168
168
logger. notice ( " GC Schedule " )
169
169
}
170
170
#endif
@@ -199,7 +199,7 @@ class GarbageCollector {
199
199
let currentEpoch = store. currentWriteEpoch
200
200
if startEpoch != currentEpoch {
201
201
#if swift(>=5.3)
202
- if #available( iOS 14 . 0 , * ) {
202
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
203
203
logger. info ( " GC Restart: store updated while collecting (start epoch: \( startEpoch) , current epoch: \( currentEpoch) ) " )
204
204
}
205
205
#endif
@@ -209,7 +209,7 @@ class GarbageCollector {
209
209
210
210
if shouldSchedule {
211
211
#if swift(>=5.3)
212
- if #available( iOS 14 . 0 , * ) {
212
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
213
213
logger. info ( " GC Cancel: paused while collecting " )
214
214
}
215
215
#endif
@@ -226,7 +226,7 @@ class GarbageCollector {
226
226
let currentEpoch = store. currentWriteEpoch
227
227
if startEpoch != currentEpoch {
228
228
#if swift(>=5.3)
229
- if #available( iOS 14 . 0 , * ) {
229
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
230
230
logger. info ( " GC Restart: store updated while collecting (start epoch: \( startEpoch) , current epoch: \( currentEpoch) ) " )
231
231
}
232
232
#endif
@@ -236,7 +236,7 @@ class GarbageCollector {
236
236
237
237
if shouldSchedule {
238
238
#if swift(>=5.3)
239
- if #available( iOS 14 . 0 , * ) {
239
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
240
240
logger. info ( " GC Cancel: paused while collecting " )
241
241
}
242
242
#endif
@@ -247,7 +247,7 @@ class GarbageCollector {
247
247
if references. isEmpty {
248
248
store. recordSource. clear ( )
249
249
#if swift(>=5.3)
250
- if #available( iOS 14 . 0 , * ) {
250
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
251
251
logger. notice ( " GC Result: 0 references found, cleared entire store " )
252
252
}
253
253
#endif
@@ -260,7 +260,7 @@ class GarbageCollector {
260
260
}
261
261
}
262
262
#if swift(>=5.3)
263
- if #available( iOS 14 . 0 , * ) {
263
+ if #available( iOS 14 . 0 , macOS 10 . 16 , tvOS 14 . 0 , watchOS 7 . 0 , * ) {
264
264
logger. notice ( " GC Result: \( references. count) references found, deleted \( deletedCount) records " )
265
265
}
266
266
#endif
0 commit comments